> For the complete documentation index, see [llms.txt](https://docs.openbrim.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.openbrim.org/developers/paramml-developer-guide/core-objects/base-core-object/project.md).

# Project

The Project object represents the entire structure and is the outermost object containing all ParamML and OpenBrIM objects associated with specific objects. It is the first object created when a new project is started.

**Example Syntax:** View of a newly created project

```
<O N="New_Object" T="Project">
    <!-- created by ParamML Examples on 25.01.2023 -->
    ...
    ...
</O>
```

All objects and parameters that will be created later will be written under the Project object.

**Parameters:** Category, ObjLabel

**Example:**

**Category**

```xml
<O N="New_Object" T="Project" Category="Objects:New Object">
    <!-- created by ParamML Examples on 25.01.2023 -->
</O>
```

**ObjLabel**

```xml
<O N="New_Object" T="Project" Category="Objects:New Object" Objlabel="OpenBrIM">
    <!-- created by ParamML Examples on 25.01.2023 -->
</O>
```

**Tag**

```xml
<O N="New_Object" T="Project" Tag="@firstlayer" Category="Objects:New Object" ObjLabel="OpenBrim">
    <!-- created by ParamML Examples on 25.01.2023 -->
</O>
```

![](https://openbrim.atlassian.net/wiki/download/attachments/2155773953/image-20230131-075640.png?api=v2) ![](https://openbrim.atlassian.net/wiki/download/attachments/2155773953/image-20230829-120153.png?api=v2) ![](https://openbrim.atlassian.net/wiki/download/attachments/2155773953/image-20230131-080857.png?api=v2) When creating a Category, a new folder is established within the **Library** where relevant objects can be organized and grouped. In ParamML, to create a new file within a file, you should place a ":" symbol between the file names within the *Category=""* section.

In the example provided, we are able to assign a label to an object within the folder using the *"ObjLabel"* parameter in the "New\_Object" object. The assigned label is prominently displayed, and the name of the Project object is also highlighted in red circle, as shown in the illustration above.

To enhance understanding of an object's contents, understanding their hierarchical relationship with other objects, and its purpose, specify relevant keywords using *Tag=””* parameter at the first line as demonstrated above.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.openbrim.org/developers/paramml-developer-guide/core-objects/base-core-object/project.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
