Memesio · Schema

DeleteMemeResponse

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

MemesMediaImage GenerationContentDeveloper Tools

Properties

Name Type Description
ok boolean
deleted boolean
slug string
shareSlug string
View JSON Schema on GitHub

JSON Schema

memesio-delete-meme-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/memesio/main/json-schema/memesio-deletememeresponse-schema.json",
  "title": "DeleteMemeResponse",
  "description": "JSON Schema for Memesio DeleteMemeResponse, extracted from https://memesio.com/api/openapi (Memesio API Contracts v0.1.0).",
  "type": "object",
  "required": [
    "ok",
    "deleted",
    "slug",
    "shareSlug"
  ],
  "properties": {
    "ok": {
      "type": "boolean"
    },
    "deleted": {
      "type": "boolean"
    },
    "slug": {
      "type": "string"
    },
    "shareSlug": {
      "type": "string"
    }
  }
}