Mininal information about a file.
| name | data type | description |
|---|---|---|
| id | string | The ID of the file. |
| name | string | The file name. |
| version | number | The current file version. |
| length | number | The file size, in bytes. |
| md5 | string | The MD5 checksum of the file. |
| mod_date | number | The date and time that the file was last modified. |
Properties inherited from BaseRestObject |
||
| href | string | The path to this resource object. This is relative to the root of the REST API (https://serveraddress/rest). |
| links | array of Link | Links to related resources. These should be used to navigate the REST API (instead of hard-coding the URLs) |
Example
{
"id" : "...",
"name" : "...",
"version" : 12345,
"length" : 12345,
"md5" : "...",
"mod_date" : 12345,
"href" : "...",
"links" : [ {
"href" : "...",
"rel" : "..."
}, {
"href" : "...",
"rel" : "..."
} ]
}