cli-sky 0.5.0

A CLI AT protocol client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  "lexicon": 1,
  "id": "com.macroblog.blog.post",
  "defs": {
    "main": {
      "type": "record",
      "record": {
        "type": "object",
        "required": ["text", "title"],
        "properties": {
          "title": {"type": "string", "maxLength": 120},
          "text": {"type": "string", "maxLength": 20000},
          "tags": {"type": "array", "items": {"type": "string"}}
        }
      }
    }
  }
}