Frontmatter
Frontmatter is a YAML metadata block at the top of the document. It's used to define document-level settings. This field is optional.
---
title: Example AIM Document
description: "An example of how to build an AIM document"
input:
- name: userName
type: string
description: "The name of the user to greet"
---
Here's a list of the available frontmatter fields:
title
: The title of the documentdescription
: The description of the documentinput
: The input of the documentoutput
: The output of the document
Input
The input
field is an array of objects. Each object represents an input field.
input:
- name: userName
type: string
description: "The name of the user to greet"
Output
The output
field is an array of objects. Each object represents an output field.
output:
- name: userName
type: string
description: "The name of the user to greet"