org.hypercerts.defs

hypercerts.org

Documentation

descriptionString object

An inline long-form description as plain text or markdown, with optional rich-text annotations.

Properties

facets array of refapp.bsky.richtext.facet Optional

Rich text annotations for the description (mentions, URLs, hashtags, etc).

value string Required

The description text (plain text or markdown).

maxLength: 250000 bytesmaxGraphemes: 25000 graphemes
View raw schema
{
  "type": "object",
  "required": [
    "value"
  ],
  "properties": {
    "value": {
      "type": "string",
      "maxLength": 250000,
      "description": "The description text (plain text or markdown).",
      "maxGraphemes": 25000
    },
    "facets": {
      "type": "array",
      "items": {
        "ref": "app.bsky.richtext.facet",
        "type": "ref"
      },
      "description": "Rich text annotations for the description (mentions, URLs, hashtags, etc)."
    }
  },
  "description": "An inline long-form description as plain text or markdown, with optional rich-text annotations."
}
largeBlob object

Object containing a blob to external data

Properties

blob blob Required

Blob to external data (up to 100MB)

maxSize: 104.9 MB
View raw schema
{
  "type": "object",
  "required": [
    "blob"
  ],
  "properties": {
    "blob": {
      "type": "blob",
      "accept": [
        "*/*"
      ],
      "maxSize": 104857600,
      "description": "Blob to external data (up to 100MB)"
    }
  },
  "description": "Object containing a blob to external data"
}
largeImage object

Object containing a large image

Properties

image blob Required

Image (up to 10MB)

maxSize: 10.5 MB
View raw schema
{
  "type": "object",
  "required": [
    "image"
  ],
  "properties": {
    "image": {
      "type": "blob",
      "accept": [
        "image/jpeg",
        "image/jpg",
        "image/png",
        "image/webp"
      ],
      "maxSize": 10485760,
      "description": "Image (up to 10MB)"
    }
  },
  "description": "Object containing a large image"
}
smallBlob object

Object containing a blob to external data

Properties

blob blob Required

Blob to external data (up to 10MB)

maxSize: 10.5 MB
View raw schema
{
  "type": "object",
  "required": [
    "blob"
  ],
  "properties": {
    "blob": {
      "type": "blob",
      "accept": [
        "*/*"
      ],
      "maxSize": 10485760,
      "description": "Blob to external data (up to 10MB)"
    }
  },
  "description": "Object containing a blob to external data"
}
smallImage object

Object containing a small image

Properties

image blob Required

Image (up to 5MB)

maxSize: 5.2 MB
View raw schema
{
  "type": "object",
  "required": [
    "image"
  ],
  "properties": {
    "image": {
      "type": "blob",
      "accept": [
        "image/jpeg",
        "image/jpg",
        "image/png",
        "image/webp"
      ],
      "maxSize": 5242880,
      "description": "Image (up to 5MB)"
    }
  },
  "description": "Object containing a small image"
}
smallVideo object

Object containing a small video

Properties

video blob Required

Video (up to 20MB)

maxSize: 21.0 MB
View raw schema
{
  "type": "object",
  "required": [
    "video"
  ],
  "properties": {
    "video": {
      "type": "blob",
      "accept": [
        "video/mp4",
        "video/webm"
      ],
      "maxSize": 20971520,
      "description": "Video (up to 20MB)"
    }
  },
  "description": "Object containing a small video"
}
uri object

Object containing a URI to external data

Properties

uri string uri Required

URI to external data

View raw schema
{
  "type": "object",
  "required": [
    "uri"
  ],
  "properties": {
    "uri": {
      "type": "string",
      "format": "uri",
      "description": "URI to external data"
    }
  },
  "description": "Object containing a URI to external data"
}

Lexicon Garden

@