ListItemDocType Simple Type (DeploymentManifest)

Applies to: SharePoint 2016 | SharePoint Foundation 2013 | SharePoint Online | SharePoint Server 2013

Specifies the document type of a specified list item.

Definition

<xs:simpleType name="ListItemDocType">
   <xs:restriction base="xs:string">
      <xs:enumeration value="File" />
      <xs:enumeration value="Folder" />
      <xs:enumeration value="Unknown" />
   </xs:restriction>
</xs:simpleType>

Enumeration values

Value Description
File
Specifies a list item object of type file.
Folder
Specifies a list item object of type folder.
Unknown
Indicates that a list item object is of unknown type.

Remarks

Objects of type Unknown are typically Web object types. This enumeration provides values for the DocType attribute on the ListItem Element (DeploymentManifest - SPGenericObject).

See also