---
title: "Element <title>"
source: https://dev.pageseeder.com/api/elements/element_title.html
description: "API Element reference for <title>"
last_updated: 2026-08-07T17:09:54+10:00
tokens: ~148
---

# \<title\>

## Summary

The title of the comment. The title cannot exceed 250 characters.

## Usage context

| Permitted content | `text` |
| --- | --- |
| Permitted parent | `<comment>` |

## Attributes

No attributes.

## Examples

## Schema

### XML Schema

```lang-relax

<xs:element name="title">
  <xs:simpleType>
    <xs:restriction base="xs:string">
      <xs:maxLength value="250"/>
    </xs:restriction>
  </xs:simpleType>
</xs:element>
```

### Relax Schema

```lang-relax

element title { text { maxLength = "250"} }
```

## Compatibility

No change since initial API release.

