File
Represents a file.
Below, you can find a full schema of this object, in XML and JSON formats. You can choose what fields to submit depending on your current needs. Different methods might expect different fields: the best approach is to request this entity via GET
and use the response as a base for the following POST
request.
A link to another object implies that you can substitute it with the schema of the linked object, if it is required for your call.
XML
JSON
<file fullName="string" href="string" modificationTime="string" name="string" size="123456789">
<parent fullName="string" href="string" modificationTime="string" name="string" size="123456789">
<parent>file...</parent>
<content>href...</content>
<children>files...</children>
</parent>
<content href="string"/>
<children count="123" href="string">
<file>file...</file>
</children>
</file>
{
"parent" : {
"parent" : {
"parent" : "file...",
"size" : 0,
"children" : "files...",
"modificationTime" : "modificationTime",
"name" : "name",
"fullName" : "fullName",
"href" : "href",
"content" : "href..."
},
"size" : 6,
"children" : {
"file" : [ "file..." ],
"count" : 4,
"href" : "href"
},
"modificationTime" : "modificationTime",
"name" : "name",
"fullName" : "fullName",
"href" : "href",
"content" : {
"href" : "href"
}
},
"size" : 7,
"children" : {
"file" : [ "file..." ],
"count" : 4,
"href" : "href"
},
"modificationTime" : "modificationTime",
"name" : "name",
"fullName" : "fullName",
"href" : "href",
"content" : {
"href" : "href"
}
}
Thanks for your feedback!
Was this page helpful?