Skip to content
Open
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 19 additions & 3 deletions schemas/groups/resources.json
Original file line number Diff line number Diff line change
Expand Up @@ -202,14 +202,14 @@
},
"region": {
"type": "string",
"description": "Region related to note. A pointer to a region UUID. Alternative to position or geohash"
"description": "Region related to note. A pointer to a region UUID. Can be defined in additon to position or geohash"
},
"position": {
"description": "Position related to note. Alternative to region or geohash",
"description": "Position related to note. Alternative to geohash",
"$ref": "../definitions.json#/definitions/position"
},
"geohash": {
"description": "Position related to note. Alternative to region or position",
"description": "Position related to note. Alternative to position",
"$ref": "../definitions.json#/definitions/geohash"
},
"mimeType": {
Expand All @@ -220,6 +220,22 @@
"type": "string",
"description": "Location of the note"
},
"group": {
"type": "string",
"description": "Name of a group or collection to which the note is attached"
},
"author": {
"type": "string",
"description": "Name of the creator of the note"
},
"readOnly": {
"type": "boolean",
"description": "Indicates whether the whether the content of the Note is permitted to be changed."
},
"published": {
"type": "boolean",
"description": "Indicates whether the note is available only for use on this server or shared with others."
},
"timestamp": {
"description": "Timestamp of the last update to this data",
"$ref": "../definitions.json#/definitions/timestamp"
Expand Down