Ceramic · Schema

Information about multiple interests.

Ceramic interest keys

DecentralizedWeb3Data StreamsDIDIPFSBlockchainEvent StreamingComposeDB

Properties

Name Type Description
interests array An array of interests
View JSON Schema on GitHub

JSON Schema

InterestsGet.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/ceramic/main/json-schema/InterestsGet.json",
  "title": "Information about multiple interests.",
  "description": "Ceramic interest keys",
  "type": "object",
  "required": ["interests"],
  "properties": {
    "interests": {
      "type": "array",
      "description": "An array of interests",
      "items": {
        "type": "object",
        "required": ["data"],
        "properties": {
          "data": {
            "type": "string",
            "description": "The multbase encoded bytes of the interest."
          }
        }
      }
    }
  }
}