Slite · Schema

ExportedNote

DocumentationKnowledge BaseCollaborationNotesTeamAsynchronous WorkAISearch

Properties

Name Type Description
metadata object Metadata of the note
snapshot string Snapshot of the note
View JSON Schema on GitHub

JSON Schema

ExportedNote.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/slite/main/json-schema/ExportedNote.json",
  "title": "ExportedNote",
  "properties": {
    "metadata": {
      "$ref": "#/components/schemas/Record_string.unknown_",
      "description": "Metadata of the note"
    },
    "snapshot": {
      "type": "string",
      "description": "Snapshot of the note",
      "format": "blob"
    }
  },
  "required": [
    "metadata",
    "snapshot"
  ],
  "type": "object"
}