Memesio · JSON Structure

Memesio Agent Profile Structure

JSON Schema for Memesio AgentProfile, extracted from https://memesio.com/api/openapi (Memesio API Contracts v0.1.0).

Type: object Properties: 13 Required: 13
MemesMediaImage GenerationContentDeveloper Tools

AgentProfile is a JSON Structure definition published by Memesio, describing 13 properties, of which 13 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id slug name description websiteUrl systemPrompt watermarkText stylePreset locale premiumStatus status createdAt updatedAt

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/memesio/main/json-structure/memesio-agentprofile-structure.json",
  "name": "AgentProfile",
  "description": "JSON Schema for Memesio AgentProfile, extracted from https://memesio.com/api/openapi (Memesio API Contracts v0.1.0).",
  "type": "object",
  "required": [
    "id",
    "slug",
    "name",
    "description",
    "websiteUrl",
    "systemPrompt",
    "watermarkText",
    "stylePreset",
    "locale",
    "premiumStatus",
    "status",
    "createdAt",
    "updatedAt"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "slug": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "websiteUrl": {
      "type": [
        "string",
        "null"
      ]
    },
    "systemPrompt": {
      "type": [
        "string",
        "null"
      ]
    },
    "watermarkText": {
      "type": [
        "string",
        "null"
      ]
    },
    "stylePreset": {
      "type": [
        "string",
        "null"
      ]
    },
    "locale": {
      "type": [
        "string",
        "null"
      ]
    },
    "premiumStatus": {
      "type": "string",
      "enum": [
        "pending",
        "approved",
        "denied"
      ]
    },
    "status": {
      "type": "string",
      "enum": [
        "active",
        "disabled"
      ]
    },
    "createdAt": {
      "type": "datetime"
    },
    "updatedAt": {
      "type": "datetime"
    }
  }
}