Forms
forms
This relation targets the list of configured media forms. Metadata in Keepeek are stored and described in form.
4.0.0+
form
This relation targets the canonical resource representing a Keepeek media metadata form.
A form contains:
- the type of document it applies to
- the list of fields it contains
- the description of each field (internal name, indexable...)
- a link toward lookup value for combo box fields a link toward compatible file extensions with mime types for the form
4.0.0+
field
This relation targets one field of a form. It is used from the media embedded metadata collection to provide additional information on a field.
4.0.0+
lookups
This relation targets the collection of lookup definition.
4.0.0+
lookup
Lookup resource targeted by this relation is canonical.
It contains both lookup attributes and embedded list of values.
4.0.0+
sheet-fields
This relation targets the collection of sheet fields configured for the dam instance.
4.16.0+
sheet-field
This relation targets a sheet field configured for the dam instance.
4.16.0+
extensions
This relation targets the collection of file extensions with mime types for the form.
GET /api/dam/forms/1/extensions
[...]
HTTP/1.1 200 OK
Content-Type: application/hal+json;version=1;charset=UTF-8
[...]
{
"_links": {
"self": {
"href": "http://baobab.keepeek.com/api/dam/forms/1/extensions"
},
"curies": [
{
"name": "kpk",
"href": "http://baobab.keepeek.com/api/doc/rels/{rel}",
"templated": true
}
]
},
"_embedded": {
"extension": [
{
"extension": "gplt",
"mimeTypes": [
"application/x-gnuplot"
]
},
{
"extension": "bmp",
"mimeTypes": [
"image/bmp",
"image/x-windows-bmp"
]
}
]
},
"totalCount": 2
}
4.72.0+