Request

Response

    Task 5 – Get Project Elements with Specific Properties

    In this task, you will understand how to retrieve all instance elements that are of category, walls, from all elementGroups within a project. Also, you can request for only the properties of these instances be returned.

    • Fetch elements of category walls greater than 10 from all elementGroups in a project and information like id and properties.
    • Make sense of the options and fields in the documentation on the elements query, elements object, and Properties object.

    You will use the following queries in this task:

    Step 1: Request elements matching the specified classification filter

    The elementsByProject query returns Elements object, which contains an array of Elements objects.

    For this exercise, we request all elements instances with
    • Elements id, name field, and properties.
    • Name and value fields in the properties object.
    1. In AEC Data Model Explorer, the query is populated by default in the Query Pane. You can also edit or update the query as per your requirement and run it.

      Query

      query GetElementsInProject($projectId: ID!, $propertyFilter: String!) {
          elementsByProject(projectId: $projectId, filter: {query: $propertyFilter}) {
              pagination {
                  cursor
              }
              results {
                  id
                  name
                  properties(
                      includeReferencesProperties: "Type"
                      filter: {names: ["Family Name", "Element Name", "Element Context", "Fire Rating"]}
                  ) {
                      results {
                          name
                          value
                          displayValue
                          definition {
                              units{
                              name
                              }
                          }
                      }
                  }
              }
          }
      }
      
      Show More

      Query Variables

      • In the Query Variables Pane, replace the value of the projectId variable with the project ID that you used in Navigate to Elementgroups of previous tutorial.
      • In the Query Variables Pane, replace the value of the propertyFilter with the property filter of your choice. For ease of understanding, here we have filtered elements that are walls with a Fire Rating.

      Note: To know the list of supported metadata filtering options, refer to the Advanced Filtering Capabilities page.

      {
          "projectId": "urn:adsk.workspace:prod.project:39208068-e548-4d9e-b8a7-e000fdf2a9b4",
          "propertyFilter": "'property.name.Family Name'=='Basic Wall' and property.name.Length > 10 and 'property.name.Element Context'==Instance"
      }
      
    2. Click Play. The list of elements available within that elementGroup of property ‘family’ and value ‘“Basic Wall” is displayed in the response. The response should be similar to the following code-block:

      Note: The following code is a subset data of complete response, hence do not use this as reference.

      Response

      {
      "data": {
          "elementsByProject": {
          "pagination": {
              "cursor": "YWRjdXJzfjB-NTB-NTA"
          },
          "results": [
              {
              "id": "YWVjZX42SUpGQXdONExWTG5JZXZiQk5GNU1IX0wyQ340VFVtRnF0WFJVVy1CS09Gb1cyd3FRXzE4NTI4MQ",
              "name": "Generic - 200mm",
              "properties": {
                  "results": [
                  {
                      "name": "Element Name",
                      "value": "Generic - 200mm",
                      "displayValue": "Generic - 200mm",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Family Name",
                      "value": "Basic Wall",
                      "displayValue": "Basic Wall",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Element Context",
                      "value": "Instance",
                      "displayValue": "Instance",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Fire Rating",
                      "value": null,
                      "displayValue": null,
                      "definition": {
                      "units": null
                      }
                  }
                  ]
              }
              },
              {
              "id": "YWVjZX42SUpGQXdONExWTG5JZXZiQk5GNU1IX0wyQ340VFVtRnF0WFJVVy1CS09Gb1cyd3FRXzE4NTI4Mg",
              "name": "Generic - 200mm",
              "properties": {
                  "results": [
                  {
                      "name": "Element Name",
                      "value": "Generic - 200mm",
                      "displayValue": "Generic - 200mm",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Family Name",
                      "value": "Basic Wall",
                      "displayValue": "Basic Wall",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Element Context",
                      "value": "Instance",
                      "displayValue": "Instance",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Fire Rating",
                      "value": null,
                      "displayValue": null,
                      "definition": {
                      "units": null
                      }
                  }
                  ]
              }
              },
              {
              "id": "YWVjZX42SUpGQXdONExWTG5JZXZiQk5GNU1IX0wyQ340VFVtRnF0WFJVVy1CS09Gb1cyd3FRXzE4NTI4Mw",
              "name": "Generic - 200mm",
              "properties": {
                  "results": [
                  {
                      "name": "Element Name",
                      "value": "Generic - 200mm",
                      "displayValue": "Generic - 200mm",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Family Name",
                      "value": "Basic Wall",
                      "displayValue": "Basic Wall",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Element Context",
                      "value": "Instance",
                      "displayValue": "Instance",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Fire Rating",
                      "value": null,
                      "displayValue": null,
                      "definition": {
                      "units": null
                      }
                  }
                  ]
              }
              },
              {
              "id": "YWVjZX42SUpGQXdONExWTG5JZXZiQk5GNU1IX0wyQ340VFVtRnF0WFJVVy1CS09Gb1cyd3FRXzE4NTI4NA",
              "name": "Generic - 200mm",
              "properties": {
                  "results": [
                  {
                      "name": "Element Name",
                      "value": "Generic - 200mm",
                      "displayValue": "Generic - 200mm",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Family Name",
                      "value": "Basic Wall",
                      "displayValue": "Basic Wall",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Element Context",
                      "value": "Instance",
                      "displayValue": "Instance",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Fire Rating",
                      "value": null,
                      "displayValue": null,
                      "definition": {
                      "units": null
                      }
                  }
                  ]
              }
              },
              {
              "id": "YWVjZX42SUpGQXdONExWTG5JZXZiQk5GNU1IX0wyQ35Mdm9zVEo1N1JYZWZOWTFiYWNoUVRRXzExNjJiYw",
              "name": "Retaining - 12\" Concrete",
              "properties": {
                  "results": [
                  {
                      "name": "Element Name",
                      "value": "Retaining - 12\" Concrete",
                      "displayValue": "Retaining - 12\" Concrete",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Family Name",
                      "value": "Basic Wall",
                      "displayValue": "Basic Wall",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Element Context",
                      "value": "Instance",
                      "displayValue": "Instance",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Fire Rating",
                      "value": null,
                      "displayValue": null,
                      "definition": {
                      "units": null
                      }
                  }
                  ]
              }
              },
              {
              "id": "YWVjZX42SUpGQXdONExWTG5JZXZiQk5GNU1IX0wyQ35Mdm9zVEo1N1JYZWZOWTFiYWNoUVRRXzExNjJiZA",
              "name": "Retaining - 12\" Concrete",
              "properties": {
                  "results": [
                  {
                      "name": "Element Name",
                      "value": "Retaining - 12\" Concrete",
                      "displayValue": "Retaining - 12\" Concrete",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Family Name",
                      "value": "Basic Wall",
                      "displayValue": "Basic Wall",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Element Context",
                      "value": "Instance",
                      "displayValue": "Instance",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Fire Rating",
                      "value": null,
                      "displayValue": null,
                      "definition": {
                      "units": null
                      }
                  }
                  ]
              }
              },
              {
              "id": "YWVjZX42SUpGQXdONExWTG5JZXZiQk5GNU1IX0wyQ35Mdm9zVEo1N1JYZWZOWTFiYWNoUVRRXzEzNGM2Nw",
              "name": "Foundation - 24\" Concrete",
              "properties": {
                  "results": [
                  {
                      "name": "Element Name",
                      "value": "Foundation - 24\" Concrete",
                      "displayValue": "Foundation - 24\" Concrete",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Family Name",
                      "value": "Basic Wall",
                      "displayValue": "Basic Wall",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Element Context",
                      "value": "Instance",
                      "displayValue": "Instance",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Fire Rating",
                      "value": "4 HR",
                      "displayValue": "4 HR",
                      "definition": {
                      "units": null
                      }
                  }
                  ]
              }
              },
              {
              "id": "YWVjZX42SUpGQXdONExWTG5JZXZiQk5GNU1IX0wyQ35Mdm9zVEo1N1JYZWZOWTFiYWNoUVRRXzEzNTYzNQ",
              "name": "Foundation - 24\" Concrete",
              "properties": {
                  "results": [
                  {
                      "name": "Element Name",
                      "value": "Foundation - 24\" Concrete",
                      "displayValue": "Foundation - 24\" Concrete",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Family Name",
                      "value": "Basic Wall",
                      "displayValue": "Basic Wall",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Element Context",
                      "value": "Instance",
                      "displayValue": "Instance",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Fire Rating",
                      "value": "4 HR",
                      "displayValue": "4 HR",
                      "definition": {
                      "units": null
                      }
                  }
                  ]
              }
              },
              {
              "id": "YWVjZX42SUpGQXdONExWTG5JZXZiQk5GNU1IX0wyQ35Mdm9zVEo1N1JYZWZOWTFiYWNoUVRRXzEzNTYzNg",
              "name": "Foundation - 24\" Concrete",
              "properties": {
                  "results": [
                  {
                      "name": "Element Name",
                      "value": "Foundation - 24\" Concrete",
                      "displayValue": "Foundation - 24\" Concrete",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Family Name",
                      "value": "Basic Wall",
                      "displayValue": "Basic Wall",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Element Context",
                      "value": "Instance",
                      "displayValue": "Instance",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Fire Rating",
                      "value": "4 HR",
                      "displayValue": "4 HR",
                      "definition": {
                      "units": null
                      }
                  }
                  ]
              }
              },
              {
              "id": "YWVjZX42SUpGQXdONExWTG5JZXZiQk5GNU1IX0wyQ35Mdm9zVEo1N1JYZWZOWTFiYWNoUVRRXzEzNTcxMg",
              "name": "Foundation - 24\" Concrete",
              "properties": {
                  "results": [
                  {
                      "name": "Element Name",
                      "value": "Foundation - 24\" Concrete",
                      "displayValue": "Foundation - 24\" Concrete",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Family Name",
                      "value": "Basic Wall",
                      "displayValue": "Basic Wall",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Element Context",
                      "value": "Instance",
                      "displayValue": "Instance",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Fire Rating",
                      "value": "4 HR",
                      "displayValue": "4 HR",
                      "definition": {
                      "units": null
                      }
                  }
                  ]
              }
              },
              {
              "id": "YWVjZX42SUpGQXdONExWTG5JZXZiQk5GNU1IX0wyQ35Mdm9zVEo1N1JYZWZOWTFiYWNoUVRRXzEzNTcxMw",
              "name": "Foundation - 24\" Concrete",
              "properties": {
                  "results": [
                  {
                      "name": "Element Name",
                      "value": "Foundation - 24\" Concrete",
                      "displayValue": "Foundation - 24\" Concrete",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Family Name",
                      "value": "Basic Wall",
                      "displayValue": "Basic Wall",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Element Context",
                      "value": "Instance",
                      "displayValue": "Instance",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Fire Rating",
                      "value": "4 HR",
                      "displayValue": "4 HR",
                      "definition": {
                      "units": null
                      }
                  }
                  ]
              }
              },
              {
              "id": "YWVjZX42SUpGQXdONExWTG5JZXZiQk5GNU1IX0wyQ35Mdm9zVEo1N1JYZWZOWTFiYWNoUVRRXzEzNTcxNA",
              "name": "Foundation - 24\" Concrete",
              "properties": {
                  "results": [
                  {
                      "name": "Element Name",
                      "value": "Foundation - 24\" Concrete",
                      "displayValue": "Foundation - 24\" Concrete",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Family Name",
                      "value": "Basic Wall",
                      "displayValue": "Basic Wall",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Element Context",
                      "value": "Instance",
                      "displayValue": "Instance",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Fire Rating",
                      "value": "4 HR",
                      "displayValue": "4 HR",
                      "definition": {
                      "units": null
                      }
                  }
                  ]
              }
              },
              {
              "id": "YWVjZX42SUpGQXdONExWTG5JZXZiQk5GNU1IX0wyQ35Mdm9zVEo1N1JYZWZOWTFiYWNoUVRRXzEzNTcxNQ",
              "name": "Foundation - 24\" Concrete",
              "properties": {
                  "results": [
                  {
                      "name": "Element Name",
                      "value": "Foundation - 24\" Concrete",
                      "displayValue": "Foundation - 24\" Concrete",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Family Name",
                      "value": "Basic Wall",
                      "displayValue": "Basic Wall",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Element Context",
                      "value": "Instance",
                      "displayValue": "Instance",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Fire Rating",
                      "value": "4 HR",
                      "displayValue": "4 HR",
                      "definition": {
                      "units": null
                      }
                  }
                  ]
              }
              },
              {
              "id": "YWVjZX42SUpGQXdONExWTG5JZXZiQk5GNU1IX0wyQ35Mdm9zVEo1N1JYZWZOWTFiYWNoUVRRXzEzNTcxNw",
              "name": "Foundation - 24\" Concrete",
              "properties": {
                  "results": [
                  {
                      "name": "Element Name",
                      "value": "Foundation - 24\" Concrete",
                      "displayValue": "Foundation - 24\" Concrete",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Family Name",
                      "value": "Basic Wall",
                      "displayValue": "Basic Wall",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Element Context",
                      "value": "Instance",
                      "displayValue": "Instance",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Fire Rating",
                      "value": "4 HR",
                      "displayValue": "4 HR",
                      "definition": {
                      "units": null
                      }
                  }
                  ]
              }
              },
              {
              "id": "YWVjZX42SUpGQXdONExWTG5JZXZiQk5GNU1IX0wyQ35fR1IzdHpORlI3LV9tclFBOGR4TWN3XzE4NGNkMg",
              "name": "Proposed Partition 4\"",
              "properties": {
                  "results": [
                  {
                      "name": "Element Name",
                      "value": "Proposed Partition 4\"",
                      "displayValue": "Proposed Partition 4\"",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Family Name",
                      "value": "Basic Wall",
                      "displayValue": "Basic Wall",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Element Context",
                      "value": "Instance",
                      "displayValue": "Instance",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Fire Rating",
                      "value": null,
                      "displayValue": null,
                      "definition": {
                      "units": null
                      }
                  }
                  ]
              }
              },
              {
              "id": "YWVjZX42SUpGQXdONExWTG5JZXZiQk5GNU1IX0wyQ35mV0R1ZkIteVNtcTVGd242RmoxXy1nXzEwNTc3ZQ",
              "name": "Block 39 - L2 Entablature",
              "properties": {
                  "results": [
                  {
                      "name": "Element Name",
                      "value": "Block 39 - L2 Entablature",
                      "displayValue": "Block 39 - L2 Entablature",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Family Name",
                      "value": "Basic Wall",
                      "displayValue": "Basic Wall",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Element Context",
                      "value": "Instance",
                      "displayValue": "Instance",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Fire Rating",
                      "value": null,
                      "displayValue": null,
                      "definition": {
                      "units": null
                      }
                  }
                  ]
              }
              },
              {
              "id": "YWVjZX42SUpGQXdONExWTG5JZXZiQk5GNU1IX0wyQ35mV0R1ZkIteVNtcTVGd242RmoxXy1nXzEwNTg3Yg",
              "name": "Generic - 12\"",
              "properties": {
                  "results": [
                  {
                      "name": "Element Name",
                      "value": "Generic - 12\"",
                      "displayValue": "Generic - 12\"",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Family Name",
                      "value": "Basic Wall",
                      "displayValue": "Basic Wall",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Element Context",
                      "value": "Instance",
                      "displayValue": "Instance",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Fire Rating",
                      "value": null,
                      "displayValue": null,
                      "definition": {
                      "units": null
                      }
                  }
                  ]
              }
              },
              {
              "id": "YWVjZX42SUpGQXdONExWTG5JZXZiQk5GNU1IX0wyQ35mV0R1ZkIteVNtcTVGd242RmoxXy1nXzEwNTkwZA",
              "name": "Generic - 12\"",
              "properties": {
                  "results": [
                  {
                      "name": "Element Name",
                      "value": "Generic - 12\"",
                      "displayValue": "Generic - 12\"",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Family Name",
                      "value": "Basic Wall",
                      "displayValue": "Basic Wall",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Element Context",
                      "value": "Instance",
                      "displayValue": "Instance",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Fire Rating",
                      "value": null,
                      "displayValue": null,
                      "definition": {
                      "units": null
                      }
                  }
                  ]
              }
              },
              {
              "id": "YWVjZX42SUpGQXdONExWTG5JZXZiQk5GNU1IX0wyQ35mV0R1ZkIteVNtcTVGd242RmoxXy1nXzEwNjk1Zg",
              "name": "Generic - 12\"",
              "properties": {
                  "results": [
                  {
                      "name": "Element Name",
                      "value": "Generic - 12\"",
                      "displayValue": "Generic - 12\"",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Family Name",
                      "value": "Basic Wall",
                      "displayValue": "Basic Wall",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Element Context",
                      "value": "Instance",
                      "displayValue": "Instance",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Fire Rating",
                      "value": null,
                      "displayValue": null,
                      "definition": {
                      "units": null
                      }
                  }
                  ]
              }
              },
              {
              "id": "YWVjZX42SUpGQXdONExWTG5JZXZiQk5GNU1IX0wyQ35mV0R1ZkIteVNtcTVGd242RmoxXy1nXzEwNjk4OQ",
              "name": "Generic - 12\"",
              "properties": {
                  "results": [
                  {
                      "name": "Element Name",
                      "value": "Generic - 12\"",
                      "displayValue": "Generic - 12\"",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Family Name",
                      "value": "Basic Wall",
                      "displayValue": "Basic Wall",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Element Context",
                      "value": "Instance",
                      "displayValue": "Instance",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Fire Rating",
                      "value": null,
                      "displayValue": null,
                      "definition": {
                      "units": null
                      }
                  }
                  ]
              }
              },
              {
              "id": "YWVjZX42SUpGQXdONExWTG5JZXZiQk5GNU1IX0wyQ35mV0R1ZkIteVNtcTVGd242RmoxXy1nXzEyZmI5Zg",
              "name": "Generic - 12\"",
              "properties": {
                  "results": [
                  {
                      "name": "Element Name",
                      "value": "Generic - 12\"",
                      "displayValue": "Generic - 12\"",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Family Name",
                      "value": "Basic Wall",
                      "displayValue": "Basic Wall",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Element Context",
                      "value": "Instance",
                      "displayValue": "Instance",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Fire Rating",
                      "value": null,
                      "displayValue": null,
                      "definition": {
                      "units": null
                      }
                  }
                  ]
              }
              },
              {
              "id": "YWVjZX42SUpGQXdONExWTG5JZXZiQk5GNU1IX0wyQ35mV0R1ZkIteVNtcTVGd242RmoxXy1nXzEyZmJiNQ",
              "name": "Generic - 12\"",
              "properties": {
                  "results": [
                  {
                      "name": "Element Name",
                      "value": "Generic - 12\"",
                      "displayValue": "Generic - 12\"",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Family Name",
                      "value": "Basic Wall",
                      "displayValue": "Basic Wall",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Element Context",
                      "value": "Instance",
                      "displayValue": "Instance",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Fire Rating",
                      "value": null,
                      "displayValue": null,
                      "definition": {
                      "units": null
                      }
                  }
                  ]
              }
              },
              {
              "id": "YWVjZX42SUpGQXdONExWTG5JZXZiQk5GNU1IX0wyQ35mV0R1ZkIteVNtcTVGd242RmoxXy1nXzEyZmJjNQ",
              "name": "Generic - 12\"",
              "properties": {
                  "results": [
                  {
                      "name": "Element Name",
                      "value": "Generic - 12\"",
                      "displayValue": "Generic - 12\"",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Family Name",
                      "value": "Basic Wall",
                      "displayValue": "Basic Wall",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Element Context",
                      "value": "Instance",
                      "displayValue": "Instance",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Fire Rating",
                      "value": null,
                      "displayValue": null,
                      "definition": {
                      "units": null
                      }
                  }
                  ]
              }
              },
              {
              "id": "YWVjZX42SUpGQXdONExWTG5JZXZiQk5GNU1IX0wyQ35mV0R1ZkIteVNtcTVGd242RmoxXy1nXzEyZmMwMQ",
              "name": "Generic - 12\"",
              "properties": {
                  "results": [
                  {
                      "name": "Element Name",
                      "value": "Generic - 12\"",
                      "displayValue": "Generic - 12\"",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Family Name",
                      "value": "Basic Wall",
                      "displayValue": "Basic Wall",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Element Context",
                      "value": "Instance",
                      "displayValue": "Instance",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Fire Rating",
                      "value": null,
                      "displayValue": null,
                      "definition": {
                      "units": null
                      }
                  }
                  ]
              }
              },
              {
              "id": "YWVjZX42SUpGQXdONExWTG5JZXZiQk5GNU1IX0wyQ35mV0R1ZkIteVNtcTVGd242RmoxXy1nXzEyZmMxOA",
              "name": "Generic - 12\"",
              "properties": {
                  "results": [
                  {
                      "name": "Element Name",
                      "value": "Generic - 12\"",
                      "displayValue": "Generic - 12\"",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Family Name",
                      "value": "Basic Wall",
                      "displayValue": "Basic Wall",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Element Context",
                      "value": "Instance",
                      "displayValue": "Instance",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Fire Rating",
                      "value": null,
                      "displayValue": null,
                      "definition": {
                      "units": null
                      }
                  }
                  ]
              }
              },
              {
              "id": "YWVjZX42SUpGQXdONExWTG5JZXZiQk5GNU1IX0wyQ35mV0R1ZkIteVNtcTVGd242RmoxXy1nXzEyZmMyYQ",
              "name": "Generic - 12\"",
              "properties": {
                  "results": [
                  {
                      "name": "Element Name",
                      "value": "Generic - 12\"",
                      "displayValue": "Generic - 12\"",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Family Name",
                      "value": "Basic Wall",
                      "displayValue": "Basic Wall",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Element Context",
                      "value": "Instance",
                      "displayValue": "Instance",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Fire Rating",
                      "value": null,
                      "displayValue": null,
                      "definition": {
                      "units": null
                      }
                  }
                  ]
              }
              },
              {
              "id": "YWVjZX42SUpGQXdONExWTG5JZXZiQk5GNU1IX0wyQ35mV0R1ZkIteVNtcTVGd242RmoxXy1nXzEyZmM0Nw",
              "name": "Generic - 12\"",
              "properties": {
                  "results": [
                  {
                      "name": "Element Name",
                      "value": "Generic - 12\"",
                      "displayValue": "Generic - 12\"",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Family Name",
                      "value": "Basic Wall",
                      "displayValue": "Basic Wall",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Element Context",
                      "value": "Instance",
                      "displayValue": "Instance",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Fire Rating",
                      "value": null,
                      "displayValue": null,
                      "definition": {
                      "units": null
                      }
                  }
                  ]
              }
              },
              {
              "id": "YWVjZX42SUpGQXdONExWTG5JZXZiQk5GNU1IX0wyQ35mV0R1ZkIteVNtcTVGd242RmoxXy1nXzEyZmM2YQ",
              "name": "Generic - 12\"",
              "properties": {
                  "results": [
                  {
                      "name": "Element Name",
                      "value": "Generic - 12\"",
                      "displayValue": "Generic - 12\"",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Family Name",
                      "value": "Basic Wall",
                      "displayValue": "Basic Wall",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Element Context",
                      "value": "Instance",
                      "displayValue": "Instance",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Fire Rating",
                      "value": null,
                      "displayValue": null,
                      "definition": {
                      "units": null
                      }
                  }
                  ]
              }
              },
              {
              "id": "YWVjZX42SUpGQXdONExWTG5JZXZiQk5GNU1IX0wyQ35mV0R1ZkIteVNtcTVGd242RmoxXy1nXzEyZmM4Yg",
              "name": "Generic - 12\"",
              "properties": {
                  "results": [
                  {
                      "name": "Element Name",
                      "value": "Generic - 12\"",
                      "displayValue": "Generic - 12\"",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Family Name",
                      "value": "Basic Wall",
                      "displayValue": "Basic Wall",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Element Context",
                      "value": "Instance",
                      "displayValue": "Instance",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Fire Rating",
                      "value": null,
                      "displayValue": null,
                      "definition": {
                      "units": null
                      }
                  }
                  ]
              }
              },
              {
              "id": "YWVjZX42SUpGQXdONExWTG5JZXZiQk5GNU1IX0wyQ35mV0R1ZkIteVNtcTVGd242RmoxXy1nXzEyZmZmNQ",
              "name": "Generic - 12\"",
              "properties": {
                  "results": [
                  {
                      "name": "Element Name",
                      "value": "Generic - 12\"",
                      "displayValue": "Generic - 12\"",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Family Name",
                      "value": "Basic Wall",
                      "displayValue": "Basic Wall",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Element Context",
                      "value": "Instance",
                      "displayValue": "Instance",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Fire Rating",
                      "value": null,
                      "displayValue": null,
                      "definition": {
                      "units": null
                      }
                  }
                  ]
              }
              },
              {
              "id": "YWVjZX42SUpGQXdONExWTG5JZXZiQk5GNU1IX0wyQ35mV0R1ZkIteVNtcTVGd242RmoxXy1nXzEzMDBlZg",
              "name": "Generic - 12\"",
              "properties": {
                  "results": [
                  {
                      "name": "Element Name",
                      "value": "Generic - 12\"",
                      "displayValue": "Generic - 12\"",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Family Name",
                      "value": "Basic Wall",
                      "displayValue": "Basic Wall",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Element Context",
                      "value": "Instance",
                      "displayValue": "Instance",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Fire Rating",
                      "value": null,
                      "displayValue": null,
                      "definition": {
                      "units": null
                      }
                  }
                  ]
              }
              },
              {
              "id": "YWVjZX42SUpGQXdONExWTG5JZXZiQk5GNU1IX0wyQ35mV0R1ZkIteVNtcTVGd242RmoxXy1nXzEzMDFiYw",
              "name": "Generic - 12\"",
              "properties": {
                  "results": [
                  {
                      "name": "Element Name",
                      "value": "Generic - 12\"",
                      "displayValue": "Generic - 12\"",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Family Name",
                      "value": "Basic Wall",
                      "displayValue": "Basic Wall",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Element Context",
                      "value": "Instance",
                      "displayValue": "Instance",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Fire Rating",
                      "value": null,
                      "displayValue": null,
                      "definition": {
                      "units": null
                      }
                  }
                  ]
              }
              },
              {
              "id": "YWVjZX42SUpGQXdONExWTG5JZXZiQk5GNU1IX0wyQ35mV0R1ZkIteVNtcTVGd242RmoxXy1nXzEzMDRmNA",
              "name": "Generic - 12\"",
              "properties": {
                  "results": [
                  {
                      "name": "Element Name",
                      "value": "Generic - 12\"",
                      "displayValue": "Generic - 12\"",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Family Name",
                      "value": "Basic Wall",
                      "displayValue": "Basic Wall",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Element Context",
                      "value": "Instance",
                      "displayValue": "Instance",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Fire Rating",
                      "value": null,
                      "displayValue": null,
                      "definition": {
                      "units": null
                      }
                  }
                  ]
              }
              },
              {
              "id": "YWVjZX42SUpGQXdONExWTG5JZXZiQk5GNU1IX0wyQ35mV0R1ZkIteVNtcTVGd242RmoxXy1nXzkwZDI5",
              "name": "Generic - 12\"",
              "properties": {
                  "results": [
                  {
                      "name": "Element Name",
                      "value": "Generic - 12\"",
                      "displayValue": "Generic - 12\"",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Family Name",
                      "value": "Basic Wall",
                      "displayValue": "Basic Wall",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Element Context",
                      "value": "Instance",
                      "displayValue": "Instance",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Fire Rating",
                      "value": null,
                      "displayValue": null,
                      "definition": {
                      "units": null
                      }
                  }
                  ]
              }
              },
              {
              "id": "YWVjZX42SUpGQXdONExWTG5JZXZiQk5GNU1IX0wyQ35mV0R1ZkIteVNtcTVGd242RmoxXy1nXzkwZDJh",
              "name": "Generic - 6\"",
              "properties": {
                  "results": [
                  {
                      "name": "Element Name",
                      "value": "Generic - 6\"",
                      "displayValue": "Generic - 6\"",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Family Name",
                      "value": "Basic Wall",
                      "displayValue": "Basic Wall",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Element Context",
                      "value": "Instance",
                      "displayValue": "Instance",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Fire Rating",
                      "value": null,
                      "displayValue": null,
                      "definition": {
                      "units": null
                      }
                  }
                  ]
              }
              },
              {
              "id": "YWVjZX42SUpGQXdONExWTG5JZXZiQk5GNU1IX0wyQ35mV0R1ZkIteVNtcTVGd242RmoxXy1nXzkwZDJi",
              "name": "Generic - 6\"",
              "properties": {
                  "results": [
                  {
                      "name": "Element Name",
                      "value": "Generic - 6\"",
                      "displayValue": "Generic - 6\"",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Family Name",
                      "value": "Basic Wall",
                      "displayValue": "Basic Wall",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Element Context",
                      "value": "Instance",
                      "displayValue": "Instance",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Fire Rating",
                      "value": null,
                      "displayValue": null,
                      "definition": {
                      "units": null
                      }
                  }
                  ]
              }
              },
              {
              "id": "YWVjZX42SUpGQXdONExWTG5JZXZiQk5GNU1IX0wyQ35mV0R1ZkIteVNtcTVGd242RmoxXy1nXzkwZDJj",
              "name": "Block 43",
              "properties": {
                  "results": [
                  {
                      "name": "Element Name",
                      "value": "Block 43",
                      "displayValue": "Block 43",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Family Name",
                      "value": "Basic Wall",
                      "displayValue": "Basic Wall",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Element Context",
                      "value": "Instance",
                      "displayValue": "Instance",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Fire Rating",
                      "value": null,
                      "displayValue": null,
                      "definition": {
                      "units": null
                      }
                  }
                  ]
              }
              },
              {
              "id": "YWVjZX42SUpGQXdONExWTG5JZXZiQk5GNU1IX0wyQ35mV0R1ZkIteVNtcTVGd242RmoxXy1nXzkwZDJk",
              "name": "Generic - 12\"",
              "properties": {
                  "results": [
                  {
                      "name": "Element Name",
                      "value": "Generic - 12\"",
                      "displayValue": "Generic - 12\"",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Family Name",
                      "value": "Basic Wall",
                      "displayValue": "Basic Wall",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Element Context",
                      "value": "Instance",
                      "displayValue": "Instance",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Fire Rating",
                      "value": null,
                      "displayValue": null,
                      "definition": {
                      "units": null
                      }
                  }
                  ]
              }
              },
              {
              "id": "YWVjZX42SUpGQXdONExWTG5JZXZiQk5GNU1IX0wyQ35mV0R1ZkIteVNtcTVGd242RmoxXy1nXzkwZDJl",
              "name": "Generic - 12\"",
              "properties": {
                  "results": [
                  {
                      "name": "Element Name",
                      "value": "Generic - 12\"",
                      "displayValue": "Generic - 12\"",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Family Name",
                      "value": "Basic Wall",
                      "displayValue": "Basic Wall",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Element Context",
                      "value": "Instance",
                      "displayValue": "Instance",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Fire Rating",
                      "value": null,
                      "displayValue": null,
                      "definition": {
                      "units": null
                      }
                  }
                  ]
              }
              },
              {
              "id": "YWVjZX42SUpGQXdONExWTG5JZXZiQk5GNU1IX0wyQ35mV0R1ZkIteVNtcTVGd242RmoxXy1nXzkwZDJm",
              "name": "Generic - 12\"",
              "properties": {
                  "results": [
                  {
                      "name": "Element Name",
                      "value": "Generic - 12\"",
                      "displayValue": "Generic - 12\"",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Family Name",
                      "value": "Basic Wall",
                      "displayValue": "Basic Wall",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Element Context",
                      "value": "Instance",
                      "displayValue": "Instance",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Fire Rating",
                      "value": null,
                      "displayValue": null,
                      "definition": {
                      "units": null
                      }
                  }
                  ]
              }
              },
              {
              "id": "YWVjZX42SUpGQXdONExWTG5JZXZiQk5GNU1IX0wyQ35mV0R1ZkIteVNtcTVGd242RmoxXy1nXzkwZDMx",
              "name": "Block 37",
              "properties": {
                  "results": [
                  {
                      "name": "Element Name",
                      "value": "Block 37",
                      "displayValue": "Block 37",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Family Name",
                      "value": "Basic Wall",
                      "displayValue": "Basic Wall",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Element Context",
                      "value": "Instance",
                      "displayValue": "Instance",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Fire Rating",
                      "value": null,
                      "displayValue": null,
                      "definition": {
                      "units": null
                      }
                  }
                  ]
              }
              },
              {
              "id": "YWVjZX42SUpGQXdONExWTG5JZXZiQk5GNU1IX0wyQ35mV0R1ZkIteVNtcTVGd242RmoxXy1nXzkwZDMy",
              "name": "Block 37",
              "properties": {
                  "results": [
                  {
                      "name": "Element Name",
                      "value": "Block 37",
                      "displayValue": "Block 37",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Family Name",
                      "value": "Basic Wall",
                      "displayValue": "Basic Wall",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Element Context",
                      "value": "Instance",
                      "displayValue": "Instance",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Fire Rating",
                      "value": null,
                      "displayValue": null,
                      "definition": {
                      "units": null
                      }
                  }
                  ]
              }
              },
              {
              "id": "YWVjZX42SUpGQXdONExWTG5JZXZiQk5GNU1IX0wyQ35mV0R1ZkIteVNtcTVGd242RmoxXy1nXzkwZDM2",
              "name": "Generic - 10\"",
              "properties": {
                  "results": [
                  {
                      "name": "Element Name",
                      "value": "Generic - 10\"",
                      "displayValue": "Generic - 10\"",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Family Name",
                      "value": "Basic Wall",
                      "displayValue": "Basic Wall",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Element Context",
                      "value": "Instance",
                      "displayValue": "Instance",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Fire Rating",
                      "value": null,
                      "displayValue": null,
                      "definition": {
                      "units": null
                      }
                  }
                  ]
              }
              },
              {
              "id": "YWVjZX42SUpGQXdONExWTG5JZXZiQk5GNU1IX0wyQ35mV0R1ZkIteVNtcTVGd242RmoxXy1nXzkwZDQx",
              "name": "Generic - 10\"",
              "properties": {
                  "results": [
                  {
                      "name": "Element Name",
                      "value": "Generic - 10\"",
                      "displayValue": "Generic - 10\"",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Family Name",
                      "value": "Basic Wall",
                      "displayValue": "Basic Wall",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Element Context",
                      "value": "Instance",
                      "displayValue": "Instance",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Fire Rating",
                      "value": null,
                      "displayValue": null,
                      "definition": {
                      "units": null
                      }
                  }
                  ]
              }
              },
              {
              "id": "YWVjZX42SUpGQXdONExWTG5JZXZiQk5GNU1IX0wyQ35mV0R1ZkIteVNtcTVGd242RmoxXy1nXzkwZDQ0",
              "name": "Generic - 10\"",
              "properties": {
                  "results": [
                  {
                      "name": "Element Name",
                      "value": "Generic - 10\"",
                      "displayValue": "Generic - 10\"",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Family Name",
                      "value": "Basic Wall",
                      "displayValue": "Basic Wall",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Element Context",
                      "value": "Instance",
                      "displayValue": "Instance",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Fire Rating",
                      "value": null,
                      "displayValue": null,
                      "definition": {
                      "units": null
                      }
                  }
                  ]
              }
              },
              {
              "id": "YWVjZX42SUpGQXdONExWTG5JZXZiQk5GNU1IX0wyQ35mV0R1ZkIteVNtcTVGd242RmoxXy1nXzkwZDQ3",
              "name": "Generic - 10\"",
              "properties": {
                  "results": [
                  {
                      "name": "Element Name",
                      "value": "Generic - 10\"",
                      "displayValue": "Generic - 10\"",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Family Name",
                      "value": "Basic Wall",
                      "displayValue": "Basic Wall",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Element Context",
                      "value": "Instance",
                      "displayValue": "Instance",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Fire Rating",
                      "value": null,
                      "displayValue": null,
                      "definition": {
                      "units": null
                      }
                  }
                  ]
              }
              },
              {
              "id": "YWVjZX42SUpGQXdONExWTG5JZXZiQk5GNU1IX0wyQ35mV0R1ZkIteVNtcTVGd242RmoxXy1nXzkwZDRh",
              "name": "Generic - 10\"",
              "properties": {
                  "results": [
                  {
                      "name": "Element Name",
                      "value": "Generic - 10\"",
                      "displayValue": "Generic - 10\"",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Family Name",
                      "value": "Basic Wall",
                      "displayValue": "Basic Wall",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Element Context",
                      "value": "Instance",
                      "displayValue": "Instance",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Fire Rating",
                      "value": null,
                      "displayValue": null,
                      "definition": {
                      "units": null
                      }
                  }
                  ]
              }
              },
              {
              "id": "YWVjZX42SUpGQXdONExWTG5JZXZiQk5GNU1IX0wyQ35mV0R1ZkIteVNtcTVGd242RmoxXy1nXzkwZDRk",
              "name": "Generic - 10\"",
              "properties": {
                  "results": [
                  {
                      "name": "Element Name",
                      "value": "Generic - 10\"",
                      "displayValue": "Generic - 10\"",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Family Name",
                      "value": "Basic Wall",
                      "displayValue": "Basic Wall",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Element Context",
                      "value": "Instance",
                      "displayValue": "Instance",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Fire Rating",
                      "value": null,
                      "displayValue": null,
                      "definition": {
                      "units": null
                      }
                  }
                  ]
              }
              },
              {
              "id": "YWVjZX42SUpGQXdONExWTG5JZXZiQk5GNU1IX0wyQ35mV0R1ZkIteVNtcTVGd242RmoxXy1nXzkwZDUw",
              "name": "Generic - 10\"",
              "properties": {
                  "results": [
                  {
                      "name": "Element Name",
                      "value": "Generic - 10\"",
                      "displayValue": "Generic - 10\"",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Family Name",
                      "value": "Basic Wall",
                      "displayValue": "Basic Wall",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Element Context",
                      "value": "Instance",
                      "displayValue": "Instance",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Fire Rating",
                      "value": null,
                      "displayValue": null,
                      "definition": {
                      "units": null
                      }
                  }
                  ]
              }
              },
              {
              "id": "YWVjZX42SUpGQXdONExWTG5JZXZiQk5GNU1IX0wyQ35mV0R1ZkIteVNtcTVGd242RmoxXy1nXzkwZDc3",
              "name": "Generic - 10\"",
              "properties": {
                  "results": [
                  {
                      "name": "Element Name",
                      "value": "Generic - 10\"",
                      "displayValue": "Generic - 10\"",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Family Name",
                      "value": "Basic Wall",
                      "displayValue": "Basic Wall",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Element Context",
                      "value": "Instance",
                      "displayValue": "Instance",
                      "definition": {
                      "units": null
                      }
                  },
                  {
                      "name": "Fire Rating",
                      "value": null,
                      "displayValue": null,
                      "definition": {
                      "units": null
                      }
                  }
                  ]
              }
              }
          ]
          }
      }
      }
      
      Show More

    After working through the steps mentioned above, your Explorer should look similar to the following image:

    ../../../../_images/elementsByProject.png
     
    ______
    icon-svg-close-thick

    Cookie preferences

    Your privacy is important to us and so is an optimal experience. To help us customize information and build applications, we collect data about your use of this site.

    May we collect and use your data?

    Learn more about the Third Party Services we use and our Privacy Statement.

    Strictly necessary – required for our site to work and to provide services to you

    These cookies allow us to record your preferences or login information, respond to your requests or fulfill items in your shopping cart.

    Improve your experience – allows us to show you what is relevant to you

    These cookies enable us to provide enhanced functionality and personalization. They may be set by us or by third party providers whose services we use to deliver information and experiences tailored to you. If you do not allow these cookies, some or all of these services may not be available for you.

    Customize your advertising – permits us to offer targeted advertising to you

    These cookies collect data about you based on your activities and interests in order to show you relevant ads and to track effectiveness. By collecting this data, the ads you see will be more tailored to your interests. If you do not allow these cookies, you will experience less targeted advertising.

    icon-svg-close-thick

    THIRD PARTY SERVICES

    Learn more about the Third-Party Services we use in each category, and how we use the data we collect from you online.

    icon-svg-hide-thick

    icon-svg-show-thick

    Strictly necessary – required for our site to work and to provide services to you

    Qualtrics
    W
    Akamai mPulse
    W
    Digital River
    W
    Dynatrace
    W
    Khoros
    W
    Launch Darkly
    W
    New Relic
    W
    Salesforce Live Agent
    W
    Wistia
    W
    Tealium
    W
    Upsellit
    W
    CJ Affiliates
    W
    Commission Factory
    W
    Google Analytics (Strictly Necessary)
    W
    Typepad Stats
    W
    Geo Targetly
    W
    SpeedCurve
    W
    Qualified
    #

    icon-svg-hide-thick

    icon-svg-show-thick

    Improve your experience – allows us to show you what is relevant to you

    Google Optimize
    W
    ClickTale
    W
    OneSignal
    W
    Optimizely
    W
    Amplitude
    W
    Snowplow
    W
    UserVoice
    W
    Clearbit
    #
    YouTube
    #

    icon-svg-hide-thick

    icon-svg-show-thick

    Customize your advertising – permits us to offer targeted advertising to you

    Adobe Analytics
    W
    Google Analytics (Web Analytics)
    W
    AdWords
    W
    Marketo
    W
    Doubleclick
    W
    HubSpot
    W
    Twitter
    W
    Facebook
    W
    LinkedIn
    W
    Yahoo! Japan
    W
    Naver
    W
    Quantcast
    W
    Call Tracking
    W
    Wunderkind
    W
    ADC Media
    W
    AgrantSEM
    W
    Bidtellect
    W
    Bing
    W
    G2Crowd
    W
    NMPI Display
    W
    VK
    W
    Adobe Target
    W
    Google Analytics (Advertising)
    W
    Trendkite
    W
    Hotjar
    W
    6 Sense
    W
    Terminus
    W
    StackAdapt
    W
    The Trade Desk
    W
    RollWorks
    W

    Are you sure you want a less customized experience?

    We can access your data only if you select "yes" for the categories on the previous screen. This lets us tailor our marketing so that it's more relevant for you. You can change your settings at any time by visiting our privacy statement

    Your experience. Your choice.

    We care about your privacy. The data we collect helps us understand how you use our products, what information you might be interested in, and what we can improve to make your engagement with Autodesk more rewarding.

    May we collect and use your data to tailor your experience?

    Explore the benefits of a customized experience by managing your privacy settings for this site or visit our Privacy Statement to learn more about your options.