For the complete documentation index, see llms.txt. This page is also available as Markdown.

Samples

Sample is an object representing one output bundle.

Specification

Samples are used to provide a sample of the outgoing bundle.

Static samples

You can define the samples manually.

[
	{
		"name": "id",
		"type": "uinteger",
		"label": "User ID"
	},
	{
		"name": "email",
		"type": "email",
		"label": "Email"
	},
	{
		"name": "name",
		"type": "text",
		"label": "Name"
	}
]

Dynamic samples

See Samples RPC for information on how to specify dynamic sample data.

Last updated