Request all metadata for a directory and its contents
PROPFIND  /container/ HTTP/1.1
Host: www.foo.bar
Depth: 1
Content-Type: text/xml; charset="utf-8"
Content-Length: ...

<?xml version="1.0" ?>
<D:propfind xmlns:D="DAV:">
  <D:allprop/>
</D:propfind>
Shortened response
HTTP/1.1 207 Multi-Status
Content-Type: text/xml; charset="utf-8"
Content-Length: ...

<?xml version="1.0" encoding="utf-8" ?>
<D:multistatus xmlns:D="DAV:">
 <D:response>
  <D:href>http://www.foo.bar/container/</D:href>
   <D:propstat>
    <D:prop>
     <D:getcontentlength>12345</getcontentlength>
    </D:prop>
    <D:prop xmlns:R="http://www.foo.bar/boxschema/">
     <R:bigbox>
      <R:BoxType>Box type A</R:BoxType>
     </R:bigbox>
     <R:author>
...