Skip to main content
POST
/
artifact-schemas
Python
from meibel import MeibelClient

client = MeibelClient(api_key="your-api-key")

# Create request body
body = CreateAgentArtifactRequest(name="Example")

result = client.artifact_schemas.create(body=body)
print(result)
{
  "id": "<string>",
  "name": "<string>",
  "display_name": "<string>",
  "version": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.meibel.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Meibel-API-Key
string
header
required

Body

application/json

Request model for creating a new agent artifact.

display_name
string
required

Human-readable name of the artifact (letters, numbers, and spaces only). Converted to kebab-case internally.

type
enum<string>
required

Artifact type (json, markdown, csv, yaml, text, html, pdf)

Available options:
json,
markdown,
csv,
yaml,
text,
html,
pdf
schema_def
Schema Def · object
required

Schema definition

description
string | null
default:""

Description of the artifact

required
boolean | null
default:false

Whether agent must produce this artifact

max_size_bytes
integer | null

Maximum artifact size in bytes

storage_strategy
enum<string> | null

Storage strategy (inline, gcs, auto)

Available options:
inline,
gcs,
auto
additional_properties
Additional Properties · object

Response

Successful Response

id
string
required
name
string
required
display_name
string
required
version
string
required