UNPKG

appwrite-utils-cli

Version:

Appwrite Utility Functions to help with database management, data conversion, data import, migrations, and much more. Meant to be used as a CLI tool, I do not recommend installing this in frontend environments.

52 lines 1.22 kB
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://example.com/schemas/exampleCollection.json", "title": "ExampleCollection", "description": "Schema for ExampleCollection collection", "type": "object", "properties": { "$id": { "type": "string", "description": "Document ID", "pattern": "^[a-zA-Z0-9][a-zA-Z0-9._-]{0,35}$" }, "$createdAt": { "type": "string", "format": "date-time", "description": "Document creation date" }, "$updatedAt": { "type": "string", "format": "date-time", "description": "Document last update date" }, "$permissions": { "type": "array", "items": { "type": "string" }, "description": "Document permissions" }, "title": { "type": "string", "description": "The title of the item", "maxLength": 255 }, "description": { "type": "string", "description": "A longer description", "maxLength": 1000 }, "isActive": { "type": "boolean", "default": true } }, "required": [ "$id", "$createdAt", "$updatedAt", "title" ], "additionalProperties": false }