From fef23ca5c6e51ddf248744512d2457ebae6818f7 Mon Sep 17 00:00:00 2001 From: Fraser Greenroyd Date: Tue, 8 Nov 2022 14:37:23 +0000 Subject: [PATCH 1/8] Update references to branch 'master' to 'main' --- Reflection_Engine/Query/Url.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Reflection_Engine/Query/Url.cs b/Reflection_Engine/Query/Url.cs index 0901403b3..029dbc52a 100644 --- a/Reflection_Engine/Query/Url.cs +++ b/Reflection_Engine/Query/Url.cs @@ -76,7 +76,7 @@ public static string Url(this Type type) if (url == "") return null; - List path = new List() { url, "blob/master/" }; + List path = new List() { url, "blob/main/" }; path.Add(ass.GetName().Name); path.AddRange(type.Namespace.Split('.').Skip(3)); if (type.IsEnum) @@ -106,7 +106,7 @@ public static string Url(this MethodBase method) string url = att.Url; - List path = new List() { url, "blob/master/" }; + List path = new List() { url, "blob/main/" }; path.Add(ass.GetName().Name); path.AddRange(method.DeclaringType.Namespace.Split('.').Skip(3)); path.Add(method.DeclaringType.Name); From 26a1dd06c9cbabfc90c68584c3b3cabb90440616 Mon Sep 17 00:00:00 2001 From: Fraser Greenroyd Date: Tue, 8 Nov 2022 15:05:36 +0000 Subject: [PATCH 2/8] Add documentation to URL file --- Reflection_Engine/Query/Url.cs | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/Reflection_Engine/Query/Url.cs b/Reflection_Engine/Query/Url.cs index 029dbc52a..b143def03 100644 --- a/Reflection_Engine/Query/Url.cs +++ b/Reflection_Engine/Query/Url.cs @@ -23,6 +23,7 @@ using BH.oM.Base.Attributes; using System; using System.Collections.Generic; +using System.ComponentModel; using System.Linq; using System.Reflection; @@ -34,6 +35,9 @@ public static partial class Query /**** Interface Methods ****/ /***************************************************/ + [Description("Obtain the URL to the code of the given object. The URL returned will link directly to the source code for that object if it exists.")] + [Input("obj", "An object to obtain the URL for.")] + [Output("url", "The URL of the source code for the object. Null if no source code URL could be ascertained.")] public static string IUrl(this object obj) { if (obj == null) @@ -59,6 +63,9 @@ public static string IUrl(this object obj) /**** Public Methods ****/ /***************************************************/ + [Description("Obtain the URL to the code of the given type. The URL returned will link directly to the source code for that type if it exists.")] + [Input("type", "The type to obtain the URL for.")] + [Output("url", "The URL of the source code for the type. Null if no source code URL could be ascertained.")] public static string Url(this Type type) { if (type == null) @@ -68,11 +75,11 @@ public static string Url(this Type type) if (ass == null) return null; - AssemblyUrlAttribute att = ass.GetCustomAttribute(); + AssemblyDescriptionAttribute att = ass.GetCustomAttribute(); if (att == null) return null; - string url = att.Url; + string url = att.Description; if (url == "") return null; @@ -91,6 +98,9 @@ public static string Url(this Type type) /***************************************************/ + [Description("Obtain the URL to the code of the given method. The URL returned will link directly to the source code for that method if it exists.")] + [Input("method", "The method to obtain the URL for.")] + [Output("url", "The URL of the source code for the method. Null if no source code URL could be ascertained.")] public static string Url(this MethodBase method) { if (method == null) @@ -100,11 +110,11 @@ public static string Url(this MethodBase method) if (ass == null) return null; - AssemblyUrlAttribute att = ass.GetCustomAttribute(); + AssemblyDescriptionAttribute att = ass.GetCustomAttribute(); if (att == null) return null; - string url = att.Url; + string url = att.Description; List path = new List() { url, "blob/main/" }; path.Add(ass.GetName().Name); From 2268e31c8161cfe874624b55d540d1f362c0d92d Mon Sep 17 00:00:00 2001 From: Fraser Greenroyd Date: Tue, 8 Nov 2022 15:20:38 +0000 Subject: [PATCH 3/8] Move count methods to Data_Engine + add descriptions --- Data_Engine/Query/Count.cs | 48 ++++++++++++++++++++++++ Data_Engine/Versioning_60.json | 5 +++ Reflection_Engine/Query/Count.cs | 64 -------------------------------- 3 files changed, 53 insertions(+), 64 deletions(-) create mode 100644 Data_Engine/Versioning_60.json delete mode 100644 Reflection_Engine/Query/Count.cs diff --git a/Data_Engine/Query/Count.cs b/Data_Engine/Query/Count.cs index 646c30810..c4ec1ba4a 100644 --- a/Data_Engine/Query/Count.cs +++ b/Data_Engine/Query/Count.cs @@ -20,18 +20,37 @@ * along with this code. If not, see . */ +using BH.oM.Base.Attributes; using BH.oM.Data.Collections; using System; +using System.Collections.Generic; +using System.ComponentModel; using System.Linq; namespace BH.Engine.Data { public static partial class Query { + /***************************************************/ + /**** Interface Methods ****/ + /***************************************************/ + + [PreviousVersion("6.0", "BH.Engine.Reflection.Query.ICount(System.Collections.Generic.List)")] + [Description("Get the count of the number of items in a list of objects.")] + [Input("list", "The list of items to obtain a count of.")] + [Output("count", "The number of items in the list.")] + public static int ICount(this List list) + { + return Count(list as dynamic); + } + /***************************************************/ /**** Public Methods ****/ /***************************************************/ + [Description("Get the number of items in the Priority Queue Data.")] + [Input("queue", "A priority queue with data from which to obtain the number of items from.")] + [Output("count", "The number of items in the priority queue's data.")] public static int Count(this PriorityQueue queue) where T : IComparable { return queue.Data.Count(); @@ -39,6 +58,9 @@ public static int Count(this PriorityQueue queue) where T : IComparable /***************************************************/ + [Description("Get the number of nodes in the graph.")] + [Input("graph", "The graph from which to obtain the number of nodes it contains.")] + [Output("count", "The number of nodes in the graph.")] public static int Count(this Graph graph) { return graph.Nodes.Count(); @@ -46,6 +68,9 @@ public static int Count(this Graph graph) /***************************************************/ + [Description("Get the number of children contained by the tree. Takes the sum of the number of values each child of the tree has.")] + [Input("tree", "The tree to obtain the number of child values from.")] + [Output("count", "The total number of values held by the children of the tree. Returns 1 if there are no children on the tree.")] public static int Count(this Tree tree) { if (tree.Children.Count == 0) @@ -56,12 +81,35 @@ public static int Count(this Tree tree) /***************************************************/ + [Description("Get the total number of objects contained within the Venn Diagram. The count will be the sum of the objects contained solely within each set plus those in the intersection.")] + [Input("diagram", "The Venn Diagram to count the number of objects for.")] + [Output("count", "The total number of items in the diagram.")] public static int Count(this VennDiagram diagram) { return diagram.Intersection.Count + diagram.OnlySet1.Count + diagram.OnlySet2.Count; } /***************************************************/ + + [PreviousVersion("6.0", "BH.Engine.Reflection.Query.Item(System.Collections.Generic.List)")] + [Description("Get the count of items in the list. Returns the total number of objects held within the list.")] + [Input("list", "The list of objects to obtain the count from.")] + [Output("count", "The number of items in the list.")] + public static int Count(this List list) + { + return list.Count; + } + + /***************************************************/ + /**** Private Methods ****/ + /***************************************************/ + + private static int Count(this object obj) + { + return 0; + } + + /***************************************************/ } } diff --git a/Data_Engine/Versioning_60.json b/Data_Engine/Versioning_60.json new file mode 100644 index 000000000..5594d8d7c --- /dev/null +++ b/Data_Engine/Versioning_60.json @@ -0,0 +1,5 @@ +{ + "MessageForDeleted": { + "BH.Engine.Reflection.Query.Item(System.Object)": "This method was a fallback method which has been made private to avoid confusion in script use. The return value of this method is always set to 0, so if you were using this method in your script, please replace it with the value of 0." + } +} \ No newline at end of file diff --git a/Reflection_Engine/Query/Count.cs b/Reflection_Engine/Query/Count.cs deleted file mode 100644 index 0853d5c90..000000000 --- a/Reflection_Engine/Query/Count.cs +++ /dev/null @@ -1,64 +0,0 @@ -/* - * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2022, the respective contributors. All rights reserved. - * - * Each contributor holds copyright over their respective contributions. - * The project versioning (Git) records all such contribution source information. - * - * - * The BHoM is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published by - * the Free Software Foundation, either version 3.0 of the License, or - * (at your option) any later version. - * - * The BHoM is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with this code. If not, see . - */ - - -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace BH.Engine.Reflection -{ - public static partial class Query - { - /***************************************************/ - /**** Interface Methods ****/ - /***************************************************/ - - public static int ICount(this List list) - { - return Item(list as dynamic); - } - - /***************************************************/ - /**** Public Methods ****/ - /***************************************************/ - - public static int Item(this object obj) - { - return 0; - } - - /***************************************************/ - - public static int Item(this List list) - { - return list.Count; - } - - /***************************************************/ - } -} - - - From 085abe35ec575b03069619d7cd97970c05f32347 Mon Sep 17 00:00:00 2001 From: Fraser Greenroyd Date: Tue, 8 Nov 2022 15:32:33 +0000 Subject: [PATCH 4/8] Move UnqualifiedName to Query and remove SplitByIndicies --- Reflection_Engine/Compute/SplitByIndicies.cs | 68 ------------------- .../{Compute => Query}/UnqualifiedName.cs | 31 ++++++++- Reflection_Engine/Versioning_60.json | 5 ++ 3 files changed, 35 insertions(+), 69 deletions(-) delete mode 100644 Reflection_Engine/Compute/SplitByIndicies.cs rename Reflection_Engine/{Compute => Query}/UnqualifiedName.cs (77%) create mode 100644 Reflection_Engine/Versioning_60.json diff --git a/Reflection_Engine/Compute/SplitByIndicies.cs b/Reflection_Engine/Compute/SplitByIndicies.cs deleted file mode 100644 index ea510703a..000000000 --- a/Reflection_Engine/Compute/SplitByIndicies.cs +++ /dev/null @@ -1,68 +0,0 @@ -/* - * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2022, the respective contributors. All rights reserved. - * - * Each contributor holds copyright over their respective contributions. - * The project versioning (Git) records all such contribution source information. - * - * - * The BHoM is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published by - * the Free Software Foundation, either version 3.0 of the License, or - * (at your option) any later version. - * - * The BHoM is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with this code. If not, see . - */ - -using System; -using System.Collections.Generic; -using System.Reflection; -using System.Linq; -using Mono.Cecil; -using Mono.Reflection; - -namespace BH.Engine.Reflection -{ - public static partial class Compute - { - /***************************************************/ - /**** Public Methods ****/ - /***************************************************/ - - public static List SplitByIndices(string text, List indices) - { - if (text == null) - { - Base.Compute.RecordError("Cannot split a null string."); - return new List(); - } - - if (indices == null) - { - Base.Compute.RecordWarning("The 'indices' input is null and was replaced by an empty list"); - indices = new List(); - } - - int previousIndex = 0; - List result = new List(); - - foreach (int index in indices.OrderBy(x => x)) - { - result.Add(text.Substring(previousIndex, index - previousIndex)); - previousIndex = index + 1; - } - result.Add(text.Substring(previousIndex)); - - return result; - } - } -} - - - diff --git a/Reflection_Engine/Compute/UnqualifiedName.cs b/Reflection_Engine/Query/UnqualifiedName.cs similarity index 77% rename from Reflection_Engine/Compute/UnqualifiedName.cs rename to Reflection_Engine/Query/UnqualifiedName.cs index ecbd8d7c6..e8d9a5ee1 100644 --- a/Reflection_Engine/Compute/UnqualifiedName.cs +++ b/Reflection_Engine/Query/UnqualifiedName.cs @@ -26,15 +26,17 @@ using System.Linq; using Mono.Cecil; using Mono.Reflection; +using BH.oM.Base.Attributes; namespace BH.Engine.Reflection { - public static partial class Compute + public static partial class Query { /***************************************************/ /**** Public Methods ****/ /***************************************************/ + [PreviousVersion("6.0", "BH.Engine.Reflection.Compute.UnqualifiedName(System.String)")] public static string UnqualifiedName(string qualifiedName) { if (qualifiedName == null) @@ -83,6 +85,33 @@ private static List FindLevelZero(string text, char splitChar, char levelUp return indices; } + + private static List SplitByIndices(string text, List indices) + { + if (text == null) + { + Base.Compute.RecordError("Cannot split a null string."); + return new List(); + } + + if (indices == null) + { + Base.Compute.RecordWarning("The 'indices' input is null and was replaced by an empty list"); + indices = new List(); + } + + int previousIndex = 0; + List result = new List(); + + foreach (int index in indices.OrderBy(x => x)) + { + result.Add(text.Substring(previousIndex, index - previousIndex)); + previousIndex = index + 1; + } + result.Add(text.Substring(previousIndex)); + + return result; + } } } diff --git a/Reflection_Engine/Versioning_60.json b/Reflection_Engine/Versioning_60.json new file mode 100644 index 000000000..e4dcc218e --- /dev/null +++ b/Reflection_Engine/Versioning_60.json @@ -0,0 +1,5 @@ +{ + "MessageForDeleted": { + "BH.Engine.Reflection.Compute.SplitByIndices(System.String, System.Collections.Generic.List)": "This method was assisting in the unqualified name query method. Usage of this method shows this method has not been used outside of the calling method, and so has been made private to avoid UI clutter. If this method is required again, please reach out to the development team." + } +} \ No newline at end of file From bf0013167764e10a673e5d28953a8bd83523ebb5 Mon Sep 17 00:00:00 2001 From: Fraser Greenroyd Date: Tue, 8 Nov 2022 15:41:48 +0000 Subject: [PATCH 5/8] Documentation for UnqualifiedName --- Reflection_Engine/Query/UnqualifiedName.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Reflection_Engine/Query/UnqualifiedName.cs b/Reflection_Engine/Query/UnqualifiedName.cs index e8d9a5ee1..9480dcf11 100644 --- a/Reflection_Engine/Query/UnqualifiedName.cs +++ b/Reflection_Engine/Query/UnqualifiedName.cs @@ -27,6 +27,7 @@ using Mono.Cecil; using Mono.Reflection; using BH.oM.Base.Attributes; +using System.ComponentModel; namespace BH.Engine.Reflection { @@ -37,6 +38,9 @@ public static partial class Query /***************************************************/ [PreviousVersion("6.0", "BH.Engine.Reflection.Compute.UnqualifiedName(System.String)")] + [Description("Obtain the unqualified name for a given qualified name from a type.")] + [Input("qualifiedName", "The qualified name to query the unqualified name from.")] + [Output("unqualifiedName", "The unqualified name for the given name.")] public static string UnqualifiedName(string qualifiedName) { if (qualifiedName == null) From f887882f58707291993919c18ce974f874fe5fca Mon Sep 17 00:00:00 2001 From: Fraser Greenroyd Date: Tue, 8 Nov 2022 17:15:26 +0000 Subject: [PATCH 6/8] Add unit tests for URL from type --- .ci/Datasets/Reflection_Engine/Query/Url.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 .ci/Datasets/Reflection_Engine/Query/Url.json diff --git a/.ci/Datasets/Reflection_Engine/Query/Url.json b/.ci/Datasets/Reflection_Engine/Query/Url.json new file mode 100644 index 000000000..9043abd29 --- /dev/null +++ b/.ci/Datasets/Reflection_Engine/Query/Url.json @@ -0,0 +1 @@ +{ "_t" : "BH.oM.Data.Library.Dataset", "BHoM_Guid" : "1fdb7a5c-c20f-445a-874b-fc6c5eda60b0", "Name" : "Url", "Fragments" : [], "Tags" : [], "CustomData" : { }, "SourceInformation" : { "_t" : "BH.oM.Data.Library.Source", "BHoM_Guid" : "57889d5e-3201-4442-be2c-2ec3231ff45e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "SourceLink" : "", "Title" : "Url", "Author" : "Fraser Greenroyd", "ItemReference" : "", "Version" : "", "Publisher" : "", "Schema" : "", "Language" : "", "Location" : "", "Copyright" : "", "Contributors" : "", "Confidence" : "High" }, "TimeOfCreation" : { "$date" : 1667927709842 }, "Data" : [{ "_t" : "BH.oM.Test.UnitTests.UnitTest", "BHoM_Guid" : "f3f9c3e2-0430-49f2-9b28-6d1bffd4e8ae", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Method" : { "_t" : "System.Reflection.MethodBase", "TypeName" : "{ \"_t\" : \"System.Type\", \"Name\" : \"BH.Engine.Reflection.Query, Reflection_Engine, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null\", \"_bhomVersion\" : \"6.0\" }", "MethodName" : "Url", "Parameters" : ["{ \"_t\" : \"System.Type\", \"Name\" : \"System.Type, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\", \"_bhomVersion\" : \"6.0\" }"], "_bhomVersion" : "6.0" }, "Data" : [{ "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c15ceac8-94f3-48d2-9e8c-f74942c41d69", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Security.Elements.CameraDevice", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Security_oM\\Elements\\CameraDevice.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "eb7fc34d-4674-4768-87a8-88ccc73e6327", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Security.Enums.MountingType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Security_oM\\Enums\\Enums\\MountingType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "071b5bfd-c652-40a1-87b9-35c66dccd8d9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Security.Enums.CameraType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Security_oM\\Enums\\Enums\\CameraType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "5270ac7d-13bf-436d-9046-40d7881317e9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.YoungsModulus", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\YoungsModulus.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "521d4b03-0a72-4c44-8694-772bd1155798", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.WarpingConstant", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\WarpingConstant.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "5758280e-024a-414a-89ab-4fef4594605c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.VolumetricFlowRate", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\VolumetricFlowRate.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d4c64286-6f18-4d02-8acd-32e29fec55bb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Volume", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Volume.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "954b3104-9062-4320-971e-9e0175490480", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Velocity", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Velocity.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9914f8f5-6328-46c0-aa23-68b7841fbbd0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.TorsionConstant", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\TorsionConstant.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "174e29cc-6717-468a-9ddc-f594a814d2e2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Time", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Time.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4459def1-b49c-4459-9fe5-4185a79760a9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.ThermalExpansionCoefficient", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\ThermalExpansionCoefficient.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "820352df-713d-4d03-a159-4988658dbaa6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Temperature", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Temperature.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a6441637-d703-46c6-99f0-2a69e28338cf", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Stress", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Stress.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "66d738c4-f5bd-476b-bfd1-36e2d61c4d05", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Strain", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Strain.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "300ac588-3377-4c90-899b-06936b94c0cd", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.SpecificEnergy", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\SpecificEnergy.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a2662c2c-ee7e-427a-af5c-fbd118ec43cf", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.ShearModulus", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\ShearModulus.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8053c182-0d1e-4751-82ad-b299cc6a451b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.SectionModulus", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\SectionModulus.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "56f662ae-1a4c-4611-b5de-a5be9abd3b02", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.SecondMomentOfArea", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\SecondMomentOfArea.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "01bc76e9-a999-456c-a378-4960db46967d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Ratio", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Ratio.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "dd063802-6886-4599-928a-27d7cf5dc698", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Pressure", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Pressure.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d7f17365-ce40-4235-9708-4b5732d745bb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.MomentPerUnitLength", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\MomentPerUnitLength.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "49538b46-89f2-448b-9c5e-9c2ab58aacb2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.MomentPerUnitAngle", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\MomentPerUnitAngle.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2d020750-9da0-4d1f-ab5e-ecf9d4fb6bb0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Moment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Moment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ea9a5069-bf6c-4591-ab7e-b3be35b02da9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.MassPerUnitLength", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\MassPerUnitLength.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d740fbcb-5ff2-4337-b503-f947303240e0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.MassPerUnitArea", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\MassPerUnitArea.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2bba5067-98f2-4943-9ab4-a8f2a891d08f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.MassFraction", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\MassFraction.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "652555b5-f2fd-40d8-99b2-790cf10bd22a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Mass", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Mass.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9c1bf15d-f766-47d1-b7aa-86c3e161e0ba", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.LuminousIntensity", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\LuminousIntensity.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8dedddd4-c9d9-459b-bc5d-050bb512c4c2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Length", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Length.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "667181f4-f472-41dd-9dcc-e0ece853afca", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Illuminance", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Illuminance.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "52cbaf6d-24e7-4454-a54a-2ff39dc76d06", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Frequency", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Frequency.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "705fd73f-c278-41dd-9a8c-128abe13a088", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.ForcePerUnitLength", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\ForcePerUnitLength.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c9570a8b-f3b3-4104-bbe5-27e36752d361", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Force", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Force.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "43015994-67a8-41be-9b3e-f6a20651faf0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.EnergyPerUnitTime", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\EnergyPerUnitTime.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e5f2c3d4-c955-46b7-b63f-cfa4124dea8e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.EnergyPerUnitArea", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\EnergyPerUnitArea.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "67ae0a02-6fa3-4c05-88b3-7a34a03053b8", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Energy", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Energy.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "feffde37-bef4-41d5-a551-23bee616a3a4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.ElectricCurrent", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\ElectricCurrent.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b785093a-2c34-4f34-b44d-cb00d8502bae", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Density", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Density.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e0d34b8d-eaae-49d3-9fa6-2449f9f1ff75", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.AreaPerUnitLength", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\AreaPerUnitLength.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a22d07e5-4c2f-4651-aac2-b9c71f1a332a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Area", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Area.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "bfa14c05-5cca-412c-bf5a-130d0333c2b8", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.AngularVelocity", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\AngularVelocity.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "279333b1-2913-48c9-9338-494c086ba05e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.AngularAcceleration", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\AngularAcceleration.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0fc7569c-8aff-45fc-a1de-8b946a28f15f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Angle", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Angle.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7d0c4675-4541-4724-bb10-56d97c854d58", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.AmountOfSubstance", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\AmountOfSubstance.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c8a82cb4-d547-41e7-8e51-ca90d5e112d6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Acceleration", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Acceleration.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a829730a-bfbd-4eee-bb0e-68dc6dc9e4ee", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.QuantityAttribute", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\QuantityAttribute.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2aff8153-b33f-44b3-94d6-476da338dc50", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Enums.ValveType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Enums\\Enums\\ValveType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "44214a9d-38ac-4fb9-a8a9-1a060a21b4ca", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Enums.ServiceClassification", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Enums\\Enums\\ServiceClassification.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "5964adcb-165d-4392-a734-7c7f0bf5009f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Enums.PlumbingFixtureType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Enums\\Enums\\PlumbingFixtureType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a042a55a-25ce-4e8b-8be4-ce9fb8687807", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Enums.PipeTypes", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Enums\\Enums\\PipeTypes.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "cbb95281-d586-4457-913b-ee48f3f15f0a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Enums.MechanicalEquipmentType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Enums\\Enums\\MechanicalEquipmentType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "be39f5e3-bd2f-49a8-a500-ec10dec08860", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Enums.FluidType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Enums\\Enums\\FluidType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e18e036e-45a0-48e3-b174-5f3c1f402755", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Enums.FittingType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Enums\\Enums\\FittingType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "fdd3f62f-14c4-4dc8-a253-9e2d43352ba5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Enums.FireAlarmDeviceType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Enums\\Enums\\FireAlarmDeviceType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7994397a-8b5d-4856-9c2e-b1e34b0c09db", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Enums.ElectricalFixtureType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Enums\\Enums\\ElectricalFixtureType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2535699d-bf3c-45df-8b21-bceb533b0c24", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Enums.ElectricalEquipmentType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Enums\\Enums\\ElectricalEquipmentType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "28b31cb5-451b-47e1-b3d5-37e1452d450f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Enums.DamperType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Enums\\Enums\\DamperType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8c472673-dc9d-4e66-860c-cd1087c0cfbb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Equipment.Parts.HeatingCoil", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Equipment\\Parts\\HeatingCoil.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "fd977709-c86d-4f3a-93f7-bd34e4fce00a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Equipment.Parts.Filter", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Equipment\\Parts\\Filter.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7d97f201-b67c-48a2-beb2-d2102903dd70", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Equipment.Parts.Fan", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Equipment\\Parts\\Fan.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d7728b15-44a4-4d57-8ae6-826ccee5a79c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Equipment.Parts.EnergyWheel", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Equipment\\Parts\\EnergyWheel.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e6dba59e-c7e3-40cf-aa98-ddeec87b2da5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Equipment.Parts.ElectricalConnector", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Equipment\\Parts\\ElectricalConnector.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "cc07d6e4-30a7-4969-81cf-7ee26146de70", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Equipment.Parts.CoolingCoil", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Equipment\\Parts\\CoolingCoil.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "eabc9f16-9d38-48dd-aa39-5ff4222d61a7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Equipment.Parts.AirHandlingUnitBase", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Equipment\\Parts\\AirHandlingUnitBase.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6d26eaf7-23a7-4b13-a681-0c83dd05bb34", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Equipment.MechanicalEquipment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Equipment\\MechanicalEquipment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e9bf2cc4-2299-4192-b2d9-8f429e2949ac", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Equipment.FanCoilUnit", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Equipment\\FanCoilUnit.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "717dbd44-483c-4d30-99a2-b72b666f93ef", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Equipment.ElectricalEquipment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Equipment\\ElectricalEquipment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a0db793a-1c93-46cb-a8cd-e1c6471cfe5a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Equipment.AirHandlingUnit", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Equipment\\AirHandlingUnit.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "373ae5c8-fbeb-4aac-a1da-678ca6725833", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Fixtures.ResidentialFixtureUsage", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Fixtures\\ResidentialFixtureUsage.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1f63bafe-ddb1-4ebd-8129-b8d88666fd18", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Fixtures.PlumbingFixtureFlow", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Fixtures\\PlumbingFixtureFlow.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4a6196b0-b8e9-4dd8-a88d-e063151a8210", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Fixtures.PlumbingFixture", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Fixtures\\PlumbingFixture.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "be41daed-fa35-445c-8bb5-621477938c6e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Fixtures.LightFixture", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Fixtures\\LightFixture.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b540fb17-4759-4341-9827-83bdfe356b6a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Fixtures.FireAlarmDevice", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Fixtures\\FireAlarmDevice.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0d0a66d9-6e33-408a-bb58-228a38f2b17c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Fixtures.ElectricalFixture", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Fixtures\\ElectricalFixture.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ddf5ea70-6912-4133-a9a1-848590032884", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Fixtures.CommercialFixtureUsage", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Fixtures\\CommercialFixtureUsage.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d0081093-866e-4291-9088-99efa3f2d517", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Fixtures.AirTerminal", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Fixtures\\AirTerminal.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "5e0ff274-3f88-4ac0-a81e-77a6b16eb589", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Fragments.PlumbingLoadingFixtureUnitFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Fragments\\PlumbingLoadingFixtureUnitFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7593d12d-0bcd-4255-8f40-94dae1482b91", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Fragments.PlumbingFlowFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Fragments\\PlumbingFlowFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a6a002ad-9297-494f-96aa-d58e46c56723", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Fragments.IdentityFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Fragments\\IdentityFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8bc98e46-53dc-459e-96af-849f1678191c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Fragments.GeometryFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Fragments\\GeometryFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2589475b-4fa2-424f-adf2-48cc9b4645b0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.Dampers.Valve", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\Dampers\\Valve.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ccc23615-4193-4101-be9a-740a2d4ff254", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.Dampers.VolumeDamper", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\Dampers\\VolumeDamper.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7d6e6005-7c7b-4383-a2d6-8c73bfa320ea", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.Dampers.Damper", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\Dampers\\Damper.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "798b6d9f-3daa-4b00-b923-93db6d963354", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.Fittings.Fitting", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\Fittings\\Fitting.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f18bcf58-49d8-41ac-b669-99c5741f0f98", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.MaterialFragments.WireMaterial", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\MaterialFragments\\WireMaterial.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "300d294b-d15a-4595-840b-a64e0f79f19f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.MaterialFragments.PipeMaterial", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\MaterialFragments\\PipeMaterial.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b18ef74a-27b0-4c4e-b19f-0cbbae62e71d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.MaterialFragments.LiningMaterial", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\MaterialFragments\\LiningMaterial.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0e5d5551-5f99-4fc3-ba7e-c8bd17b8aa4e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.MaterialFragments.InsulationMaterial", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\MaterialFragments\\InsulationMaterial.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4cb2d9ba-eb6b-41d0-9aca-03520f18e116", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.MaterialFragments.DuctMaterial", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\MaterialFragments\\DuctMaterial.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "fec635a7-994f-4b89-803e-b942d02ed708", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.MaterialFragments.CableTrayMaterial", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\MaterialFragments\\CableTrayMaterial.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "027d5fa5-6041-42d5-83c2-5801dc18c6b8", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.SectionProperties.WireSectionProperty", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\SectionProperties\\WireSectionProperty.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "58c037b5-14f4-4947-8802-583ced06988a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.SectionProperties.SectionProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\SectionProperties\\SectionProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d2e7ffc3-eaf6-4101-9504-bfd789bc0c7f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.SectionProperties.PipeSectionProperty", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\SectionProperties\\PipeSectionProperty.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b35b6d52-0f5f-4928-a8be-a9132ba796c7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.SectionProperties.DuctSectionProperty", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\SectionProperties\\DuctSectionProperty.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "cae1c65b-60ef-4a3b-b7c4-e6b23ab2e243", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.SectionProperties.CableTraySectionProperty", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\SectionProperties\\CableTraySectionProperty.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "84c73309-7c94-48b1-9691-60e300d659e6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.WireSegment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\WireSegment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "bebac290-5ee0-40ee-bfdc-f99924eea4b6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.Wire", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\Wire.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "31d9d613-8f8e-482d-8753-0cd401388a28", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.Pipe", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\Pipe.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6ceaf058-d774-4351-9439-431159c6153e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.Node", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\Node.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "485be066-edd0-4e51-9a11-de321bd43c28", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.MechanicalSystem", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\MechanicalSystem.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f81cdf27-18e2-4d6b-b520-30b0ef0914f5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.FlowSystem", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\FlowSystem.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2324acd6-1f16-4f68-83f8-6b9966722596", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.Duct", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\Duct.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8c304987-3840-4597-b102-3e8712bb3aa2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.CableTray", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\CableTray.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "75a019fd-a0c3-4b6d-87a0-e9d5511b0f13", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Matter.Options.DensityExtractionType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Matter_oM\\Options\\Enums\\DensityExtractionType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "98020876-5d22-418e-b5eb-a1826b9600e6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Matter.Options.DensityExtractionOptions", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Matter_oM\\Options\\DensityExtractionOptions.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1d78ada9-24ec-46db-a293-68777686799b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Lighting.Analysis.Node", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Lighting_oM\\Analysis\\Node.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "27678935-eecf-4c5a-863c-7234f5fcfbb0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Lighting.Analysis.AnalysisGrid", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Lighting_oM\\Analysis\\AnalysisGrid.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "64c6bb5d-aee3-4316-abfe-6c8d5d227404", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Lighting.Enums.MountingType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Lighting_oM\\Enums\\Enums\\MountingType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d74a130a-34e6-4263-ba04-87c4c7792a7e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Lighting.Elements.LuminaireType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Lighting_oM\\Elements\\LuminaireType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0dac16f0-c593-41d9-b80f-ca0fa769b92e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Lighting.Elements.Luminaire", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Lighting_oM\\Elements\\Luminaire.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "79800d1a-148f-4d3d-adde-dbf9377d0fe0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Lighting.Results.Illuminance.Lux", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Lighting_oM\\Results\\Illuminance\\Lux.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4d734dc5-5ae8-4791-8d7a-c13c5d2801ef", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Lighting.Results.Mesh.MeshResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Lighting_oM\\Results\\Mesh\\MeshResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "11019876-b1c3-40e1-9cae-0bd55f690efd", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Lighting.Results.Mesh.MeshElementResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Lighting_oM\\Results\\Mesh\\MeshElementResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "da00baeb-0bd6-427b-87e5-88a4c6ff18ed", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Inspection.Issue", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Inspection_oM\\Issue.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "32ddde1b-997e-4c42-a013-d11a0c2e50ba", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Inspection.InstallationProgress", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Inspection_oM\\InstallationProgress.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6e8d1f1b-587b-4d38-90e8-22fcb3c5b359", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Inspection.Comment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Inspection_oM\\Comment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "07cae3d8-ea66-4310-a4a6-777e42484d20", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Inspection.Audit", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Inspection_oM\\Audit.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "af87ce5c-e141-4f33-ab54-bfb951eda52a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Planning.Repository", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Planning_oM\\Repository.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "04bd9754-4bac-48e2-8532-4ad48c9bb8ed", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Planning.PullRequest", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Planning_oM\\PullRequest.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "42b31fdd-02ae-40e3-add5-8f582ea39f92", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Planning.Milestone", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Planning_oM\\Milestone.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c9282ca0-fbbe-4ccc-a69f-49dd0389cc06", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Planning.Label", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Planning_oM\\Label.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "eed86bc1-2dbe-4e49-970b-fbabd0434d00", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Planning.Issue", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Planning_oM\\Issue.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "dbc60a79-3534-4764-8456-6cd26c50b724", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Planning.ItemState", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Planning_oM\\Enums\\ItemState.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "cd2152a7-0ee2-40b7-9597-e60d74e8d665", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Planning.ConstructionPhase", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Planning_oM\\ConstructionPhase.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "abae988e-d1d4-4ab8-b42c-e8eedda6a2fc", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Planning.Commit", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Planning_oM\\Commit.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ae5823ae-147b-4556-8518-74de4c9b7f7a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Planning.CodeAssembly", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Planning_oM\\CodeAssembly.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ac6cdd37-4438-4278-afff-8b2d67fc650a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Planning.Branch", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Planning_oM\\Branch.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "98d0a969-4b6b-4582-8b63-d500328bb23c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Elements.Panel", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Elements\\Panel.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e16fd0e7-7125-4dea-a9a2-610a5815f8f9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Elements.Opening", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Elements\\Opening.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7da83815-aa62-4f1b-a4f9-c7130e33ffbb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Elements.FrameEdge", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Elements\\FrameEdge.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8b8a448e-2d11-492f-b97f-48061da5b749", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Elements.PanelType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Elements\\Enums\\PanelType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0ee58129-d2be-43e7-a873-86ff7565fff8", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Elements.OpeningType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Elements\\Enums\\OpeningType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "668b6bd6-99f2-4895-9f95-94974f62f0c0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Elements.FrameEdgeType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Elements\\Enums\\FrameEdgeType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "988f6fa8-9aee-4d03-9b4a-8d38689fc5cf", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Elements.FrameCornerType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Elements\\Enums\\FrameCornerType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "16f07ff4-3738-4ae5-a2e6-f5b17d707be3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Elements.CurtainWall", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Elements\\CurtainWall.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3e93add4-eab5-4614-869b-732eecb2bd44", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Fragments.UValueGlassEdge", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Fragments\\UValueGlassEdge.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "598e27b5-ea7c-4520-ae32-e853f9904a60", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Fragments.UValueGlassCentre", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Fragments\\UValueGlassCentre.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2b7b73d1-108a-4e1e-aacc-8d0ce383fd40", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Fragments.UValueFrame", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Fragments\\UValueFrame.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "aa9e829d-f4c7-4c6b-ab6c-43eee5ae74e4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Fragments.UValueContinuous", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Fragments\\UValueContinuous.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4ac5ac35-7845-4d26-b713-0bb5371083f9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Fragments.PsiJoint", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Fragments\\PsiJoint.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "bb91b9d3-d1d7-48de-aa1f-df9000057eac", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Fragments.PsiGlassEdge", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Fragments\\PsiGlassEdge.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9a3ffb87-2a1a-406c-a923-c1c163699ee9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Fragments.GlazingLocation", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Fragments\\GlazingLocation.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9b8fe578-b90d-4025-83c8-7cfc2655a892", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Fragments.FrameExtensionBox", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Fragments\\FrameExtensionBox.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "eb68428d-be22-4ab5-977e-72396c21f795", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Fragments.ConstructionOffset", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Fragments\\ConstructionOffset.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a36a080f-8331-42c5-8ec4-e9ceacabee60", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Results.OverallUValue", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Results\\OverallUValue.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "bb400d92-8b4d-4b9b-831d-311bfac0f89d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.SectionProperties.FrameEdgeProperty", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\SectionProperties\\FrameEdgeProperty.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ddd81e43-d36b-4186-a064-43d775d01d94", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.AECDeltas.DeltaPayload", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Diffing_oM\\DeltaPayload.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "158fa8d5-7fef-4b4d-93df-2a8e87dc454a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Diffing.StreamPointer", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Diffing_oM\\StreamPointer.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1402e729-d3db-49b5-b36b-3a8796e2dd87", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Diffing.RevisionFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Diffing_oM\\RevisionFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "40ce6072-cda5-4ceb-a989-a74a11a30579", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Diffing.Revision", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Diffing_oM\\Revision.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d1713b1a-444b-4547-8833-65f93a757d68", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Diffing.PropertyDifference", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Diffing_oM\\PropertyDifference.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b002b254-7b4b-4fe8-92fd-aa23ff074429", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Diffing.ObjectDifferences", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Diffing_oM\\ObjectDifferences.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3b3acf94-bfff-4ab3-8e59-cb90e76017c7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Diffing.DiffingConfig", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Diffing_oM\\DiffingConfig.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4fbe26ac-2cb8-423d-8ba0-0f49bdbfd7d1", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Diffing.DifferenceType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Diffing_oM\\Enums\\DifferenceType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8eae6538-7bed-4118-8b27-bc681b9cf808", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Diffing.Diff", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Diffing_oM\\Diff.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "fe8b0feb-561b-4f18-9ceb-b8cefca3047f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Diffing.Delta", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Diffing_oM\\Delta.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1351c6c8-d730-4ccd-acc2-363d8e5a5a48", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Activations.Tanh", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Activations\\Tanh.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3791e650-8d6f-49ec-936a-fd3412c0024f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Activations.Softmax", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Activations\\Softmax.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "379bf984-cc48-4b0a-ab88-923269809b3a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Activations.Sigmoid", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Activations\\Sigmoid.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1222a683-24eb-450b-b779-e6e2526174ee", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Activations.ReLU", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Activations\\ReLU.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "652c8bbb-a62a-49b8-b526-045a1b604427", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Activations.LogSoftmax", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Activations\\LogSoftmax.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a266267a-f3a4-46e5-9cb0-1f136ab3b731", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Activations.LogSigmoid", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Activations\\LogSigmoid.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "405b0905-918d-4801-b12f-23b1ba14d8f5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Activations.LeakyReLU", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Activations\\LeakyReLU.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "20d5e4ba-1f99-482e-aa50-c3d8370e095c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Layers.TransposedConvolution2d", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Layers\\TransposedConvolution2d.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "96dc89af-ba82-47fa-9f64-29d11533bb13", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Layers.MaxUnPooling2d", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Layers\\MaxUnPooling2d.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e58a3eee-2296-47be-970d-0a9d5413357d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Layers.MaxPooling2d", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Layers\\MaxPooling2d.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "cfa922a3-415d-4424-b16d-43d383d7a9bb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Layers.LSTM", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Layers\\LSTM.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "30a44857-6e1e-4df6-863a-3ac2ceb9dfbd", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Layers.Linear", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Layers\\Linear.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "470e6454-89dd-48b9-879c-e4348800010a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Layers.GRU", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Layers\\GRU.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2bed0d5a-d710-4b28-aaea-1a03cf985aa9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Layers.Convolution2d", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Layers\\Convolution2d.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "615e046a-abc6-4253-aa77-8b26f3c67ccb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Layers.AvgPooling2d", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Layers\\AvgPooling2d.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8449bb3b-f7a2-45ee-8379-3c4070384cab", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Losses.NegativeLogLikelihood", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Losses\\NegativeLogLikelihood.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6f60ff67-cc7e-4f23-9cbe-95b7a1671d8e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Losses.MeanSquareError", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Losses\\MeanSquareError.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2a9cca1b-c19c-471e-a9a4-ac1b7b1df949", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Losses.L1", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Losses\\L1.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8f562a65-cefe-41ce-be8d-c10ee8772eed", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Losses.CrossEntropy", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Losses\\CrossEntropy.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "85959578-39e2-4666-8314-6ca8c8b786f6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Losses.BinaryCrossEntropy", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Losses\\BinaryCrossEntropy.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7d4c391e-0d3f-4773-8855-9d082b7f1b04", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Losses.BCEWithSigmoid", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Losses\\BCEWithSigmoid.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "fa56ad87-9bba-4549-b2ce-b1756de6bfc5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Models.Sequential", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Models\\Sequential.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3a951850-0102-4e51-9635-4adcc7cc30d6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Models.Graph", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Models\\Graph.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "08e46867-03a5-4173-98e8-66d0649c7ebe", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Optimisers.SGD", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Optimisers\\SGD.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "73e29af6-cb3f-476a-824a-55662b86e843", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Optimisers.Adam", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Optimisers\\Adam.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ce9a73be-a640-4e76-982a-82d935cce0c6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Shape3d", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Shape3d.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b04a4b52-8f2e-4c7b-8df5-59c45328a12d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Shape2d", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Shape2d.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "93628adb-c60f-4da1-8c76-4b4780dedd71", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Reduce", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Enums\\Reduce.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e2940828-b973-4d5f-8d0d-9aae3f0bee65", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.InterpolationMethod", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Enums\\InterpolationMethod.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4906ee6c-7126-4e2a-add9-6f8b4a8cfa39", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.ImageFormat", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Enums\\ImageFormat.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7bac7f66-f605-463a-ad92-f36d4a2c5996", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Programming.ReceiverParam", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Programming_oM\\ReceiverParam.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2b16378a-2435-4e21-a7ac-e2548223bb00", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Programming.DataParam", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Programming_oM\\DataParam.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d48bde02-abce-4d72-a7f1-75c8322f7df4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Programming.NodeGroup", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Programming_oM\\NodeGroup.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "53af9b76-d4cf-44c6-9580-fbbf29cad2ad", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Programming.ClusterContent", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Programming_oM\\ClusterContent.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "be0989f5-237e-4764-b542-3899a933c2c0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Programming.TypeNode", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Programming_oM\\TypeNode.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "78ea098f-b2e9-4978-95a1-acb610bab764", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Programming.SetPropertyNode", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Programming_oM\\SetPropertyNode.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "03b530ba-2a2c-4943-950a-1ad54cca639c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Programming.ParamNode", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Programming_oM\\ParamNode.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e2185afa-ba23-499c-b652-e8c9a36598eb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Programming.MethodNode", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Programming_oM\\MethodNode.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "db33c8f7-062b-45a2-90ef-5abe92449ada", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Programming.LoopNode", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Programming_oM\\LoopNode.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "57c54049-8eb7-4c09-9b31-fd210cfc2e5f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Programming.LibraryNode", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Programming_oM\\LibraryNode.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d2be8cd3-ce48-4b91-bd3c-550b80fff9ab", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Programming.InitialiserNode", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Programming_oM\\InitialiserNode.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c95c0082-9a73-4795-b499-6c0b51b7b8bc", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Programming.GetPropertyNode", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Programming_oM\\GetPropertyNode.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "62f2e233-20b2-4179-b6e3-b0200bf73041", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Programming.ExplodeNode", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Programming_oM\\ExplodeNode.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a0607e4c-2bc1-4d1f-a5b3-c0b4964499ee", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Programming.CustomObjectNode", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Programming_oM\\CustomObjectNode.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0f7763d0-7a18-416c-af7e-05c57bbcdb6e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Programming.ConstructorNode", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Programming_oM\\ConstructorNode.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "910748b6-5741-4ebd-9696-d708ba4a3330", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Programming.ClusterNode", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Programming_oM\\ClusterNode.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "733923c1-b574-4631-9cba-5e6b7fa41cda", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Programming.BlockNode", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Programming_oM\\BlockNode.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "533a9d36-8c66-4947-b6c0-8b81df92012b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.Fragments.EPDDimension", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Fragments\\EPDDimension.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "50c8306a-5318-4769-9532-9a2707bd5a36", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.Fragments.EPDDensity", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Fragments\\EPDDensity.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f179d263-4299-4fcc-a1ae-58f4d5af504d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.Fragments.AdditionalEPDData", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Fragments\\AdditionalEPDData.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9e98b569-a81c-45a0-b419-4aeea5cd82b6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.MaterialFragments.EnvironmentalProductDeclaration", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\MaterialFragments\\EnvironmentalProductDeclaration.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b4a39211-05a5-4681-9965-f5a0f8cafe35", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.Results.LifeCycleAssessmentElementResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Results\\LifeCycleAssessmentElementResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ecf0b1ce-da90-44f9-9ae3-82e04bb88f75", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.Results.EnvironmentalMetricResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Results\\EnvironmentalMetricResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "be9e4c0b-1906-47b7-bb4a-5cdee94e597e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.ProjectLifeCycleAssessment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\ProjectLifeCycleAssessment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "04072f8d-959d-4457-a82a-d3f87821049b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.HealthProductDeclaration", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\HealthProductDeclaration.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "40dfebd4-56d3-4bce-ba3a-ea3bd3ddfc4c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.Scope", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Scope.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "43716777-9e14-42cc-926a-274a084a9270", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.LifeCycleAssessmentScope", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\LifeCycleAssessmentScope.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "624ecf48-8c22-4776-bfd8-98d6b4929067", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.EnvironmentalMetric", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\EnvironmentalMetric.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ea9b4906-21ad-4173-beb7-ad1697ad390d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.WindSpeedCategory", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Enums\\WindSpeedCategory.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c5b8ce24-bd21-47f1-85cd-5d7da6508303", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.SeismicDesignCategory", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Enums\\SeismicDesignCategory.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "51ba0af8-c5d4-4226-9c18-525cb7f0835c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.ScopeType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Enums\\ScopeType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7fcbe953-4e9f-4448-9c91-a515cdf376eb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.QuantityType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Enums\\QuantityType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0840fac5-b188-4920-a67c-4faea6559ee8", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.ProjectType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Enums\\ProjectType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ebee6a19-bd12-45cd-ac9b-33eefb210871", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.ObjectCategory", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Enums\\ObjectCategory.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "682a9acb-4888-4aa9-ab14-36faafaa0dcc", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.LifeCycleAssessmentPhases", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Enums\\LifeCycleAssessmentPhases.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ce770bb4-e48e-493e-a0b6-cdb33bcbef2f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.LevelOfDevelopment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Enums\\LevelOfDevelopment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "84371f01-53f2-4985-9439-d70f9d26ff99", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.LateralStructuralMaterial", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Enums\\LateralStructuralMaterial.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "924488d0-92a5-4a39-a490-06c9b8f0d7a8", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.GravityStructuralMaterial", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Enums\\GravityStructuralMaterial.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "21e5ce44-6674-43af-bf1f-dc5dc474c629", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.EPDType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Enums\\EPDType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "cb665230-c3d3-48dd-9df9-92e8668bd5fb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.EnvironmentalProductDeclarationField", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Enums\\EnvironmentalProductDeclarationField.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4c26ed20-8421-4e59-8421-605299f5b66a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.BuildingBenchmarkingData", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\BuildingBenchmarkingData.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9e868425-139c-42c9-aba1-7a66727825bd", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Constraints.LinkConstraint", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Constraints\\LinkConstraint.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "556fe6ee-1fef-4961-bdef-d06a03a48d18", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Constraints.DOFType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Constraints\\Enums\\DOFType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1cd6fb46-594e-42d3-bf44-6120c7719f2e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Constraints.Constraint6DOF", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Constraints\\Constraint6DOF.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "edbc3861-3624-4a8c-9dd8-39efa85e70a2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Constraints.Constraint4DOF", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Constraints\\Constraint4DOF.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "03a19dc0-53ae-4b8d-a47f-22a189f9145d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Constraints.Constraint3DOF", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Constraints\\Constraint3DOF.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a1f9676a-4583-4c03-848e-ebfd5de01786", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Constraints.BarRelease", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Constraints\\BarRelease.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ed75ea80-5d1d-4c8d-82cc-cbaca2ad2d85", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Design.StructuralLayout", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Design\\StructuralLayout.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a7ef42e8-1c80-448f-a074-9beefd675134", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Design.SpanDirection", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Design\\Enums\\SpanDirection.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "48a752b8-7fd0-4599-abeb-cd3d9ea58670", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Design.Span", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Design\\Span.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0be62439-498f-4cb0-813c-d403472258ab", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Design.DesignGroup", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Design\\DesignGroup.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "33b46d4f-e303-4604-b02c-3a70a4a5601b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Elements.Surface", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Elements\\Surface.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "fe68eb20-fd84-4ef2-b47e-e1648d4d83c2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Elements.RigidLink", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Elements\\RigidLink.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3fa5718e-92da-4ad9-ae16-37dd7669cb50", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Elements.Panel", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Elements\\Panel.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "65df951e-8816-4eaf-bd47-914032d8fc4d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Elements.Opening", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Elements\\Opening.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1afef585-b7e4-42a0-ae1f-2615a4fd9fc6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Elements.Node", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Elements\\Node.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "42389a5a-b196-4548-a68c-fd674abf7a9a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Elements.FEMeshFace", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Elements\\FEMeshFace.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1a5ef91b-e794-460f-8339-bea08f7c1ef2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Elements.FEMesh", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Elements\\FEMesh.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8ea223b6-a096-4899-ae26-98f4e5062ef9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Elements.StructuralUsage2D", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Elements\\Enums\\StructuralUsage2D.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1c016e63-bf6b-4b11-b205-8cc472e94a67", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Elements.StructuralUsage1D", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Elements\\Enums\\StructuralUsage1D.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6281813b-1f8f-4588-ab17-bc901a544db7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Elements.BarFEAType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Elements\\Enums\\BarFEAType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "38be1777-d831-4317-8330-bd4159525b40", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Elements.Edge", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Elements\\Edge.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0da9e2bb-b93a-45c0-a90e-8be165a43f18", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Elements.Bar", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Elements\\Bar.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "5790517c-149f-4a11-b377-770d03f3f8ec", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Fragments.SurfacePropertyModifier", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Fragments\\SurfacePropertyModifier.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d79ceec2-0039-42a3-9719-8f5c29388994", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Fragments.SectionModifier", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Fragments\\SectionModifier.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f86f4ae4-651b-4c70-92e6-b3dfa84164bb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Fragments.ReinforcementDensity", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Fragments\\ReinforcementDensity.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "db1632ee-a61f-4416-a35a-6973a548c70b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.UniformLoadSetRecord", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\UniformLoadSetRecord.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2eefba9b-102d-4ab5-8d88-70f10bfc54f2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.UniformLoadSet", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\UniformLoadSet.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8424748a-2293-42bf-9ad8-66d42b9a42ae", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.PointVelocity", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\PointVelocity.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "de2a01a8-af4b-420f-a6e9-2cc7a437ab62", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.PointLoad", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\PointLoad.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b2101ef9-0569-4d0e-8559-9883687277c1", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.PointDisplacement", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\PointDisplacement.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2e17a7cc-5c78-4be6-9eb7-74c816087a29", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.PointAcceleration", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\PointAcceleration.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e812b6f3-c294-4cf7-81f2-98f249a95e9b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.LoadCombination", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\LoadCombination.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f391839e-e526-40de-8ea9-b4210e6f8106", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.Loadcase", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\Loadcase.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1ca4e992-2efc-4c91-9113-3905405a5bab", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.GravityLoad", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\GravityLoad.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d5c98f0c-99d8-4d96-aeb3-4925ea75238c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.GeometricalLineLoad", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\GeometricalLineLoad.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0e33e6ad-2bb2-4224-b00e-ad01f6e82330", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.DifferentialTemperatureLoadDirection", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\Enums\\DifferentialTemperatureLoadDirection.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "5ffc3aab-5dd1-439b-a5d1-0ac24e1dfcc3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.LoadType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\Enums\\LoadType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "62ea265d-70a7-4f81-9a62-3f6400bec421", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.LoadNature", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\Enums\\LoadNature.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ac45392f-a66a-4ed4-902f-787c87529fef", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.LoadAxis", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\Enums\\LoadAxis.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "302b0193-d836-4bf1-b6e8-01f5ad1a77b5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.CaseType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\Enums\\CaseType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "21d9de0c-311b-4c2a-879d-2a5de9f54a95", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.ContourLoadSet", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\ContourLoadSet.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8a88558c-dc52-45e3-9aab-2396e2b8116c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.ContourLoad", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\ContourLoad.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7ea92c9e-447b-4d54-a559-fafeb8733010", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.BarVaryingDistributedLoad", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\BarVaryingDistributedLoad.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4d187391-053c-4e52-96f9-87005d3ff3f2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.BarUniformTemperatureLoad", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\BarUniformTemperatureLoad.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1ea87c1b-dfdb-4284-847f-4a4a6849f814", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.BarUniformlyDistributedLoad", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\BarUniformlyDistributedLoad.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b9ed3ce3-14f6-4b13-bc99-1c97d910ed37", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.BarPrestressLoad", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\BarPrestressLoad.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1dfb773c-026c-4294-83e2-108066e466fc", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.BarPointLoad", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\BarPointLoad.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "5284f438-799f-4859-9584-6c3d5d2d84d8", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.BarDifferentialTemperatureLoad", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\BarDifferentialTemperatureLoad.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "33dc00e2-42ee-48f4-ba70-b2b6cfe30d41", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.AreaUniformTemperatureLoad", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\AreaUniformTemperatureLoad.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1dea12dd-23e5-4412-b5b8-235e47602a63", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.AreaUniformlyDistributedLoad", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\AreaUniformlyDistributedLoad.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e8e6efd8-87c1-45ef-adc9-49ea6baea8ae", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.AreaDifferentialTemperatureLoad", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\AreaDifferentialTemperatureLoad.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3cc4d1b5-4110-4102-be3c-65e52f3c3e0e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.MaterialFragments.Timber", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\MaterialFragments\\Timber.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0bda648c-d79e-4ad7-92b5-7c142ea7318c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.MaterialFragments.Steel", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\MaterialFragments\\Steel.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f5001060-4554-4d7c-adc4-c9c145d51055", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.MaterialFragments.GenericOrthotropicMaterial", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\MaterialFragments\\GenericOrthotropicMaterial.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e90fb620-abf2-4449-80d2-9ffbb833ec1b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.MaterialFragments.GenericIsotropicMaterial", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\MaterialFragments\\GenericIsotropicMaterial.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a56f8bee-d823-4847-9d57-cc78c9cb4a89", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.MaterialFragments.MaterialType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\MaterialFragments\\Enums\\MaterialType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "62794fb4-7c3c-48ab-a41e-676a1d515532", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.MaterialFragments.Concrete", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\MaterialFragments\\Concrete.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c41cb350-fa88-491b-a431-d2f0633275a1", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.MaterialFragments.Aluminium", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\MaterialFragments\\Aluminium.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a4122138-26b8-4992-bc52-75a6a8d47f0e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Offsets.Offset", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Offsets\\Offset.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4b0f1452-daa4-403a-ba55-84b5d8898629", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Reinforcement.TransverseReinforcement", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Reinforcement\\TransverseReinforcement.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1e36ad6a-3dbe-44b8-a2b0-9ad76d57323f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Reinforcement.ReinforcementRegion", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Reinforcement\\ReinforcementRegion.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8127f29e-7082-44db-8ff4-2829ad0425f5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Reinforcement.PanelReinforcement", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Reinforcement\\PanelReinforcement.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9ff17e6e-5f4f-4f25-b005-1eb6fadc9c8a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Reinforcement.PanelRebarIntent", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Reinforcement\\PanelRebarIntent.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e1da44e5-874b-4870-9c5d-114e95cc9385", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Reinforcement.LongitudinalReinforcement", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Reinforcement\\LongitudinalReinforcement.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ebc99945-0f2a-442d-839a-7284a9d2f55d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Reinforcement.BarRebarIntent", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Reinforcement\\BarRebarIntent.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "70020d4b-8352-4921-ab32-51bd307ce2f2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Requests.NodeResultRequest", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Requests\\NodeResultRequest.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "730466b0-18ed-4502-9215-3df07ef53832", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Requests.MeshResultRequest", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Requests\\MeshResultRequest.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ab89d0b8-3294-4684-9428-27038ff653b5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Requests.GlobalResultRequest", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Requests\\GlobalResultRequest.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3cc7a8b8-1fe1-4e6f-8286-e7d084b1d18e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Requests.NodeResultType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Requests\\Enums\\NodeResultType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "84ad52a9-f7ba-4c60-b453-3b377391cace", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Requests.GlobalResultType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Requests\\Enums\\GlobalResultType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "481a3d17-506b-4db7-a41c-44d5ae1a03c2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Requests.DivisionType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Requests\\Enums\\DivisionType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9c72fd00-3e61-4511-9646-c319693dbcd9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Requests.BarResultType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Requests\\Enums\\BarResultType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4aa664ef-6dcf-4c4b-8079-d25b1b938a4f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Requests.BarResultRequest", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Requests\\BarResultRequest.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a465dabc-105a-4a66-910b-83f49677d68d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.NodeVelocity", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\NodeVelocity.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "64b8d12e-c952-4a49-87c5-0126e7938fd0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.NodeResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\NodeResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4da21210-2646-4006-8ab7-72342874a780", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.NodeReaction", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\NodeReaction.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "35458262-96af-4c8a-b24c-a1290da5ce1b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.NodeModeShape", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\NodeModeShape.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3583be5c-a30e-47fa-becc-699989bf2958", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.NodeModalMass", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\NodeModalMass.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9da6bd52-c80a-4caf-b526-5a1e8aaa9ec2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.NodeDisplacement", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\NodeDisplacement.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "62ddd14d-4d88-482d-aa1b-5ff892450afc", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.NodeAcceleration", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\NodeAcceleration.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8f7fa79c-39cd-4690-b5c7-433c95a56a13", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.MeshVonMises", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\MeshVonMises.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4d55507b-a7b0-498d-b5ba-b831dcc1f981", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.MeshStress", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\MeshStress.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "74afd132-22e3-42e5-b4b4-11b9599feed4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.MeshResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\MeshResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ae1800b1-4593-4241-983d-d364994f5324", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.MeshRequiredArea", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\MeshRequiredArea.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "fd7db5ef-1a17-4430-bb89-e661804e4156", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.MeshModeShape", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\MeshModeShape.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "86c711fd-94e0-4dc1-a276-725b96da6d76", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.MeshForce", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\MeshForce.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "95bffde4-e236-413c-b9fd-6ce1a35115d9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.MeshElementResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\MeshElementResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e3224c0a-c665-41b6-8fb6-b7e10bf2341a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.MeshDisplacement", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\MeshDisplacement.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8f48be68-a381-4181-bad0-add2ce10c272", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.MeshResultType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\Enums\\MeshResultType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "84c8c80b-7247-499f-990d-4200e3f217d7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.MeshResultSmoothingType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\Enums\\MeshResultSmoothingType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f0bba522-28de-4f33-a25a-39afe4988cb8", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.MeshResultLayer", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\Enums\\MeshResultLayer.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "83a43878-edfc-4c7e-a592-3eef401da091", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.StructuralGlobalResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\StructuralGlobalResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8679a418-9d24-4067-9613-f82f509afae7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.ModalDynamics", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\ModalDynamics.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "eb946782-0fd1-4b9d-98f2-50af1a7776e3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.GlobalReactions", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\GlobalReactions.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f19d70b1-6257-4279-a237-92dffd2fad34", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.SteelUtilisation", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\SteelUtilisation.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "974d3293-ff13-4637-bed2-5683e48a6c48", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.CompositeUtilisation", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\CompositeUtilisation.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "fd5a34be-fbc9-47b4-82f4-f1534a2c1572", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.BarStress", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\BarStress.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "27e897db-0671-406d-bde8-edc4160d4c94", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.BarStrain", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\BarStrain.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "51af48b2-9d9a-411f-8e0b-a3064546698c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.BarResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\BarResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3d709c91-1b10-4d10-a031-9028c1b527b5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.BarRequiredArea", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\BarRequiredArea.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9e14472f-bf15-4a89-bfec-5ddd58c57e47", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.BarModeShape", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\BarModeShape.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2007a364-2b89-416d-9e79-bc7525587b55", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.BarForce", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\BarForce.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "29cdf020-4adc-4fde-8996-3751ad767044", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.BarDisplacement", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\BarDisplacement.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1845b91a-0b31-4b8e-9c63-2787f173efe0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.BarDeformation", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\BarDeformation.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "aa55e3e1-c7a2-485c-8777-f5c3cb2fe1bf", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SectionProperties.Reinforcement.TieReinforcement", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SectionProperties\\Reinforcement\\TieReinforcement.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0dfad871-7a95-4c33-a2c3-7a531f89e787", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SectionProperties.Reinforcement.Reinforcement", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SectionProperties\\Reinforcement\\Reinforcement.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2f92e95a-55a7-406b-b055-b653bcc6358a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SectionProperties.Reinforcement.PerimeterReinforcement", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SectionProperties\\Reinforcement\\PerimeterReinforcement.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "68d967d7-b45b-4755-94bb-e19b8d55be2e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SectionProperties.Reinforcement.LayerReinforcement", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SectionProperties\\Reinforcement\\LayerReinforcement.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0473eb29-eabb-4634-85b6-93549c9298fb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SectionProperties.Reinforcement.ReinforcementPattern", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SectionProperties\\Reinforcement\\Enums\\ReinforcementPattern.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "492b8f03-4350-4ad4-bbb2-8dab35c82648", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SectionProperties.TimberSection", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SectionProperties\\TimberSection.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3c3d8746-cc29-4c8a-8478-13af9d8c5788", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SectionProperties.SteelSection", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SectionProperties\\SteelSection.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c209802d-a145-4bde-a9a6-9c4622cdbf19", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SectionProperties.GenericSection", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SectionProperties\\GenericSection.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c8387504-97f1-4a9c-b519-90e7d63e53f2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SectionProperties.ExplicitSection", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SectionProperties\\ExplicitSection.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9ded2844-0f51-47da-9a07-2cf2405b3abd", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SectionProperties.SteelPlateRestraint", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SectionProperties\\Enums\\SteelPlateRestraint.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8183bab3-0c95-470f-98f0-95e82bd34acd", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SectionProperties.SteelFabrication", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SectionProperties\\Enums\\SteelFabrication.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2641152f-ac2e-42c3-900f-cbb40fe84699", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SectionProperties.CableType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SectionProperties\\Enums\\CableType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c2154809-ecfe-4027-b9c6-f9d1568a66d6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SectionProperties.ConcreteSection", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SectionProperties\\ConcreteSection.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9a2662e0-8d62-45cd-892d-7347a7e32cab", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SectionProperties.CompositeSection", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SectionProperties\\CompositeSection.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "19c22cb1-4b51-4bfa-89b8-9d3101363690", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SectionProperties.CableSection", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SectionProperties\\CableSection.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "24c65467-24ab-469e-983f-31e645421c3d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SectionProperties.AluminiumSection", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SectionProperties\\AluminiumSection.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "afac7a1b-59da-4606-85eb-5a72c3bc706f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SurfaceProperties.Waffle", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SurfaceProperties\\Waffle.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "efaa7720-5d61-4257-afea-6400e864e75d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SurfaceProperties.SlabOnDeck", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SurfaceProperties\\SlabOnDeck.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7ebe0182-5fea-4356-94bb-3471ab020cae", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SurfaceProperties.Ribbed", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SurfaceProperties\\Ribbed.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b47c7a39-e519-48da-abb1-5a00a230ce50", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SurfaceProperties.LoadingPanelProperty", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SurfaceProperties\\LoadingPanelProperty.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8d8d69a2-9409-4f19-8ed6-e09c551e41cd", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SurfaceProperties.Layered", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SurfaceProperties\\Layered.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8bff7384-c381-47b8-85df-ad290bdfb50d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SurfaceProperties.Layer", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SurfaceProperties\\Layer.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "cf3bb5a9-cfc1-4e83-a449-1b5e3e188f47", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SurfaceProperties.PanelType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SurfaceProperties\\Enums\\PanelType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d43d0e86-eec4-4132-b768-14ba25f5d303", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SurfaceProperties.PanelDirection", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SurfaceProperties\\Enums\\PanelDirection.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0570b14b-99f3-45f2-b083-f6d3128c372c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SurfaceProperties.LoadPanelSupportConditions", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SurfaceProperties\\Enums\\LoadPanelSupportConditions.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b98da1f7-e5fc-4b36-baed-7a338c120e18", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SurfaceProperties.CorrugatedDeck", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SurfaceProperties\\CorrugatedDeck.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "75d64590-ec09-4fa2-a5c3-5285f7358cd4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SurfaceProperties.ConstantThickness", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SurfaceProperties\\ConstantThickness.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2e1ae29e-066f-4d6b-9bfa-876d4afab952", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Analysis.Node", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Analysis\\Node.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0d38b0e7-80cc-42e6-89b6-c415a3411ada", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Analysis.AnalysisGrid", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Analysis\\AnalysisGrid.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9cbd74a7-56a1-405e-bef8-f28e080cfbcc", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Climate.WeatherFile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Climate\\WeatherFile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1f836fab-6996-4463-a3de-b0bf3fe919d6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Climate.Time", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Climate\\Time.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8bc2bac4-4f3e-47b2-98ac-007a12439dc4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Climate.Sun", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Climate\\Sun.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e0378234-5f10-4001-9911-1b799460f58a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Climate.SpaceTime", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Climate\\SpaceTime.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9767df81-90e5-465d-847c-9094009c85f3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Climate.Location", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Climate\\Location.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e71cbd8d-c38e-4f4b-aa80-1c852a8fbcc6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Configuration.OpeningOption", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Configuration\\OpeningOption.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d038ecab-b72c-497a-a23c-78efd42d5775", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Elements.Zone", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Elements\\Zone.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "fcd1aade-94b8-494e-aacc-aa800c0609f7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Elements.Space", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Elements\\Space.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "edb552a2-36e1-4ce8-843a-30187da25823", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Elements.Panel", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Elements\\Panel.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "331da62f-59d0-43e1-af0c-6bf0412ebc19", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Elements.Opening", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Elements\\Opening.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "987ab123-f094-458e-9fbd-3c79ed0cccbe", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Elements.Mesh", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Elements\\Mesh.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9f78547e-6ec0-4cec-8998-d5918dae83d9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Elements.SpaceType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Elements\\Enums\\SpaceType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6f2cb141-925b-4edb-a47d-f933107126b2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Elements.PanelType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Elements\\Enums\\PanelType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "5cf4f229-1f3a-4e53-ad44-d4003da866c4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Elements.OpeningType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Elements\\Enums\\OpeningType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3ff663ab-8184-4822-8f55-79558a6639a0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Elements.BuildingType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Elements\\Enums\\BuildingType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d746d9a8-2649-475f-aa7f-2eaa80ab079f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Elements.Edge", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Elements\\Edge.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a1ff72b5-c09f-4ebf-8ea2-c30a75ebc47b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Elements.Building", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Elements\\Building.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1b3c4335-7ddb-4d1c-95ce-b9b091421475", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Elements.BoundaryZone", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Elements\\BoundaryZone.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f939a678-989a-40b8-b12d-a5eae7fd3022", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Fragments.SpaceContextFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Fragments\\SpaceContextFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c4c2e1b0-b58c-424b-befc-77c65816d261", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Fragments.SpaceAnalyticalFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Fragments\\SpaceAnalyticalFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a8614fd6-b734-404c-9ca7-c31d8b6f4fc3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Fragments.RadiationFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Fragments\\RadiationFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1ce88ea4-03dc-45dc-a198-6afdeb7281d6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Fragments.PanelContextFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Fragments\\PanelContextFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f6baab50-ad62-454e-880d-d81dc7135068", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Fragments.PanelAnalyticalFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Fragments\\PanelAnalyticalFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "33808221-4b33-47b2-b268-4641d0a0b651", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Fragments.OriginContextFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Fragments\\OriginContextFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d7b5c829-ab79-4aab-b79f-342d512716d7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Fragments.LoadFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Fragments\\LoadFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c782d949-bbbf-4eb5-b1eb-b95c96eb60ce", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Fragments.LightTransmittanceFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Fragments\\LightTransmittanceFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "be1ce1b6-7c63-4b71-b6ce-3732e3164c36", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Fragments.LightReflectanceFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Fragments\\LightReflectanceFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2a9db929-c01d-4ca9-9f6a-c714e42abfa9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Fragments.EnvironmentConstructionFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Fragments\\EnvironmentConstructionFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "41492db7-e326-4b48-80ed-203161a0d2c2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Fragments.SizingMethod", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Fragments\\Enums\\SizingMethod.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d6f9f6ec-21af-4058-add5-7536b91a7724", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Fragments.CoefficientFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Fragments\\CoefficientFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f9d20644-fda2-43eb-a04b-ad875fa582b2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Fragments.BuildingResultFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Fragments\\BuildingResultFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e1a2a255-1178-490a-b0a2-58022aeaf262", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Fragments.BuildingContextFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Fragments\\BuildingContextFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "13848f80-0cd8-43db-99a8-b641609ee94e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Fragments.BuildingAnalyticalFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Fragments\\BuildingAnalyticalFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "031df133-3cde-441d-b24b-809b6d75b5d5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Fragments.AnalyticalConstruction", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Fragments\\AnalyticalConstruction.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e61a6c23-27e7-4365-a0fc-3c6c226d75c2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.MaterialFragments.SolidMaterial", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\MaterialFragments\\SolidMaterial.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "caf5ad01-db00-45c0-ba41-297a7f9af5a3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.MaterialFragments.GasMaterial", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\MaterialFragments\\GasMaterial.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "60521a1d-defa-4826-b6ec-33d752c71824", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.MaterialFragments.Roughness", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\MaterialFragments\\Enums\\Roughness.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c2bcb0c4-2bab-4ec1-81c4-4483cb524465", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.MaterialFragments.Gas", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\MaterialFragments\\Enums\\Gas.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c5cf4472-f95a-4edc-b7b1-9b8acd23d070", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.MaterialFragments.Function", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\MaterialFragments\\Enums\\Function.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2573a041-61f9-4f23-944b-94cf476e387b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.Illuminance.Lux", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\Illuminance\\Lux.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3fe8b5c3-c273-4315-bab7-a3ce21fe1514", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.Mesh.MeshResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\Mesh\\MeshResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "60624e1d-8e73-4671-bc88-c697a261c6c9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.Mesh.MeshElementResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\Mesh\\MeshElementResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2042fb35-a0ae-4abf-a6c7-5e135de43375", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.SimulationResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\SimulationResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6bfe41f1-eb5e-403c-9d67-3738dee111fb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.WindSpeedResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\WindSpeedResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7d7bece8-47d0-4ea3-9595-d09447525a2e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.TimeIndexResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\TimeIndexResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4c8af7f3-0206-464d-8fec-e80ae758ce9d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.WetBulbTemperatureResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\WetBulbTemperatureResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1f5d61fd-5190-44b2-b1f9-2b787df4e93f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.UniversalThermalClimateIndexResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\UniversalThermalClimateIndexResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "da3fd92c-83ae-4ab2-b8b2-03ebc8d03985", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.SurfaceTemperatureResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\SurfaceTemperatureResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7d5a8f2f-bb65-4c70-b49f-34980c43f896", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.SkyTemperatureResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\SkyTemperatureResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "20ed8df5-cccb-4ac8-9a29-b391ac3b3ed7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.MeanRadiantTemperatureResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\MeanRadiantTemperatureResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "07f02b7d-9c55-4557-8bde-190695886bbf", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.DryBulbTemperatureResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\DryBulbTemperatureResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a691133a-5d36-45ab-a659-495582804975", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.DewPointTemperatureResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\DewPointTemperatureResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "35abb8eb-4636-4f31-b213-eaef4566d33b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.EnthalpyResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\EnthalpyResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c63f9031-d42c-4d32-9527-d034fde99153", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.RelativeHumidityResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\RelativeHumidityResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ab92920a-2418-471f-b181-66e19a7f59fb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.HumidityRatioResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\HumidityRatioResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "cb6b72c9-124e-47c8-97be-cdccc4c383e4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.AtmosphericPressureResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\AtmosphericPressureResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e8b8cb99-f2d4-4117-b5dd-3f1be5298e1f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.IlluminanceResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\IlluminanceResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "70f15d30-5ed2-4d16-8ef8-ffe48d3a15b2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.PowerResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\PowerResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "25a6c31b-b07c-4e3f-80ec-9037e96f4ef0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.InsolationResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\InsolationResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "828e92f1-3572-4977-bfd5-691f7df53df2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.GlobalHorizontalRadiationResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\GlobalHorizontalRadiationResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "02a10b74-bfc3-4889-acc2-8fe31678174e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.DirectNormalRadiationResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\DirectNormalRadiationResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "84dbbba9-683c-4549-9959-072044300c7a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.DiffuseHorizontalRadiationResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\DiffuseHorizontalRadiationResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "115f2d31-4bb5-4d7e-805c-368ce9e1b9b0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.DateTimeIndex", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\DateTimeIndex.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "13bc8a2c-ad54-46c5-aef3-edbf6b6d33ad", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.WindDirectionResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\WindDirectionResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a0fa44ad-c563-4a70-94cf-f2837ee5b48b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.ProfileResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\ProfileResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f94d1a06-8717-4aa6-afb3-9a9459b5aa4d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.SimulationResultType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\Enums\\SimulationResultType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "549bce62-9d22-4930-bb4c-f3fd8048872e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.ResultType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\Enums\\ResultType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c7287645-f522-424d-a977-b6c01c1012f8", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.ProfileResultUnit", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\Enums\\ProfileResultUnit.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "269b0488-6050-4aa5-8aa3-2694c84878f8", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.ProfileResultType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\Enums\\ProfileResultType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2bb19019-08e4-4f1f-8a9b-819366772a94", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.Ventilation", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Ventilation.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0a0e6386-7be0-4c8e-a596-ba6991c6fe39", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.Thermostat", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Thermostat.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1d8e9c54-6493-4a36-a86c-c3aabf7fbf9c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.Profile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Profile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3afd1c5d-5958-4267-ac37-f6cd04340f52", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.Pollutant", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Pollutant.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6e87900a-d68a-4c7a-ac90-5714bdc5636c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.Plumbing", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Plumbing.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "224877b1-a364-4042-86e7-821a60a39cc8", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.Plug", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Plug.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "89375b4a-7825-42cf-81e8-600558ed8d97", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.People", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\People.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "123418b3-2a7b-49a9-9352-9e580babc66a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.Lighting", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Lighting.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9bde2443-fb72-40a0-97bc-edba29623293", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.Infiltration", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Infiltration.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "29cc968e-4afd-4850-97d5-afab84ab4dce", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.FireProtection", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\FireProtection.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ee56fd38-2e89-44c8-9887-e0cc814dcf05", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.Exhaust", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Exhaust.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "698a2fd4-6c07-4cc4-804d-f93095098887", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.Equipment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Equipment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "deb85721-be0e-48f0-85aa-d758b75962a7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.SprinklerSystemType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Enums\\SprinklerSystemType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "470996ab-1197-4845-b415-702bf1804dd7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.SimulationDayType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Enums\\SimulationDayType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2998fa57-8b6b-45b8-a171-8304fa78c6e7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.ProfileType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Enums\\ProfileType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e7906916-988c-4c6a-9f57-fdd22e09d536", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.ProfileDay", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Enums\\ProfileDay.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b506e977-f354-4ffa-a43d-dfda76be5477", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.ProfileCategory", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Enums\\ProfileCategory.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e2b3f6e3-5b9c-4520-9f44-d7160875ee01", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.HazardType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Enums\\HazardType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b9392089-061a-4bfb-aa7e-b47e33400f63", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.EmitterType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Enums\\EmitterType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "80118bcb-6d48-4dd5-a7a4-05c846d2153d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.Acoustics", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Acoustics.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "478f9677-5e04-4f72-a6fe-6b850f01acfc", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Constructions.Layer", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Constructions\\Layer.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6a3b93f2-3621-4b00-b285-c90f5c0942ec", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Constructions.Construction", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Constructions\\Construction.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d0a23c36-cbff-4e3c-a3d5-8e9e167dc7e4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Elements.Offset", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Elements\\Enums\\Offset.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3addce07-308b-4635-8fe3-ad87d618eb3b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Elements.Window", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Elements\\Window.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "dba08f17-17f0-4ae3-9881-d675173b6697", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Elements.Wall", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Elements\\Wall.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6a9f0775-39f7-4580-9b3f-13a005da3397", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Elements.Void", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Elements\\Void.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "03c33a92-01a1-45de-8ab9-95cf155f72fb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Elements.SolidBulk", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Elements\\SolidBulk.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e650c8d2-ce4b-4100-8cc4-dee4c0763cf4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Elements.Roof", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Elements\\Roof.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c985912c-92b7-472b-b535-08988b66b2ec", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Elements.Pile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Elements\\Pile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8b37c889-d108-4e07-b089-b38690088419", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Elements.Floor", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Elements\\Floor.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b4833dd0-a653-4d85-81dc-59f6ab0e2054", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Elements.ExplicitBulk", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Elements\\ExplicitBulk.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "12c9db96-e5ee-49c4-8320-b9bcc7ad91a6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Elements.Door", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Elements\\Door.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0cd6cdc7-2523-4e90-9eda-6a7fb5aea5e5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Elements.Column", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Elements\\Column.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "118945f1-9918-4c65-9eb5-2d31dfecdb8b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Elements.Cable", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Elements\\Cable.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "20ef603c-2ecd-4b8a-aefd-f4e6d9571cb6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Elements.Bracing", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Elements\\Bracing.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "02a54db7-aa96-462d-8e93-9db3b93cd96d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Elements.Beam", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Elements\\Beam.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7610031d-2c5f-4766-9da0-5c4a5a0726f1", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\FramingProperties\\ConstantFramingProperty.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ec07123a-288e-4935-a6b2-f97ce0a77597", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Materials.VolumetricMaterialTakeoff", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Materials\\VolumetricMaterialTakeoff.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c4cbb837-9295-400a-8f11-a8086b72ad2a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Materials.MaterialComposition", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Materials\\MaterialComposition.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e7e1a0ec-4080-442f-aa2c-5b0d7f280c7f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Materials.Material", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Materials\\Material.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "85e0ea2e-334e-4225-b235-dc35ed675b5d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Reinforcement.Stirrup", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Reinforcement\\Stirrup.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0b41155c-937d-4cef-9b3d-516287dac7f2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Reinforcement.ReinforcementFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Reinforcement\\ReinforcementFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1d8d502b-990a-466e-a8c8-537b5b6f8942", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Reinforcement.PrimaryReinforcingBar", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Reinforcement\\PrimaryReinforcingBar.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4c1052a0-929e-4437-ac64-814938174122", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.BHoMAnalytics.UsageEntry", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoMAnalytics_Toolkit\\blob/main/BHoMAnalytics_oM\\UsageEntry.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4b091d55-9d62-41be-9662-cda3c39778a0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.BHoMAnalytics.WebUsageEntry", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoMAnalytics_Toolkit\\blob/main/BHoMAnalytics_oM\\WebUsageEntry.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2bf21b25-9a3d-4b97-aa7e-e9a7398e936f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.BHoMAnalytics.ToolkitSettings", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoMAnalytics_Toolkit\\blob/main/BHoMAnalytics_oM\\ToolkitSettings.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7eb77e45-09d0-4063-8940-9530519ef9be", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.BHoMAnalytics.ItemType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoMAnalytics_Toolkit\\blob/main/BHoMAnalytics_oM\\Enums\\ItemType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d4433c0f-dfd8-4866-ad56-8bf4d69ebc01", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.Layouts.PerimeterLayout", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\Layouts\\PerimeterLayout.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0a666e92-fd46-4744-8447-1855f34d54d0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.Layouts.OffsetCurveLayout", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\Layouts\\OffsetCurveLayout.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "48a71db7-f1a2-490d-a4f2-7bf6d5fa4b33", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.Layouts.MultiLinearLayout", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\Layouts\\MultiLinearLayout.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b7491969-a639-452e-8ce7-e4fede4309b0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.Layouts.LinearLayout", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\Layouts\\LinearLayout.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "164fe09c-5018-4b38-b86c-d583a27caaf0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.Layouts.ExplicitLayout", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\Layouts\\ExplicitLayout.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0bc8cfde-32b5-4caf-8856-3a9959b3549a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.Layouts.ExplicitCurveLayout", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\Layouts\\ExplicitCurveLayout.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6969c904-2f3a-405f-92e4-faa61112f9eb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.Layouts.ReferencePoint", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\Layouts\\Enums\\ReferencePoint.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8d3ee7f0-e254-4be3-821f-f07ca4c5efd8", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.SettingOut.Level", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\SettingOut\\Level.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "bed69ca3-59d8-45c2-8801-ac294ae7ae89", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.SettingOut.Grid", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\SettingOut\\Grid.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f8822851-f717-4e51-91cb-10148ac47339", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.ZSectionProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\ZSectionProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "79c22a3a-e09d-4b1a-8fc7-dc184b594b51", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.TubeProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\TubeProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "78b9ecea-7f8f-4f4f-be9c-7b78b3a4dc68", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.TSectionProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\TSectionProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "feffe2e2-7205-444b-94ad-ba875b962b9f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.TaperFlangeISectionProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\TaperFlangeISectionProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6fc04268-9565-4e4b-87c4-78c4750b88e3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.TaperFlangeChannelProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\TaperFlangeChannelProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b0aa0515-b822-4a7f-a8e6-35296f952524", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.TaperedProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\TaperedProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3660c363-924b-4be0-83f6-5799dbe205f0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.RectangleProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\RectangleProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2df17594-68d7-421e-a617-7f75f4275146", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.KiteProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\KiteProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6a5f3cb6-9b2b-4340-b532-0c359452755d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.ISectionProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\ISectionProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "39d2d66d-4702-4408-8903-34e5e271f87d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.GeneralisedTSectionProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\GeneralisedTSectionProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "19dc8da8-f388-4471-b67b-fade54c4b98e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.GeneralisedFabricatedBoxProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\GeneralisedFabricatedBoxProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "213dbbc5-bef9-43d5-879b-29cc5dd3be9e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\FreeFormProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c91bb369-3e75-488b-b6c9-cf580fef55a0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.FabricatedISectionProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\FabricatedISectionProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0b106079-db87-4f11-b43a-6c0b26d8b84c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.FabricatedBoxProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\FabricatedBoxProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8b964703-5bde-4f93-abfb-963fcf887ed1", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.ShapeType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\Enums\\ShapeType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "15da74e4-fb94-4aeb-ac5c-6f0ec7e7d2bb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.CircleProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\CircleProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "bba81bea-17f1-408f-ad36-e60d889bb6df", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.ChannelProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\ChannelProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c9a010d1-0c3c-4ff5-b774-7b90904bb85c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.BoxProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\BoxProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "660417a6-452b-4083-af4b-74ad965f6b14", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.AngleProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\AngleProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e3998757-4c8e-4c4d-ab2a-0fd92263c67c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.Spine", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\Spine.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6ec86757-159d-4cce-8c5e-c36de86c263b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.RightUpperLeg", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\RightUpperLeg.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ad8e476a-4d48-4a2e-9172-677382499176", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.RightUpperArm", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\RightUpperArm.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "12782c93-1285-4480-a913-b322cd874ff1", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.RightThumb", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\RightThumb.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ae5464fd-9f86-4675-abff-f33836745bbf", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.RightShoulder", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\RightShoulder.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "15590d55-566f-4c47-823d-d82a8016468d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.RightLowerLeg", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\RightLowerLeg.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "296bea9b-003e-46b2-8187-dd86d95e82bb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.RightLowerArm", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\RightLowerArm.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1d416d6f-91d9-4382-885c-9f1726701c5e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.RightHip", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\RightHip.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8a3a618d-0bd0-4e46-9b9e-bfbc7fb3a091", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.RightHand", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\RightHand.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "23126d86-139b-4534-bbc1-fd60b9435734", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.RightFoot", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\RightFoot.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d59fe9b0-a778-44c4-a0cf-fa8af549eb79", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.PairOfEyes", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\PairOfEyes.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "65dedb01-9054-4dcf-a29d-9c5ba4a8f25a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.Neck", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\Neck.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "40c4c8ce-8228-4342-85b4-b741da93bb8c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.LeftUpperLeg", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\LeftUpperLeg.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "09a378bc-808f-4cba-936e-67ccba993935", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.LeftUpperArm", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\LeftUpperArm.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9509986e-fea0-46e8-8f62-59b21b878f20", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.LeftThumb", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\LeftThumb.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9ca29e23-24e6-48c5-aa37-cd5b58ac03d1", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.LeftShoulder", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\LeftShoulder.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e50fe4ad-5746-4de9-ba7c-1720d731b495", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.LeftLowerLeg", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\LeftLowerLeg.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "44421307-4670-4404-aafc-bf8f0e93b3e4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.LeftLowerArm", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\LeftLowerArm.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1f2e9eb3-edce-49ea-a77d-86661bccdb7d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.LeftHip", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\LeftHip.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c4fe0197-9e4e-4552-b5b8-eb932c99d178", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.LeftHand", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\LeftHand.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a6f78d68-e423-4a0b-88d3-995046825e3b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.LeftFoot", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\LeftFoot.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c2e3a47e-99bb-404c-930a-8f450cd74ee1", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.Head", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\Head.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "23567e71-cc0c-4933-b811-000fbff250d3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.Eye", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\Eye.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d9ac7684-813c-47dd-a2ca-eebfdd9167f5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.ViewQuality.Spectator", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\ViewQuality\\Spectator.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2cec9a6e-b1fb-4e2b-ae19-c52cb31330eb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.ViewQuality.ViewQualityResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\ViewQuality\\ViewQualityResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1f887ee5-453f-47ae-bec4-8b39d39cb8f2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.ViewQuality.Evalue", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\ViewQuality\\Evalue.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "47b1744f-0e80-4bad-8ea1-040c1a0523ca", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.ViewQuality.Cvalue", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\ViewQuality\\Cvalue.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "de7e79bc-8ada-43ba-971f-d659c557b96d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.ViewQuality.Avalue", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\ViewQuality\\Avalue.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a3ccc735-04f8-4762-9116-ba15a33f0943", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.ViewQuality.EyePositionParameters", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\ViewQuality\\EyePositionParameters.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8a3e06bb-cf0e-493f-8e87-9f68fbd7f2e8", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.ViewQuality.EvalueViewEnum", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\ViewQuality\\Enums\\EvalueViewEnum.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8e117f23-4b48-4a0a-9048-42b464a2f13e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.ViewQuality.EvalueSettings", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\ViewQuality\\EvalueSettings.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3f87e5b0-835d-4f93-ad1d-a6a369ea633f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.ViewQuality.CvalueSettings", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\ViewQuality\\CvalueSettings.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3cebd549-666e-48c6-abfe-3b958e86f6e8", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.ViewQuality.CvalueFocalMethodEnum", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\ViewQuality\\Enums\\CvalueFocalMethodEnum.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "170b01c0-6a68-44ea-9306-f53848521e00", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.ViewQuality.AvalueSettings", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\ViewQuality\\AvalueSettings.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8bf74592-42e3-4119-8cd8-e6256f5ffa78", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.ViewQuality.Audience", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\ViewQuality\\Audience.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "eb3d7b14-9b40-4ad0-9f6a-ff5035afd816", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.Skeleton", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\Skeleton.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3fd6cded-bd91-466f-bb7f-e8bd5efeaac1", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.Human", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\Human.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "073da569-1d12-4818-a64a-5d0375e972b7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.JointName", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\Enums\\JointName.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b6ac3ebc-96d5-44d8-9485-d625849002d1", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.HandStateName", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\Enums\\HandStateName.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b88aa4ec-4db8-479c-bc5d-c84a668a76fa", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.Employee", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\Employee.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "dc17232a-4d51-45a9-8d2d-5db2d75ca6c7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Architecture.BuildersWork.Opening", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Architecture_oM\\BuildersWork\\Opening.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "83711861-5d9c-46a2-9aba-50a51e9eda01", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Architecture.Elements.Room", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Architecture_oM\\Elements\\Room.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2b2f8a19-69a3-4cda-b997-02b0f0f7535c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Architecture.Elements.Occupancy", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Architecture_oM\\Elements\\Occupancy.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "fefb328e-8466-4df8-8489-995de29ecdb2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Architecture.Elements.CeilingTile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Architecture_oM\\Elements\\CeilingTile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b7c45af5-e282-4f6e-bef8-bc4af7d2e297", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Architecture.Elements.Ceiling", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Architecture_oM\\Elements\\Ceiling.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a45f0887-52a0-49d2-bcc8-614287e8f69a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Architecture.Theatron.VomitoryParameters", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Architecture_oM\\Theatron\\VomitoryParameters.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "44c72f93-5ee7-4da2-97f9-a43ed4a79e9d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Architecture.Theatron.SuperRiserParameters", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Architecture_oM\\Theatron\\SuperRiserParameters.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "007096da-072a-4982-a902-44b6833f4377", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Architecture.Theatron.StadiaParameters", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Architecture_oM\\Theatron\\StadiaParameters.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "341e74ca-71be-47ad-9bb4-d48c7407d314", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Architecture.Theatron.ProfileParameters", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Architecture_oM\\Theatron\\ProfileParameters.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ff827fa2-ee14-4100-8616-addfbe48b69c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Architecture.Theatron.StadiaType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Architecture_oM\\Theatron\\Enums\\StadiaType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "db44ad09-fe4d-44cc-9b93-070fe7402c94", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Architecture.Theatron.SeatingBlockType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Architecture_oM\\Theatron\\Enums\\SeatingBlockType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f4777b4c-9f1d-4f9f-adf9-7ae77322e808", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Architecture.Theatron.EvalueViewType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Architecture_oM\\Theatron\\Enums\\EvalueViewType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "87924157-4314-4545-a508-daf57d1cbd84", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Architecture.Theatron.BayType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Architecture_oM\\Theatron\\Enums\\BayType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c0edb6e0-537e-428c-9426-d0887c3f3693", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Architecture.Theatron.TierProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Architecture_oM\\Theatron\\TierProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f9060e20-d501-4b3c-b9b3-dbd25b9347b6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Architecture.Theatron.Tier", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Architecture_oM\\Theatron\\Tier.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ac32bf0a-fa95-4593-ac4e-d66b49924b67", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Architecture.Theatron.TheatronPlan", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Architecture_oM\\Theatron\\TheatronPlan.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "17338757-1d03-4463-9805-48c51d4978d8", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Architecture.Theatron.TheatronGeometry", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Architecture_oM\\Theatron\\TheatronGeometry.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f5ec2a98-6bfd-4bc7-831f-d7a55d12baa4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Architecture.Theatron.TheatronFullProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Architecture_oM\\Theatron\\TheatronFullProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a1275c92-d46a-4f94-8c16-4390bea33b31", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Architecture.Theatron.SeatingBlock", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Architecture_oM\\Theatron\\SeatingBlock.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "bfc4417e-4567-4eda-8665-13209d3334c4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Architecture.Theatron.ProfileOrigin", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Architecture_oM\\Theatron\\ProfileOrigin.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8cfc4d53-da25-49e4-a4ed-8a215b1c9f11", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Architecture.Theatron.ActivityArea", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Architecture_oM\\Theatron\\ActivityArea.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c1be7711-828c-4a99-960a-d600f74cc6c5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.Colours.GradientOptions", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\Colours\\GradientOptions.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "75797c0c-7ad3-47f9-ab96-5fd0213a51cd", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.Components.Links", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\Components\\Links.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ea61b62d-7c96-40eb-adb0-762a99672066", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.Components.Boxes", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\Components\\Boxes.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "97ad64f6-e24e-45d3-9940-5b9306e2c305", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.Components.BasicArrowMarker", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\Components\\BasicArrowMarker.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a17a63fe-5ad7-4f9b-909b-8512a16ebdb6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.Enums.GradientCenteringOptions", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\Enums\\Enums\\GradientCenteringOptions.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ca7f8bc3-b447-4783-8b1f-9cd67c8d563f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.Fragments.RelationRepresentation", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\Fragments\\RelationRepresentation.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c06b99f4-4f9b-4fad-9579-2efd42d1ce56", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.Fragments.GroupRepresentation", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\Fragments\\GroupRepresentation.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "bd5e1687-6433-410c-a40f-9dd9a00f2350", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.Fragments.GraphRepresentation", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\Fragments\\GraphRepresentation.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "97748081-0223-411d-9bc4-dc3226dc7f6f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.Fragments.EntityRepresentation", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\Fragments\\EntityRepresentation.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7024d91b-5aa8-4432-9c33-e90f53fbdea6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.Misc.Padding", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\Misc\\Padding.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4a8e441c-b93f-42a8-bccd-bc244477dfab", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.Scales.ScaleOrdinal", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\Scales\\ScaleOrdinal.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a5b2c15d-d92d-4bec-a8a8-295df67c9005", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.Scales.ScaleLinear", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\Scales\\ScaleLinear.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "65e0bb89-4495-4560-bed5-cf25eb0ceba2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.Views.ViewConfig", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\Views\\ViewConfig.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "78ed887d-809f-4698-8039-d9a617c796f4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.Views.DependencyChart", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\Views\\DependencyChart.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "17897f23-6bb6-4e13-bb2f-43c32d8fd73a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.SVGStyle", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\SVGStyle.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "85be337d-0c1c-4e75-b7f9-99f741fcc5df", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.SVGObject", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\SVGObject.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c2eda16e-33cd-4884-b8c1-b359a0926a69", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.SVGDocument", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\SVGDocument.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "65a8cd88-60fe-4d71-aa0c-d7b148c9dbe9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.Texture", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\Texture.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7044f760-7afd-46bc-a236-4803eef83385", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.RepresentationOptions", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\RepresentationOptions.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "78ea4808-0297-4827-8442-3f2b4bdbdf93", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.RenderText", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\RenderText.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "41caaca6-a23c-420f-afdc-9586e1745e0e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.RenderPoint", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\RenderPoint.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "89b69974-7c11-46d5-a5dc-4ca69717a0b3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.RenderMeshOptions", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\RenderMeshOptions.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f6b2f3e6-5cb7-4dcf-ba2b-7f62be862a0e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.RenderMesh", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\RenderMesh.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7a690bad-5317-4e2e-950e-d4b00b2751a0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.RenderGeometry", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\RenderGeometry.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6dea1d49-a6b3-4114-b316-3c24fa610d9c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.RenderCurve", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\RenderCurve.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3f0ac3ab-c9ce-4e4a-bd09-211ef1818be4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.SteppedGradient", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\SteppedGradient.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f97fc980-3a0b-4829-b49a-cbfe40c87191", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.Gradient", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\Gradient.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "fde7908f-bca7-4354-85f2-cb1ec1e3fc15", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.ColourFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\ColourFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e220cf40-6081-40f1-bf32-d6fc355a29e1", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Acoustic.SoundLevel", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Acoustic_oM\\SoundLevel.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c66935c4-582e-4313-a639-51df7a01e9cc", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Acoustic.SnRatio", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Acoustic_oM\\SnRatio.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a1d1c538-d173-4354-b7fe-2d4b0144ba74", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Acoustic.RT60", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Acoustic_oM\\RT60.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3dfe2ce5-3056-4171-ab33-874704d88c3d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Acoustic.Rasti", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Acoustic_oM\\Rasti.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c8323a12-dbdc-4460-811f-1bece3f56c97", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Acoustic.Frequency", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Acoustic_oM\\Enums\\Frequency.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c1ffc432-718a-42fb-a40c-64aea13e2e5c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Acoustic.Speaker", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Acoustic_oM\\Speaker.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8b6571e0-2fcc-400a-92e1-8ff1175e85f4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Acoustic.Room", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Acoustic_oM\\Room.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b5feccc7-5450-44e9-8c19-2408c22cb775", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Acoustic.Receiver", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Acoustic_oM\\Receiver.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7668efd7-99db-4cea-85db-110ab01fb93f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Acoustic.Ray", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Acoustic_oM\\Ray.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8ca6f35a-263b-4eea-9b3f-689acef56d71", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Acoustic.Panel", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Acoustic_oM\\Panel.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7b8ad5b2-5191-4892-81af-0c93f3e284db", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Test.Results.TestResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Test_oM\\Results\\TestResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "cd9afb5d-0c96-472d-b8c1-7736f628016e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Test.Results.InputOutputDifference", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Test_oM\\Results\\InputOutputDifference.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8095ac67-b344-42fa-938c-a6d372695112", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Test.Results.InputOutputComparisonSummary", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Test_oM\\Results\\InputOutputComparisonSummary.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2840dabf-43b8-4c2d-b3fd-e8b9c1a58f1b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Test.Results.InputOutputComparisonDiffing", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Test_oM\\Results\\InputOutputComparisonDiffing.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a6265341-88bf-4331-8595-fe685344cf42", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Test.Results.InputOutputComparison", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Test_oM\\Results\\InputOutputComparison.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "02b63fca-482a-4c66-b833-c41b8485cdb1", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Test.Results.EventMessage", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Test_oM\\Results\\EventMessage.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "91201968-2121-466e-9e74-53f9b299426c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Test.Results.InputOutputComparisonType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Test_oM\\Results\\Enums\\InputOutputComparisonType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "924ae489-23da-4e4f-b45b-eb237c471e40", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Test.Results.InputOutputComparisonDiffingType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Test_oM\\Results\\Enums\\InputOutputComparisonDiffingType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f6cf5323-f3e3-47e3-9b51-1c2a6052fb6a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Test.UnitTests.UnitTest", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Test_oM\\UnitTests\\UnitTest.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "36767490-a409-43b4-92e8-214402ba5e05", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Test.UnitTests.TestData", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Test_oM\\UnitTests\\TestData.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c5543a77-b48d-4c9c-b5fb-8d03ef95d62f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Test.TestStatus", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Test_oM\\Enums\\TestStatus.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "be6d037b-254e-4be7-bb5e-dce22aeec6d7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Versioning.VersioningEvent", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Versioning_oM\\VersioningEvent.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "279d0c5e-2287-4ce0-b0b2-2904f27777f5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.UI.ParamInfo", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_UI\\blob/main/UI_oM\\ParamInfo.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "839255bb-ab9b-4850-a135-be73b59f0f5c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.UI.ParamKind", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_UI\\blob/main/UI_oM\\Enums\\ParamKind.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "98df71a3-5120-4778-9c66-f334b32ac845", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.UI.SearchItem", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_UI\\blob/main/UI_oM\\SearchItem.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "5d995a36-bb4e-4c36-837a-03d72302ec9d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.UI.SearchConfig", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_UI\\blob/main/UI_oM\\SearchConfig.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "feef2144-6404-41da-bb41-f2663437f9fe", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.UI.CustomItem", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_UI\\blob/main/UI_oM\\CustomItem.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "332a4e56-2aa5-4abd-a1f1-60482300f3f7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.UI.ParamOldIndexFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_UI\\blob/main/UI_oM\\ParamOldIndexFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "093f70c5-bf4d-4cc1-8aa6-4e38e2a4519f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.UI.UsageLogEntry", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_UI\\blob/main/UI_oM\\UsageLogEntry.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "75433645-a0f4-4ada-86d3-bc2f048f614a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.UI.ProjectIDEvent", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_UI\\blob/main/UI_oM\\ProjectIDEvent.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "228ad2aa-a402-4afe-bae1-0212c91e613a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.UI.CallerUpdateCause", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_UI\\blob/main/UI_oM\\Enums\\CallerUpdateCause.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8f6ff9b0-d574-4696-8ec3-81ba7b606da5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.UI.CallerUpdate", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_UI\\blob/main/UI_oM\\CallerUpdate.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "bb4bfc08-21bc-470d-967b-684be99a7eb9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.UI.ComponentUpdate", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_UI\\blob/main/UI_oM\\ComponentUpdate.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "47dfd079-8686-442f-b3fa-0fec2786c26e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.UI.ParamAdded", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_UI\\blob/main/UI_oM\\ParamAdded.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d4bfea55-b296-4e5b-a30e-d24afbe97b5c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.UI.ParamRemoved", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_UI\\blob/main/UI_oM\\ParamRemoved.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "474e69f3-78b7-4f1b-bbc9-0b4bab8e93e5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.UI.ParamMoved", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_UI\\blob/main/UI_oM\\ParamMoved.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6904c7f1-3fae-4426-98f8-9ebd0c38457b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.UI.ParamUpdated", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_UI\\blob/main/UI_oM\\ParamUpdated.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0cc223bb-accc-4e49-ba93-b080ed9a6165", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.UI.InputsUpdate", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_UI\\blob/main/UI_oM\\InputsUpdate.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e3de24f6-e68b-4d44-befa-66d7f35bccc9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.UI.OutputsUpdate", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_UI\\blob/main/UI_oM\\OutputsUpdate.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "5c525cf4-dad4-448e-ab5a-5264db3b71bc", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.UI.TriggerLogUsageArgs", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_UI\\blob/main/UI_oM\\TriggerLogUsageArgs.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e36a7a84-1701-4a5e-8618-6562d9ca9850", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.UI.PreviousNamesFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_UI\\blob/main/UI_oM\\PreviousNamesFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "42e9e272-321f-4e11-acf0-a90c2a30b296", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.UI.ComponentRequest", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_UI\\blob/main/UI_oM\\ComponentRequest.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "efe95c89-12b4-4f53-9247-0b01ed41c463", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.CoordinateSystem.Cartesian", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\CoordinateSystem\\Cartesian.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b303f797-f15b-4d37-9047-d98de3197222", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.Vector", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\Vector.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a14a73a7-85bd-478d-8913-a669c48b767a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.Point", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\Point.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "520a0b7b-c627-4979-89e1-996b8c3dc593", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.Plane", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\Plane.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "37ca539b-71b5-4deb-a1ab-d03e01fe4cc2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.Basis", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\Basis.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "35887dd5-fc5e-45b1-aa57-57be8da64d01", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.PolySurface", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\PolySurface.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "62ecec45-ae05-4413-b6af-c876d247ef68", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.PlanarSurface", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\PlanarSurface.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "88c0653b-a3c3-4b28-b437-7c0260fc3ea1", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.Pipe", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\Pipe.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a68ed445-0ec8-4935-8864-bdf7344170db", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.NurbsSurface", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\NurbsSurface.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ce503186-94f3-441e-a13e-18cfc7d58744", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.Loft", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\Loft.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8bfc4e14-1e2a-4610-ae20-e71398046d10", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.Extrusion", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\Extrusion.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "af28b417-23e7-4673-b1b0-debd8c401165", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.Torus", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\Torus.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3e851860-6dd0-48b1-9c05-96d51c8db16f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.Sphere", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\Sphere.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3b09ef1f-8ac0-49a6-9bce-1d65dcb5c789", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.Cylinder", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\Cylinder.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "da96704b-1a32-4bff-909c-b675d3ee690b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.Cuboid", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\Cuboid.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ea5f9f05-922c-4e23-b24b-b52d19efbbd1", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.Cone", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\Cone.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "fbfa75b8-c2bd-4747-ab3f-0ec4bbd45976", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.BoundaryRepresentation", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\BoundaryRepresentation.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f8ba4cd0-314c-4900-a1dc-7b59c3d36880", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.TransformMatrix", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\TransformMatrix.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4a080e7a-eda9-40ed-9c5e-0f14cb7a26d1", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.SurfaceTrim", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\SurfaceTrim.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ace591b3-86eb-4df4-96d9-59e1d2567ac6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.Quaternion", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\Quaternion.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9512bc35-09da-4b37-980c-56022e3f8ef8", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.CompositeGeometry", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\CompositeGeometry.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "fc16f24d-f928-4eb5-b318-b77806c85fe4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.BoundingBox", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\BoundingBox.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a539ad26-8843-475d-b347-022d39ec563b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.Mesh3D", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\Mesh3D.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d1c56cf8-6014-4ee0-8a09-e93ce9a7fd22", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.Mesh", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\Mesh.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "122c5cee-4eda-4fca-8283-0f65489b04a2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.Face", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\Face.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8859793e-6813-4213-be57-1846a7d2e1fc", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.CellRelation", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\CellRelation.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a59b257d-d296-44c9-9872-74be19c64e3a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.IntegrationSlice", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\IntegrationSlice.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "88fd92da-168b-486e-b7c8-5390043d58c8", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.Polyline", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\Polyline.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "648bd6bb-a07f-4276-b834-340893875bef", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.Polygon", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\Polygon.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6476ef6c-5ca1-41ef-8a7e-b636eacfc966", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.PolyCurve", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\PolyCurve.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4ee07984-ffac-4484-9648-67d79682af59", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.NurbsCurve", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\NurbsCurve.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "dc65d295-d703-410f-b463-da916daa028e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.Line", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\Line.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "37597ae7-f82b-4d5a-8551-775b840d75e9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.Ellipse", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\Ellipse.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f06ea7bc-7a85-46a6-a6c1-32d4926aa1bf", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.Circle", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\Circle.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b685a77e-c36b-41bb-a705-db99e321f76e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.BoundaryCurve", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\BoundaryCurve.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "be4673b2-657c-41db-85a7-7f544290ec13", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.Arc", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\Arc.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "007e5e38-051d-4ff8-8702-40d2cbe5b013", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Attributes.ToBeRemovedAttribute", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Attributes\\ToBeRemovedAttribute.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "53481583-a6e9-4017-9c6c-a5bafde9af4b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Attributes.TargetsAttribute", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Attributes\\TargetsAttribute.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "522a8d67-d798-4e39-911d-755694f4a872", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Attributes.RequiredAttribute", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Attributes\\RequiredAttribute.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c763b2b6-a346-4ec8-a74c-936e7b7c46bd", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Attributes.ReplacedAttribute", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Attributes\\ReplacedAttribute.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ec83196b-a308-46dc-a173-7630289769df", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Attributes.ReleasedAttribute", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Attributes\\ReleasedAttribute.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4d092af4-cd75-44e7-b81d-a3c5191abaeb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Attributes.PreviousVersionAttribute", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Attributes\\PreviousVersionAttribute.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3f12bddf-d833-4ae9-880e-12271072c670", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Attributes.PreviousInputNamesAttribute", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Attributes\\PreviousInputNamesAttribute.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0870506a-b8df-461a-953a-8040b2a93b7f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Attributes.OutputAttribute", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Attributes\\OutputAttribute.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e52a903d-3076-44a6-999b-902ce6c08901", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Attributes.NotImplementedAttribute", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Attributes\\NotImplementedAttribute.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "5bca3239-756e-4965-8c5c-873721c72491", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Attributes.NoAutoConstructorAttribute", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Attributes\\NoAutoConstructorAttribute.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "aecaa888-2153-41c7-a1cd-df05a0352385", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Attributes.MultiOutputAttribute", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Attributes\\MultiOutputAttribute.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2420dc32-67f4-48bd-8f14-965b4969ac65", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Attributes.InputFromProperty", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Attributes\\InputFromProperty.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3e9009e5-def4-4408-810e-7be73873fcc7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Attributes.InputAttribute", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Attributes\\InputAttribute.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "141e00a9-71b4-44a3-b8d6-1d80ba3f427b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Attributes.DisplayTextAttribute", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Attributes\\DisplayTextAttribute.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c3edf02c-3784-4d81-9d6a-b49832b1b5f8", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Attributes.DefaultValueWarningAttribute", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Attributes\\DefaultValueWarningAttribute.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b1e72f72-31c9-4ce3-aa86-af3aab9e5acb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Attributes.AssemblyUrlAttribute", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Attributes\\AssemblyUrlAttribute.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8c2dafed-bfe8-4228-b825-0e0c4c7b681e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Attributes.AbbreviationAttribute", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Attributes\\AbbreviationAttribute.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d1e16976-4a9d-4300-b04e-36f60fed8d43", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Debugging.Log", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Debugging\\Log.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "46081eb9-8458-4211-89bb-8525afde1645", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Debugging.EventType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Debugging\\Enums\\EventType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a1b8f71c-44ab-47f6-9587-40cd6e400b5b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Debugging.Event", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Debugging\\Event.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d2c7a54e-021b-4e73-9b3e-d2a292119a51", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Reflection.UnderlyingType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Reflection\\UnderlyingType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "5b40fd9e-dc8c-46f5-bb15-90e433f7604f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Output`10", "GenericArguments" : [{ "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }], "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Output`10.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ca4af18c-ecfe-4878-a219-23ddb2e61a64", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Output`9", "GenericArguments" : [{ "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }], "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Output`9.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "bd2d7b3a-37ef-4159-be36-360dca62bb86", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Output`8", "GenericArguments" : [{ "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }], "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Output`8.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "cfde6c6b-fe42-4888-bd1f-1dbcb3d7fbfa", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Output`7", "GenericArguments" : [{ "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }], "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Output`7.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b81b63c7-2f82-4163-955e-9daf570dedce", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Output`6", "GenericArguments" : [{ "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }], "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Output`6.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2fe34bd9-b3ca-47ba-b114-7e84bdb8bd39", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Output`5", "GenericArguments" : [{ "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }], "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Output`5.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "fbd99c67-94b3-4b22-912d-36488a186862", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Output`4", "GenericArguments" : [{ "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }], "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Output`4.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2c4a1e8a-2b8a-450d-b99d-b7050a042e20", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Output`3", "GenericArguments" : [{ "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }], "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Output`3.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9f52120b-f7a1-43ea-aec8-97c074cdaa7f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Output`2", "GenericArguments" : [{ "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }], "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Output`2.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d7333f2a-f5c9-4d66-8aa2-a90328db9282", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Output`1", "GenericArguments" : [{ "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }], "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Output`1.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a36d1189-9069-42a7-a782-3343b8570a8e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.NamedSignificantFigures", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\NamedSignificantFigures.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ea00e904-16d5-427d-9a62-e1c22d4e7ec7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.NamedNumericTolerance", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\NamedNumericTolerance.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "fa92a012-50c0-410a-92e8-070fe6469d7c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.HashFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\HashFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ec92c5d8-8361-48d3-a8ed-63582482bda4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.FragmentSet", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\FragmentSet.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "748c325f-ceaa-4efb-b33f-c0027f2a10d0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Enumeration", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Enumeration.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9691f114-09f4-4926-9d4d-9dcf43e82e19", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.CustomObject", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\CustomObject.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "10016021-d04c-425f-8833-b6b8f73e32c6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.ComparisonInclusion", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\ComparisonInclusion.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "5c8f3ad4-8487-43ed-9084-ea2feeb1fd28", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.ComparisonFunctions", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\ComparisonFunctions.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4abb5478-68bf-4078-b0e7-cf036edb7b84", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.ComparisonConfig", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\ComparisonConfig.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "66c10c81-38ef-4ed5-ba48-ca289007d159", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.BHoMObject", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\BHoMObject.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "35b94122-2894-4c25-a88d-069cfe2e1cc2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.BHoMGroup`1", "GenericArguments" : [{ "_t" : "System.Type", "Name" : "T", "Constraints" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.IBHoMObject", "_bhomVersion" : "6.0" }], "_bhomVersion" : "6.0" }], "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\BHoMGroup`1.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "125b025f-cb95-4737-81cd-28aeca767ff9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.BaseComparisonConfig", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\BaseComparisonConfig.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b60f32c5-e521-4db2-8203-9b89f4a2e753", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Collections.VennDiagram`1", "GenericArguments" : [{ "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }], "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Collections\\VennDiagram`1.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4b167356-841d-4e04-b4a0-67e938f9c0ee", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Collections.Tree`1", "GenericArguments" : [{ "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }], "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Collections\\Tree`1.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2fd6380e-766b-458e-bbb0-af6feef8252b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Collections.Table", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Collections\\Table.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "5b31424a-e763-421c-bff4-62c00dee92d5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Collections.PriorityQueue`1", "GenericArguments" : [{ "_t" : "System.Type", "Name" : "T", "Constraints" : [{ "_t" : "System.Type", "Name" : "System.Collections.IEnumerable, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089", "_bhomVersion" : "6.0" }], "_bhomVersion" : "6.0" }], "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Collections\\PriorityQueue`1.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "41bb1d82-94a4-4ec1-98c3-b2754efe5ff6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Collections.PointMatrix`1", "GenericArguments" : [{ "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }], "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Collections\\PointMatrix`1.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f96aa26f-43ad-4da0-b779-9ede290eb4bb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Collections.LocalData`1", "GenericArguments" : [{ "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }], "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Collections\\LocalData`1.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d21fcee4-d1ef-4064-a48d-b82526e5e735", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Collections.GraphNode`1", "GenericArguments" : [{ "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }], "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Collections\\GraphNode`1.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ef1157ef-663d-4f56-90ad-726ab903e2c3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Collections.GraphLink`1", "GenericArguments" : [{ "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }], "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Collections\\GraphLink`1.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a41b0d26-e436-407c-81fe-178a6ca663db", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Collections.Graph`1", "GenericArguments" : [{ "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }], "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Collections\\Graph`1.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "359a5137-84a6-4aae-a973-de78e29d8576", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Collections.DomainTree`1", "GenericArguments" : [{ "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }], "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Collections\\DomainTree`1.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e8e62f90-f101-40d9-a5e9-9bc793eb21be", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Collections.DomainBox", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Collections\\DomainBox.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4d1c264d-33da-4951-a365-2cb082c2b386", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Collections.Domain", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Collections\\Domain.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "02582264-df03-49b7-95d1-19c959ca1ff9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Collections.DiscretePoint", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Collections\\DiscretePoint.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "82d676d2-e562-4639-ae57-a85f738c2698", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Collections.DBSCANObject`1", "GenericArguments" : [{ "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }], "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Collections\\DBSCANObject`1.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "191f15e6-beb2-48c0-90fe-d9330bf512e4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Library.Source", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Library\\Source.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0fa87da8-29f2-40ea-8704-75ec26acc80e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Library.LibrarySettings", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Library\\LibrarySettings.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7e413c1a-f8d5-4176-b270-347f8f8bc5fb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Library.Dataset", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Library\\Dataset.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "19d8d953-afd5-4e30-8b94-32db9041461b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Library.Confidence", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Library\\Enums\\Confidence.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "19f3721a-dd0b-4d6f-9939-ccb3b11e0306", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Requests.SelectionRequest", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Requests\\SelectionRequest.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ee6fcbd9-55ad-4ffd-8c9a-c6a5d57e4bfd", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Requests.LogicalOrRequest", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Requests\\LogicalOrRequest.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "bf6abba7-99e8-4763-9c5b-ff0366fe4269", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Requests.LogicalNotRequest", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Requests\\LogicalNotRequest.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ec2524e2-2f70-4706-a81d-e5cf0745e5e7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Requests.LogicalAndRequest", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Requests\\LogicalAndRequest.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "5df569ad-7ba5-4814-9971-de20db3b4a2d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Requests.FilterRequest", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Requests\\FilterRequest.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d939a3ab-5644-4f70-9628-d28a2c7e8c3b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Requests.CustomRequest", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Requests\\CustomRequest.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8eb5ae22-7f18-4b03-89a6-62f8f3915ac2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Requests.BatchRequest", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Requests\\BatchRequest.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b170768c-9dac-4a77-9be9-deecd18b7ec2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.GraphLinkDirection", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Enums\\GraphLinkDirection.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d3483e1d-0647-4b7b-b8fc-ca16e2cc40f5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Adapter.Commands.SaveAs", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_Adapter\\blob/main/Adapter_oM\\Commands\\SaveAs.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "fb50577c-9206-46c6-9cf1-b9092dfb907e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Adapter.Commands.Save", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_Adapter\\blob/main/Adapter_oM\\Commands\\Save.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ffc86eaf-cd04-4b1c-8685-36aa6638e235", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Adapter.Commands.Open", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_Adapter\\blob/main/Adapter_oM\\Commands\\Open.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "eeac1f32-3fa2-43ad-af8f-e20723e0b8fb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Adapter.Commands.NewModel", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_Adapter\\blob/main/Adapter_oM\\Commands\\NewModel.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2ea66967-f33e-48bb-b950-6d9792733f84", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Adapter.Commands.Exit", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_Adapter\\blob/main/Adapter_oM\\Commands\\Exit.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8a3e5b62-e3f3-4d98-a0d2-0bb036c5a678", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Adapter.Commands.CustomCommand", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_Adapter\\blob/main/Adapter_oM\\Commands\\CustomCommand.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "831f6d96-11f9-499b-b315-3c106b5faee6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Adapter.Commands.Close", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_Adapter\\blob/main/Adapter_oM\\Commands\\Close.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e7a7eece-51a2-4974-99c5-289b7c1ebf4e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Adapter.Commands.ClearResults", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_Adapter\\blob/main/Adapter_oM\\Commands\\ClearResults.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "fb32b2a0-3307-43cf-a2d8-dc6e05c1d6a4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Adapter.Commands.AnalyseLoadCases", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_Adapter\\blob/main/Adapter_oM\\Commands\\AnalyseLoadCases.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "160535b6-0705-48d9-8c57-89fcbb97a91f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Adapter.Commands.Analyse", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_Adapter\\blob/main/Adapter_oM\\Commands\\Analyse.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9b9d1ee1-25ad-4c4b-9a89-4be530c46adb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Adapter.AdapterSettings", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_Adapter\\blob/main/Adapter_oM\\AdapterSettings.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a14b5d9d-1f46-4af4-bc15-a90e1c95e222", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Adapter.ActionConfig", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_Adapter\\blob/main/Adapter_oM\\ActionConfig.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4cf0af38-828d-4215-b92b-505c62bc0dc7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Adapter.ObjectWrapper", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_Adapter\\blob/main/Adapter_oM\\ObjectWrapper.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "805f0d08-5f18-4bf7-8e67-cff40e87360e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Adapter.FileSettings", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_Adapter\\blob/main/Adapter_oM\\FileSettings.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a43b603e-8a73-4d14-b201-89badfeb4f18", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Adapter.PushType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_Adapter\\blob/main/Adapter_oM\\Enums\\PushType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "05145f0e-c9fc-4809-9070-271378f109c0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Adapter.PullType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_Adapter\\blob/main/Adapter_oM\\Enums\\PullType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8a4aafd3-85ed-437a-aa55-62e538a95d9b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Analytical.Elements.ShortestPathResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Analytical_oM\\Elements\\ShortestPathResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d15b3952-0172-4c2e-b6b5-df452b305f3c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Analytical.Elements.RelationDirection", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Analytical_oM\\Elements\\Enums\\RelationDirection.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "eef45e65-1705-4f6e-8916-d397294a14dc", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Analytical.Elements.Relation", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Analytical_oM\\Elements\\Relation.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4c557226-e6ae-4b3d-b26b-46c2096ed7e7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Analytical.Elements.SpatialProjection", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Analytical_oM\\Elements\\SpatialProjection.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "50a3156a-2b0a-4d0b-bceb-716bc8ce2e0d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Analytical.Elements.GraphicalProjection", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Analytical_oM\\Elements\\GraphicalProjection.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "5c35d42f-308d-466d-b405-ffb08e048cd2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Analytical.Elements.GeometricProjection", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Analytical_oM\\Elements\\GeometricProjection.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "870c6902-9d3b-4095-a247-477135399271", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Analytical.Elements.Graph", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Analytical_oM\\Elements\\Graph.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "00400edd-4afc-46a6-b995-0b15bd38bd72", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Analytical.Fragments.TargetsDependencyFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Analytical_oM\\Fragments\\TargetsDependencyFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "bfaa1c18-355a-4125-92ad-026c1116f369", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Analytical.Fragments.SourcesDependencyFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Analytical_oM\\Fragments\\SourcesDependencyFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ab37926e-b352-40b5-b920-3e6515fdeb38", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Analytical.Fragments.RoutingFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Analytical_oM\\Fragments\\RoutingFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "87a1c00e-e7ed-41eb-9c8f-47e5dfc2a15c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Analytical.Fragments.ProjectionFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Analytical_oM\\Fragments\\ProjectionFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ca14577f-bec9-446a-93a4-f04dcdffd2b1", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Analytical.Results.ResultFilter", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Analytical_oM\\Results\\ResultFilter.cs"] }] }], "_bhomVersion" : "6.0" } \ No newline at end of file From 435daabce7a6256a26cdc2835beba189c5023ab4 Mon Sep 17 00:00:00 2001 From: Fraser Greenroyd Date: Tue, 8 Nov 2022 18:45:11 +0000 Subject: [PATCH 7/8] Fix unit tests --- .ci/Datasets/Reflection_Engine/Query/Url.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/Datasets/Reflection_Engine/Query/Url.json b/.ci/Datasets/Reflection_Engine/Query/Url.json index 9043abd29..6fd763e0c 100644 --- a/.ci/Datasets/Reflection_Engine/Query/Url.json +++ b/.ci/Datasets/Reflection_Engine/Query/Url.json @@ -1 +1 @@ -{ "_t" : "BH.oM.Data.Library.Dataset", "BHoM_Guid" : "1fdb7a5c-c20f-445a-874b-fc6c5eda60b0", "Name" : "Url", "Fragments" : [], "Tags" : [], "CustomData" : { }, "SourceInformation" : { "_t" : "BH.oM.Data.Library.Source", "BHoM_Guid" : "57889d5e-3201-4442-be2c-2ec3231ff45e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "SourceLink" : "", "Title" : "Url", "Author" : "Fraser Greenroyd", "ItemReference" : "", "Version" : "", "Publisher" : "", "Schema" : "", "Language" : "", "Location" : "", "Copyright" : "", "Contributors" : "", "Confidence" : "High" }, "TimeOfCreation" : { "$date" : 1667927709842 }, "Data" : [{ "_t" : "BH.oM.Test.UnitTests.UnitTest", "BHoM_Guid" : "f3f9c3e2-0430-49f2-9b28-6d1bffd4e8ae", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Method" : { "_t" : "System.Reflection.MethodBase", "TypeName" : "{ \"_t\" : \"System.Type\", \"Name\" : \"BH.Engine.Reflection.Query, Reflection_Engine, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null\", \"_bhomVersion\" : \"6.0\" }", "MethodName" : "Url", "Parameters" : ["{ \"_t\" : \"System.Type\", \"Name\" : \"System.Type, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\", \"_bhomVersion\" : \"6.0\" }"], "_bhomVersion" : "6.0" }, "Data" : [{ "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c15ceac8-94f3-48d2-9e8c-f74942c41d69", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Security.Elements.CameraDevice", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Security_oM\\Elements\\CameraDevice.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "eb7fc34d-4674-4768-87a8-88ccc73e6327", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Security.Enums.MountingType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Security_oM\\Enums\\Enums\\MountingType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "071b5bfd-c652-40a1-87b9-35c66dccd8d9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Security.Enums.CameraType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Security_oM\\Enums\\Enums\\CameraType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "5270ac7d-13bf-436d-9046-40d7881317e9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.YoungsModulus", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\YoungsModulus.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "521d4b03-0a72-4c44-8694-772bd1155798", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.WarpingConstant", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\WarpingConstant.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "5758280e-024a-414a-89ab-4fef4594605c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.VolumetricFlowRate", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\VolumetricFlowRate.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d4c64286-6f18-4d02-8acd-32e29fec55bb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Volume", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Volume.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "954b3104-9062-4320-971e-9e0175490480", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Velocity", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Velocity.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9914f8f5-6328-46c0-aa23-68b7841fbbd0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.TorsionConstant", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\TorsionConstant.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "174e29cc-6717-468a-9ddc-f594a814d2e2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Time", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Time.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4459def1-b49c-4459-9fe5-4185a79760a9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.ThermalExpansionCoefficient", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\ThermalExpansionCoefficient.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "820352df-713d-4d03-a159-4988658dbaa6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Temperature", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Temperature.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a6441637-d703-46c6-99f0-2a69e28338cf", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Stress", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Stress.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "66d738c4-f5bd-476b-bfd1-36e2d61c4d05", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Strain", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Strain.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "300ac588-3377-4c90-899b-06936b94c0cd", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.SpecificEnergy", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\SpecificEnergy.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a2662c2c-ee7e-427a-af5c-fbd118ec43cf", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.ShearModulus", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\ShearModulus.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8053c182-0d1e-4751-82ad-b299cc6a451b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.SectionModulus", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\SectionModulus.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "56f662ae-1a4c-4611-b5de-a5be9abd3b02", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.SecondMomentOfArea", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\SecondMomentOfArea.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "01bc76e9-a999-456c-a378-4960db46967d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Ratio", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Ratio.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "dd063802-6886-4599-928a-27d7cf5dc698", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Pressure", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Pressure.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d7f17365-ce40-4235-9708-4b5732d745bb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.MomentPerUnitLength", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\MomentPerUnitLength.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "49538b46-89f2-448b-9c5e-9c2ab58aacb2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.MomentPerUnitAngle", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\MomentPerUnitAngle.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2d020750-9da0-4d1f-ab5e-ecf9d4fb6bb0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Moment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Moment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ea9a5069-bf6c-4591-ab7e-b3be35b02da9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.MassPerUnitLength", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\MassPerUnitLength.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d740fbcb-5ff2-4337-b503-f947303240e0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.MassPerUnitArea", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\MassPerUnitArea.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2bba5067-98f2-4943-9ab4-a8f2a891d08f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.MassFraction", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\MassFraction.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "652555b5-f2fd-40d8-99b2-790cf10bd22a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Mass", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Mass.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9c1bf15d-f766-47d1-b7aa-86c3e161e0ba", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.LuminousIntensity", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\LuminousIntensity.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8dedddd4-c9d9-459b-bc5d-050bb512c4c2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Length", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Length.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "667181f4-f472-41dd-9dcc-e0ece853afca", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Illuminance", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Illuminance.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "52cbaf6d-24e7-4454-a54a-2ff39dc76d06", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Frequency", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Frequency.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "705fd73f-c278-41dd-9a8c-128abe13a088", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.ForcePerUnitLength", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\ForcePerUnitLength.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c9570a8b-f3b3-4104-bbe5-27e36752d361", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Force", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Force.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "43015994-67a8-41be-9b3e-f6a20651faf0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.EnergyPerUnitTime", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\EnergyPerUnitTime.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e5f2c3d4-c955-46b7-b63f-cfa4124dea8e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.EnergyPerUnitArea", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\EnergyPerUnitArea.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "67ae0a02-6fa3-4c05-88b3-7a34a03053b8", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Energy", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Energy.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "feffde37-bef4-41d5-a551-23bee616a3a4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.ElectricCurrent", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\ElectricCurrent.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b785093a-2c34-4f34-b44d-cb00d8502bae", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Density", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Density.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e0d34b8d-eaae-49d3-9fa6-2449f9f1ff75", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.AreaPerUnitLength", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\AreaPerUnitLength.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a22d07e5-4c2f-4651-aac2-b9c71f1a332a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Area", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Area.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "bfa14c05-5cca-412c-bf5a-130d0333c2b8", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.AngularVelocity", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\AngularVelocity.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "279333b1-2913-48c9-9338-494c086ba05e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.AngularAcceleration", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\AngularAcceleration.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0fc7569c-8aff-45fc-a1de-8b946a28f15f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Angle", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Angle.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7d0c4675-4541-4724-bb10-56d97c854d58", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.AmountOfSubstance", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\AmountOfSubstance.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c8a82cb4-d547-41e7-8e51-ca90d5e112d6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Acceleration", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Acceleration.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a829730a-bfbd-4eee-bb0e-68dc6dc9e4ee", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.QuantityAttribute", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\QuantityAttribute.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2aff8153-b33f-44b3-94d6-476da338dc50", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Enums.ValveType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Enums\\Enums\\ValveType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "44214a9d-38ac-4fb9-a8a9-1a060a21b4ca", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Enums.ServiceClassification", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Enums\\Enums\\ServiceClassification.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "5964adcb-165d-4392-a734-7c7f0bf5009f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Enums.PlumbingFixtureType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Enums\\Enums\\PlumbingFixtureType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a042a55a-25ce-4e8b-8be4-ce9fb8687807", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Enums.PipeTypes", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Enums\\Enums\\PipeTypes.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "cbb95281-d586-4457-913b-ee48f3f15f0a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Enums.MechanicalEquipmentType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Enums\\Enums\\MechanicalEquipmentType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "be39f5e3-bd2f-49a8-a500-ec10dec08860", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Enums.FluidType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Enums\\Enums\\FluidType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e18e036e-45a0-48e3-b174-5f3c1f402755", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Enums.FittingType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Enums\\Enums\\FittingType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "fdd3f62f-14c4-4dc8-a253-9e2d43352ba5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Enums.FireAlarmDeviceType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Enums\\Enums\\FireAlarmDeviceType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7994397a-8b5d-4856-9c2e-b1e34b0c09db", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Enums.ElectricalFixtureType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Enums\\Enums\\ElectricalFixtureType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2535699d-bf3c-45df-8b21-bceb533b0c24", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Enums.ElectricalEquipmentType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Enums\\Enums\\ElectricalEquipmentType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "28b31cb5-451b-47e1-b3d5-37e1452d450f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Enums.DamperType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Enums\\Enums\\DamperType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8c472673-dc9d-4e66-860c-cd1087c0cfbb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Equipment.Parts.HeatingCoil", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Equipment\\Parts\\HeatingCoil.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "fd977709-c86d-4f3a-93f7-bd34e4fce00a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Equipment.Parts.Filter", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Equipment\\Parts\\Filter.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7d97f201-b67c-48a2-beb2-d2102903dd70", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Equipment.Parts.Fan", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Equipment\\Parts\\Fan.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d7728b15-44a4-4d57-8ae6-826ccee5a79c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Equipment.Parts.EnergyWheel", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Equipment\\Parts\\EnergyWheel.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e6dba59e-c7e3-40cf-aa98-ddeec87b2da5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Equipment.Parts.ElectricalConnector", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Equipment\\Parts\\ElectricalConnector.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "cc07d6e4-30a7-4969-81cf-7ee26146de70", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Equipment.Parts.CoolingCoil", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Equipment\\Parts\\CoolingCoil.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "eabc9f16-9d38-48dd-aa39-5ff4222d61a7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Equipment.Parts.AirHandlingUnitBase", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Equipment\\Parts\\AirHandlingUnitBase.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6d26eaf7-23a7-4b13-a681-0c83dd05bb34", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Equipment.MechanicalEquipment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Equipment\\MechanicalEquipment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e9bf2cc4-2299-4192-b2d9-8f429e2949ac", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Equipment.FanCoilUnit", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Equipment\\FanCoilUnit.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "717dbd44-483c-4d30-99a2-b72b666f93ef", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Equipment.ElectricalEquipment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Equipment\\ElectricalEquipment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a0db793a-1c93-46cb-a8cd-e1c6471cfe5a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Equipment.AirHandlingUnit", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Equipment\\AirHandlingUnit.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "373ae5c8-fbeb-4aac-a1da-678ca6725833", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Fixtures.ResidentialFixtureUsage", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Fixtures\\ResidentialFixtureUsage.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1f63bafe-ddb1-4ebd-8129-b8d88666fd18", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Fixtures.PlumbingFixtureFlow", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Fixtures\\PlumbingFixtureFlow.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4a6196b0-b8e9-4dd8-a88d-e063151a8210", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Fixtures.PlumbingFixture", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Fixtures\\PlumbingFixture.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "be41daed-fa35-445c-8bb5-621477938c6e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Fixtures.LightFixture", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Fixtures\\LightFixture.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b540fb17-4759-4341-9827-83bdfe356b6a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Fixtures.FireAlarmDevice", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Fixtures\\FireAlarmDevice.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0d0a66d9-6e33-408a-bb58-228a38f2b17c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Fixtures.ElectricalFixture", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Fixtures\\ElectricalFixture.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ddf5ea70-6912-4133-a9a1-848590032884", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Fixtures.CommercialFixtureUsage", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Fixtures\\CommercialFixtureUsage.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d0081093-866e-4291-9088-99efa3f2d517", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Fixtures.AirTerminal", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Fixtures\\AirTerminal.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "5e0ff274-3f88-4ac0-a81e-77a6b16eb589", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Fragments.PlumbingLoadingFixtureUnitFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Fragments\\PlumbingLoadingFixtureUnitFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7593d12d-0bcd-4255-8f40-94dae1482b91", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Fragments.PlumbingFlowFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Fragments\\PlumbingFlowFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a6a002ad-9297-494f-96aa-d58e46c56723", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Fragments.IdentityFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Fragments\\IdentityFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8bc98e46-53dc-459e-96af-849f1678191c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Fragments.GeometryFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Fragments\\GeometryFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2589475b-4fa2-424f-adf2-48cc9b4645b0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.Dampers.Valve", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\Dampers\\Valve.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ccc23615-4193-4101-be9a-740a2d4ff254", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.Dampers.VolumeDamper", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\Dampers\\VolumeDamper.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7d6e6005-7c7b-4383-a2d6-8c73bfa320ea", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.Dampers.Damper", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\Dampers\\Damper.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "798b6d9f-3daa-4b00-b923-93db6d963354", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.Fittings.Fitting", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\Fittings\\Fitting.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f18bcf58-49d8-41ac-b669-99c5741f0f98", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.MaterialFragments.WireMaterial", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\MaterialFragments\\WireMaterial.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "300d294b-d15a-4595-840b-a64e0f79f19f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.MaterialFragments.PipeMaterial", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\MaterialFragments\\PipeMaterial.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b18ef74a-27b0-4c4e-b19f-0cbbae62e71d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.MaterialFragments.LiningMaterial", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\MaterialFragments\\LiningMaterial.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0e5d5551-5f99-4fc3-ba7e-c8bd17b8aa4e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.MaterialFragments.InsulationMaterial", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\MaterialFragments\\InsulationMaterial.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4cb2d9ba-eb6b-41d0-9aca-03520f18e116", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.MaterialFragments.DuctMaterial", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\MaterialFragments\\DuctMaterial.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "fec635a7-994f-4b89-803e-b942d02ed708", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.MaterialFragments.CableTrayMaterial", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\MaterialFragments\\CableTrayMaterial.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "027d5fa5-6041-42d5-83c2-5801dc18c6b8", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.SectionProperties.WireSectionProperty", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\SectionProperties\\WireSectionProperty.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "58c037b5-14f4-4947-8802-583ced06988a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.SectionProperties.SectionProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\SectionProperties\\SectionProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d2e7ffc3-eaf6-4101-9504-bfd789bc0c7f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.SectionProperties.PipeSectionProperty", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\SectionProperties\\PipeSectionProperty.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b35b6d52-0f5f-4928-a8be-a9132ba796c7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.SectionProperties.DuctSectionProperty", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\SectionProperties\\DuctSectionProperty.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "cae1c65b-60ef-4a3b-b7c4-e6b23ab2e243", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.SectionProperties.CableTraySectionProperty", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\SectionProperties\\CableTraySectionProperty.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "84c73309-7c94-48b1-9691-60e300d659e6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.WireSegment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\WireSegment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "bebac290-5ee0-40ee-bfdc-f99924eea4b6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.Wire", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\Wire.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "31d9d613-8f8e-482d-8753-0cd401388a28", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.Pipe", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\Pipe.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6ceaf058-d774-4351-9439-431159c6153e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.Node", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\Node.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "485be066-edd0-4e51-9a11-de321bd43c28", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.MechanicalSystem", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\MechanicalSystem.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f81cdf27-18e2-4d6b-b520-30b0ef0914f5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.FlowSystem", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\FlowSystem.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2324acd6-1f16-4f68-83f8-6b9966722596", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.Duct", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\Duct.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8c304987-3840-4597-b102-3e8712bb3aa2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.CableTray", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\CableTray.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "75a019fd-a0c3-4b6d-87a0-e9d5511b0f13", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Matter.Options.DensityExtractionType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Matter_oM\\Options\\Enums\\DensityExtractionType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "98020876-5d22-418e-b5eb-a1826b9600e6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Matter.Options.DensityExtractionOptions", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Matter_oM\\Options\\DensityExtractionOptions.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1d78ada9-24ec-46db-a293-68777686799b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Lighting.Analysis.Node", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Lighting_oM\\Analysis\\Node.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "27678935-eecf-4c5a-863c-7234f5fcfbb0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Lighting.Analysis.AnalysisGrid", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Lighting_oM\\Analysis\\AnalysisGrid.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "64c6bb5d-aee3-4316-abfe-6c8d5d227404", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Lighting.Enums.MountingType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Lighting_oM\\Enums\\Enums\\MountingType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d74a130a-34e6-4263-ba04-87c4c7792a7e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Lighting.Elements.LuminaireType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Lighting_oM\\Elements\\LuminaireType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0dac16f0-c593-41d9-b80f-ca0fa769b92e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Lighting.Elements.Luminaire", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Lighting_oM\\Elements\\Luminaire.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "79800d1a-148f-4d3d-adde-dbf9377d0fe0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Lighting.Results.Illuminance.Lux", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Lighting_oM\\Results\\Illuminance\\Lux.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4d734dc5-5ae8-4791-8d7a-c13c5d2801ef", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Lighting.Results.Mesh.MeshResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Lighting_oM\\Results\\Mesh\\MeshResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "11019876-b1c3-40e1-9cae-0bd55f690efd", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Lighting.Results.Mesh.MeshElementResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Lighting_oM\\Results\\Mesh\\MeshElementResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "da00baeb-0bd6-427b-87e5-88a4c6ff18ed", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Inspection.Issue", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Inspection_oM\\Issue.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "32ddde1b-997e-4c42-a013-d11a0c2e50ba", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Inspection.InstallationProgress", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Inspection_oM\\InstallationProgress.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6e8d1f1b-587b-4d38-90e8-22fcb3c5b359", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Inspection.Comment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Inspection_oM\\Comment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "07cae3d8-ea66-4310-a4a6-777e42484d20", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Inspection.Audit", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Inspection_oM\\Audit.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "af87ce5c-e141-4f33-ab54-bfb951eda52a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Planning.Repository", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Planning_oM\\Repository.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "04bd9754-4bac-48e2-8532-4ad48c9bb8ed", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Planning.PullRequest", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Planning_oM\\PullRequest.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "42b31fdd-02ae-40e3-add5-8f582ea39f92", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Planning.Milestone", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Planning_oM\\Milestone.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c9282ca0-fbbe-4ccc-a69f-49dd0389cc06", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Planning.Label", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Planning_oM\\Label.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "eed86bc1-2dbe-4e49-970b-fbabd0434d00", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Planning.Issue", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Planning_oM\\Issue.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "dbc60a79-3534-4764-8456-6cd26c50b724", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Planning.ItemState", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Planning_oM\\Enums\\ItemState.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "cd2152a7-0ee2-40b7-9597-e60d74e8d665", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Planning.ConstructionPhase", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Planning_oM\\ConstructionPhase.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "abae988e-d1d4-4ab8-b42c-e8eedda6a2fc", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Planning.Commit", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Planning_oM\\Commit.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ae5823ae-147b-4556-8518-74de4c9b7f7a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Planning.CodeAssembly", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Planning_oM\\CodeAssembly.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ac6cdd37-4438-4278-afff-8b2d67fc650a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Planning.Branch", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Planning_oM\\Branch.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "98d0a969-4b6b-4582-8b63-d500328bb23c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Elements.Panel", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Elements\\Panel.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e16fd0e7-7125-4dea-a9a2-610a5815f8f9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Elements.Opening", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Elements\\Opening.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7da83815-aa62-4f1b-a4f9-c7130e33ffbb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Elements.FrameEdge", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Elements\\FrameEdge.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8b8a448e-2d11-492f-b97f-48061da5b749", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Elements.PanelType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Elements\\Enums\\PanelType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0ee58129-d2be-43e7-a873-86ff7565fff8", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Elements.OpeningType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Elements\\Enums\\OpeningType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "668b6bd6-99f2-4895-9f95-94974f62f0c0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Elements.FrameEdgeType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Elements\\Enums\\FrameEdgeType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "988f6fa8-9aee-4d03-9b4a-8d38689fc5cf", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Elements.FrameCornerType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Elements\\Enums\\FrameCornerType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "16f07ff4-3738-4ae5-a2e6-f5b17d707be3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Elements.CurtainWall", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Elements\\CurtainWall.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3e93add4-eab5-4614-869b-732eecb2bd44", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Fragments.UValueGlassEdge", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Fragments\\UValueGlassEdge.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "598e27b5-ea7c-4520-ae32-e853f9904a60", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Fragments.UValueGlassCentre", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Fragments\\UValueGlassCentre.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2b7b73d1-108a-4e1e-aacc-8d0ce383fd40", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Fragments.UValueFrame", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Fragments\\UValueFrame.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "aa9e829d-f4c7-4c6b-ab6c-43eee5ae74e4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Fragments.UValueContinuous", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Fragments\\UValueContinuous.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4ac5ac35-7845-4d26-b713-0bb5371083f9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Fragments.PsiJoint", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Fragments\\PsiJoint.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "bb91b9d3-d1d7-48de-aa1f-df9000057eac", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Fragments.PsiGlassEdge", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Fragments\\PsiGlassEdge.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9a3ffb87-2a1a-406c-a923-c1c163699ee9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Fragments.GlazingLocation", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Fragments\\GlazingLocation.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9b8fe578-b90d-4025-83c8-7cfc2655a892", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Fragments.FrameExtensionBox", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Fragments\\FrameExtensionBox.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "eb68428d-be22-4ab5-977e-72396c21f795", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Fragments.ConstructionOffset", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Fragments\\ConstructionOffset.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a36a080f-8331-42c5-8ec4-e9ceacabee60", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Results.OverallUValue", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Results\\OverallUValue.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "bb400d92-8b4d-4b9b-831d-311bfac0f89d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.SectionProperties.FrameEdgeProperty", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\SectionProperties\\FrameEdgeProperty.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ddd81e43-d36b-4186-a064-43d775d01d94", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.AECDeltas.DeltaPayload", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Diffing_oM\\DeltaPayload.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "158fa8d5-7fef-4b4d-93df-2a8e87dc454a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Diffing.StreamPointer", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Diffing_oM\\StreamPointer.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1402e729-d3db-49b5-b36b-3a8796e2dd87", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Diffing.RevisionFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Diffing_oM\\RevisionFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "40ce6072-cda5-4ceb-a989-a74a11a30579", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Diffing.Revision", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Diffing_oM\\Revision.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d1713b1a-444b-4547-8833-65f93a757d68", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Diffing.PropertyDifference", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Diffing_oM\\PropertyDifference.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b002b254-7b4b-4fe8-92fd-aa23ff074429", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Diffing.ObjectDifferences", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Diffing_oM\\ObjectDifferences.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3b3acf94-bfff-4ab3-8e59-cb90e76017c7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Diffing.DiffingConfig", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Diffing_oM\\DiffingConfig.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4fbe26ac-2cb8-423d-8ba0-0f49bdbfd7d1", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Diffing.DifferenceType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Diffing_oM\\Enums\\DifferenceType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8eae6538-7bed-4118-8b27-bc681b9cf808", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Diffing.Diff", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Diffing_oM\\Diff.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "fe8b0feb-561b-4f18-9ceb-b8cefca3047f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Diffing.Delta", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Diffing_oM\\Delta.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1351c6c8-d730-4ccd-acc2-363d8e5a5a48", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Activations.Tanh", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Activations\\Tanh.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3791e650-8d6f-49ec-936a-fd3412c0024f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Activations.Softmax", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Activations\\Softmax.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "379bf984-cc48-4b0a-ab88-923269809b3a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Activations.Sigmoid", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Activations\\Sigmoid.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1222a683-24eb-450b-b779-e6e2526174ee", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Activations.ReLU", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Activations\\ReLU.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "652c8bbb-a62a-49b8-b526-045a1b604427", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Activations.LogSoftmax", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Activations\\LogSoftmax.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a266267a-f3a4-46e5-9cb0-1f136ab3b731", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Activations.LogSigmoid", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Activations\\LogSigmoid.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "405b0905-918d-4801-b12f-23b1ba14d8f5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Activations.LeakyReLU", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Activations\\LeakyReLU.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "20d5e4ba-1f99-482e-aa50-c3d8370e095c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Layers.TransposedConvolution2d", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Layers\\TransposedConvolution2d.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "96dc89af-ba82-47fa-9f64-29d11533bb13", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Layers.MaxUnPooling2d", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Layers\\MaxUnPooling2d.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e58a3eee-2296-47be-970d-0a9d5413357d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Layers.MaxPooling2d", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Layers\\MaxPooling2d.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "cfa922a3-415d-4424-b16d-43d383d7a9bb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Layers.LSTM", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Layers\\LSTM.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "30a44857-6e1e-4df6-863a-3ac2ceb9dfbd", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Layers.Linear", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Layers\\Linear.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "470e6454-89dd-48b9-879c-e4348800010a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Layers.GRU", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Layers\\GRU.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2bed0d5a-d710-4b28-aaea-1a03cf985aa9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Layers.Convolution2d", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Layers\\Convolution2d.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "615e046a-abc6-4253-aa77-8b26f3c67ccb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Layers.AvgPooling2d", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Layers\\AvgPooling2d.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8449bb3b-f7a2-45ee-8379-3c4070384cab", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Losses.NegativeLogLikelihood", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Losses\\NegativeLogLikelihood.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6f60ff67-cc7e-4f23-9cbe-95b7a1671d8e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Losses.MeanSquareError", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Losses\\MeanSquareError.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2a9cca1b-c19c-471e-a9a4-ac1b7b1df949", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Losses.L1", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Losses\\L1.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8f562a65-cefe-41ce-be8d-c10ee8772eed", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Losses.CrossEntropy", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Losses\\CrossEntropy.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "85959578-39e2-4666-8314-6ca8c8b786f6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Losses.BinaryCrossEntropy", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Losses\\BinaryCrossEntropy.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7d4c391e-0d3f-4773-8855-9d082b7f1b04", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Losses.BCEWithSigmoid", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Losses\\BCEWithSigmoid.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "fa56ad87-9bba-4549-b2ce-b1756de6bfc5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Models.Sequential", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Models\\Sequential.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3a951850-0102-4e51-9635-4adcc7cc30d6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Models.Graph", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Models\\Graph.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "08e46867-03a5-4173-98e8-66d0649c7ebe", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Optimisers.SGD", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Optimisers\\SGD.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "73e29af6-cb3f-476a-824a-55662b86e843", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Optimisers.Adam", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Optimisers\\Adam.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ce9a73be-a640-4e76-982a-82d935cce0c6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Shape3d", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Shape3d.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b04a4b52-8f2e-4c7b-8df5-59c45328a12d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Shape2d", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Shape2d.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "93628adb-c60f-4da1-8c76-4b4780dedd71", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Reduce", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Enums\\Reduce.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e2940828-b973-4d5f-8d0d-9aae3f0bee65", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.InterpolationMethod", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Enums\\InterpolationMethod.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4906ee6c-7126-4e2a-add9-6f8b4a8cfa39", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.ImageFormat", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Enums\\ImageFormat.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7bac7f66-f605-463a-ad92-f36d4a2c5996", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Programming.ReceiverParam", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Programming_oM\\ReceiverParam.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2b16378a-2435-4e21-a7ac-e2548223bb00", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Programming.DataParam", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Programming_oM\\DataParam.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d48bde02-abce-4d72-a7f1-75c8322f7df4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Programming.NodeGroup", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Programming_oM\\NodeGroup.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "53af9b76-d4cf-44c6-9580-fbbf29cad2ad", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Programming.ClusterContent", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Programming_oM\\ClusterContent.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "be0989f5-237e-4764-b542-3899a933c2c0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Programming.TypeNode", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Programming_oM\\TypeNode.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "78ea098f-b2e9-4978-95a1-acb610bab764", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Programming.SetPropertyNode", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Programming_oM\\SetPropertyNode.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "03b530ba-2a2c-4943-950a-1ad54cca639c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Programming.ParamNode", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Programming_oM\\ParamNode.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e2185afa-ba23-499c-b652-e8c9a36598eb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Programming.MethodNode", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Programming_oM\\MethodNode.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "db33c8f7-062b-45a2-90ef-5abe92449ada", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Programming.LoopNode", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Programming_oM\\LoopNode.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "57c54049-8eb7-4c09-9b31-fd210cfc2e5f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Programming.LibraryNode", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Programming_oM\\LibraryNode.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d2be8cd3-ce48-4b91-bd3c-550b80fff9ab", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Programming.InitialiserNode", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Programming_oM\\InitialiserNode.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c95c0082-9a73-4795-b499-6c0b51b7b8bc", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Programming.GetPropertyNode", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Programming_oM\\GetPropertyNode.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "62f2e233-20b2-4179-b6e3-b0200bf73041", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Programming.ExplodeNode", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Programming_oM\\ExplodeNode.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a0607e4c-2bc1-4d1f-a5b3-c0b4964499ee", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Programming.CustomObjectNode", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Programming_oM\\CustomObjectNode.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0f7763d0-7a18-416c-af7e-05c57bbcdb6e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Programming.ConstructorNode", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Programming_oM\\ConstructorNode.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "910748b6-5741-4ebd-9696-d708ba4a3330", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Programming.ClusterNode", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Programming_oM\\ClusterNode.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "733923c1-b574-4631-9cba-5e6b7fa41cda", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Programming.BlockNode", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Programming_oM\\BlockNode.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "533a9d36-8c66-4947-b6c0-8b81df92012b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.Fragments.EPDDimension", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Fragments\\EPDDimension.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "50c8306a-5318-4769-9532-9a2707bd5a36", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.Fragments.EPDDensity", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Fragments\\EPDDensity.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f179d263-4299-4fcc-a1ae-58f4d5af504d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.Fragments.AdditionalEPDData", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Fragments\\AdditionalEPDData.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9e98b569-a81c-45a0-b419-4aeea5cd82b6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.MaterialFragments.EnvironmentalProductDeclaration", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\MaterialFragments\\EnvironmentalProductDeclaration.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b4a39211-05a5-4681-9965-f5a0f8cafe35", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.Results.LifeCycleAssessmentElementResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Results\\LifeCycleAssessmentElementResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ecf0b1ce-da90-44f9-9ae3-82e04bb88f75", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.Results.EnvironmentalMetricResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Results\\EnvironmentalMetricResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "be9e4c0b-1906-47b7-bb4a-5cdee94e597e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.ProjectLifeCycleAssessment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\ProjectLifeCycleAssessment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "04072f8d-959d-4457-a82a-d3f87821049b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.HealthProductDeclaration", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\HealthProductDeclaration.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "40dfebd4-56d3-4bce-ba3a-ea3bd3ddfc4c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.Scope", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Scope.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "43716777-9e14-42cc-926a-274a084a9270", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.LifeCycleAssessmentScope", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\LifeCycleAssessmentScope.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "624ecf48-8c22-4776-bfd8-98d6b4929067", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.EnvironmentalMetric", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\EnvironmentalMetric.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ea9b4906-21ad-4173-beb7-ad1697ad390d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.WindSpeedCategory", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Enums\\WindSpeedCategory.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c5b8ce24-bd21-47f1-85cd-5d7da6508303", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.SeismicDesignCategory", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Enums\\SeismicDesignCategory.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "51ba0af8-c5d4-4226-9c18-525cb7f0835c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.ScopeType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Enums\\ScopeType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7fcbe953-4e9f-4448-9c91-a515cdf376eb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.QuantityType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Enums\\QuantityType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0840fac5-b188-4920-a67c-4faea6559ee8", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.ProjectType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Enums\\ProjectType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ebee6a19-bd12-45cd-ac9b-33eefb210871", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.ObjectCategory", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Enums\\ObjectCategory.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "682a9acb-4888-4aa9-ab14-36faafaa0dcc", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.LifeCycleAssessmentPhases", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Enums\\LifeCycleAssessmentPhases.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ce770bb4-e48e-493e-a0b6-cdb33bcbef2f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.LevelOfDevelopment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Enums\\LevelOfDevelopment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "84371f01-53f2-4985-9439-d70f9d26ff99", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.LateralStructuralMaterial", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Enums\\LateralStructuralMaterial.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "924488d0-92a5-4a39-a490-06c9b8f0d7a8", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.GravityStructuralMaterial", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Enums\\GravityStructuralMaterial.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "21e5ce44-6674-43af-bf1f-dc5dc474c629", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.EPDType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Enums\\EPDType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "cb665230-c3d3-48dd-9df9-92e8668bd5fb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.EnvironmentalProductDeclarationField", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Enums\\EnvironmentalProductDeclarationField.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4c26ed20-8421-4e59-8421-605299f5b66a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.BuildingBenchmarkingData", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\BuildingBenchmarkingData.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9e868425-139c-42c9-aba1-7a66727825bd", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Constraints.LinkConstraint", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Constraints\\LinkConstraint.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "556fe6ee-1fef-4961-bdef-d06a03a48d18", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Constraints.DOFType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Constraints\\Enums\\DOFType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1cd6fb46-594e-42d3-bf44-6120c7719f2e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Constraints.Constraint6DOF", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Constraints\\Constraint6DOF.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "edbc3861-3624-4a8c-9dd8-39efa85e70a2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Constraints.Constraint4DOF", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Constraints\\Constraint4DOF.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "03a19dc0-53ae-4b8d-a47f-22a189f9145d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Constraints.Constraint3DOF", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Constraints\\Constraint3DOF.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a1f9676a-4583-4c03-848e-ebfd5de01786", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Constraints.BarRelease", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Constraints\\BarRelease.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ed75ea80-5d1d-4c8d-82cc-cbaca2ad2d85", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Design.StructuralLayout", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Design\\StructuralLayout.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a7ef42e8-1c80-448f-a074-9beefd675134", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Design.SpanDirection", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Design\\Enums\\SpanDirection.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "48a752b8-7fd0-4599-abeb-cd3d9ea58670", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Design.Span", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Design\\Span.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0be62439-498f-4cb0-813c-d403472258ab", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Design.DesignGroup", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Design\\DesignGroup.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "33b46d4f-e303-4604-b02c-3a70a4a5601b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Elements.Surface", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Elements\\Surface.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "fe68eb20-fd84-4ef2-b47e-e1648d4d83c2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Elements.RigidLink", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Elements\\RigidLink.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3fa5718e-92da-4ad9-ae16-37dd7669cb50", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Elements.Panel", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Elements\\Panel.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "65df951e-8816-4eaf-bd47-914032d8fc4d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Elements.Opening", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Elements\\Opening.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1afef585-b7e4-42a0-ae1f-2615a4fd9fc6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Elements.Node", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Elements\\Node.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "42389a5a-b196-4548-a68c-fd674abf7a9a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Elements.FEMeshFace", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Elements\\FEMeshFace.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1a5ef91b-e794-460f-8339-bea08f7c1ef2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Elements.FEMesh", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Elements\\FEMesh.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8ea223b6-a096-4899-ae26-98f4e5062ef9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Elements.StructuralUsage2D", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Elements\\Enums\\StructuralUsage2D.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1c016e63-bf6b-4b11-b205-8cc472e94a67", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Elements.StructuralUsage1D", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Elements\\Enums\\StructuralUsage1D.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6281813b-1f8f-4588-ab17-bc901a544db7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Elements.BarFEAType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Elements\\Enums\\BarFEAType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "38be1777-d831-4317-8330-bd4159525b40", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Elements.Edge", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Elements\\Edge.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0da9e2bb-b93a-45c0-a90e-8be165a43f18", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Elements.Bar", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Elements\\Bar.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "5790517c-149f-4a11-b377-770d03f3f8ec", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Fragments.SurfacePropertyModifier", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Fragments\\SurfacePropertyModifier.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d79ceec2-0039-42a3-9719-8f5c29388994", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Fragments.SectionModifier", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Fragments\\SectionModifier.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f86f4ae4-651b-4c70-92e6-b3dfa84164bb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Fragments.ReinforcementDensity", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Fragments\\ReinforcementDensity.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "db1632ee-a61f-4416-a35a-6973a548c70b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.UniformLoadSetRecord", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\UniformLoadSetRecord.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2eefba9b-102d-4ab5-8d88-70f10bfc54f2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.UniformLoadSet", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\UniformLoadSet.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8424748a-2293-42bf-9ad8-66d42b9a42ae", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.PointVelocity", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\PointVelocity.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "de2a01a8-af4b-420f-a6e9-2cc7a437ab62", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.PointLoad", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\PointLoad.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b2101ef9-0569-4d0e-8559-9883687277c1", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.PointDisplacement", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\PointDisplacement.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2e17a7cc-5c78-4be6-9eb7-74c816087a29", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.PointAcceleration", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\PointAcceleration.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e812b6f3-c294-4cf7-81f2-98f249a95e9b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.LoadCombination", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\LoadCombination.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f391839e-e526-40de-8ea9-b4210e6f8106", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.Loadcase", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\Loadcase.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1ca4e992-2efc-4c91-9113-3905405a5bab", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.GravityLoad", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\GravityLoad.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d5c98f0c-99d8-4d96-aeb3-4925ea75238c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.GeometricalLineLoad", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\GeometricalLineLoad.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0e33e6ad-2bb2-4224-b00e-ad01f6e82330", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.DifferentialTemperatureLoadDirection", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\Enums\\DifferentialTemperatureLoadDirection.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "5ffc3aab-5dd1-439b-a5d1-0ac24e1dfcc3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.LoadType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\Enums\\LoadType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "62ea265d-70a7-4f81-9a62-3f6400bec421", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.LoadNature", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\Enums\\LoadNature.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ac45392f-a66a-4ed4-902f-787c87529fef", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.LoadAxis", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\Enums\\LoadAxis.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "302b0193-d836-4bf1-b6e8-01f5ad1a77b5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.CaseType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\Enums\\CaseType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "21d9de0c-311b-4c2a-879d-2a5de9f54a95", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.ContourLoadSet", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\ContourLoadSet.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8a88558c-dc52-45e3-9aab-2396e2b8116c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.ContourLoad", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\ContourLoad.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7ea92c9e-447b-4d54-a559-fafeb8733010", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.BarVaryingDistributedLoad", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\BarVaryingDistributedLoad.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4d187391-053c-4e52-96f9-87005d3ff3f2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.BarUniformTemperatureLoad", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\BarUniformTemperatureLoad.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1ea87c1b-dfdb-4284-847f-4a4a6849f814", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.BarUniformlyDistributedLoad", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\BarUniformlyDistributedLoad.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b9ed3ce3-14f6-4b13-bc99-1c97d910ed37", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.BarPrestressLoad", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\BarPrestressLoad.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1dfb773c-026c-4294-83e2-108066e466fc", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.BarPointLoad", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\BarPointLoad.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "5284f438-799f-4859-9584-6c3d5d2d84d8", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.BarDifferentialTemperatureLoad", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\BarDifferentialTemperatureLoad.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "33dc00e2-42ee-48f4-ba70-b2b6cfe30d41", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.AreaUniformTemperatureLoad", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\AreaUniformTemperatureLoad.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1dea12dd-23e5-4412-b5b8-235e47602a63", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.AreaUniformlyDistributedLoad", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\AreaUniformlyDistributedLoad.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e8e6efd8-87c1-45ef-adc9-49ea6baea8ae", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.AreaDifferentialTemperatureLoad", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\AreaDifferentialTemperatureLoad.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3cc4d1b5-4110-4102-be3c-65e52f3c3e0e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.MaterialFragments.Timber", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\MaterialFragments\\Timber.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0bda648c-d79e-4ad7-92b5-7c142ea7318c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.MaterialFragments.Steel", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\MaterialFragments\\Steel.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f5001060-4554-4d7c-adc4-c9c145d51055", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.MaterialFragments.GenericOrthotropicMaterial", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\MaterialFragments\\GenericOrthotropicMaterial.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e90fb620-abf2-4449-80d2-9ffbb833ec1b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.MaterialFragments.GenericIsotropicMaterial", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\MaterialFragments\\GenericIsotropicMaterial.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a56f8bee-d823-4847-9d57-cc78c9cb4a89", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.MaterialFragments.MaterialType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\MaterialFragments\\Enums\\MaterialType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "62794fb4-7c3c-48ab-a41e-676a1d515532", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.MaterialFragments.Concrete", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\MaterialFragments\\Concrete.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c41cb350-fa88-491b-a431-d2f0633275a1", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.MaterialFragments.Aluminium", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\MaterialFragments\\Aluminium.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a4122138-26b8-4992-bc52-75a6a8d47f0e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Offsets.Offset", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Offsets\\Offset.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4b0f1452-daa4-403a-ba55-84b5d8898629", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Reinforcement.TransverseReinforcement", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Reinforcement\\TransverseReinforcement.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1e36ad6a-3dbe-44b8-a2b0-9ad76d57323f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Reinforcement.ReinforcementRegion", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Reinforcement\\ReinforcementRegion.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8127f29e-7082-44db-8ff4-2829ad0425f5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Reinforcement.PanelReinforcement", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Reinforcement\\PanelReinforcement.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9ff17e6e-5f4f-4f25-b005-1eb6fadc9c8a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Reinforcement.PanelRebarIntent", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Reinforcement\\PanelRebarIntent.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e1da44e5-874b-4870-9c5d-114e95cc9385", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Reinforcement.LongitudinalReinforcement", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Reinforcement\\LongitudinalReinforcement.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ebc99945-0f2a-442d-839a-7284a9d2f55d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Reinforcement.BarRebarIntent", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Reinforcement\\BarRebarIntent.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "70020d4b-8352-4921-ab32-51bd307ce2f2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Requests.NodeResultRequest", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Requests\\NodeResultRequest.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "730466b0-18ed-4502-9215-3df07ef53832", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Requests.MeshResultRequest", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Requests\\MeshResultRequest.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ab89d0b8-3294-4684-9428-27038ff653b5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Requests.GlobalResultRequest", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Requests\\GlobalResultRequest.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3cc7a8b8-1fe1-4e6f-8286-e7d084b1d18e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Requests.NodeResultType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Requests\\Enums\\NodeResultType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "84ad52a9-f7ba-4c60-b453-3b377391cace", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Requests.GlobalResultType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Requests\\Enums\\GlobalResultType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "481a3d17-506b-4db7-a41c-44d5ae1a03c2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Requests.DivisionType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Requests\\Enums\\DivisionType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9c72fd00-3e61-4511-9646-c319693dbcd9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Requests.BarResultType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Requests\\Enums\\BarResultType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4aa664ef-6dcf-4c4b-8079-d25b1b938a4f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Requests.BarResultRequest", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Requests\\BarResultRequest.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a465dabc-105a-4a66-910b-83f49677d68d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.NodeVelocity", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\NodeVelocity.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "64b8d12e-c952-4a49-87c5-0126e7938fd0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.NodeResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\NodeResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4da21210-2646-4006-8ab7-72342874a780", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.NodeReaction", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\NodeReaction.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "35458262-96af-4c8a-b24c-a1290da5ce1b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.NodeModeShape", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\NodeModeShape.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3583be5c-a30e-47fa-becc-699989bf2958", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.NodeModalMass", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\NodeModalMass.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9da6bd52-c80a-4caf-b526-5a1e8aaa9ec2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.NodeDisplacement", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\NodeDisplacement.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "62ddd14d-4d88-482d-aa1b-5ff892450afc", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.NodeAcceleration", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\NodeAcceleration.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8f7fa79c-39cd-4690-b5c7-433c95a56a13", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.MeshVonMises", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\MeshVonMises.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4d55507b-a7b0-498d-b5ba-b831dcc1f981", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.MeshStress", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\MeshStress.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "74afd132-22e3-42e5-b4b4-11b9599feed4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.MeshResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\MeshResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ae1800b1-4593-4241-983d-d364994f5324", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.MeshRequiredArea", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\MeshRequiredArea.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "fd7db5ef-1a17-4430-bb89-e661804e4156", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.MeshModeShape", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\MeshModeShape.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "86c711fd-94e0-4dc1-a276-725b96da6d76", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.MeshForce", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\MeshForce.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "95bffde4-e236-413c-b9fd-6ce1a35115d9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.MeshElementResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\MeshElementResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e3224c0a-c665-41b6-8fb6-b7e10bf2341a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.MeshDisplacement", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\MeshDisplacement.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8f48be68-a381-4181-bad0-add2ce10c272", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.MeshResultType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\Enums\\MeshResultType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "84c8c80b-7247-499f-990d-4200e3f217d7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.MeshResultSmoothingType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\Enums\\MeshResultSmoothingType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f0bba522-28de-4f33-a25a-39afe4988cb8", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.MeshResultLayer", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\Enums\\MeshResultLayer.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "83a43878-edfc-4c7e-a592-3eef401da091", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.StructuralGlobalResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\StructuralGlobalResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8679a418-9d24-4067-9613-f82f509afae7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.ModalDynamics", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\ModalDynamics.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "eb946782-0fd1-4b9d-98f2-50af1a7776e3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.GlobalReactions", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\GlobalReactions.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f19d70b1-6257-4279-a237-92dffd2fad34", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.SteelUtilisation", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\SteelUtilisation.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "974d3293-ff13-4637-bed2-5683e48a6c48", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.CompositeUtilisation", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\CompositeUtilisation.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "fd5a34be-fbc9-47b4-82f4-f1534a2c1572", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.BarStress", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\BarStress.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "27e897db-0671-406d-bde8-edc4160d4c94", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.BarStrain", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\BarStrain.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "51af48b2-9d9a-411f-8e0b-a3064546698c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.BarResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\BarResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3d709c91-1b10-4d10-a031-9028c1b527b5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.BarRequiredArea", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\BarRequiredArea.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9e14472f-bf15-4a89-bfec-5ddd58c57e47", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.BarModeShape", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\BarModeShape.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2007a364-2b89-416d-9e79-bc7525587b55", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.BarForce", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\BarForce.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "29cdf020-4adc-4fde-8996-3751ad767044", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.BarDisplacement", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\BarDisplacement.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1845b91a-0b31-4b8e-9c63-2787f173efe0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Results.BarDeformation", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Results\\BarDeformation.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "aa55e3e1-c7a2-485c-8777-f5c3cb2fe1bf", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SectionProperties.Reinforcement.TieReinforcement", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SectionProperties\\Reinforcement\\TieReinforcement.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0dfad871-7a95-4c33-a2c3-7a531f89e787", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SectionProperties.Reinforcement.Reinforcement", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SectionProperties\\Reinforcement\\Reinforcement.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2f92e95a-55a7-406b-b055-b653bcc6358a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SectionProperties.Reinforcement.PerimeterReinforcement", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SectionProperties\\Reinforcement\\PerimeterReinforcement.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "68d967d7-b45b-4755-94bb-e19b8d55be2e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SectionProperties.Reinforcement.LayerReinforcement", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SectionProperties\\Reinforcement\\LayerReinforcement.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0473eb29-eabb-4634-85b6-93549c9298fb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SectionProperties.Reinforcement.ReinforcementPattern", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SectionProperties\\Reinforcement\\Enums\\ReinforcementPattern.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "492b8f03-4350-4ad4-bbb2-8dab35c82648", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SectionProperties.TimberSection", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SectionProperties\\TimberSection.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3c3d8746-cc29-4c8a-8478-13af9d8c5788", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SectionProperties.SteelSection", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SectionProperties\\SteelSection.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c209802d-a145-4bde-a9a6-9c4622cdbf19", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SectionProperties.GenericSection", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SectionProperties\\GenericSection.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c8387504-97f1-4a9c-b519-90e7d63e53f2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SectionProperties.ExplicitSection", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SectionProperties\\ExplicitSection.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9ded2844-0f51-47da-9a07-2cf2405b3abd", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SectionProperties.SteelPlateRestraint", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SectionProperties\\Enums\\SteelPlateRestraint.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8183bab3-0c95-470f-98f0-95e82bd34acd", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SectionProperties.SteelFabrication", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SectionProperties\\Enums\\SteelFabrication.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2641152f-ac2e-42c3-900f-cbb40fe84699", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SectionProperties.CableType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SectionProperties\\Enums\\CableType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c2154809-ecfe-4027-b9c6-f9d1568a66d6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SectionProperties.ConcreteSection", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SectionProperties\\ConcreteSection.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9a2662e0-8d62-45cd-892d-7347a7e32cab", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SectionProperties.CompositeSection", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SectionProperties\\CompositeSection.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "19c22cb1-4b51-4bfa-89b8-9d3101363690", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SectionProperties.CableSection", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SectionProperties\\CableSection.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "24c65467-24ab-469e-983f-31e645421c3d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SectionProperties.AluminiumSection", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SectionProperties\\AluminiumSection.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "afac7a1b-59da-4606-85eb-5a72c3bc706f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SurfaceProperties.Waffle", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SurfaceProperties\\Waffle.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "efaa7720-5d61-4257-afea-6400e864e75d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SurfaceProperties.SlabOnDeck", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SurfaceProperties\\SlabOnDeck.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7ebe0182-5fea-4356-94bb-3471ab020cae", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SurfaceProperties.Ribbed", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SurfaceProperties\\Ribbed.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b47c7a39-e519-48da-abb1-5a00a230ce50", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SurfaceProperties.LoadingPanelProperty", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SurfaceProperties\\LoadingPanelProperty.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8d8d69a2-9409-4f19-8ed6-e09c551e41cd", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SurfaceProperties.Layered", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SurfaceProperties\\Layered.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8bff7384-c381-47b8-85df-ad290bdfb50d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SurfaceProperties.Layer", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SurfaceProperties\\Layer.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "cf3bb5a9-cfc1-4e83-a449-1b5e3e188f47", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SurfaceProperties.PanelType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SurfaceProperties\\Enums\\PanelType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d43d0e86-eec4-4132-b768-14ba25f5d303", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SurfaceProperties.PanelDirection", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SurfaceProperties\\Enums\\PanelDirection.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0570b14b-99f3-45f2-b083-f6d3128c372c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SurfaceProperties.LoadPanelSupportConditions", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SurfaceProperties\\Enums\\LoadPanelSupportConditions.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b98da1f7-e5fc-4b36-baed-7a338c120e18", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SurfaceProperties.CorrugatedDeck", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SurfaceProperties\\CorrugatedDeck.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "75d64590-ec09-4fa2-a5c3-5285f7358cd4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SurfaceProperties.ConstantThickness", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SurfaceProperties\\ConstantThickness.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2e1ae29e-066f-4d6b-9bfa-876d4afab952", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Analysis.Node", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Analysis\\Node.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0d38b0e7-80cc-42e6-89b6-c415a3411ada", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Analysis.AnalysisGrid", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Analysis\\AnalysisGrid.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9cbd74a7-56a1-405e-bef8-f28e080cfbcc", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Climate.WeatherFile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Climate\\WeatherFile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1f836fab-6996-4463-a3de-b0bf3fe919d6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Climate.Time", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Climate\\Time.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8bc2bac4-4f3e-47b2-98ac-007a12439dc4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Climate.Sun", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Climate\\Sun.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e0378234-5f10-4001-9911-1b799460f58a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Climate.SpaceTime", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Climate\\SpaceTime.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9767df81-90e5-465d-847c-9094009c85f3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Climate.Location", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Climate\\Location.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e71cbd8d-c38e-4f4b-aa80-1c852a8fbcc6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Configuration.OpeningOption", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Configuration\\OpeningOption.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d038ecab-b72c-497a-a23c-78efd42d5775", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Elements.Zone", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Elements\\Zone.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "fcd1aade-94b8-494e-aacc-aa800c0609f7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Elements.Space", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Elements\\Space.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "edb552a2-36e1-4ce8-843a-30187da25823", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Elements.Panel", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Elements\\Panel.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "331da62f-59d0-43e1-af0c-6bf0412ebc19", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Elements.Opening", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Elements\\Opening.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "987ab123-f094-458e-9fbd-3c79ed0cccbe", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Elements.Mesh", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Elements\\Mesh.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9f78547e-6ec0-4cec-8998-d5918dae83d9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Elements.SpaceType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Elements\\Enums\\SpaceType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6f2cb141-925b-4edb-a47d-f933107126b2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Elements.PanelType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Elements\\Enums\\PanelType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "5cf4f229-1f3a-4e53-ad44-d4003da866c4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Elements.OpeningType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Elements\\Enums\\OpeningType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3ff663ab-8184-4822-8f55-79558a6639a0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Elements.BuildingType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Elements\\Enums\\BuildingType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d746d9a8-2649-475f-aa7f-2eaa80ab079f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Elements.Edge", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Elements\\Edge.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a1ff72b5-c09f-4ebf-8ea2-c30a75ebc47b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Elements.Building", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Elements\\Building.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1b3c4335-7ddb-4d1c-95ce-b9b091421475", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Elements.BoundaryZone", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Elements\\BoundaryZone.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f939a678-989a-40b8-b12d-a5eae7fd3022", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Fragments.SpaceContextFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Fragments\\SpaceContextFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c4c2e1b0-b58c-424b-befc-77c65816d261", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Fragments.SpaceAnalyticalFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Fragments\\SpaceAnalyticalFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a8614fd6-b734-404c-9ca7-c31d8b6f4fc3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Fragments.RadiationFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Fragments\\RadiationFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1ce88ea4-03dc-45dc-a198-6afdeb7281d6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Fragments.PanelContextFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Fragments\\PanelContextFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f6baab50-ad62-454e-880d-d81dc7135068", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Fragments.PanelAnalyticalFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Fragments\\PanelAnalyticalFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "33808221-4b33-47b2-b268-4641d0a0b651", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Fragments.OriginContextFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Fragments\\OriginContextFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d7b5c829-ab79-4aab-b79f-342d512716d7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Fragments.LoadFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Fragments\\LoadFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c782d949-bbbf-4eb5-b1eb-b95c96eb60ce", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Fragments.LightTransmittanceFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Fragments\\LightTransmittanceFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "be1ce1b6-7c63-4b71-b6ce-3732e3164c36", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Fragments.LightReflectanceFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Fragments\\LightReflectanceFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2a9db929-c01d-4ca9-9f6a-c714e42abfa9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Fragments.EnvironmentConstructionFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Fragments\\EnvironmentConstructionFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "41492db7-e326-4b48-80ed-203161a0d2c2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Fragments.SizingMethod", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Fragments\\Enums\\SizingMethod.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d6f9f6ec-21af-4058-add5-7536b91a7724", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Fragments.CoefficientFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Fragments\\CoefficientFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f9d20644-fda2-43eb-a04b-ad875fa582b2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Fragments.BuildingResultFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Fragments\\BuildingResultFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e1a2a255-1178-490a-b0a2-58022aeaf262", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Fragments.BuildingContextFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Fragments\\BuildingContextFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "13848f80-0cd8-43db-99a8-b641609ee94e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Fragments.BuildingAnalyticalFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Fragments\\BuildingAnalyticalFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "031df133-3cde-441d-b24b-809b6d75b5d5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Fragments.AnalyticalConstruction", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Fragments\\AnalyticalConstruction.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e61a6c23-27e7-4365-a0fc-3c6c226d75c2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.MaterialFragments.SolidMaterial", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\MaterialFragments\\SolidMaterial.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "caf5ad01-db00-45c0-ba41-297a7f9af5a3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.MaterialFragments.GasMaterial", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\MaterialFragments\\GasMaterial.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "60521a1d-defa-4826-b6ec-33d752c71824", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.MaterialFragments.Roughness", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\MaterialFragments\\Enums\\Roughness.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c2bcb0c4-2bab-4ec1-81c4-4483cb524465", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.MaterialFragments.Gas", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\MaterialFragments\\Enums\\Gas.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c5cf4472-f95a-4edc-b7b1-9b8acd23d070", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.MaterialFragments.Function", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\MaterialFragments\\Enums\\Function.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2573a041-61f9-4f23-944b-94cf476e387b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.Illuminance.Lux", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\Illuminance\\Lux.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3fe8b5c3-c273-4315-bab7-a3ce21fe1514", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.Mesh.MeshResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\Mesh\\MeshResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "60624e1d-8e73-4671-bc88-c697a261c6c9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.Mesh.MeshElementResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\Mesh\\MeshElementResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2042fb35-a0ae-4abf-a6c7-5e135de43375", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.SimulationResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\SimulationResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6bfe41f1-eb5e-403c-9d67-3738dee111fb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.WindSpeedResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\WindSpeedResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7d7bece8-47d0-4ea3-9595-d09447525a2e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.TimeIndexResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\TimeIndexResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4c8af7f3-0206-464d-8fec-e80ae758ce9d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.WetBulbTemperatureResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\WetBulbTemperatureResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1f5d61fd-5190-44b2-b1f9-2b787df4e93f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.UniversalThermalClimateIndexResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\UniversalThermalClimateIndexResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "da3fd92c-83ae-4ab2-b8b2-03ebc8d03985", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.SurfaceTemperatureResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\SurfaceTemperatureResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7d5a8f2f-bb65-4c70-b49f-34980c43f896", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.SkyTemperatureResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\SkyTemperatureResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "20ed8df5-cccb-4ac8-9a29-b391ac3b3ed7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.MeanRadiantTemperatureResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\MeanRadiantTemperatureResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "07f02b7d-9c55-4557-8bde-190695886bbf", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.DryBulbTemperatureResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\DryBulbTemperatureResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a691133a-5d36-45ab-a659-495582804975", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.DewPointTemperatureResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\DewPointTemperatureResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "35abb8eb-4636-4f31-b213-eaef4566d33b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.EnthalpyResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\EnthalpyResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c63f9031-d42c-4d32-9527-d034fde99153", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.RelativeHumidityResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\RelativeHumidityResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ab92920a-2418-471f-b181-66e19a7f59fb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.HumidityRatioResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\HumidityRatioResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "cb6b72c9-124e-47c8-97be-cdccc4c383e4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.AtmosphericPressureResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\AtmosphericPressureResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e8b8cb99-f2d4-4117-b5dd-3f1be5298e1f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.IlluminanceResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\IlluminanceResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "70f15d30-5ed2-4d16-8ef8-ffe48d3a15b2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.PowerResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\PowerResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "25a6c31b-b07c-4e3f-80ec-9037e96f4ef0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.InsolationResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\InsolationResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "828e92f1-3572-4977-bfd5-691f7df53df2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.GlobalHorizontalRadiationResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\GlobalHorizontalRadiationResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "02a10b74-bfc3-4889-acc2-8fe31678174e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.DirectNormalRadiationResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\DirectNormalRadiationResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "84dbbba9-683c-4549-9959-072044300c7a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.DiffuseHorizontalRadiationResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\DiffuseHorizontalRadiationResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "115f2d31-4bb5-4d7e-805c-368ce9e1b9b0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.DateTimeIndex", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\DateTimeIndex.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "13bc8a2c-ad54-46c5-aef3-edbf6b6d33ad", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.WindDirectionResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\WindDirectionResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a0fa44ad-c563-4a70-94cf-f2837ee5b48b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.ProfileResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\ProfileResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f94d1a06-8717-4aa6-afb3-9a9459b5aa4d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.SimulationResultType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\Enums\\SimulationResultType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "549bce62-9d22-4930-bb4c-f3fd8048872e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.ResultType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\Enums\\ResultType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c7287645-f522-424d-a977-b6c01c1012f8", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.ProfileResultUnit", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\Enums\\ProfileResultUnit.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "269b0488-6050-4aa5-8aa3-2694c84878f8", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.ProfileResultType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\Enums\\ProfileResultType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2bb19019-08e4-4f1f-8a9b-819366772a94", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.Ventilation", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Ventilation.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0a0e6386-7be0-4c8e-a596-ba6991c6fe39", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.Thermostat", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Thermostat.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1d8e9c54-6493-4a36-a86c-c3aabf7fbf9c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.Profile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Profile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3afd1c5d-5958-4267-ac37-f6cd04340f52", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.Pollutant", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Pollutant.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6e87900a-d68a-4c7a-ac90-5714bdc5636c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.Plumbing", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Plumbing.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "224877b1-a364-4042-86e7-821a60a39cc8", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.Plug", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Plug.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "89375b4a-7825-42cf-81e8-600558ed8d97", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.People", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\People.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "123418b3-2a7b-49a9-9352-9e580babc66a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.Lighting", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Lighting.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9bde2443-fb72-40a0-97bc-edba29623293", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.Infiltration", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Infiltration.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "29cc968e-4afd-4850-97d5-afab84ab4dce", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.FireProtection", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\FireProtection.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ee56fd38-2e89-44c8-9887-e0cc814dcf05", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.Exhaust", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Exhaust.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "698a2fd4-6c07-4cc4-804d-f93095098887", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.Equipment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Equipment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "deb85721-be0e-48f0-85aa-d758b75962a7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.SprinklerSystemType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Enums\\SprinklerSystemType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "470996ab-1197-4845-b415-702bf1804dd7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.SimulationDayType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Enums\\SimulationDayType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2998fa57-8b6b-45b8-a171-8304fa78c6e7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.ProfileType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Enums\\ProfileType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e7906916-988c-4c6a-9f57-fdd22e09d536", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.ProfileDay", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Enums\\ProfileDay.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b506e977-f354-4ffa-a43d-dfda76be5477", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.ProfileCategory", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Enums\\ProfileCategory.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e2b3f6e3-5b9c-4520-9f44-d7160875ee01", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.HazardType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Enums\\HazardType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b9392089-061a-4bfb-aa7e-b47e33400f63", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.EmitterType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Enums\\EmitterType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "80118bcb-6d48-4dd5-a7a4-05c846d2153d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.Acoustics", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Acoustics.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "478f9677-5e04-4f72-a6fe-6b850f01acfc", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Constructions.Layer", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Constructions\\Layer.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6a3b93f2-3621-4b00-b285-c90f5c0942ec", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Constructions.Construction", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Constructions\\Construction.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d0a23c36-cbff-4e3c-a3d5-8e9e167dc7e4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Elements.Offset", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Elements\\Enums\\Offset.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3addce07-308b-4635-8fe3-ad87d618eb3b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Elements.Window", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Elements\\Window.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "dba08f17-17f0-4ae3-9881-d675173b6697", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Elements.Wall", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Elements\\Wall.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6a9f0775-39f7-4580-9b3f-13a005da3397", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Elements.Void", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Elements\\Void.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "03c33a92-01a1-45de-8ab9-95cf155f72fb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Elements.SolidBulk", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Elements\\SolidBulk.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e650c8d2-ce4b-4100-8cc4-dee4c0763cf4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Elements.Roof", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Elements\\Roof.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c985912c-92b7-472b-b535-08988b66b2ec", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Elements.Pile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Elements\\Pile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8b37c889-d108-4e07-b089-b38690088419", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Elements.Floor", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Elements\\Floor.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b4833dd0-a653-4d85-81dc-59f6ab0e2054", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Elements.ExplicitBulk", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Elements\\ExplicitBulk.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "12c9db96-e5ee-49c4-8320-b9bcc7ad91a6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Elements.Door", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Elements\\Door.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0cd6cdc7-2523-4e90-9eda-6a7fb5aea5e5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Elements.Column", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Elements\\Column.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "118945f1-9918-4c65-9eb5-2d31dfecdb8b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Elements.Cable", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Elements\\Cable.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "20ef603c-2ecd-4b8a-aefd-f4e6d9571cb6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Elements.Bracing", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Elements\\Bracing.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "02a54db7-aa96-462d-8e93-9db3b93cd96d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Elements.Beam", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Elements\\Beam.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7610031d-2c5f-4766-9da0-5c4a5a0726f1", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\FramingProperties\\ConstantFramingProperty.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ec07123a-288e-4935-a6b2-f97ce0a77597", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Materials.VolumetricMaterialTakeoff", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Materials\\VolumetricMaterialTakeoff.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c4cbb837-9295-400a-8f11-a8086b72ad2a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Materials.MaterialComposition", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Materials\\MaterialComposition.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e7e1a0ec-4080-442f-aa2c-5b0d7f280c7f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Materials.Material", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Materials\\Material.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "85e0ea2e-334e-4225-b235-dc35ed675b5d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Reinforcement.Stirrup", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Reinforcement\\Stirrup.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0b41155c-937d-4cef-9b3d-516287dac7f2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Reinforcement.ReinforcementFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Reinforcement\\ReinforcementFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1d8d502b-990a-466e-a8c8-537b5b6f8942", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Reinforcement.PrimaryReinforcingBar", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Reinforcement\\PrimaryReinforcingBar.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4c1052a0-929e-4437-ac64-814938174122", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.BHoMAnalytics.UsageEntry", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoMAnalytics_Toolkit\\blob/main/BHoMAnalytics_oM\\UsageEntry.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4b091d55-9d62-41be-9662-cda3c39778a0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.BHoMAnalytics.WebUsageEntry", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoMAnalytics_Toolkit\\blob/main/BHoMAnalytics_oM\\WebUsageEntry.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2bf21b25-9a3d-4b97-aa7e-e9a7398e936f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.BHoMAnalytics.ToolkitSettings", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoMAnalytics_Toolkit\\blob/main/BHoMAnalytics_oM\\ToolkitSettings.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7eb77e45-09d0-4063-8940-9530519ef9be", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.BHoMAnalytics.ItemType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoMAnalytics_Toolkit\\blob/main/BHoMAnalytics_oM\\Enums\\ItemType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d4433c0f-dfd8-4866-ad56-8bf4d69ebc01", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.Layouts.PerimeterLayout", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\Layouts\\PerimeterLayout.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0a666e92-fd46-4744-8447-1855f34d54d0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.Layouts.OffsetCurveLayout", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\Layouts\\OffsetCurveLayout.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "48a71db7-f1a2-490d-a4f2-7bf6d5fa4b33", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.Layouts.MultiLinearLayout", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\Layouts\\MultiLinearLayout.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b7491969-a639-452e-8ce7-e4fede4309b0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.Layouts.LinearLayout", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\Layouts\\LinearLayout.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "164fe09c-5018-4b38-b86c-d583a27caaf0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.Layouts.ExplicitLayout", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\Layouts\\ExplicitLayout.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0bc8cfde-32b5-4caf-8856-3a9959b3549a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.Layouts.ExplicitCurveLayout", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\Layouts\\ExplicitCurveLayout.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6969c904-2f3a-405f-92e4-faa61112f9eb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.Layouts.ReferencePoint", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\Layouts\\Enums\\ReferencePoint.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8d3ee7f0-e254-4be3-821f-f07ca4c5efd8", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.SettingOut.Level", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\SettingOut\\Level.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "bed69ca3-59d8-45c2-8801-ac294ae7ae89", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.SettingOut.Grid", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\SettingOut\\Grid.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f8822851-f717-4e51-91cb-10148ac47339", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.ZSectionProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\ZSectionProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "79c22a3a-e09d-4b1a-8fc7-dc184b594b51", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.TubeProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\TubeProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "78b9ecea-7f8f-4f4f-be9c-7b78b3a4dc68", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.TSectionProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\TSectionProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "feffe2e2-7205-444b-94ad-ba875b962b9f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.TaperFlangeISectionProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\TaperFlangeISectionProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6fc04268-9565-4e4b-87c4-78c4750b88e3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.TaperFlangeChannelProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\TaperFlangeChannelProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b0aa0515-b822-4a7f-a8e6-35296f952524", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.TaperedProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\TaperedProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3660c363-924b-4be0-83f6-5799dbe205f0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.RectangleProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\RectangleProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2df17594-68d7-421e-a617-7f75f4275146", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.KiteProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\KiteProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6a5f3cb6-9b2b-4340-b532-0c359452755d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.ISectionProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\ISectionProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "39d2d66d-4702-4408-8903-34e5e271f87d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.GeneralisedTSectionProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\GeneralisedTSectionProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "19dc8da8-f388-4471-b67b-fade54c4b98e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.GeneralisedFabricatedBoxProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\GeneralisedFabricatedBoxProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "213dbbc5-bef9-43d5-879b-29cc5dd3be9e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\FreeFormProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c91bb369-3e75-488b-b6c9-cf580fef55a0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.FabricatedISectionProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\FabricatedISectionProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0b106079-db87-4f11-b43a-6c0b26d8b84c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.FabricatedBoxProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\FabricatedBoxProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8b964703-5bde-4f93-abfb-963fcf887ed1", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.ShapeType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\Enums\\ShapeType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "15da74e4-fb94-4aeb-ac5c-6f0ec7e7d2bb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.CircleProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\CircleProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "bba81bea-17f1-408f-ad36-e60d889bb6df", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.ChannelProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\ChannelProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c9a010d1-0c3c-4ff5-b774-7b90904bb85c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.BoxProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\BoxProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "660417a6-452b-4083-af4b-74ad965f6b14", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.AngleProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\AngleProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e3998757-4c8e-4c4d-ab2a-0fd92263c67c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.Spine", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\Spine.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6ec86757-159d-4cce-8c5e-c36de86c263b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.RightUpperLeg", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\RightUpperLeg.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ad8e476a-4d48-4a2e-9172-677382499176", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.RightUpperArm", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\RightUpperArm.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "12782c93-1285-4480-a913-b322cd874ff1", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.RightThumb", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\RightThumb.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ae5464fd-9f86-4675-abff-f33836745bbf", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.RightShoulder", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\RightShoulder.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "15590d55-566f-4c47-823d-d82a8016468d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.RightLowerLeg", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\RightLowerLeg.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "296bea9b-003e-46b2-8187-dd86d95e82bb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.RightLowerArm", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\RightLowerArm.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1d416d6f-91d9-4382-885c-9f1726701c5e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.RightHip", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\RightHip.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8a3a618d-0bd0-4e46-9b9e-bfbc7fb3a091", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.RightHand", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\RightHand.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "23126d86-139b-4534-bbc1-fd60b9435734", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.RightFoot", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\RightFoot.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d59fe9b0-a778-44c4-a0cf-fa8af549eb79", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.PairOfEyes", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\PairOfEyes.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "65dedb01-9054-4dcf-a29d-9c5ba4a8f25a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.Neck", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\Neck.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "40c4c8ce-8228-4342-85b4-b741da93bb8c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.LeftUpperLeg", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\LeftUpperLeg.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "09a378bc-808f-4cba-936e-67ccba993935", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.LeftUpperArm", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\LeftUpperArm.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9509986e-fea0-46e8-8f62-59b21b878f20", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.LeftThumb", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\LeftThumb.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9ca29e23-24e6-48c5-aa37-cd5b58ac03d1", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.LeftShoulder", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\LeftShoulder.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e50fe4ad-5746-4de9-ba7c-1720d731b495", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.LeftLowerLeg", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\LeftLowerLeg.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "44421307-4670-4404-aafc-bf8f0e93b3e4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.LeftLowerArm", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\LeftLowerArm.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1f2e9eb3-edce-49ea-a77d-86661bccdb7d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.LeftHip", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\LeftHip.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c4fe0197-9e4e-4552-b5b8-eb932c99d178", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.LeftHand", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\LeftHand.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a6f78d68-e423-4a0b-88d3-995046825e3b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.LeftFoot", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\LeftFoot.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c2e3a47e-99bb-404c-930a-8f450cd74ee1", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.Head", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\Head.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "23567e71-cc0c-4933-b811-000fbff250d3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.Eye", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\Eye.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d9ac7684-813c-47dd-a2ca-eebfdd9167f5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.ViewQuality.Spectator", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\ViewQuality\\Spectator.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2cec9a6e-b1fb-4e2b-ae19-c52cb31330eb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.ViewQuality.ViewQualityResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\ViewQuality\\ViewQualityResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1f887ee5-453f-47ae-bec4-8b39d39cb8f2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.ViewQuality.Evalue", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\ViewQuality\\Evalue.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "47b1744f-0e80-4bad-8ea1-040c1a0523ca", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.ViewQuality.Cvalue", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\ViewQuality\\Cvalue.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "de7e79bc-8ada-43ba-971f-d659c557b96d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.ViewQuality.Avalue", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\ViewQuality\\Avalue.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a3ccc735-04f8-4762-9116-ba15a33f0943", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.ViewQuality.EyePositionParameters", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\ViewQuality\\EyePositionParameters.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8a3e06bb-cf0e-493f-8e87-9f68fbd7f2e8", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.ViewQuality.EvalueViewEnum", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\ViewQuality\\Enums\\EvalueViewEnum.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8e117f23-4b48-4a0a-9048-42b464a2f13e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.ViewQuality.EvalueSettings", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\ViewQuality\\EvalueSettings.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3f87e5b0-835d-4f93-ad1d-a6a369ea633f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.ViewQuality.CvalueSettings", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\ViewQuality\\CvalueSettings.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3cebd549-666e-48c6-abfe-3b958e86f6e8", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.ViewQuality.CvalueFocalMethodEnum", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\ViewQuality\\Enums\\CvalueFocalMethodEnum.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "170b01c0-6a68-44ea-9306-f53848521e00", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.ViewQuality.AvalueSettings", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\ViewQuality\\AvalueSettings.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8bf74592-42e3-4119-8cd8-e6256f5ffa78", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.ViewQuality.Audience", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\ViewQuality\\Audience.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "eb3d7b14-9b40-4ad0-9f6a-ff5035afd816", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.Skeleton", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\Skeleton.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3fd6cded-bd91-466f-bb7f-e8bd5efeaac1", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.Human", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\Human.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "073da569-1d12-4818-a64a-5d0375e972b7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.JointName", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\Enums\\JointName.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b6ac3ebc-96d5-44d8-9485-d625849002d1", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.HandStateName", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\Enums\\HandStateName.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b88aa4ec-4db8-479c-bc5d-c84a668a76fa", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.Employee", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\Employee.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "dc17232a-4d51-45a9-8d2d-5db2d75ca6c7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Architecture.BuildersWork.Opening", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Architecture_oM\\BuildersWork\\Opening.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "83711861-5d9c-46a2-9aba-50a51e9eda01", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Architecture.Elements.Room", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Architecture_oM\\Elements\\Room.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2b2f8a19-69a3-4cda-b997-02b0f0f7535c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Architecture.Elements.Occupancy", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Architecture_oM\\Elements\\Occupancy.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "fefb328e-8466-4df8-8489-995de29ecdb2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Architecture.Elements.CeilingTile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Architecture_oM\\Elements\\CeilingTile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b7c45af5-e282-4f6e-bef8-bc4af7d2e297", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Architecture.Elements.Ceiling", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Architecture_oM\\Elements\\Ceiling.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a45f0887-52a0-49d2-bcc8-614287e8f69a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Architecture.Theatron.VomitoryParameters", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Architecture_oM\\Theatron\\VomitoryParameters.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "44c72f93-5ee7-4da2-97f9-a43ed4a79e9d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Architecture.Theatron.SuperRiserParameters", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Architecture_oM\\Theatron\\SuperRiserParameters.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "007096da-072a-4982-a902-44b6833f4377", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Architecture.Theatron.StadiaParameters", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Architecture_oM\\Theatron\\StadiaParameters.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "341e74ca-71be-47ad-9bb4-d48c7407d314", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Architecture.Theatron.ProfileParameters", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Architecture_oM\\Theatron\\ProfileParameters.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ff827fa2-ee14-4100-8616-addfbe48b69c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Architecture.Theatron.StadiaType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Architecture_oM\\Theatron\\Enums\\StadiaType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "db44ad09-fe4d-44cc-9b93-070fe7402c94", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Architecture.Theatron.SeatingBlockType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Architecture_oM\\Theatron\\Enums\\SeatingBlockType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f4777b4c-9f1d-4f9f-adf9-7ae77322e808", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Architecture.Theatron.EvalueViewType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Architecture_oM\\Theatron\\Enums\\EvalueViewType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "87924157-4314-4545-a508-daf57d1cbd84", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Architecture.Theatron.BayType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Architecture_oM\\Theatron\\Enums\\BayType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c0edb6e0-537e-428c-9426-d0887c3f3693", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Architecture.Theatron.TierProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Architecture_oM\\Theatron\\TierProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f9060e20-d501-4b3c-b9b3-dbd25b9347b6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Architecture.Theatron.Tier", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Architecture_oM\\Theatron\\Tier.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ac32bf0a-fa95-4593-ac4e-d66b49924b67", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Architecture.Theatron.TheatronPlan", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Architecture_oM\\Theatron\\TheatronPlan.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "17338757-1d03-4463-9805-48c51d4978d8", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Architecture.Theatron.TheatronGeometry", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Architecture_oM\\Theatron\\TheatronGeometry.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f5ec2a98-6bfd-4bc7-831f-d7a55d12baa4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Architecture.Theatron.TheatronFullProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Architecture_oM\\Theatron\\TheatronFullProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a1275c92-d46a-4f94-8c16-4390bea33b31", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Architecture.Theatron.SeatingBlock", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Architecture_oM\\Theatron\\SeatingBlock.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "bfc4417e-4567-4eda-8665-13209d3334c4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Architecture.Theatron.ProfileOrigin", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Architecture_oM\\Theatron\\ProfileOrigin.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8cfc4d53-da25-49e4-a4ed-8a215b1c9f11", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Architecture.Theatron.ActivityArea", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Architecture_oM\\Theatron\\ActivityArea.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c1be7711-828c-4a99-960a-d600f74cc6c5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.Colours.GradientOptions", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\Colours\\GradientOptions.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "75797c0c-7ad3-47f9-ab96-5fd0213a51cd", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.Components.Links", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\Components\\Links.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ea61b62d-7c96-40eb-adb0-762a99672066", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.Components.Boxes", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\Components\\Boxes.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "97ad64f6-e24e-45d3-9940-5b9306e2c305", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.Components.BasicArrowMarker", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\Components\\BasicArrowMarker.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a17a63fe-5ad7-4f9b-909b-8512a16ebdb6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.Enums.GradientCenteringOptions", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\Enums\\Enums\\GradientCenteringOptions.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ca7f8bc3-b447-4783-8b1f-9cd67c8d563f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.Fragments.RelationRepresentation", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\Fragments\\RelationRepresentation.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c06b99f4-4f9b-4fad-9579-2efd42d1ce56", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.Fragments.GroupRepresentation", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\Fragments\\GroupRepresentation.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "bd5e1687-6433-410c-a40f-9dd9a00f2350", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.Fragments.GraphRepresentation", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\Fragments\\GraphRepresentation.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "97748081-0223-411d-9bc4-dc3226dc7f6f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.Fragments.EntityRepresentation", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\Fragments\\EntityRepresentation.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7024d91b-5aa8-4432-9c33-e90f53fbdea6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.Misc.Padding", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\Misc\\Padding.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4a8e441c-b93f-42a8-bccd-bc244477dfab", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.Scales.ScaleOrdinal", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\Scales\\ScaleOrdinal.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a5b2c15d-d92d-4bec-a8a8-295df67c9005", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.Scales.ScaleLinear", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\Scales\\ScaleLinear.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "65e0bb89-4495-4560-bed5-cf25eb0ceba2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.Views.ViewConfig", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\Views\\ViewConfig.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "78ed887d-809f-4698-8039-d9a617c796f4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.Views.DependencyChart", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\Views\\DependencyChart.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "17897f23-6bb6-4e13-bb2f-43c32d8fd73a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.SVGStyle", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\SVGStyle.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "85be337d-0c1c-4e75-b7f9-99f741fcc5df", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.SVGObject", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\SVGObject.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c2eda16e-33cd-4884-b8c1-b359a0926a69", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.SVGDocument", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\SVGDocument.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "65a8cd88-60fe-4d71-aa0c-d7b148c9dbe9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.Texture", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\Texture.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7044f760-7afd-46bc-a236-4803eef83385", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.RepresentationOptions", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\RepresentationOptions.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "78ea4808-0297-4827-8442-3f2b4bdbdf93", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.RenderText", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\RenderText.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "41caaca6-a23c-420f-afdc-9586e1745e0e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.RenderPoint", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\RenderPoint.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "89b69974-7c11-46d5-a5dc-4ca69717a0b3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.RenderMeshOptions", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\RenderMeshOptions.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f6b2f3e6-5cb7-4dcf-ba2b-7f62be862a0e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.RenderMesh", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\RenderMesh.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7a690bad-5317-4e2e-950e-d4b00b2751a0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.RenderGeometry", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\RenderGeometry.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6dea1d49-a6b3-4114-b316-3c24fa610d9c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.RenderCurve", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\RenderCurve.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3f0ac3ab-c9ce-4e4a-bd09-211ef1818be4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.SteppedGradient", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\SteppedGradient.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f97fc980-3a0b-4829-b49a-cbfe40c87191", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.Gradient", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\Gradient.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "fde7908f-bca7-4354-85f2-cb1ec1e3fc15", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.ColourFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\ColourFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e220cf40-6081-40f1-bf32-d6fc355a29e1", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Acoustic.SoundLevel", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Acoustic_oM\\SoundLevel.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c66935c4-582e-4313-a639-51df7a01e9cc", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Acoustic.SnRatio", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Acoustic_oM\\SnRatio.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a1d1c538-d173-4354-b7fe-2d4b0144ba74", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Acoustic.RT60", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Acoustic_oM\\RT60.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3dfe2ce5-3056-4171-ab33-874704d88c3d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Acoustic.Rasti", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Acoustic_oM\\Rasti.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c8323a12-dbdc-4460-811f-1bece3f56c97", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Acoustic.Frequency", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Acoustic_oM\\Enums\\Frequency.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c1ffc432-718a-42fb-a40c-64aea13e2e5c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Acoustic.Speaker", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Acoustic_oM\\Speaker.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8b6571e0-2fcc-400a-92e1-8ff1175e85f4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Acoustic.Room", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Acoustic_oM\\Room.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b5feccc7-5450-44e9-8c19-2408c22cb775", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Acoustic.Receiver", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Acoustic_oM\\Receiver.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7668efd7-99db-4cea-85db-110ab01fb93f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Acoustic.Ray", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Acoustic_oM\\Ray.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8ca6f35a-263b-4eea-9b3f-689acef56d71", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Acoustic.Panel", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Acoustic_oM\\Panel.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7b8ad5b2-5191-4892-81af-0c93f3e284db", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Test.Results.TestResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Test_oM\\Results\\TestResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "cd9afb5d-0c96-472d-b8c1-7736f628016e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Test.Results.InputOutputDifference", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Test_oM\\Results\\InputOutputDifference.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8095ac67-b344-42fa-938c-a6d372695112", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Test.Results.InputOutputComparisonSummary", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Test_oM\\Results\\InputOutputComparisonSummary.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2840dabf-43b8-4c2d-b3fd-e8b9c1a58f1b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Test.Results.InputOutputComparisonDiffing", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Test_oM\\Results\\InputOutputComparisonDiffing.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a6265341-88bf-4331-8595-fe685344cf42", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Test.Results.InputOutputComparison", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Test_oM\\Results\\InputOutputComparison.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "02b63fca-482a-4c66-b833-c41b8485cdb1", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Test.Results.EventMessage", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Test_oM\\Results\\EventMessage.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "91201968-2121-466e-9e74-53f9b299426c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Test.Results.InputOutputComparisonType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Test_oM\\Results\\Enums\\InputOutputComparisonType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "924ae489-23da-4e4f-b45b-eb237c471e40", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Test.Results.InputOutputComparisonDiffingType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Test_oM\\Results\\Enums\\InputOutputComparisonDiffingType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f6cf5323-f3e3-47e3-9b51-1c2a6052fb6a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Test.UnitTests.UnitTest", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Test_oM\\UnitTests\\UnitTest.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "36767490-a409-43b4-92e8-214402ba5e05", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Test.UnitTests.TestData", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Test_oM\\UnitTests\\TestData.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c5543a77-b48d-4c9c-b5fb-8d03ef95d62f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Test.TestStatus", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Test_oM\\Enums\\TestStatus.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "be6d037b-254e-4be7-bb5e-dce22aeec6d7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Versioning.VersioningEvent", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Versioning_oM\\VersioningEvent.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "279d0c5e-2287-4ce0-b0b2-2904f27777f5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.UI.ParamInfo", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_UI\\blob/main/UI_oM\\ParamInfo.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "839255bb-ab9b-4850-a135-be73b59f0f5c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.UI.ParamKind", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_UI\\blob/main/UI_oM\\Enums\\ParamKind.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "98df71a3-5120-4778-9c66-f334b32ac845", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.UI.SearchItem", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_UI\\blob/main/UI_oM\\SearchItem.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "5d995a36-bb4e-4c36-837a-03d72302ec9d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.UI.SearchConfig", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_UI\\blob/main/UI_oM\\SearchConfig.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "feef2144-6404-41da-bb41-f2663437f9fe", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.UI.CustomItem", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_UI\\blob/main/UI_oM\\CustomItem.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "332a4e56-2aa5-4abd-a1f1-60482300f3f7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.UI.ParamOldIndexFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_UI\\blob/main/UI_oM\\ParamOldIndexFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "093f70c5-bf4d-4cc1-8aa6-4e38e2a4519f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.UI.UsageLogEntry", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_UI\\blob/main/UI_oM\\UsageLogEntry.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "75433645-a0f4-4ada-86d3-bc2f048f614a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.UI.ProjectIDEvent", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_UI\\blob/main/UI_oM\\ProjectIDEvent.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "228ad2aa-a402-4afe-bae1-0212c91e613a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.UI.CallerUpdateCause", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_UI\\blob/main/UI_oM\\Enums\\CallerUpdateCause.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8f6ff9b0-d574-4696-8ec3-81ba7b606da5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.UI.CallerUpdate", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_UI\\blob/main/UI_oM\\CallerUpdate.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "bb4bfc08-21bc-470d-967b-684be99a7eb9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.UI.ComponentUpdate", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_UI\\blob/main/UI_oM\\ComponentUpdate.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "47dfd079-8686-442f-b3fa-0fec2786c26e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.UI.ParamAdded", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_UI\\blob/main/UI_oM\\ParamAdded.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d4bfea55-b296-4e5b-a30e-d24afbe97b5c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.UI.ParamRemoved", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_UI\\blob/main/UI_oM\\ParamRemoved.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "474e69f3-78b7-4f1b-bbc9-0b4bab8e93e5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.UI.ParamMoved", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_UI\\blob/main/UI_oM\\ParamMoved.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6904c7f1-3fae-4426-98f8-9ebd0c38457b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.UI.ParamUpdated", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_UI\\blob/main/UI_oM\\ParamUpdated.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0cc223bb-accc-4e49-ba93-b080ed9a6165", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.UI.InputsUpdate", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_UI\\blob/main/UI_oM\\InputsUpdate.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e3de24f6-e68b-4d44-befa-66d7f35bccc9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.UI.OutputsUpdate", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_UI\\blob/main/UI_oM\\OutputsUpdate.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "5c525cf4-dad4-448e-ab5a-5264db3b71bc", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.UI.TriggerLogUsageArgs", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_UI\\blob/main/UI_oM\\TriggerLogUsageArgs.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e36a7a84-1701-4a5e-8618-6562d9ca9850", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.UI.PreviousNamesFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_UI\\blob/main/UI_oM\\PreviousNamesFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "42e9e272-321f-4e11-acf0-a90c2a30b296", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.UI.ComponentRequest", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_UI\\blob/main/UI_oM\\ComponentRequest.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "efe95c89-12b4-4f53-9247-0b01ed41c463", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.CoordinateSystem.Cartesian", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\CoordinateSystem\\Cartesian.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b303f797-f15b-4d37-9047-d98de3197222", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.Vector", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\Vector.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a14a73a7-85bd-478d-8913-a669c48b767a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.Point", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\Point.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "520a0b7b-c627-4979-89e1-996b8c3dc593", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.Plane", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\Plane.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "37ca539b-71b5-4deb-a1ab-d03e01fe4cc2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.Basis", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\Basis.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "35887dd5-fc5e-45b1-aa57-57be8da64d01", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.PolySurface", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\PolySurface.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "62ecec45-ae05-4413-b6af-c876d247ef68", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.PlanarSurface", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\PlanarSurface.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "88c0653b-a3c3-4b28-b437-7c0260fc3ea1", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.Pipe", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\Pipe.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a68ed445-0ec8-4935-8864-bdf7344170db", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.NurbsSurface", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\NurbsSurface.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ce503186-94f3-441e-a13e-18cfc7d58744", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.Loft", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\Loft.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8bfc4e14-1e2a-4610-ae20-e71398046d10", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.Extrusion", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\Extrusion.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "af28b417-23e7-4673-b1b0-debd8c401165", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.Torus", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\Torus.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3e851860-6dd0-48b1-9c05-96d51c8db16f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.Sphere", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\Sphere.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3b09ef1f-8ac0-49a6-9bce-1d65dcb5c789", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.Cylinder", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\Cylinder.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "da96704b-1a32-4bff-909c-b675d3ee690b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.Cuboid", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\Cuboid.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ea5f9f05-922c-4e23-b24b-b52d19efbbd1", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.Cone", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\Cone.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "fbfa75b8-c2bd-4747-ab3f-0ec4bbd45976", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.BoundaryRepresentation", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\BoundaryRepresentation.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f8ba4cd0-314c-4900-a1dc-7b59c3d36880", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.TransformMatrix", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\TransformMatrix.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4a080e7a-eda9-40ed-9c5e-0f14cb7a26d1", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.SurfaceTrim", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\SurfaceTrim.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ace591b3-86eb-4df4-96d9-59e1d2567ac6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.Quaternion", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\Quaternion.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9512bc35-09da-4b37-980c-56022e3f8ef8", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.CompositeGeometry", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\CompositeGeometry.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "fc16f24d-f928-4eb5-b318-b77806c85fe4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.BoundingBox", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\BoundingBox.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a539ad26-8843-475d-b347-022d39ec563b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.Mesh3D", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\Mesh3D.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d1c56cf8-6014-4ee0-8a09-e93ce9a7fd22", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.Mesh", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\Mesh.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "122c5cee-4eda-4fca-8283-0f65489b04a2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.Face", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\Face.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8859793e-6813-4213-be57-1846a7d2e1fc", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.CellRelation", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\CellRelation.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a59b257d-d296-44c9-9872-74be19c64e3a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.IntegrationSlice", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\IntegrationSlice.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "88fd92da-168b-486e-b7c8-5390043d58c8", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.Polyline", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\Polyline.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "648bd6bb-a07f-4276-b834-340893875bef", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.Polygon", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\Polygon.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6476ef6c-5ca1-41ef-8a7e-b636eacfc966", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.PolyCurve", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\PolyCurve.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4ee07984-ffac-4484-9648-67d79682af59", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.NurbsCurve", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\NurbsCurve.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "dc65d295-d703-410f-b463-da916daa028e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.Line", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\Line.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "37597ae7-f82b-4d5a-8551-775b840d75e9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.Ellipse", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\Ellipse.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f06ea7bc-7a85-46a6-a6c1-32d4926aa1bf", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.Circle", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\Circle.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b685a77e-c36b-41bb-a705-db99e321f76e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.BoundaryCurve", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\BoundaryCurve.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "be4673b2-657c-41db-85a7-7f544290ec13", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.Arc", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\Arc.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "007e5e38-051d-4ff8-8702-40d2cbe5b013", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Attributes.ToBeRemovedAttribute", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Attributes\\ToBeRemovedAttribute.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "53481583-a6e9-4017-9c6c-a5bafde9af4b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Attributes.TargetsAttribute", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Attributes\\TargetsAttribute.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "522a8d67-d798-4e39-911d-755694f4a872", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Attributes.RequiredAttribute", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Attributes\\RequiredAttribute.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c763b2b6-a346-4ec8-a74c-936e7b7c46bd", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Attributes.ReplacedAttribute", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Attributes\\ReplacedAttribute.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ec83196b-a308-46dc-a173-7630289769df", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Attributes.ReleasedAttribute", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Attributes\\ReleasedAttribute.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4d092af4-cd75-44e7-b81d-a3c5191abaeb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Attributes.PreviousVersionAttribute", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Attributes\\PreviousVersionAttribute.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3f12bddf-d833-4ae9-880e-12271072c670", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Attributes.PreviousInputNamesAttribute", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Attributes\\PreviousInputNamesAttribute.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0870506a-b8df-461a-953a-8040b2a93b7f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Attributes.OutputAttribute", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Attributes\\OutputAttribute.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e52a903d-3076-44a6-999b-902ce6c08901", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Attributes.NotImplementedAttribute", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Attributes\\NotImplementedAttribute.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "5bca3239-756e-4965-8c5c-873721c72491", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Attributes.NoAutoConstructorAttribute", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Attributes\\NoAutoConstructorAttribute.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "aecaa888-2153-41c7-a1cd-df05a0352385", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Attributes.MultiOutputAttribute", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Attributes\\MultiOutputAttribute.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2420dc32-67f4-48bd-8f14-965b4969ac65", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Attributes.InputFromProperty", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Attributes\\InputFromProperty.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3e9009e5-def4-4408-810e-7be73873fcc7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Attributes.InputAttribute", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Attributes\\InputAttribute.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "141e00a9-71b4-44a3-b8d6-1d80ba3f427b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Attributes.DisplayTextAttribute", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Attributes\\DisplayTextAttribute.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c3edf02c-3784-4d81-9d6a-b49832b1b5f8", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Attributes.DefaultValueWarningAttribute", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Attributes\\DefaultValueWarningAttribute.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b1e72f72-31c9-4ce3-aa86-af3aab9e5acb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Attributes.AssemblyUrlAttribute", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Attributes\\AssemblyUrlAttribute.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8c2dafed-bfe8-4228-b825-0e0c4c7b681e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Attributes.AbbreviationAttribute", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Attributes\\AbbreviationAttribute.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d1e16976-4a9d-4300-b04e-36f60fed8d43", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Debugging.Log", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Debugging\\Log.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "46081eb9-8458-4211-89bb-8525afde1645", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Debugging.EventType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Debugging\\Enums\\EventType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a1b8f71c-44ab-47f6-9587-40cd6e400b5b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Debugging.Event", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Debugging\\Event.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d2c7a54e-021b-4e73-9b3e-d2a292119a51", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Reflection.UnderlyingType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Reflection\\UnderlyingType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "5b40fd9e-dc8c-46f5-bb15-90e433f7604f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Output`10", "GenericArguments" : [{ "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }], "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Output`10.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ca4af18c-ecfe-4878-a219-23ddb2e61a64", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Output`9", "GenericArguments" : [{ "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }], "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Output`9.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "bd2d7b3a-37ef-4159-be36-360dca62bb86", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Output`8", "GenericArguments" : [{ "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }], "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Output`8.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "cfde6c6b-fe42-4888-bd1f-1dbcb3d7fbfa", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Output`7", "GenericArguments" : [{ "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }], "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Output`7.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b81b63c7-2f82-4163-955e-9daf570dedce", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Output`6", "GenericArguments" : [{ "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }], "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Output`6.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2fe34bd9-b3ca-47ba-b114-7e84bdb8bd39", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Output`5", "GenericArguments" : [{ "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }], "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Output`5.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "fbd99c67-94b3-4b22-912d-36488a186862", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Output`4", "GenericArguments" : [{ "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }], "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Output`4.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2c4a1e8a-2b8a-450d-b99d-b7050a042e20", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Output`3", "GenericArguments" : [{ "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }], "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Output`3.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9f52120b-f7a1-43ea-aec8-97c074cdaa7f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Output`2", "GenericArguments" : [{ "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }, { "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }], "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Output`2.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d7333f2a-f5c9-4d66-8aa2-a90328db9282", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Output`1", "GenericArguments" : [{ "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }], "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Output`1.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a36d1189-9069-42a7-a782-3343b8570a8e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.NamedSignificantFigures", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\NamedSignificantFigures.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ea00e904-16d5-427d-9a62-e1c22d4e7ec7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.NamedNumericTolerance", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\NamedNumericTolerance.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "fa92a012-50c0-410a-92e8-070fe6469d7c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.HashFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\HashFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ec92c5d8-8361-48d3-a8ed-63582482bda4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.FragmentSet", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\FragmentSet.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "748c325f-ceaa-4efb-b33f-c0027f2a10d0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Enumeration", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Enumeration.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9691f114-09f4-4926-9d4d-9dcf43e82e19", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.CustomObject", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\CustomObject.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "10016021-d04c-425f-8833-b6b8f73e32c6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.ComparisonInclusion", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\ComparisonInclusion.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "5c8f3ad4-8487-43ed-9084-ea2feeb1fd28", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.ComparisonFunctions", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\ComparisonFunctions.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4abb5478-68bf-4078-b0e7-cf036edb7b84", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.ComparisonConfig", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\ComparisonConfig.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "66c10c81-38ef-4ed5-ba48-ca289007d159", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.BHoMObject", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\BHoMObject.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "35b94122-2894-4c25-a88d-069cfe2e1cc2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.BHoMGroup`1", "GenericArguments" : [{ "_t" : "System.Type", "Name" : "T", "Constraints" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.IBHoMObject", "_bhomVersion" : "6.0" }], "_bhomVersion" : "6.0" }], "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\BHoMGroup`1.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "125b025f-cb95-4737-81cd-28aeca767ff9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.BaseComparisonConfig", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\BaseComparisonConfig.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b60f32c5-e521-4db2-8203-9b89f4a2e753", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Collections.VennDiagram`1", "GenericArguments" : [{ "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }], "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Collections\\VennDiagram`1.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4b167356-841d-4e04-b4a0-67e938f9c0ee", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Collections.Tree`1", "GenericArguments" : [{ "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }], "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Collections\\Tree`1.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2fd6380e-766b-458e-bbb0-af6feef8252b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Collections.Table", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Collections\\Table.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "5b31424a-e763-421c-bff4-62c00dee92d5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Collections.PriorityQueue`1", "GenericArguments" : [{ "_t" : "System.Type", "Name" : "T", "Constraints" : [{ "_t" : "System.Type", "Name" : "System.Collections.IEnumerable, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089", "_bhomVersion" : "6.0" }], "_bhomVersion" : "6.0" }], "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Collections\\PriorityQueue`1.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "41bb1d82-94a4-4ec1-98c3-b2754efe5ff6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Collections.PointMatrix`1", "GenericArguments" : [{ "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }], "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Collections\\PointMatrix`1.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f96aa26f-43ad-4da0-b779-9ede290eb4bb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Collections.LocalData`1", "GenericArguments" : [{ "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }], "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Collections\\LocalData`1.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d21fcee4-d1ef-4064-a48d-b82526e5e735", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Collections.GraphNode`1", "GenericArguments" : [{ "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }], "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Collections\\GraphNode`1.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ef1157ef-663d-4f56-90ad-726ab903e2c3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Collections.GraphLink`1", "GenericArguments" : [{ "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }], "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Collections\\GraphLink`1.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a41b0d26-e436-407c-81fe-178a6ca663db", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Collections.Graph`1", "GenericArguments" : [{ "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }], "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Collections\\Graph`1.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "359a5137-84a6-4aae-a973-de78e29d8576", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Collections.DomainTree`1", "GenericArguments" : [{ "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }], "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Collections\\DomainTree`1.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e8e62f90-f101-40d9-a5e9-9bc793eb21be", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Collections.DomainBox", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Collections\\DomainBox.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4d1c264d-33da-4951-a365-2cb082c2b386", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Collections.Domain", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Collections\\Domain.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "02582264-df03-49b7-95d1-19c959ca1ff9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Collections.DiscretePoint", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Collections\\DiscretePoint.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "82d676d2-e562-4639-ae57-a85f738c2698", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Collections.DBSCANObject`1", "GenericArguments" : [{ "_t" : "System.Type", "Name" : "T", "_bhomVersion" : "6.0" }], "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Collections\\DBSCANObject`1.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "191f15e6-beb2-48c0-90fe-d9330bf512e4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Library.Source", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Library\\Source.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0fa87da8-29f2-40ea-8704-75ec26acc80e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Library.LibrarySettings", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Library\\LibrarySettings.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7e413c1a-f8d5-4176-b270-347f8f8bc5fb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Library.Dataset", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Library\\Dataset.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "19d8d953-afd5-4e30-8b94-32db9041461b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Library.Confidence", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Library\\Enums\\Confidence.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "19f3721a-dd0b-4d6f-9939-ccb3b11e0306", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Requests.SelectionRequest", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Requests\\SelectionRequest.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ee6fcbd9-55ad-4ffd-8c9a-c6a5d57e4bfd", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Requests.LogicalOrRequest", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Requests\\LogicalOrRequest.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "bf6abba7-99e8-4763-9c5b-ff0366fe4269", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Requests.LogicalNotRequest", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Requests\\LogicalNotRequest.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ec2524e2-2f70-4706-a81d-e5cf0745e5e7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Requests.LogicalAndRequest", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Requests\\LogicalAndRequest.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "5df569ad-7ba5-4814-9971-de20db3b4a2d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Requests.FilterRequest", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Requests\\FilterRequest.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d939a3ab-5644-4f70-9628-d28a2c7e8c3b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Requests.CustomRequest", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Requests\\CustomRequest.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8eb5ae22-7f18-4b03-89a6-62f8f3915ac2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Requests.BatchRequest", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Requests\\BatchRequest.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b170768c-9dac-4a77-9be9-deecd18b7ec2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.GraphLinkDirection", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Enums\\GraphLinkDirection.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d3483e1d-0647-4b7b-b8fc-ca16e2cc40f5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Adapter.Commands.SaveAs", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_Adapter\\blob/main/Adapter_oM\\Commands\\SaveAs.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "fb50577c-9206-46c6-9cf1-b9092dfb907e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Adapter.Commands.Save", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_Adapter\\blob/main/Adapter_oM\\Commands\\Save.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ffc86eaf-cd04-4b1c-8685-36aa6638e235", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Adapter.Commands.Open", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_Adapter\\blob/main/Adapter_oM\\Commands\\Open.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "eeac1f32-3fa2-43ad-af8f-e20723e0b8fb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Adapter.Commands.NewModel", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_Adapter\\blob/main/Adapter_oM\\Commands\\NewModel.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2ea66967-f33e-48bb-b950-6d9792733f84", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Adapter.Commands.Exit", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_Adapter\\blob/main/Adapter_oM\\Commands\\Exit.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8a3e5b62-e3f3-4d98-a0d2-0bb036c5a678", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Adapter.Commands.CustomCommand", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_Adapter\\blob/main/Adapter_oM\\Commands\\CustomCommand.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "831f6d96-11f9-499b-b315-3c106b5faee6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Adapter.Commands.Close", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_Adapter\\blob/main/Adapter_oM\\Commands\\Close.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e7a7eece-51a2-4974-99c5-289b7c1ebf4e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Adapter.Commands.ClearResults", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_Adapter\\blob/main/Adapter_oM\\Commands\\ClearResults.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "fb32b2a0-3307-43cf-a2d8-dc6e05c1d6a4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Adapter.Commands.AnalyseLoadCases", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_Adapter\\blob/main/Adapter_oM\\Commands\\AnalyseLoadCases.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "160535b6-0705-48d9-8c57-89fcbb97a91f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Adapter.Commands.Analyse", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_Adapter\\blob/main/Adapter_oM\\Commands\\Analyse.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9b9d1ee1-25ad-4c4b-9a89-4be530c46adb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Adapter.AdapterSettings", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_Adapter\\blob/main/Adapter_oM\\AdapterSettings.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a14b5d9d-1f46-4af4-bc15-a90e1c95e222", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Adapter.ActionConfig", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_Adapter\\blob/main/Adapter_oM\\ActionConfig.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4cf0af38-828d-4215-b92b-505c62bc0dc7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Adapter.ObjectWrapper", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_Adapter\\blob/main/Adapter_oM\\ObjectWrapper.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "805f0d08-5f18-4bf7-8e67-cff40e87360e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Adapter.FileSettings", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_Adapter\\blob/main/Adapter_oM\\FileSettings.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a43b603e-8a73-4d14-b201-89badfeb4f18", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Adapter.PushType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_Adapter\\blob/main/Adapter_oM\\Enums\\PushType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "05145f0e-c9fc-4809-9070-271378f109c0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Adapter.PullType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM_Adapter\\blob/main/Adapter_oM\\Enums\\PullType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8a4aafd3-85ed-437a-aa55-62e538a95d9b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Analytical.Elements.ShortestPathResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Analytical_oM\\Elements\\ShortestPathResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d15b3952-0172-4c2e-b6b5-df452b305f3c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Analytical.Elements.RelationDirection", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Analytical_oM\\Elements\\Enums\\RelationDirection.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "eef45e65-1705-4f6e-8916-d397294a14dc", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Analytical.Elements.Relation", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Analytical_oM\\Elements\\Relation.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4c557226-e6ae-4b3d-b26b-46c2096ed7e7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Analytical.Elements.SpatialProjection", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Analytical_oM\\Elements\\SpatialProjection.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "50a3156a-2b0a-4d0b-bceb-716bc8ce2e0d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Analytical.Elements.GraphicalProjection", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Analytical_oM\\Elements\\GraphicalProjection.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "5c35d42f-308d-466d-b405-ffb08e048cd2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Analytical.Elements.GeometricProjection", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Analytical_oM\\Elements\\GeometricProjection.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "870c6902-9d3b-4095-a247-477135399271", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Analytical.Elements.Graph", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Analytical_oM\\Elements\\Graph.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "00400edd-4afc-46a6-b995-0b15bd38bd72", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Analytical.Fragments.TargetsDependencyFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Analytical_oM\\Fragments\\TargetsDependencyFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "bfaa1c18-355a-4125-92ad-026c1116f369", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Analytical.Fragments.SourcesDependencyFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Analytical_oM\\Fragments\\SourcesDependencyFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ab37926e-b352-40b5-b920-3e6515fdeb38", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Analytical.Fragments.RoutingFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Analytical_oM\\Fragments\\RoutingFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "87a1c00e-e7ed-41eb-9c8f-47e5dfc2a15c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Analytical.Fragments.ProjectionFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Analytical_oM\\Fragments\\ProjectionFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ca14577f-bec9-446a-93a4-f04dcdffd2b1", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Analytical.Results.ResultFilter", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Analytical_oM\\Results\\ResultFilter.cs"] }] }], "_bhomVersion" : "6.0" } \ No newline at end of file +{ "_t" : "BH.oM.Data.Library.Dataset", "BHoM_Guid" : "3f240754-515c-4cee-b1f0-f376a456476f", "Name" : "Url", "Fragments" : [], "Tags" : [], "CustomData" : { }, "SourceInformation" : { "_t" : "BH.oM.Data.Library.Source", "BHoM_Guid" : "38438258-1573-47eb-8cf6-fe6150ffce9f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "SourceLink" : "", "Title" : "Url", "Author" : "Fraser Greenroyd", "ItemReference" : "", "Version" : "", "Publisher" : "", "Schema" : "", "Language" : "", "Location" : "", "Copyright" : "", "Contributors" : "", "Confidence" : "High" }, "TimeOfCreation" : { "$date" : 1667933094129 }, "Data" : [{ "_t" : "BH.oM.Test.UnitTests.UnitTest", "BHoM_Guid" : "77d27433-4dff-452a-ab01-28dd062d615e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Method" : { "_t" : "System.Reflection.MethodBase", "TypeName" : "{ \"_t\" : \"System.Type\", \"Name\" : \"BH.Engine.Reflection.Query, Reflection_Engine, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null\", \"_bhomVersion\" : \"6.0\" }", "MethodName" : "Url", "Parameters" : ["{ \"_t\" : \"System.Type\", \"Name\" : \"System.Type, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\", \"_bhomVersion\" : \"6.0\" }"], "_bhomVersion" : "6.0" }, "Data" : [{ "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2411a780-af1d-4fcd-9906-fb13b12f19cd", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Security.Elements.CameraDevice", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Security_oM\\Elements\\CameraDevice.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "eab374e5-ca91-460d-b5ba-c2d36d742f16", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.YoungsModulus", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\YoungsModulus.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c27544f4-5507-4434-bb7e-6d2911e7ccbf", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.WarpingConstant", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\WarpingConstant.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3304d239-3c0a-4843-ba0b-8eab93257c65", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.VolumetricFlowRate", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\VolumetricFlowRate.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "41d0667c-69ba-4c72-8dc3-0810fcbe2fd5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Volume", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Volume.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7623573d-bd3c-45c9-80b2-aef0b9544a8e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Velocity", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Velocity.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4b2ac1c1-6e30-46c0-a53f-1afd38bf9d91", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.TorsionConstant", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\TorsionConstant.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "5b1f5f42-c7d0-4d64-962a-7c4daacc181c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Time", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Time.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "426a4c9f-aa04-43a3-8cbc-efdc68fc56b4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.ThermalExpansionCoefficient", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\ThermalExpansionCoefficient.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7b912f36-b7f7-41f0-b1aa-79f2ff00652d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Temperature", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Temperature.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6b260c40-8015-40af-b80f-ff12cb3fd084", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Stress", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Stress.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2d12b424-2c56-4926-bb53-54c2faf2e60c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Strain", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Strain.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "00f6736e-6893-436d-a472-684d51e7f10c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.SpecificEnergy", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\SpecificEnergy.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "5b1b5751-47ce-4104-b751-bfeb7527f05e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.ShearModulus", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\ShearModulus.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6b4dd1c6-ca02-48ea-bd0e-7806adaa8826", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.SectionModulus", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\SectionModulus.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "33b949da-00a2-483f-b121-b8ae9b8af786", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.SecondMomentOfArea", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\SecondMomentOfArea.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "50b9b170-46eb-4b5f-8d8c-1125fb6d8e3c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Ratio", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Ratio.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f3745fed-1850-4b8e-b0d4-513037609349", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Pressure", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Pressure.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ff157e58-6e73-4a08-a355-467e882006a6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.MomentPerUnitLength", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\MomentPerUnitLength.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "539a4d1b-d6c8-4de9-a671-25356ef72799", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.MomentPerUnitAngle", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\MomentPerUnitAngle.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d87aa0e2-799b-4d7f-ba64-564306bc18b9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Moment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Moment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ae262398-49cd-407e-b540-68d3bd73d848", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.MassPerUnitLength", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\MassPerUnitLength.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "dd23b591-0669-4442-b1ab-bc2d90c9db76", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.MassPerUnitArea", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\MassPerUnitArea.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "00dadf1b-6e92-45fd-b6ad-723292b09754", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.MassFraction", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\MassFraction.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "05c2a26c-feb2-406c-ba08-a54a05fe4d63", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Mass", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Mass.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8bfef7a2-7f20-4726-8451-bc5fcd10fc78", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.LuminousIntensity", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\LuminousIntensity.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f9c83f1a-1ebc-46e5-b377-2870b6c16833", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Length", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Length.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1a81637e-dc67-4def-99ec-cc6d050a9f57", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Illuminance", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Illuminance.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c1bfc0f3-caac-4fcf-979d-1f602a646631", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Frequency", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Frequency.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9fa83fd2-8250-4cf9-867d-2e8e12bf85dc", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.ForcePerUnitLength", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\ForcePerUnitLength.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1b333458-2bed-459d-92e5-74453445b55a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Force", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Force.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "975110d7-1721-408c-80dd-12551fa7c9c3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.EnergyPerUnitTime", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\EnergyPerUnitTime.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "753f364e-bc2d-4eaa-bc81-57185dead7b1", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.EnergyPerUnitArea", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\EnergyPerUnitArea.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7b76e6d8-9747-4f05-b4f9-bb2dc7cc6bee", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Energy", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Energy.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "5d581136-82c3-42e9-8981-42d4facf8ad4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.ElectricCurrent", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\ElectricCurrent.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6a209892-02af-413e-bf3b-b0f45bc4a5b4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Density", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Density.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c1eabbd2-a9a7-44db-b6d3-4554161e7cd2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.AreaPerUnitLength", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\AreaPerUnitLength.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ca668e2b-fc6c-4eab-beb5-12fc65bb6b88", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Area", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Area.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d0470440-1445-4946-b35a-f29702a7ec46", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.AngularVelocity", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\AngularVelocity.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "5e59e3f6-fda2-4b76-894e-c2c4bd0d8c61", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.AngularAcceleration", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\AngularAcceleration.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "cd4ee4c7-ccc3-4c48-86e6-360900dea027", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Angle", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Angle.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2953e96f-4004-4f94-8327-5b64df91c132", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.AmountOfSubstance", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\AmountOfSubstance.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "5b23ae50-b25c-404f-aa80-d3ba839a1d15", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Quantities.Attributes.Acceleration", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Quantities_oM\\Attributes\\Acceleration.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4b677cd9-f7df-4f43-9070-1853dd3f009c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Equipment.Parts.HeatingCoil", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Equipment\\Parts\\HeatingCoil.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "94f8cb08-44e4-44b4-ac10-d910c98a17da", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Equipment.Parts.Filter", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Equipment\\Parts\\Filter.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "be7b8093-751d-43c9-aa6c-228f77dc1367", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Equipment.Parts.Fan", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Equipment\\Parts\\Fan.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "dddcc653-d888-4d31-9c43-5f51c236403e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Equipment.Parts.EnergyWheel", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Equipment\\Parts\\EnergyWheel.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c06998bc-6d0a-4e20-bd2b-6626fde7f42d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Equipment.Parts.ElectricalConnector", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Equipment\\Parts\\ElectricalConnector.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8c1cc5f0-f277-41bd-af84-1e7fecb32dc9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Equipment.Parts.CoolingCoil", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Equipment\\Parts\\CoolingCoil.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d956775f-8a04-4f31-be8d-8826e9ce70d9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Equipment.Parts.AirHandlingUnitBase", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Equipment\\Parts\\AirHandlingUnitBase.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "635a9630-88c4-4d59-8dcb-01199781bbd3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Equipment.MechanicalEquipment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Equipment\\MechanicalEquipment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "211dbdcc-394a-43f2-93fb-5e707059a468", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Equipment.FanCoilUnit", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Equipment\\FanCoilUnit.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7d58819d-daf2-438c-817c-a0896990ccb7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Equipment.ElectricalEquipment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Equipment\\ElectricalEquipment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "07bbb0d9-a6f7-439f-9550-1503bf16c24e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Equipment.AirHandlingUnit", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Equipment\\AirHandlingUnit.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "fad9cfa3-d942-42d7-8b8d-78f141867fad", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Fixtures.ResidentialFixtureUsage", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Fixtures\\ResidentialFixtureUsage.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0f6c1942-1453-4f25-a7ee-c0ecadc7bfb4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Fixtures.PlumbingFixtureFlow", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Fixtures\\PlumbingFixtureFlow.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a1cfc986-9b69-40fd-9ce4-1eb7841b60b9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Fixtures.PlumbingFixture", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Fixtures\\PlumbingFixture.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2d7b1d41-db37-4f6b-93b3-2f8c3e7bb3ef", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Fixtures.LightFixture", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Fixtures\\LightFixture.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "472345d6-4df4-4461-9a6a-2147e5f7fa6a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Fixtures.FireAlarmDevice", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Fixtures\\FireAlarmDevice.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a5fef4dd-ba67-4a66-bad2-8c183b0d5fba", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Fixtures.ElectricalFixture", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Fixtures\\ElectricalFixture.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "10f4439b-e1b3-4d82-904b-2643ac5d47d8", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Fixtures.CommercialFixtureUsage", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Fixtures\\CommercialFixtureUsage.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d231e811-903f-4290-8ad2-02625101b355", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Fixtures.AirTerminal", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Fixtures\\AirTerminal.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b1c78b95-7ca6-4a45-8db8-c3da6fdcaf10", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Fragments.PlumbingLoadingFixtureUnitFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Fragments\\PlumbingLoadingFixtureUnitFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6e61e1a6-ba75-4119-859a-d33cfdd90467", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Fragments.PlumbingFlowFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Fragments\\PlumbingFlowFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "566569e9-4d93-4ff4-ac05-c11479ff1100", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Fragments.IdentityFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Fragments\\IdentityFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "15a3a971-7d0f-43dc-8ffd-35f2271a4c21", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.Fragments.GeometryFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\Fragments\\GeometryFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0c5d1cba-5724-4d81-84aa-8ea21472ad70", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.Dampers.VolumeDamper", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\Dampers\\VolumeDamper.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "08c11c5e-e120-4097-a5d3-ba5e8ce8fc3b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.Dampers.Damper", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\Dampers\\Damper.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ef0211f8-7699-4c3d-8f1b-78da91a18cb4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.Fittings.Fitting", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\Fittings\\Fitting.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f8461099-3d14-46a2-a0c7-a0a080b626db", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.MaterialFragments.WireMaterial", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\MaterialFragments\\WireMaterial.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6fd22362-f1e5-49ac-aaf4-08df43b91ec3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.MaterialFragments.PipeMaterial", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\MaterialFragments\\PipeMaterial.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3119c6bf-b56e-44eb-a65f-594e38e812ce", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.MaterialFragments.LiningMaterial", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\MaterialFragments\\LiningMaterial.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7b3cc256-73fe-4700-88bf-d45bf1d8b6ce", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.MaterialFragments.InsulationMaterial", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\MaterialFragments\\InsulationMaterial.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "16f21733-48f6-4044-8552-af3678c4cfc3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.MaterialFragments.DuctMaterial", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\MaterialFragments\\DuctMaterial.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f74bb95d-3b84-4c7d-b160-e08272573c99", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.MaterialFragments.CableTrayMaterial", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\MaterialFragments\\CableTrayMaterial.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "667b547b-a9b9-4063-ad75-3cacabf11197", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.SectionProperties.WireSectionProperty", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\SectionProperties\\WireSectionProperty.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0f4b36ac-5044-4492-995c-66c5aa4fe73f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.SectionProperties.SectionProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\SectionProperties\\SectionProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7201058d-8fee-4238-8bf0-c32a84bc84bb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.SectionProperties.PipeSectionProperty", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\SectionProperties\\PipeSectionProperty.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "dbea7b17-dfb8-4de7-822b-d14692632834", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.SectionProperties.DuctSectionProperty", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\SectionProperties\\DuctSectionProperty.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "97cdeeb9-f42a-440e-95cc-045edc90cb60", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.SectionProperties.CableTraySectionProperty", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\SectionProperties\\CableTraySectionProperty.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "add03dca-6cab-4cf2-bc15-cf7f80fcd437", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.WireSegment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\WireSegment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c07931e2-1d3e-4ab2-b347-2aa3d47da15a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.Wire", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\Wire.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "72aa6e5e-31ed-4759-a72e-12575f8eb522", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.Pipe", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\Pipe.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "05172841-afb0-4569-b394-e41b6e3c566e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.Node", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\Node.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6670ae41-c18b-41e7-bf32-85d4980b55a6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.MechanicalSystem", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\MechanicalSystem.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "de0adf5a-2c5c-431e-a114-67ca96f9d64f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.FlowSystem", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\FlowSystem.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "55753d2b-bc63-4c5e-b275-81515eb8b100", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.Duct", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\Duct.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3468bcab-c28e-42b4-b770-0ba200fe2c99", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.MEP.System.CableTray", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/MEP_oM\\System\\CableTray.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1f5c3470-cefd-48d6-b7b0-0d07563bceea", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Matter.Options.DensityExtractionType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Matter_oM\\Options\\Enums\\DensityExtractionType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2dde18c5-8983-4ab1-9131-08d3d464d0ae", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Matter.Options.DensityExtractionOptions", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Matter_oM\\Options\\DensityExtractionOptions.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "552c029b-16c5-405f-bd68-7beb0111ed0e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Lighting.Analysis.Node", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Lighting_oM\\Analysis\\Node.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4149fba8-2b02-4387-a4b6-2d5eb0251de7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Lighting.Analysis.AnalysisGrid", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Lighting_oM\\Analysis\\AnalysisGrid.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7490fc54-3638-4e69-b3be-328ce4f0b0d9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Lighting.Elements.LuminaireType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Lighting_oM\\Elements\\LuminaireType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a3af0860-b0e7-40c4-964d-9f55c6fb5cf3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Lighting.Elements.Luminaire", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Lighting_oM\\Elements\\Luminaire.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "43528950-b3bb-431b-9597-18330b39b4ae", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Lighting.Results.Illuminance.Lux", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Lighting_oM\\Results\\Illuminance\\Lux.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a45b006d-4ac6-46c5-a60d-44ff5411a06f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Lighting.Results.Mesh.MeshResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Lighting_oM\\Results\\Mesh\\MeshResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e061248e-fc3e-441e-ba28-ac8f60de1708", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Lighting.Results.Mesh.MeshElementResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Lighting_oM\\Results\\Mesh\\MeshElementResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1669c5d1-4bac-4d7a-8181-23029258462a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Inspection.Issue", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Inspection_oM\\Issue.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "5dd8b796-4373-4623-bc62-0fdd8a89be46", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Inspection.InstallationProgress", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Inspection_oM\\InstallationProgress.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "70ee540d-efe9-4ef2-8ec1-3575cb3a9403", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Inspection.Comment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Inspection_oM\\Comment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "bb1e5527-2c56-41f3-a1e7-8e9846be982a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Inspection.Audit", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Inspection_oM\\Audit.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "18baa759-34be-4340-a721-a3e9cf272671", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Planning.Repository", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Planning_oM\\Repository.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e6664352-63fd-4e3a-80a2-31d7d21d9fe9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Planning.PullRequest", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Planning_oM\\PullRequest.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8b9760ff-cdd1-4b72-a905-c4fbd4216825", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Planning.Milestone", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Planning_oM\\Milestone.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "79bab6ca-d0b7-4982-a393-f1ac020e265b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Planning.Label", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Planning_oM\\Label.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6efe544d-943d-450e-b16d-0def0ecdaced", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Planning.Issue", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Planning_oM\\Issue.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "165ea6d7-bf9e-4021-b2bb-8cefb6701e00", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Planning.ItemState", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Planning_oM\\Enums\\ItemState.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c3a81d9f-4239-4bfc-b1ba-d356a4e5fcae", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Planning.Commit", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Planning_oM\\Commit.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a5feb56a-3b93-4218-aa0d-3387b44c80d9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Planning.CodeAssembly", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Planning_oM\\CodeAssembly.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a35d2067-663f-49b3-b975-d38e70ee7efb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Planning.Branch", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Planning_oM\\Branch.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "98494656-3877-4f62-ae12-0e689945a1fa", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Elements.Panel", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Elements\\Panel.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6f9cc627-b5f5-42f2-b8e3-27993415f405", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Elements.Opening", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Elements\\Opening.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c077f81c-8383-463e-88f1-91a34a3334fe", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Elements.FrameEdge", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Elements\\FrameEdge.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "93e0cf4d-a4f4-4a87-8295-216644901698", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Elements.PanelType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Elements\\Enums\\PanelType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "5b8ea24a-3f38-4660-a3fb-1fac15d12563", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Elements.OpeningType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Elements\\Enums\\OpeningType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2fe2994e-1ba1-43db-8fdf-17484ec7195f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Elements.FrameEdgeType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Elements\\Enums\\FrameEdgeType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "5d2f4135-d73c-4909-8db7-543ca250d0f3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Elements.FrameCornerType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Elements\\Enums\\FrameCornerType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1c1c9532-71f4-4a2a-a0f8-8ca5adf3ac2c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Elements.CurtainWall", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Elements\\CurtainWall.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "49c6a6b4-8039-4d24-a7ec-92daede75f53", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Fragments.UValueGlassEdge", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Fragments\\UValueGlassEdge.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f5cda681-4a76-4ac8-8298-c3b543112f16", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Fragments.UValueGlassCentre", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Fragments\\UValueGlassCentre.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c444339d-2fd3-4cc8-9d45-6c8156e99fa1", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Fragments.UValueFrame", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Fragments\\UValueFrame.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "af2a249e-33ad-484e-83ee-9fda0084d2c1", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Fragments.UValueContinuous", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Fragments\\UValueContinuous.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6731a03f-ca84-46ab-b7de-704839280507", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Fragments.PsiJoint", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Fragments\\PsiJoint.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "541aed58-930e-4a8f-8389-d0f9e0656b52", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Fragments.PsiGlassEdge", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Fragments\\PsiGlassEdge.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "aeaf8ee0-4487-49e4-b424-d1d5b1c8c497", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Fragments.GlazingLocation", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Fragments\\GlazingLocation.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "300f8cb9-9602-4bad-b14a-c1151e6942b0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Fragments.FrameExtensionBox", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Fragments\\FrameExtensionBox.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a8b29467-302f-4f11-8fcc-56967265a25f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Fragments.ConstructionOffset", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Fragments\\ConstructionOffset.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "75bae5e1-c644-42bf-af5c-783778b56ec6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.Results.OverallUValue", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\Results\\OverallUValue.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "00b96e51-08e5-4edd-b7d7-e6a13751b2fe", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Facade.SectionProperties.FrameEdgeProperty", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Facade_oM\\SectionProperties\\FrameEdgeProperty.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9747ded0-003b-4dab-b8e5-dec64edbbb64", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Diffing.StreamPointer", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Diffing_oM\\StreamPointer.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9732fc41-cac4-413d-817d-6a2b1b18aade", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Diffing.RevisionFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Diffing_oM\\RevisionFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "da005adf-91f7-4d20-a02d-1f1acf7d92ce", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Diffing.Revision", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Diffing_oM\\Revision.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ee7a4b7d-3890-4f08-bbc0-3f7f9f14639d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Diffing.PropertyDifference", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Diffing_oM\\PropertyDifference.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "73d439c3-2582-40bf-9784-89d8871b54db", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Diffing.ObjectDifferences", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Diffing_oM\\ObjectDifferences.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8f7be75c-a9b0-47f0-a980-45679b50d297", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Diffing.DiffingConfig", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Diffing_oM\\DiffingConfig.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c52c3911-9c13-4e81-9257-8fb121bb72aa", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Diffing.Diff", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Diffing_oM\\Diff.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1b5bdc2b-f153-41ce-b51e-7230d9cac614", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Diffing.Delta", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Diffing_oM\\Delta.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "579b3e10-5a33-45d6-8074-9fa7915f819a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Activations.Tanh", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Activations\\Tanh.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d487bf8a-acc3-4e07-8002-1fd3aa2ecd51", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Activations.Softmax", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Activations\\Softmax.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4fc6c249-2405-4500-a831-883f9288eb0f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Activations.Sigmoid", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Activations\\Sigmoid.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3596a5bd-38ff-45fd-8db6-3c98bc736781", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Activations.ReLU", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Activations\\ReLU.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "fb0f505e-83ff-4510-a6cf-e79424fac4e1", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Activations.LogSoftmax", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Activations\\LogSoftmax.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b4121ddc-a461-4891-97ec-aec3bcc1a182", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Activations.LogSigmoid", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Activations\\LogSigmoid.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "194eb610-219f-4afb-be26-f5cb61ae0801", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Activations.LeakyReLU", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Activations\\LeakyReLU.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0116e0f4-2939-46ed-ab66-5db9b5e66583", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Layers.TransposedConvolution2d", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Layers\\TransposedConvolution2d.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7160331b-dca3-4de3-87e1-1579c01c7757", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Layers.MaxUnPooling2d", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Layers\\MaxUnPooling2d.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6caca826-8603-4ff9-a278-73fe75fb3f9b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Layers.MaxPooling2d", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Layers\\MaxPooling2d.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "eed22ad0-79b5-4203-97c9-9df08f2bb7b7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Layers.LSTM", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Layers\\LSTM.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3f58ab98-4a37-4292-ac01-7c393c1aef5e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Layers.Linear", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Layers\\Linear.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "629e623a-7c0c-4738-a6ea-691ca054f98f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Layers.GRU", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Layers\\GRU.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "efdc1f45-c2a2-4a09-8451-6b9f815dca0f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Layers.Convolution2d", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Layers\\Convolution2d.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "13cd1b4d-bcef-4e0c-9ed1-2e78e3a43977", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Layers.AvgPooling2d", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Layers\\AvgPooling2d.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b82afa7c-833b-4e2b-a9ea-c7df74e9c400", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Losses.NegativeLogLikelihood", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Losses\\NegativeLogLikelihood.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "852c6849-d457-4e94-90ed-d73db886bfb1", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Losses.MeanSquareError", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Losses\\MeanSquareError.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4a2dc90d-dede-417a-ba7f-1c6883c4927b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Losses.L1", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Losses\\L1.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7b7cf3b5-4732-4427-a2b4-3b587a49fe9d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Losses.CrossEntropy", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Losses\\CrossEntropy.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6e9ebf37-daef-4d2c-92bd-b22d234bef80", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Losses.BinaryCrossEntropy", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Losses\\BinaryCrossEntropy.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2c5a077d-c212-4639-94c7-3a42e1fe6438", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Losses.BCEWithSigmoid", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Losses\\BCEWithSigmoid.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "11c8c13a-3dc0-431a-9597-8d201b0df1fc", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Models.Sequential", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Models\\Sequential.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "43793ab5-ca47-4e69-9a6f-4c32ed6c5492", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Models.Graph", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Models\\Graph.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "cc94df47-254f-41f3-b614-668c8e4a2d1e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Optimisers.SGD", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Optimisers\\SGD.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3f909ca1-2d84-4c1a-9cee-b970a05c930e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Optimisers.Adam", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Optimisers\\Adam.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "473848e9-38c5-4c2d-9131-81415f458123", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Shape3d", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Shape3d.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6d9daade-7442-46d2-9dea-2fbd183ef8cb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Shape2d", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Shape2d.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "32d92a01-a36f-472f-8795-d202fb7ff910", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.Reduce", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Enums\\Reduce.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2d6dffa1-055b-453e-a536-95877df8a65b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.InterpolationMethod", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Enums\\InterpolationMethod.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "404ebf1d-f4f3-4db6-a58d-2fc613150cf3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.DeepLearning.ImageFormat", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/DeepLearning_oM\\Enums\\ImageFormat.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "fced7cb7-510c-48f0-91f5-2a7d28e45d0a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Programming.ReceiverParam", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Programming_oM\\ReceiverParam.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "82df55c8-a1ce-4bf4-bc2b-1fee22055349", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Programming.DataParam", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Programming_oM\\DataParam.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2b17e1c2-713a-40b4-9c7d-20219beba2e3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Programming.NodeGroup", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Programming_oM\\NodeGroup.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "331e5cc4-f4d3-42b2-96c8-034e2db62aa0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Programming.ClusterContent", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Programming_oM\\ClusterContent.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "62e7af22-ea3d-44db-8ad2-dcd6d647b6e8", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Programming.TypeNode", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Programming_oM\\TypeNode.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "375d7796-eba4-4854-8af8-4339ce2d231b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Programming.SetPropertyNode", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Programming_oM\\SetPropertyNode.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "53a93dca-e2ec-4d2c-a18c-199df049d779", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Programming.ParamNode", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Programming_oM\\ParamNode.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f4596e4c-ff96-4011-8b04-7a97f53239f9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Programming.MethodNode", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Programming_oM\\MethodNode.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3086ed5b-881d-47dd-87fc-63d8b6b131a5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Programming.LoopNode", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Programming_oM\\LoopNode.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "182a6f82-eaf1-4d28-92e1-9bc74df301f0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Programming.LibraryNode", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Programming_oM\\LibraryNode.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "81033dc0-fda0-49a0-8592-bc7e0606aeea", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Programming.InitialiserNode", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Programming_oM\\InitialiserNode.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "fa5895fc-d942-46dd-8f66-e419308520e5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Programming.GetPropertyNode", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Programming_oM\\GetPropertyNode.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "863c4eca-b5e1-42ca-b024-2b522b91c3c9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Programming.ExplodeNode", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Programming_oM\\ExplodeNode.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7212cc1f-27f6-4b65-b2a0-7a8707b6d17c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Programming.CustomObjectNode", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Programming_oM\\CustomObjectNode.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "54b3f341-37af-42f9-a3a8-d58bef8dc61b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Programming.ConstructorNode", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Programming_oM\\ConstructorNode.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a88258fe-b1a7-413e-8dde-33b550f24212", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Programming.ClusterNode", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Programming_oM\\ClusterNode.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "85c5655c-7ec6-4bff-865f-32dc2ec61b9c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.Fragments.EPDDimension", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Fragments\\EPDDimension.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9cbc2bbd-b945-4f4b-9788-502980ea6538", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.Fragments.EPDDensity", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Fragments\\EPDDensity.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "66cddaf9-7d7c-440c-8bcd-c735064e3463", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.Fragments.AdditionalEPDData", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Fragments\\AdditionalEPDData.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2adcca77-dffb-445c-b60d-1fcc6577d894", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.MaterialFragments.EnvironmentalProductDeclaration", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\MaterialFragments\\EnvironmentalProductDeclaration.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "11bb1c89-47d2-41a1-8d50-75567f6611bf", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.Results.LifeCycleAssessmentElementResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Results\\LifeCycleAssessmentElementResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "00698f20-4128-4963-bc8f-7994bb5a1508", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.Results.EnvironmentalMetricResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Results\\EnvironmentalMetricResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9b7ca8f6-3133-4ad5-a5b3-a0a63bb9733d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.ProjectLifeCycleAssessment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\ProjectLifeCycleAssessment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9c8e0ca7-0d10-4ad3-949a-3a4a9c5181c8", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.HealthProductDeclaration", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\HealthProductDeclaration.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "05ed43e7-9926-4f95-abc4-b4fd6decd916", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.EnvironmentalMetric", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\EnvironmentalMetric.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "028962cf-fb27-4c2e-a001-063b8a7ca901", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.WindSpeedCategory", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Enums\\WindSpeedCategory.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "90a13330-cd17-4278-9bd6-1a3dbc1d43b5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.SeismicDesignCategory", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Enums\\SeismicDesignCategory.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b4ae14e3-0750-4522-8bed-188a1a66a31e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.ScopeType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Enums\\ScopeType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f7010519-98b9-4a71-acab-21bc45573fdf", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.QuantityType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Enums\\QuantityType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e0e22a2b-f63d-4b68-a79a-586b53e98fe6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.ProjectType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Enums\\ProjectType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "dfcc7a71-0543-4c74-b15d-ce2880cb206d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.ObjectCategory", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Enums\\ObjectCategory.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c78cf9aa-6f6d-447d-8732-d3f917fecdf8", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.LifeCycleAssessmentPhases", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Enums\\LifeCycleAssessmentPhases.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a996ba08-3f56-4913-9ba0-393eecdcde9d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.LevelOfDevelopment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Enums\\LevelOfDevelopment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7b4cb1a1-0dbe-4c56-9514-abc0815c9de6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.LateralStructuralMaterial", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Enums\\LateralStructuralMaterial.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "24a03fe5-dcb1-4ab3-9c2a-bd47ffef9407", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.GravityStructuralMaterial", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Enums\\GravityStructuralMaterial.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "12605b65-1125-4710-9723-c6be23d2e6ee", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.EPDType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Enums\\EPDType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ff3d13a4-3d30-4bb4-850d-19d908c5ddbd", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.EnvironmentalProductDeclarationField", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\Enums\\EnvironmentalProductDeclarationField.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "02921ead-1e9d-43bb-8826-7999b8b98e74", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.LifeCycleAssessment.BuildingBenchmarkingData", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/LifeCycleAssessment_oM\\BuildingBenchmarkingData.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "10ce9ae3-ed21-4532-9e52-7bea0eef7ee9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Constraints.LinkConstraint", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Constraints\\LinkConstraint.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "dc0a5bb6-3d89-481b-8fa6-7a1c000781b9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Constraints.DOFType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Constraints\\Enums\\DOFType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0f0ece98-01e8-4897-ad62-6566aa87a1a0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Constraints.Constraint6DOF", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Constraints\\Constraint6DOF.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "22b809f0-a2d4-4ddf-a05c-d911e1cfb66e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Constraints.Constraint4DOF", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Constraints\\Constraint4DOF.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8e3dee83-558c-4592-955b-8569a5c8072d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Constraints.Constraint3DOF", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Constraints\\Constraint3DOF.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "42b4172e-5f70-48dc-a1c0-54e8c5eb57ff", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Constraints.BarRelease", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Constraints\\BarRelease.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4b672d44-93be-43c2-9d65-8890ac6f03b3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Design.StructuralLayout", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Design\\StructuralLayout.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7a235c68-b1f5-410e-ace9-7d00cc669148", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Design.Span", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Design\\Span.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "19330c07-85ba-46e5-8bad-9ad8639e5715", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Design.DesignGroup", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Design\\DesignGroup.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "67cae3f4-6f15-485d-817f-9db5ded3ba23", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Elements.Surface", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Elements\\Surface.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6a8636f3-b9fa-422e-91e8-b39456142ebc", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Elements.RigidLink", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Elements\\RigidLink.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "00558bfe-b1be-4e43-a56d-4273607c6c0b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Elements.Panel", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Elements\\Panel.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2c140f11-efec-4fcb-bd7a-270824a35cbb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Elements.Opening", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Elements\\Opening.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8797db98-1e76-4531-bb1f-82b39ea79373", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Elements.Node", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Elements\\Node.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "49f4e29b-1b74-4373-82b5-e29225c530e3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Elements.FEMeshFace", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Elements\\FEMeshFace.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "464d5116-1c8b-4c2b-8c86-cb4dbc48c9da", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Elements.FEMesh", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Elements\\FEMesh.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c3836016-0faa-4dce-9e0d-b4aa445941df", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Elements.StructuralUsage2D", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Elements\\Enums\\StructuralUsage2D.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b639a3c4-cadc-4ba7-8be8-d297b9cda69f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Elements.BarFEAType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Elements\\Enums\\BarFEAType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d2843bea-5527-4e8b-8793-c12b3b0b6889", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Elements.Edge", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Elements\\Edge.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f8503985-b81c-4920-9338-4092cdc9c8e6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Elements.Bar", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Elements\\Bar.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0b709899-b52b-41a8-aa16-b6b8987b716e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Fragments.SurfacePropertyModifier", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Fragments\\SurfacePropertyModifier.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d10ad4a9-94a5-4559-9bd3-2b2761db3dc4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Fragments.SectionModifier", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Fragments\\SectionModifier.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7adc95a2-74d7-456e-8199-a3361db7efa4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Fragments.ReinforcementDensity", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Fragments\\ReinforcementDensity.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e3084ca6-f42a-4439-a1a1-aa2722b2aa10", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.UniformLoadSetRecord", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\UniformLoadSetRecord.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "389a7410-cf7d-455e-8dad-2ca2547a0b68", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.UniformLoadSet", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\UniformLoadSet.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1a9076e8-1b70-4660-9c01-dc38c2779cbf", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.PointVelocity", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\PointVelocity.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1fa690e0-61d5-4372-8685-9192ad6aa9b7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.PointLoad", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\PointLoad.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c592795f-f63d-44b6-ac25-06529cc30432", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.PointDisplacement", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\PointDisplacement.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "babc3eb6-6627-41f6-85a4-79fc78d5cf83", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.PointAcceleration", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\PointAcceleration.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d05d471e-d49d-4bdb-bc0d-0be670ba168c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.LoadCombination", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\LoadCombination.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "5c02bb94-3983-4966-9e46-9c25de398d6e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.Loadcase", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\Loadcase.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "99b634f8-18be-4c27-871b-7d6b09e6c2d4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.GravityLoad", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\GravityLoad.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3a374c14-b359-4b08-9c21-8f3d7943a872", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.GeometricalLineLoad", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\GeometricalLineLoad.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f751a3fc-4864-421e-8234-f0900402f20d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.LoadType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\Enums\\LoadType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "036a8d48-2fc6-42b7-bca6-d0de6a9a466f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.LoadNature", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\Enums\\LoadNature.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ca3d5e0d-128a-41a5-8f2f-96a3eeb82e0f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.LoadAxis", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\Enums\\LoadAxis.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a38f0395-c346-4258-a1a7-7842c5680d91", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.CaseType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\Enums\\CaseType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7b3e2ec1-27b7-411a-bbc1-e6c42a8ffabc", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.ContourLoadSet", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\ContourLoadSet.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a76c43a4-e4f3-41b5-9699-a8903d92fc1c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.ContourLoad", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\ContourLoad.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9843cf4b-5834-411e-863d-83f1542240d9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.BarVaryingDistributedLoad", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\BarVaryingDistributedLoad.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b3e60d28-ebda-45ce-be7e-d70d9adb6ada", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.BarUniformTemperatureLoad", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\BarUniformTemperatureLoad.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0dfa2bf8-9810-4618-b26e-c29b1218ded5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.BarUniformlyDistributedLoad", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\BarUniformlyDistributedLoad.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0a235a45-6e74-4e66-b0de-3264c27455a8", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.BarPrestressLoad", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\BarPrestressLoad.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a9a160b5-5970-4c26-8257-d82cfd58ab03", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.BarPointLoad", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\BarPointLoad.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6d8f3408-33e6-414f-9c62-f4841dfc93da", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.BarDifferentialTemperatureLoad", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\BarDifferentialTemperatureLoad.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "205b6418-abf6-4eea-aeca-64df73b73f9b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.AreaUniformTemperatureLoad", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\AreaUniformTemperatureLoad.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b0eba82a-fead-4fcf-87de-88cb89d46a4b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.AreaUniformlyDistributedLoad", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\AreaUniformlyDistributedLoad.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2bbb1104-cfdd-4a1b-b748-f86df108e68e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Loads.AreaDifferentialTemperatureLoad", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Loads\\AreaDifferentialTemperatureLoad.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "86eb6500-f36e-41c8-80fb-083f57144039", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.MaterialFragments.Timber", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\MaterialFragments\\Timber.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0d8897f6-abe5-44ba-b946-3bfafa1cc37b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.MaterialFragments.Steel", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\MaterialFragments\\Steel.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0525be64-41e7-406e-8c42-f81615500bad", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.MaterialFragments.GenericOrthotropicMaterial", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\MaterialFragments\\GenericOrthotropicMaterial.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ed1e130d-b4a0-4785-b310-94dbbd492979", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.MaterialFragments.GenericIsotropicMaterial", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\MaterialFragments\\GenericIsotropicMaterial.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "68218ee6-433b-445a-a5f2-2727d2f52dbe", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.MaterialFragments.MaterialType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\MaterialFragments\\Enums\\MaterialType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9ac14e71-8b29-4d8b-ac3b-c0cee0a5a88b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.MaterialFragments.Concrete", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\MaterialFragments\\Concrete.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "25b9c81e-d4c0-4863-8cba-174673e809f8", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.MaterialFragments.Aluminium", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\MaterialFragments\\Aluminium.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a35a1ba4-9e02-4652-b0da-ea3a8713c26d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Offsets.Offset", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Offsets\\Offset.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9917c3b7-1a38-46e4-bb30-bbba7929ac50", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Reinforcement.TransverseReinforcement", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Reinforcement\\TransverseReinforcement.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4e82ead6-a31e-4c38-a9a1-fa5af3427814", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Reinforcement.ReinforcementRegion", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Reinforcement\\ReinforcementRegion.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6f9153c5-51fd-4ce6-8ad4-3d7c3d0c0b92", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Reinforcement.PanelReinforcement", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Reinforcement\\PanelReinforcement.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1c68c87c-414d-447c-a1e7-6a80463495d6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Reinforcement.PanelRebarIntent", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Reinforcement\\PanelRebarIntent.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "41bbafa4-7d4f-4ad9-8327-8990f7dba1ac", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Reinforcement.LongitudinalReinforcement", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Reinforcement\\LongitudinalReinforcement.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "49584faf-d7a6-4d8e-8bde-93036d4c1901", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Reinforcement.BarRebarIntent", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Reinforcement\\BarRebarIntent.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0bf4c339-0284-44ec-bc75-935b990a82f5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Requests.NodeResultRequest", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Requests\\NodeResultRequest.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b05b4d8a-80b3-42e0-944c-569217818954", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Requests.MeshResultRequest", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Requests\\MeshResultRequest.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "60ba73be-284d-4ed1-a8e7-7b63a657473c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Requests.GlobalResultRequest", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Requests\\GlobalResultRequest.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "961d5845-7e0b-4b95-9f37-9ba4ba0c81e9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.Requests.BarResultRequest", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\Requests\\BarResultRequest.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2bc008a8-61f3-4eb4-b1ae-63ea6f9b1682", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SectionProperties.TimberSection", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SectionProperties\\TimberSection.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6041f961-4def-4b0c-bf4f-ae2537dd1518", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SectionProperties.SteelSection", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SectionProperties\\SteelSection.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "bec87abe-8fe3-48d9-9e56-7dde8bb91c83", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SectionProperties.GenericSection", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SectionProperties\\GenericSection.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3c2e2962-a8ca-47ae-8b90-a1a36a6fdc60", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SectionProperties.ExplicitSection", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SectionProperties\\ExplicitSection.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c1195dee-f297-4e24-86e7-ff32f16cd50f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SectionProperties.SteelPlateRestraint", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SectionProperties\\Enums\\SteelPlateRestraint.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "dac4dcc8-1537-4dc3-8a08-5db1489576e0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SectionProperties.SteelFabrication", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SectionProperties\\Enums\\SteelFabrication.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0667465e-5d10-40f3-8f91-a41ab2233e78", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SectionProperties.CableType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SectionProperties\\Enums\\CableType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "de113b31-7ec9-41c8-952a-44afb86a3ae0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SectionProperties.ConcreteSection", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SectionProperties\\ConcreteSection.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6d108036-ad2c-4042-b401-d84fe00acf28", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SectionProperties.CompositeSection", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SectionProperties\\CompositeSection.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "517d1ef4-21fd-4036-ae7e-4db6d56f42cb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SectionProperties.CableSection", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SectionProperties\\CableSection.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0c84f3e1-69a8-407d-aa38-c4ffa956359f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SectionProperties.AluminiumSection", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SectionProperties\\AluminiumSection.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c2e558fc-7358-4eae-b083-9edeb5b22915", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SurfaceProperties.Waffle", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SurfaceProperties\\Waffle.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "aff404f2-2137-42ed-871c-1ffc251e65a9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SurfaceProperties.SlabOnDeck", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SurfaceProperties\\SlabOnDeck.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "405052a2-9486-4a8f-85c9-ef9b5e298903", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SurfaceProperties.Ribbed", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SurfaceProperties\\Ribbed.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b2e3bce1-7799-48a1-92d6-c79f04c24a77", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SurfaceProperties.LoadingPanelProperty", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SurfaceProperties\\LoadingPanelProperty.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "cf1bdf3c-ee23-4621-801a-4bbe5ff0c345", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SurfaceProperties.Layered", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SurfaceProperties\\Layered.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "fd999adf-e483-489e-b731-d9f79613f159", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SurfaceProperties.Layer", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SurfaceProperties\\Layer.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c60948ff-42f1-424a-9230-dfcf7cf8036b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SurfaceProperties.PanelType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SurfaceProperties\\Enums\\PanelType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "15f05b12-a4bf-44de-8dc3-8ad4fbb63273", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SurfaceProperties.PanelDirection", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SurfaceProperties\\Enums\\PanelDirection.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "16aee3e8-908c-4c92-bf2b-e2e18f7b3078", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SurfaceProperties.LoadPanelSupportConditions", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SurfaceProperties\\Enums\\LoadPanelSupportConditions.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "dfd1a8d6-7a8b-40da-8393-b31205ca3f56", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SurfaceProperties.CorrugatedDeck", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SurfaceProperties\\CorrugatedDeck.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8b7827c4-1131-469e-b8ca-3590139e9eca", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Structure.SurfaceProperties.ConstantThickness", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Structure_oM\\SurfaceProperties\\ConstantThickness.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3bb5f30a-2a32-420e-9669-b1bb9bb14901", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Analysis.Node", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Analysis\\Node.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a0dedca5-1c1f-4a8c-9a5c-0de65e796b63", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Analysis.AnalysisGrid", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Analysis\\AnalysisGrid.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "127b53a7-f476-43d1-aeac-4ecb177b833d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Climate.WeatherFile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Climate\\WeatherFile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3b8cabc7-475f-428f-a4be-17c671a54bc9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Climate.Time", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Climate\\Time.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c271b6b3-1320-4945-982e-7c38f7d5cbf4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Climate.Sun", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Climate\\Sun.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "cae7bff7-f242-4553-bc8f-839e03ded2c7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Climate.SpaceTime", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Climate\\SpaceTime.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ff1c9499-3593-46e1-aa29-1e4f5c3026ac", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Climate.Location", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Climate\\Location.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6f73d306-2fca-48c0-ab98-31765c983fd1", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Configuration.OpeningOption", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Configuration\\OpeningOption.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8864af62-7112-4312-81ab-4955a33d40c7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Elements.Zone", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Elements\\Zone.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "334f51e4-163e-4ca8-be54-d54abbc1fb20", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Elements.Space", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Elements\\Space.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d82213ec-25b8-45e6-aed5-11fde48075f6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Elements.Panel", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Elements\\Panel.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9f7ad21e-ce7f-4808-8964-65ec3bd320be", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Elements.Opening", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Elements\\Opening.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "742c5e92-9c93-4e14-a7f4-6cfa7c1d5a56", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Elements.Mesh", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Elements\\Mesh.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d417f42d-51a4-4680-b859-11d0c905ee22", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Elements.SpaceType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Elements\\Enums\\SpaceType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "dafe6449-c11a-408c-9f49-490551171ea8", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Elements.PanelType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Elements\\Enums\\PanelType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ccdb8dca-7b02-432f-abda-b585d286b24b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Elements.OpeningType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Elements\\Enums\\OpeningType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c53ee1ba-6257-4883-a9f9-4c185c409f9c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Elements.BuildingType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Elements\\Enums\\BuildingType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2fab6308-4da4-4cc5-86e9-96d75aa727c5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Elements.Edge", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Elements\\Edge.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1f34bd83-2e5b-4181-a587-16e306beb1b2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Elements.Building", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Elements\\Building.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f5e9473d-038e-4925-921a-2f9017b0ba0d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Elements.BoundaryZone", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Elements\\BoundaryZone.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b9695c69-a236-4c27-94ba-fc2229a01fe6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Fragments.SpaceContextFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Fragments\\SpaceContextFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "cffefd32-aed2-4890-96fc-65691d3e58f6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Fragments.SpaceAnalyticalFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Fragments\\SpaceAnalyticalFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d86dde87-002c-4247-9154-7bbe3c2bd646", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Fragments.RadiationFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Fragments\\RadiationFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "fd487738-e2e1-4cba-b3e7-3be8bad815f2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Fragments.PanelContextFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Fragments\\PanelContextFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "91344b6a-d931-4341-8e97-268ff0aa0e08", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Fragments.PanelAnalyticalFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Fragments\\PanelAnalyticalFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "859fc9db-8c4e-4ba0-93ed-3d3095f0d1af", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Fragments.OriginContextFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Fragments\\OriginContextFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4206a81e-b7ec-4567-99d3-b2d991efae54", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Fragments.LoadFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Fragments\\LoadFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "fa193e4d-d7cd-4c24-818c-ca25ac8279e5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Fragments.LightTransmittanceFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Fragments\\LightTransmittanceFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4fdd2c5d-6ef7-465b-802c-f3f4b3f6f42a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Fragments.LightReflectanceFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Fragments\\LightReflectanceFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "79fe4100-2fdb-49fa-88ab-4c5726a1a884", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Fragments.EnvironmentConstructionFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Fragments\\EnvironmentConstructionFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9258ad1c-ac6e-4f95-96ed-6e8e3331535f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Fragments.SizingMethod", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Fragments\\Enums\\SizingMethod.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9e621db6-6899-4781-8f8f-77af33494940", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Fragments.CoefficientFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Fragments\\CoefficientFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c95a368a-9061-46fe-8bf3-30959a0ddd7d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Fragments.BuildingResultFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Fragments\\BuildingResultFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "fe2dcf6a-39ad-44a7-8da3-232eb4c3b919", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Fragments.BuildingContextFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Fragments\\BuildingContextFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "17d5b94f-feb3-40af-88e5-036449776ede", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Fragments.BuildingAnalyticalFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Fragments\\BuildingAnalyticalFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d62935e8-8533-4386-bcf2-fd66b069853e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Fragments.AnalyticalConstruction", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Fragments\\AnalyticalConstruction.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d544e8e8-11b1-4e1f-95cb-087c7d5cdf3e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.MaterialFragments.SolidMaterial", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\MaterialFragments\\SolidMaterial.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4db1eb24-184f-49e8-ae26-c82708f13a0a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.MaterialFragments.GasMaterial", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\MaterialFragments\\GasMaterial.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1e1eb646-7d0f-4494-ac7d-b91ea00c335d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.MaterialFragments.Roughness", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\MaterialFragments\\Enums\\Roughness.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f265ed98-8052-44f9-970c-ff4a544566b4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.MaterialFragments.Gas", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\MaterialFragments\\Enums\\Gas.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7c386810-2720-4105-8eab-b9bd649955b5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.MaterialFragments.Function", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\MaterialFragments\\Enums\\Function.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4f067099-5562-420a-ba10-e94e57764e08", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.Illuminance.Lux", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\Illuminance\\Lux.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4d1b6310-3e0f-4798-b783-a3c6b03d62c0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.Mesh.MeshResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\Mesh\\MeshResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3f460644-d03b-4e88-ab50-57498b443619", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.Mesh.MeshElementResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\Mesh\\MeshElementResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6b594389-83d5-4209-ba56-05382977bd19", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.SimulationResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\SimulationResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0c1b4154-ebb1-4b93-b9b8-e87b193eb271", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.ProfileResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\ProfileResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3002d187-7349-44c5-967b-6a493325299e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.SimulationResultType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\Enums\\SimulationResultType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4898c300-1403-4a42-9a97-6cd365d4404f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.ResultType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\Enums\\ResultType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b3497618-1ed3-4654-9f07-ffc90b02cedc", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.ProfileResultUnit", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\Enums\\ProfileResultUnit.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6653ac9d-401e-4a7d-a8b5-4b2b47d51150", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.Results.ProfileResultType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\Results\\Enums\\ProfileResultType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "fd16d617-3bc2-4bd3-b348-9a94e6c9995a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.Ventilation", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Ventilation.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b88c493b-ed6d-44ba-bea9-09c19d2cd520", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.Thermostat", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Thermostat.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6724fe81-dfda-4b59-aeae-a86eafb3a916", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.Profile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Profile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "73c734b7-3d6b-4dec-967d-b39999d8e5d7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.Pollutant", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Pollutant.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7a602d48-1326-4d73-b554-ddee850bb4a6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.Plumbing", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Plumbing.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "5a1b8b28-70fa-4772-86de-d2996b0e3906", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.Plug", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Plug.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ce7c26c9-a594-40ce-a5de-6f630c46061b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.People", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\People.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e3367734-430b-4cc9-800d-039153f7a29f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.Lighting", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Lighting.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d0db642a-5a94-4484-ac89-b6b118700f8a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.Infiltration", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Infiltration.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "5ddcd5dc-5a62-414f-880e-0363a53e97bd", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.FireProtection", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\FireProtection.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "cb211da6-4fa3-4453-9620-8da1a8f5eaff", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.Exhaust", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Exhaust.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "07c2ac39-cad0-4cf6-bb83-3e534078162a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.Equipment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Equipment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7faa0122-602a-4025-8fb4-742add22c0ff", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.SprinklerSystemType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Enums\\SprinklerSystemType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "22a52855-bcb3-4643-9d24-c2f728c12623", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.SimulationDayType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Enums\\SimulationDayType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ff665f52-4e15-4065-81e8-4e94014bc5a3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.ProfileType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Enums\\ProfileType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1fd6b0f7-360b-4d79-be1f-7485d507dbc8", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.ProfileDay", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Enums\\ProfileDay.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3abe356f-3080-47d7-9dca-f6e631dd5fa2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.ProfileCategory", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Enums\\ProfileCategory.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2176d3fa-bea7-4454-b4d4-a4081280842d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.HazardType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Enums\\HazardType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6d295a59-39bd-48cd-8c09-1da98bcc4646", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.EmitterType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Enums\\EmitterType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3e5e9ab0-5ff2-4886-99a4-eb3b893d5949", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Environment.SpaceCriteria.Acoustics", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Environment_oM\\SpaceCriteria\\Acoustics.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9192d253-4692-4322-92a2-f9393c86e964", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Constructions.Layer", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Constructions\\Layer.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c6e44d95-73b2-4511-9f40-1cff8761ffe8", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Constructions.Construction", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Constructions\\Construction.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0f89d335-aad2-4aa7-8552-311c100240f0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Elements.Window", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Elements\\Window.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ad71704b-a9f1-40b9-94f1-aa3bf0d4c82f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Elements.Wall", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Elements\\Wall.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "349623a8-bdba-4e70-9872-99055187cca9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Elements.Void", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Elements\\Void.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "415ba5c9-67fd-49b0-89d4-9388452b8e0c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Elements.SolidBulk", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Elements\\SolidBulk.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "61cb85e4-6292-4864-ab0c-d572ee33c16c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Elements.Roof", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Elements\\Roof.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9a592fe9-09fb-4532-a2de-e90a106eba3f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Elements.Pile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Elements\\Pile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d0cf1d0f-1934-42e4-8de0-e43009116dc9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Elements.Floor", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Elements\\Floor.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2cfae752-9403-4845-92bc-62330bd873a0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Elements.ExplicitBulk", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Elements\\ExplicitBulk.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b88b141f-a550-4ed1-8010-f4c7d0d9a17b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Elements.Door", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Elements\\Door.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e2f77472-14d0-4a93-aba5-b3051317fee1", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Elements.Column", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Elements\\Column.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7ad9a180-331f-4a70-8ef6-f2bc7fbb3e7e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Elements.Cable", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Elements\\Cable.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7bd8b9a4-3b25-49aa-aa14-81ba09324045", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Elements.Bracing", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Elements\\Bracing.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "55d5e356-f3a5-4953-866b-da84527151ad", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Elements.Beam", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Elements\\Beam.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "55bf84bc-6df9-4822-ae17-78430e969657", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\FramingProperties\\ConstantFramingProperty.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "902ee8d0-53b9-4a6b-9373-b83c75623923", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Materials.VolumetricMaterialTakeoff", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Materials\\VolumetricMaterialTakeoff.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c201d592-9217-44a9-99ec-409325483794", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Materials.MaterialComposition", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Materials\\MaterialComposition.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f564fca1-fade-440a-9124-98c1ee9e0e8d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Materials.Material", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Materials\\Material.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8c50b379-c24f-4b43-bd7e-23c06be790a7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Reinforcement.Stirrup", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Reinforcement\\Stirrup.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2060825b-2ee2-4814-8cc3-66a73d748e51", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Reinforcement.ReinforcementFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Reinforcement\\ReinforcementFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ea935d38-e2ca-4ad2-b575-8f365bfe05c8", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Physical.Reinforcement.PrimaryReinforcingBar", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Physical_oM\\Reinforcement\\PrimaryReinforcingBar.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "278203fe-fcc5-4303-b33f-0e60d0f5a265", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.Layouts.PerimeterLayout", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\Layouts\\PerimeterLayout.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "af1bf63d-d015-468f-91af-761f8c1f0997", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.Layouts.OffsetCurveLayout", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\Layouts\\OffsetCurveLayout.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3c7eb52e-808e-49f9-afc1-dd705ea6c806", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.Layouts.MultiLinearLayout", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\Layouts\\MultiLinearLayout.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "79b116ee-5cf5-49fc-8d3a-93896b2f519d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.Layouts.LinearLayout", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\Layouts\\LinearLayout.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b5d15ada-5348-4556-8501-15186cc34562", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.Layouts.ExplicitLayout", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\Layouts\\ExplicitLayout.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "04ede606-5017-44cc-b245-07a135f9e997", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.Layouts.ExplicitCurveLayout", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\Layouts\\ExplicitCurveLayout.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b5a5a88b-a0fd-4408-9075-8b911ced47a3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.Layouts.ReferencePoint", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\Layouts\\Enums\\ReferencePoint.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e34a32d3-8597-48fc-a26b-d408f2db2a7e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.SettingOut.Level", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\SettingOut\\Level.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1fbabad7-b6ba-437a-91fc-9347000478b2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.SettingOut.Grid", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\SettingOut\\Grid.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "eaaa5c3b-8b92-41b8-aaa2-6251a0e8427f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.ZSectionProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\ZSectionProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "54733d0a-f6dc-4c67-89b5-a631f2363388", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.TubeProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\TubeProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "906313ed-330d-45a5-aabd-77a10daa9b5e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.TSectionProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\TSectionProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0f058f75-ca7b-46ed-9255-71c05e3f589d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.TaperFlangeISectionProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\TaperFlangeISectionProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "94724eda-e5bd-469d-9eee-448a20a534ed", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.TaperFlangeChannelProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\TaperFlangeChannelProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "255d442b-7386-47a6-b2d7-c5d259a62575", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.TaperedProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\TaperedProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e0d44359-a638-4246-b9bb-e83d46294d68", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.RectangleProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\RectangleProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ff0b412b-66cd-406c-9316-fc7a15d9ec42", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.KiteProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\KiteProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ca367ef5-c646-4ce6-a709-2ca8ca78d40c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.ISectionProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\ISectionProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0a0fce94-c3fc-4a2e-b65d-949cf9b5ebc0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.GeneralisedTSectionProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\GeneralisedTSectionProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6b345730-b2f0-4efe-aca2-2d86bb01e7cf", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.GeneralisedFabricatedBoxProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\GeneralisedFabricatedBoxProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0e373534-80c4-4adc-a75c-3684e4d82553", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\FreeFormProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "32ffd48d-83b4-43a2-849f-4931581b5cfd", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.FabricatedISectionProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\FabricatedISectionProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "fc57e764-56bb-44d2-b17e-83e4d6151412", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.FabricatedBoxProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\FabricatedBoxProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d815d935-b40e-4071-b90c-5bf55593ea4d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.ShapeType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\Enums\\ShapeType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4f9e2dc9-a87e-4f3b-9d40-c39a5f671d40", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.CircleProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\CircleProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d88180da-6638-463f-b29b-92acbecd994e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.ChannelProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\ChannelProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "326cead2-5573-4233-8c9e-be812b29924b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.BoxProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\BoxProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0eb076f3-1178-4396-8743-c579763569ce", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Spatial.ShapeProfiles.AngleProfile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Spatial_oM\\ShapeProfiles\\AngleProfile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8918c95b-2400-41e2-9c08-0c5242ec980a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.Spine", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\Spine.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "fa2f4f26-e7bb-47a3-85fb-e910976e4e83", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.RightUpperLeg", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\RightUpperLeg.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "67aa4195-d795-48cc-941c-348fe02410ac", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.RightUpperArm", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\RightUpperArm.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c73e43a9-4cc8-4d24-856d-7001ae88fe7d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.RightThumb", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\RightThumb.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a26fb7a8-447b-4bdf-82cf-179d1577389d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.RightShoulder", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\RightShoulder.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a3ecfde8-9b55-456c-88c3-d6fdbd9cd65c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.RightLowerLeg", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\RightLowerLeg.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f8797b33-2e9b-4fc7-a62c-6e82bec3dd3e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.RightLowerArm", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\RightLowerArm.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0a0ac47a-db08-44fb-99b1-65e54e420e08", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.RightHip", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\RightHip.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "98ca1217-4090-4601-afd5-c134f6e61074", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.RightHand", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\RightHand.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "418a43aa-8a49-4c25-aa3c-1044b61dd767", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.RightFoot", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\RightFoot.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f3bad5fe-3c72-4068-b71b-e2ae965340fa", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.PairOfEyes", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\PairOfEyes.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "edf6fcf8-704d-4c96-b50d-2e6c5bc3dc57", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.Neck", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\Neck.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4c43ade4-3f82-4b2f-b39b-61bd377f85ca", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.LeftUpperLeg", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\LeftUpperLeg.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "bd4c6b49-1ff8-4b99-b82d-2935a1376375", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.LeftUpperArm", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\LeftUpperArm.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b1733e44-2f71-447c-b77c-66f3f3d42de2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.LeftThumb", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\LeftThumb.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "75b1f501-a515-4cbe-a19d-89b08b305b5f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.LeftShoulder", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\LeftShoulder.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8783cb31-9fbd-4bb1-b77f-e420cb1f4c4d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.LeftLowerLeg", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\LeftLowerLeg.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "5366ad1f-c5bc-41bf-b080-e574fc45dc9d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.LeftLowerArm", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\LeftLowerArm.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2d23c7e1-195b-465b-a244-cab42af5d877", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.LeftHip", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\LeftHip.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1a0942d2-7b78-4604-a89a-c3e41fab574d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.LeftHand", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\LeftHand.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9ac6acd5-f5fa-435c-9212-1f54473b5b6e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.LeftFoot", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\LeftFoot.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1e9bcea8-310c-47aa-86ed-48587a70d076", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.Head", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\Head.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "277d5afd-72f4-4fe6-b4ca-ea2b32534daa", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.BodyParts.Eye", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\BodyParts\\Eye.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "5c188d8d-7336-4d84-be6e-c46d9ccb1311", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.ViewQuality.Spectator", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\ViewQuality\\Spectator.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a34a1391-d72c-42bf-8db9-c792290c2df8", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.ViewQuality.EyePositionParameters", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\ViewQuality\\EyePositionParameters.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8a34e4cf-952c-4017-8b42-f65650e6940c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.ViewQuality.EvalueSettings", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\ViewQuality\\EvalueSettings.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2cdfc7b5-2bfb-4419-a15d-12565451b379", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.ViewQuality.CvalueSettings", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\ViewQuality\\CvalueSettings.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f92390d6-3e1d-46f3-b53b-857401ae96ab", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.ViewQuality.AvalueSettings", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\ViewQuality\\AvalueSettings.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0b5ac5a7-f261-4966-b0d9-0189abfa32da", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.ViewQuality.Audience", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\ViewQuality\\Audience.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "79a24dd5-9d3f-4ea8-a0a5-6c5ce9a4a342", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.Skeleton", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\Skeleton.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b54d1813-40ec-40e7-8ba6-6c74a2040b1e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.Human", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\Human.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a249a39a-2159-4dc5-9f2a-282301e29f55", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.JointName", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\Enums\\JointName.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8fb6cacc-13bf-4410-8ccd-65cb0bca9a7e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.HandStateName", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\Enums\\HandStateName.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e3d98b78-6a7a-4e47-9335-59c3c8cb466f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Humans.Employee", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Humans_oM\\Employee.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "460fe4ba-ba5c-4611-9462-fd0cd3d3e0a0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Architecture.BuildersWork.Opening", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Architecture_oM\\BuildersWork\\Opening.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1c79b801-5f2e-48a4-9916-9cbdb38a541b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Architecture.Elements.Room", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Architecture_oM\\Elements\\Room.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0fa0cd57-b1e4-4ccb-b6d8-369a4f49bb26", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Architecture.Elements.Occupancy", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Architecture_oM\\Elements\\Occupancy.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "20d48b99-6475-443f-8f14-cbed305b1772", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Architecture.Elements.CeilingTile", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Architecture_oM\\Elements\\CeilingTile.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "91168f6f-a5bf-4d4f-b5f7-5ae4fd2ed2be", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Architecture.Elements.Ceiling", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Architecture_oM\\Elements\\Ceiling.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ab419975-5a4e-48ab-8d4c-e597c1e0c05c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Architecture.Theatron.StadiaType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Architecture_oM\\Theatron\\Enums\\StadiaType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6a0406aa-ca5e-4fa6-971b-a3dd4af707cf", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Architecture.Theatron.SeatingBlockType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Architecture_oM\\Theatron\\Enums\\SeatingBlockType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4dad3323-8bb4-4aeb-b940-b8fb188efcea", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Architecture.Theatron.EvalueViewType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Architecture_oM\\Theatron\\Enums\\EvalueViewType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8e6973b6-dab0-4bec-9a9e-3418f1a36485", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Architecture.Theatron.BayType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Architecture_oM\\Theatron\\Enums\\BayType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "29a44705-7431-40ef-9e99-731c514959b8", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.Colours.GradientOptions", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\Colours\\GradientOptions.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6b7b046f-e46f-43b6-bd75-21f449a95d50", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.Components.Links", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\Components\\Links.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8887e3cd-c78d-48c6-8b0c-1f5ba168b7ae", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.Components.Boxes", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\Components\\Boxes.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ef0d71ac-19da-4393-8796-e9a211a4c4c9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.Components.BasicArrowMarker", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\Components\\BasicArrowMarker.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "245fa7ab-dd91-40a1-be6d-a8cf52fa16e9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.Fragments.RelationRepresentation", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\Fragments\\RelationRepresentation.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "755623b8-e169-4e18-8959-a43bc45b40e7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.Fragments.GroupRepresentation", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\Fragments\\GroupRepresentation.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b9887c2e-df35-4df5-bcc3-dbf395943208", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.Fragments.GraphRepresentation", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\Fragments\\GraphRepresentation.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "343c5475-7932-479d-a8ad-b294fcb95e40", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.Fragments.EntityRepresentation", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\Fragments\\EntityRepresentation.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b27224e2-5f63-49e6-8a89-f37a4323fa56", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.Misc.Padding", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\Misc\\Padding.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "bd453763-e59f-4852-9c1c-5439d44b78d8", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.Scales.ScaleOrdinal", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\Scales\\ScaleOrdinal.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3415ff77-dd34-47c1-8b84-09e3b41f3a86", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.Scales.ScaleLinear", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\Scales\\ScaleLinear.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "88b3a82e-af8e-47a9-bd2a-6b7adfd215fb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.Views.ViewConfig", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\Views\\ViewConfig.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0d17194b-264b-4664-a280-4dec03581e78", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Graphics.Views.DependencyChart", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Graphics_oM\\Views\\DependencyChart.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "73e37747-cecd-498c-a92f-06ad43415b34", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Test.Results.TestResult", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Test_oM\\Results\\TestResult.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8b1e5a3e-3fcf-41d5-aec7-94444f8b1500", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Test.Results.InputOutputDifference", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Test_oM\\Results\\InputOutputDifference.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4b97d2b0-02dc-45d7-94ee-bf671a22a6fb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Test.Results.InputOutputComparisonSummary", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Test_oM\\Results\\InputOutputComparisonSummary.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "fb8ef44b-ed17-411b-b8aa-ca9c6a17bd9d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Test.Results.InputOutputComparisonDiffing", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Test_oM\\Results\\InputOutputComparisonDiffing.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "35076fdd-387d-473f-9cea-f1a319da353f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Test.Results.InputOutputComparison", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Test_oM\\Results\\InputOutputComparison.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "37cf6f6e-83cf-4958-9a3a-79777516139a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Test.Results.EventMessage", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Test_oM\\Results\\EventMessage.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e87b7e66-e11b-4356-aa4e-af7e6cc8bb99", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Test.Results.InputOutputComparisonType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Test_oM\\Results\\Enums\\InputOutputComparisonType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "57a07383-1494-4b9f-b8ae-38fa029b782c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Test.Results.InputOutputComparisonDiffingType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Test_oM\\Results\\Enums\\InputOutputComparisonDiffingType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2c08f4c8-2523-41c4-9a55-134fb0ec9e57", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Test.UnitTests.UnitTest", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Test_oM\\UnitTests\\UnitTest.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "86dbb050-4d51-4a9f-a3be-071f2c4175e3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Test.UnitTests.TestData", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Test_oM\\UnitTests\\TestData.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e30a1068-3dce-4932-b238-4747589a40de", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Versioning.VersioningEvent", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Versioning_oM\\VersioningEvent.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "fd1cb30f-e0bd-4b6e-ac50-04dbede1dbf7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Geometry.CoordinateSystem.Cartesian", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Geometry_oM\\CoordinateSystem\\Cartesian.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9ecad91c-966e-4f96-bb7a-b14e0ddfe22f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Attributes.ToBeRemovedAttribute", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Attributes\\ToBeRemovedAttribute.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "89206ada-9a26-4262-b40f-5a3ef3b603bc", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Attributes.TargetsAttribute", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Attributes\\TargetsAttribute.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e8bc5ec1-3c4f-4297-abb5-e7a33bdd03a2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Attributes.RequiredAttribute", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Attributes\\RequiredAttribute.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7421a015-dd2a-44db-8ece-cbb325c11393", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Attributes.ReplacedAttribute", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Attributes\\ReplacedAttribute.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0574a01a-8059-4835-9559-cc7da1cb5b6c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Attributes.ReleasedAttribute", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Attributes\\ReleasedAttribute.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b9b2687e-e148-436b-be37-f9a47714fa8a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Attributes.PreviousVersionAttribute", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Attributes\\PreviousVersionAttribute.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ba9052a9-4b20-4f0e-b728-4b97d1a407c4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Attributes.PreviousInputNamesAttribute", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Attributes\\PreviousInputNamesAttribute.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "92c16759-b65b-413d-b433-1f957626233b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Attributes.OutputAttribute", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Attributes\\OutputAttribute.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "571a081e-c4a4-408f-bcf8-9655ad1398ab", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Attributes.NotImplementedAttribute", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Attributes\\NotImplementedAttribute.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8953a0d8-4981-4b8d-a65c-e550f6d908d6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Attributes.NoAutoConstructorAttribute", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Attributes\\NoAutoConstructorAttribute.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9ea85153-7757-4e2c-9551-9076f5e90aa4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Attributes.MultiOutputAttribute", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Attributes\\MultiOutputAttribute.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "99a3039a-eb42-4dff-9e8f-fa02b4cdaea9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Attributes.InputFromProperty", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Attributes\\InputFromProperty.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "861b7b3a-6ebc-474c-8d67-0058ee9d23b6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Attributes.InputAttribute", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Attributes\\InputAttribute.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a782e1e0-afe7-4cd2-8ba3-b05c40410427", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Attributes.DisplayTextAttribute", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Attributes\\DisplayTextAttribute.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "5db196c2-1f75-486a-8dde-cb98b6d51a2a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Attributes.DefaultValueWarningAttribute", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Attributes\\DefaultValueWarningAttribute.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8af1bfc6-0ee4-4525-991e-0495281016f7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Attributes.AssemblyUrlAttribute", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Attributes\\AssemblyUrlAttribute.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e17bb82d-e056-4142-aa72-8e4b5e85ff6a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Attributes.AbbreviationAttribute", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Attributes\\AbbreviationAttribute.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d17cfa6b-07d6-40fd-893d-ca1da9cd475b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Debugging.Log", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Debugging\\Log.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ee79e4b5-dfe0-4052-8a55-f6a26e65af93", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Debugging.Event", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Debugging\\Event.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "00559bbf-2315-4ee8-9a1c-830416fede3f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Reflection.UnderlyingType", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Reflection\\UnderlyingType.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "64f15894-5e05-4087-9d02-70a17fdc2e00", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.NamedSignificantFigures", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\NamedSignificantFigures.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "ecba4a2f-0675-48e1-9e51-f3990066a201", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.NamedNumericTolerance", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\NamedNumericTolerance.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9694dd69-ca2e-4e18-8659-f2c607863f01", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.HashFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\HashFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b27f6cbe-ccf5-4515-a0fc-1c027acf9412", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.FragmentSet", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\FragmentSet.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "7d9543ae-514c-4fdd-8d68-9302debe686c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.Enumeration", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\Enumeration.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8af4c99d-bb92-4396-9837-defd441ca9c4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.CustomObject", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\CustomObject.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "60fe4df5-71d0-4dd6-8ea5-93c9aafcab67", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.ComparisonInclusion", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\ComparisonInclusion.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9f189098-6756-4e70-ae35-662edff0f29a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.ComparisonFunctions", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\ComparisonFunctions.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "aedd2c9f-ac9d-4b6b-bdbe-5f59c8b76f45", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.ComparisonConfig", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\ComparisonConfig.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c22d932b-0e8f-4f5d-9dae-41cf7f3d1f9b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.BHoMObject", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\BHoMObject.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "75d48867-a817-46e7-a380-106bdc31c8c6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Base.BaseComparisonConfig", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/BHoM\\BaseComparisonConfig.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "3dac79e9-8856-49fb-b62b-7ef70ba6dac8", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Collections.Table", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Collections\\Table.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6f6eb676-7546-4907-827f-31d0928b579f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Collections.DomainBox", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Collections\\DomainBox.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "158b216b-473b-4658-9fa4-102272b5ff2a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Collections.Domain", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Collections\\Domain.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "55ad025c-51cc-472b-8c4b-abd0851a78f5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Collections.DiscretePoint", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Collections\\DiscretePoint.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "4b9f583b-7d92-4dd2-8631-42cc76e56a23", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Library.Source", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Library\\Source.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "2fa4e266-9a23-48ea-8da6-71f208469510", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Library.LibrarySettings", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Library\\LibrarySettings.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b3494061-64ac-4e97-a3e9-cdaa18937f50", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Library.Dataset", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Library\\Dataset.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "e78c5b46-8799-4ca8-9d40-f25b2e9ae238", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Requests.SelectionRequest", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Requests\\SelectionRequest.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "1646bdab-19c2-4e09-8348-11a0304b5fcd", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Requests.LogicalOrRequest", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Requests\\LogicalOrRequest.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "c2e59dda-16b0-4d6c-8820-2d7a53175f5f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Requests.LogicalNotRequest", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Requests\\LogicalNotRequest.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "174dbdfe-dba1-4d78-b216-767488aa2320", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Requests.LogicalAndRequest", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Requests\\LogicalAndRequest.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "9b7dba52-239a-4f91-8dae-f1152f78aaa3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Requests.FilterRequest", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Requests\\FilterRequest.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "6427b454-bd95-40ee-8ff1-88ecf1e4a891", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Requests.CustomRequest", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Requests\\CustomRequest.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "90dadcee-34f9-42a3-8713-b92f8f1796e2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.Requests.BatchRequest", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Requests\\BatchRequest.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "cce867ab-c873-481b-8aee-ae6bed521281", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Data.GraphLinkDirection", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Data_oM\\Enums\\GraphLinkDirection.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "10415ed9-ae2f-43d0-acff-d9ceeda9a064", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Analytical.Fragments.TargetsDependencyFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Analytical_oM\\Fragments\\TargetsDependencyFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "349f1c58-681c-4016-bcee-9cc05ea50a00", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Analytical.Fragments.SourcesDependencyFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Analytical_oM\\Fragments\\SourcesDependencyFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d2618352-ce41-4660-a6a6-950a494a5536", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Analytical.Fragments.RoutingFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Analytical_oM\\Fragments\\RoutingFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "d02e1ec1-3d07-4daf-8745-8ff27714c788", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Analytical.Fragments.ProjectionFragment", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Analytical_oM\\Fragments\\ProjectionFragment.cs"] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8a1cde83-e4de-4db6-93c0-b172464929a8", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "System.Type", "Name" : "BH.oM.Analytical.Results.ResultFilter", "_bhomVersion" : "6.0" }], "Outputs" : ["https://github.com/BHoM/BHoM\\blob/main/Analytical_oM\\Results\\ResultFilter.cs"] }] }], "_bhomVersion" : "6.0" } \ No newline at end of file From 4de2af8eb1fb6d7022c436fa7263e7cf56ec82f3 Mon Sep 17 00:00:00 2001 From: Fraser Greenroyd Date: Wed, 9 Nov 2022 10:10:26 +0000 Subject: [PATCH 8/8] Remove methods per review --- Data_Engine/Query/Count.cs | 24 +----------------------- 1 file changed, 1 insertion(+), 23 deletions(-) diff --git a/Data_Engine/Query/Count.cs b/Data_Engine/Query/Count.cs index c4ec1ba4a..c44cd0f9f 100644 --- a/Data_Engine/Query/Count.cs +++ b/Data_Engine/Query/Count.cs @@ -31,18 +31,6 @@ namespace BH.Engine.Data { public static partial class Query { - /***************************************************/ - /**** Interface Methods ****/ - /***************************************************/ - - [PreviousVersion("6.0", "BH.Engine.Reflection.Query.ICount(System.Collections.Generic.List)")] - [Description("Get the count of the number of items in a list of objects.")] - [Input("list", "The list of items to obtain a count of.")] - [Output("count", "The number of items in the list.")] - public static int ICount(this List list) - { - return Count(list as dynamic); - } /***************************************************/ /**** Public Methods ****/ @@ -92,6 +80,7 @@ public static int Count(this VennDiagram diagram) /***************************************************/ [PreviousVersion("6.0", "BH.Engine.Reflection.Query.Item(System.Collections.Generic.List)")] + [PreviousVersion("6.0", "BH.Engine.Reflection.Query.ICount(System.Collections.Generic.List)")] [Description("Get the count of items in the list. Returns the total number of objects held within the list.")] [Input("list", "The list of objects to obtain the count from.")] [Output("count", "The number of items in the list.")] @@ -99,17 +88,6 @@ public static int Count(this List list) { return list.Count; } - - /***************************************************/ - /**** Private Methods ****/ - /***************************************************/ - - private static int Count(this object obj) - { - return 0; - } - - /***************************************************/ } }