Doctypes represent different types of data. Their primary use is for permissions: an app or konnector will request permissions for one or several doctypes and will not be able to access other doctypes.
!!! note
Example: A banking application requests permissions for banking doctypes (io.cozy.bank.accounts
, io.cozy.bank.operations
etc..)
but cannot access files (io.cozy.files
).
This ensure the segregation and security of your data.
In this repository, every (known) doctype and the fields that they contain is described. If you feel the need for another doctype, feel free to open a PR with the description and role of your doctype.
- io.cozy.accounts: Konnector accounts
- io.cozy.ai.chat.conversations: Chat conversations with an assistant (AI)
- io.cozy.apps: Apps installed in the Cozy
- io.cozy.apps.suggestions: Suggestions for apps that the user might find useful
- io.cozy.bank: Banking related data
- io.cozy.bank.settings: Bank application settings
- io.cozy.bank.accounts: Bank accounts
- io.cozy.bank.accounts.stats: Aggregated data about bank accounts
- io.cozy.bank.operations: Bank transaction
- io.cozy.bank.balancehistories: Daily balances
- io.cozy.bank.recurrence: Recurrence group information
- io.cozy.bank.groups: Group of bank accounts
- io.cozy.bank.recipients: Recipients for transfert
- io.cozy.bills: Bills
- io.cozy.calendar: Calendar
- io.cozy.coachco2.settings: CoachCO2 application settings
- io.cozy.contacts: Contacts
- io.cozy.contacts.groups: Contacts groups
- io.cozy.contacts.accounts: Vendors account
- io.cozy.files: Files
- Files_metadatas: Metadatas about files
- io.cozy.files.settings: Files settings
- io.cozy.files.encryption: Files encryption
- io.cozy.home.settings: Home settings
- io.cozy.konnectors: Connectors installed in the cozy
- io.cozy.identities: Instance owner identities
- io.cozy.notes: Notes with collaborative edition
- io.cozy.notifications: Notifications made by the apps (Email or Push notifications)
- io.cozy.permissions: Permissions of the instance
- io.cozy.photos: Photos
- io.cozy.photos.settings: Photos settings
- io.cozy.procedures: Administrative procedures
- io.cozy.docrules: Rules to retrieve documents
- io.cozy.remote.nextcloud.files: Files on a remote NextCloud (via WebDAV)
- io.cozy.sessions.logins: Sessions logins entry
- io.cozy.settings: Instance settings
- io.cozy.sharings: Documents used for Cozy to Cozy sharings
- io.cozy.tags: Tags
- io.cozy.timeseries: Time Series
- io.cozy.timeseries.geojson: GeoJSON time series
- io.cozy.timeseries.grades: Grades time series
- io.cozy.todos: Todos
- io.cozy.todos.list: Todos list
- io.cozy.todos.item: Todos item
- Accounts Types: io.cozy.account_types : OAuth informations and secrets for apps & konnectors
- cc.cozycloud.autocategorization: Auto categorization remote doctype
- cc.cozycloud.announcements: Announcements remote doctype
- io.cozy.exports: Instances exports
- io.cozy.jobs: Instance jobs
- io.cozy.oauth.clients: OAuth clients informations of the stack
- io.cozy.oauth.access_codes: Access codes specific to OAuth flow
- io.cozy.triggers: Job triggers
- io.cozy.triggers.state: Job triggers states
- io.cozy.remote.requests: logs of requests via the remote doctypes
- io.cozy.sessions: cozy-stack sessions
- io.cozy.shared: cozy-stack doctype for sharings
- io.cozy.terms: Contains terms of services the user has signed
This repository is where the declaration of remote doctypes is done. Read more about remote doctypes in the cozy stack repository.
- com.bitwarden.ciphers: Ciphers for bitwarden clients
- com.bitwarden.folders: Folders for bitwarden clients
- com.unibet.bets: Bets from Unibet website
Relations between documents are under a relationships
object at the root of the document. Relations are referenced by their names.
Each relation is an object with a data
property containing either null
, one reference or an array of references.
A reference is an object containing at least a _type
with the name of the referenced doctype and an _id
with the id of the referenced document inside its doctype.
{
"_id": "mobydick",
"relationships": {
"authors": {
"data": [{ "_id": "hermanmelville", "_type": "io.cozy.contacts" }]
}
}
}
Relationships that reference a document that lives outside the couchdb of the user will have a _type
in a different namespace than io.cozy.*
, and will have an additional _protocol
field.
At the moment the only available external relationship is bitwarden
with the following format:
{
"_id": "secretsafe",
"relationships": {
"vaultCipher": {
"data": [{ "_id": "123abc", "_type": "com.bitwarden.ciphers", "_protocol": "bitwarden" }]
}
}
}
A relationship can store additional information, in the metadata
attribute. For instance, see the contracts relationship for the accounts.
"relationships": {
"contracts": {
"data": [
{
"_id": "77b662b903f1bac7a78cf8cc12806479",
"_type": "io.cozy.bank.accounts",
"metadata": {
"deletedByVendor": false,
"imported": true,
"label": "Compte chèque",
"vendorId": "1337"
}
}
]
}
}
We distinguish three levels of attributes:
- The data (e.g. a list of songs from a playlist)
- The metadata about the data (e.g. the creation date of the playlist itself)
- The metadata of the cozy document (e.g. the creation date of the cozy document describing the playlist).
The third level is described by an object named cozyMetadata
at the root of the document. This object structure is common to all Cozy doctypes.
The expected cozyMetadata
attributes are the following:
doctypeVersion
: Name or identifier for the version of the schema used by this document (ie:doctypeVersion: 2
for "This document conforms to io.cozy.contacts in its version 2")metadataVersion
: Version of thecozyMetadata
createdAt
: Creation date of the cozy documentcreatedByApp
: Slug of the app or connector which created the documentcreatedByAppVersion
: Version identifier of the appupdatedAt
: Last modification date of the cozy documentupdatedByApps
: List of objects representing the applications (slugs and versions) which modified the cozy document in its life and the last update date for each of those apps (one entry per slug, apps should just update the value)sourceAccount
: When the document was imported from a connector, identifier of the account in io.cozy.accountssourceAccountIdentifier
: When the document was imported from a connector, identifier of the account on targeted web service (the email address most of the time)favorite
: {boolean} whether or not the document is a favorite.
ℹ️ All these attributes are optional and taken care by the apps modifying the document. Unless specified otherwise in the documentation of the doctype, all these attributes may not be present or may have a null
value.
ℹ️ For doctypes protected by the stack such as io.cozy.files
, any non-expected attribute in cozyMetadata
will be refused by the stack.
{
"_id": "xxxx",
"cozyMetadata": {
"doctypeVersion": 4,
"metadataVersion": 1,
"createdAt": "xxxxx",
"createdByApp": "xxxx",
"createdByAppVersion": "xxxx",
"updatedAt": "xxxxx",
"updatedByApps": [
{
"slug": "xxxxx",
"date": "xxxxx",
"version": 3
}
],
"sourceAccount": "xxxxx",
"sourceAccountIdentifier": "test@mail.fr"
}
}
Date should be formatted in ISO8601 :
2017-04-22T01:00:00-05:00
✅2017-04-22T01:00:00Z
✅2017-04-22
✅2017-04-22 01:00
❌