{
  "kind": "collectionType",
  "collectionName": "todos",
  "info": {
    "singularName": "todo",
    "pluralName": "todos",
    "displayName": "Todo"
  },
  "options": {
    "draftAndPublish": false,
    "comment": ""
  },

  "pluginOptions": {
    "content-manager": { 
      "visible": false
    },

    "content-type-builder": {
      "visible": false
    }
  },

  "attributes": {
    "name": {
      "type": "string",
      "required": true,
      "maxLentgh": 40
    },
    "isDone": {
      "type": "boolean",
      "default": false
    }
  }
}