/fan.fics.work

Lexicon Definitions

{
  "lexicon": 1,
  "id": "fan.fics.work",
  "defs": {
    "main": {
      "type": "record",
      "key": "tid",
      "record": {
        "type": "object",
        "required": [
          "author",
          "title",
          "tags",
          "summary",
          "createdAt"
        ],
        "properties": {
          "uri": {
            "type": "string",
            "format": "at-uri"
          },
          "author": {
            "type": "string",
            "format": "did"
          },
          "title": {
            "type": "string",
            "minLength": 1,
            "maxLength": 1280,
            "maxGraphemes": 128
          },
          "tags": {
            "type": "array",
            "description": "Tags for content the work may be related to, for example 'fluff' or 'meta'",
            "items": {
              "type": "string"
            }
          },
          "summary": {
            "type": "string",
            "description": "You can describe your work in a summary. Only limited HTML is allowed.",
            "minLength": 1,
            "maxLength": 3000,
            "maxGraphemes": 3000
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "updatedAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      }
    }
  }
}