Skip to main content

ListResponse[ArtifactTemplate]

Paginated response containing Artifact Template records. The required field is items.

items object[]required

List of resource items

  • Array [
  • nameName (string)required

    URL-safe identifier used to download the template.

    descriptionDescription (string)required

    Short summary of the scaffold.

    protocolProtocol (string)required

    REST contract this scaffold implements (matches Model.protocol). Clients filter the list endpoint via ?protocol=<value>.

    Possible values: [openai-embeddings, custom]

  • ]
  • next_cursor object

    Cursor for next page

    anyOf
    string
    has_moreHas More (boolean)

    Whether more pages exist

    Default value: false
    ListResponse[ArtifactTemplate]
    {
    "items": [
    {
    "name": "string",
    "description": "string",
    "protocol": "openai-embeddings"
    }
    ],
    "next_cursor": "string",
    "has_more": false
    }