|
<?
xml
version
=
"
1.0
"
encoding
=
"
utf-8
"
?>
<!--
_lcid="1033" _version="12.0.4017" _dal="1"
-->
<!--
_LocalBinding
-->
<!--
-->
<
Elements
xmlns
=
"
http://schemas.microsoft.com/sharepoint/
"
>
<
Field
ID
=
"
{CC67C6F3-1519-463c-8EB5-DBB30F73A0EF}
"
Name
=
"
myCustomText
"
SourceID
=
"
http://schemas.microsoft.com/sharepoint/v3
"
StaticName
=
"
myCustomText
"
Group
=
"
myGroup
"
RowOrdinal
=
"
0
"
Type
=
"
Text
"
DisplayName
=
"
Text Column
"
/>
<
Field
ID
=
"
{E3F01815-7011-4386-AB44-8D100CAAA677}
"
Name
=
"
myCustomNote
"
SourceID
=
"
http://schemas.microsoft.com/sharepoint/v3
"
StaticName
=
"
myCustomNote
"
Group
=
"
myGroup
"
RowOrdinal
=
"
0
"
Type
=
"
Note
"
NumLines
=
"
3
"
DisplayName
=
"
Text Note
"
/>
<
Field
ID
=
"
{10B2A9AB-2E92-4625-BF72-FF8EB5E44476}
"
Name
=
"
myCustomDate
"
SourceID
=
"
http://schemas.microsoft.com/sharepoint/v3
"
StaticName
=
"
myCustomDate
"
Group
=
"
myGroup
"
RowOrdinal
=
"
0
"
Type
=
"
DateTime
"
Format
=
"
DateOnly
"
DisplayName
=
"
Date Only
"
/>
</
Elements
>
|
The ContentType ID is broken into three section:
ID
=
"
0x0102 00 27D3DC756C694e229D3F6275117850E4
"
The last part is the generated Guid with only Hex characters. The first part of the Id is the Base content type 0x0102 with is an Calendar (Event) type list.
Each content type is delimited by 00.
This content type is using the base Events list and adding three additional site columns created to the left. To create other content types change the base content type Id to inherit their fields.
|