Skip to main content

 Element reference

Service API elements from <alias> to <workflow>

<modifiedby>

Summary

The details of a member that modified a comment.

The model inherits from the basic representation of a member and includes the date of modification.

Usage context

Permitted content<fullname>
Permitted parent<comment>

Attributes

This element inherits the following attributes from the <member> element:

NameTypeRequiredDescription
attachmentsbooleannoIf the user receives email attachments
emailemailnoThe email address of the member
externalidxs:stringnoAn external identifier for the member
firstnamexs:stringyesThe first name of the member
idxs:longyesThe ID of the member in PageSeeder
lockedbooleannoIf the member account is locked
onvacationbooleannoIf the member email option is set to ‘on vacation’
statusenumyesThe current status of the member
surnamexs:stringyesThe surname of the member
usernamexs:stringyesThe username of the member

It also includes the following attribute:

NameTypeRequiredDescription
datexs:dateTimeyesWhen the comment was modified

@date

The date and time the comment was modified by the member.

Examples

Schema

XML Schema

See the XML Schema of element <member> for a full definition.

<xs:element name="modifiedby" type="modifiedby"/>

<xs:complexType name="modifiedby">
  <xs:complexContent>
    <xs:extension base="member-basic">
      <xs:attribute name="date" type="xs:dateTime" use="required"/>
    </xs:extension>
  </xs:complexContent>
</xs:complexType>

Relax Schema

element member {
   attribute activated   { xs:dateTime }?,
   attribute attachments { xs:boolean }?,
   attribute created     { xs:dateTime }?,
   attribute date        { xs:dateTime }?,
   attribute email       { text { maxLength = "100"} }?,
   attribute externalid  { text { maxLength = "100"} }?,
   attribute firstname   { text { maxLength = "50"}},
   attribute id          { xs:long },
   attribute locked      { xs:boolean }?,
   attribute onvacation  { xs:boolean }?,
   attribute status      { "activated" | "set-password" | "unactivated" }?,
   attribute surname     { text { maxLength = "50"}},
   attribute username    { text { maxLength = "100"}},
   element fullname { text }
}

Compatibility

No change since initial API release.

Created on , last edited on