# Load(string)

> Loads a BuildReportSummary from a JSON file at the specified path.

## Definition

* **Type:** Method
* **Namespace:** [UnityEditor.Build](/engine/6000.6/script-reference/unityeditor/build.md)
* **Assembly:** UnityEditor.CoreModule

```csharp
public static BuildReportSummary Load(string jsonPath)
```

### Parameters

**** (\[string]\(https\://learn.microsoft.com/dotnet/api/system.string)): The path to the JSON file to load.

### Returns

| Type                                                                                          | Description                                                                                                                                                                                                                                                  |
| --------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| [BuildReportSummary](/engine/6000.6/script-reference/unityeditor/build/buildreportsummary.md) | The [BuildReportSummary](/engine/6000.6/script-reference/unityeditor/build/buildreportsummary.md) loaded from the file, or a default [BuildReportSummary](/engine/6000.6/script-reference/unityeditor/build/buildreportsummary.md) if the file is not found. |
