> For the complete documentation index, see [llms.txt](https://ordiplus-1.gitbook.io/white-paper/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ordiplus-1.gitbook.io/white-paper/api.md).

# API

## Collections

#### Types

```rust
pub struct Inscription {
    id: String,
    meta: Option<InscriptionMeta>,
}
```

```rust
pub struct InscriptionMeta {
    pub name: Option<String>,
    pub attributes: Option<Vec<InscriptionMetaAttribute>>,
}
```

```rust
pub struct InscriptionMetaAttribute {
    pub trait_type: String,
    pub value: String,
}
```
