°C/bar/m change

dive.io in Deutsch

"Diver" object

Contains attributes of a Diver (user) of dive.io. A Diver object has the following attributes:

Id
Unique numeric identifier of the Diver
Firstname
First name of the Diver
Lastname (optional)
Last name of the Diver
EmailConfirmed (optional)
Contains a confirmed email address of the diver
EmailPending (optional)
Contains an yet unconfirmed email address. Once confirmed, it will replace the EmailConfirmed.
PicHash (optional)
A hash to be used as part of the URI of the users profile picture. The full URI of the picture is constructed from the hash as follows:
     http://dive.io/i/img/divers/<hash>-<size>.jpg
Where "hash" is the PicHash value, and "size" is the size of the requested profile picture. Supported "size" values are: 80, 64, 48, 32, 24, 16, 12.
Created
Timestamp of creation of the Diver, in ISO 8601 format
Modified
Timestamp of last modification of Diver, in ISO 8601 format

Examples

XML format

  <Diver>
    <Id>4</Id>
    <Firstname>John</Firstname>
    <Lastname>Deepdiver</Lastname>
    <EmailConfirmed>info@dive.io</EmailConfirmed>
    <PicHash>1e9582e7ff47d8666</PicHash>
    <Created>2011-03-17 10:40:39.409262+01</Created>
    <Modified>2011-03-31 11:44:45.680179+02</Modified>
  </Diver>

JSON format

   {"Diver": {
      "Id":"4",
      "Firstname":"John",
      "Lastname":"Deepdiver",
      "EmailConfirmed":"info@dive.io",
      "PicHash":"1e9582e7ff4d8666",
      "Created":"2011-03-17 10:40:39.409262+01",
      "Modified":"2011-03-31 11:44:45.680179+02"
     }
   }