> For the complete documentation index, see [llms.txt](https://docs.internetobject.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.internetobject.org/collections/creating-collection.md).

# Creating Collections

A collection is a sequence of records in the data section, each introduced by a tilde `~`. You can create one with or without a schema — though a schema is recommended.

## Simple collection (no schema)

Without a schema, each record is parsed on its own and its values are mapped to positional indices. Records may differ in shape:

```ruby
---
~ Ironman, 20, Male, { Bond Street, New York, NY }
~ Spiderman, 25, Male, { Duke Street, New York, NY }, cool
```

## Explicit collection (with schema)

Define a schema in the header; every record is validated against it. Use a keyed reference (`address: $address`) to reuse a shape:

```ruby
~ $address: { street, city, state }
~ $schema: { name: string, age: { int, min: 18 }, address: $address }
---
~ Ironman, 20, { Bond Street, New York, NY }      # ✓
~ Wonderwoman, 25, { Z Street, San Francisco, CA } # ✓
```

> Reference a shape with a **keyed** member (`address: $address`). A bare `$address` in the schema is read as a field literally named `$address`, not as the referenced shape.

## See Also

* [Collection](/collections/collection.md) · [Collection Rules](/collections/collection-rules.md)
* [Schema References](/definitions/schema-references.md)


---

# 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:

```
GET https://docs.internetobject.org/collections/creating-collection.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
