
* Add actor/owner (although I'm not sure exactly what these mean) * Add delete tag API * Mark create/delete API as "internal" * Create API returns TRUE, not the created tag * Removed update API examples
1.1 KiB
1.1 KiB
Schema for a Tag object
What's a Tag object for?
A Tag object stores information about a specific tag.
This includes but is not limited to the number of objects containing this tag.
The Tag objects schema is loose meaning that it can be flexible but at minimum it contains an id
, count
, actor
and owner
.
There are not currently any optional tag attributes.
Schema for a Tag object
{
id: (string),
count: (int),
actor: (string),
owner: (string),
}
Schema description
- id, Base 36 value of a base 10 auto-incremented value
- count, The number of objects with this tag
- actor, Email address of the tag actor
- owner, Email address of the tag owner