Tridion Schema Embedded Link
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<xsd:schema xmlns:tcmi="http://www.tridion.com/ContentManager/5.0/Instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"> | |
<xsd:import namespace="http://www.tridion.com/ContentManager/5.0/Instance"></xsd:import> | |
<xsd:annotation> | |
<xsd:appinfo> | |
<tcm:Labels xmlns:tcm="http://www.tridion.com/ContentManager/5.0"> | |
<tcm:Label ElementName="linkText" Metadata="false">Link Text</tcm:Label> | |
<tcm:Label ElementName="urlExternalLink" Metadata="false">Link Url (External)</tcm:Label> | |
<tcm:Label ElementName="urlInternalLink" Metadata="false">Link Url (Internal)</tcm:Label> | |
</tcm:Labels> | |
</xsd:appinfo> | |
</xsd:annotation> | |
<xsd:complexType name="rc_embedded_Link"> | |
<xsd:sequence> | |
<xsd:element name="linkText" minOccurs="1" maxOccurs="1" type="xsd:normalizedString"> | |
<xsd:annotation> | |
<xsd:appinfo> | |
<tcm:ExtensionXml xmlns:tcm="http://www.tridion.com/ContentManager/5.0"></tcm:ExtensionXml> | |
</xsd:appinfo> | |
</xsd:annotation> | |
</xsd:element> | |
<xsd:element name="urlExternalLink" minOccurs="0" maxOccurs="1" type="tcmi:SimpleLink"> | |
<xsd:annotation> | |
<xsd:appinfo> | |
<tcm:ExtensionXml xmlns:tcm="http://www.tridion.com/ContentManager/5.0"></tcm:ExtensionXml> | |
<tcm:linktype xmlns:tcm="http://www.tridion.com/ContentManager/5.0">ExternalLink</tcm:linktype> | |
</xsd:appinfo> | |
</xsd:annotation> | |
</xsd:element> | |
<xsd:element name="urlInternalLink" minOccurs="0" maxOccurs="1" type="tcmi:SimpleLink"> | |
<xsd:annotation> | |
<xsd:appinfo> | |
<tcm:ExtensionXml xmlns:tcm="http://www.tridion.com/ContentManager/5.0"></tcm:ExtensionXml> | |
<tcm:linktype xmlns:tcm="http://www.tridion.com/ContentManager/5.0">ComponentLink</tcm:linktype> | |
<tcm:AllowMultimediaLinks xmlns:tcm="http://www.tridion.com/ContentManager/5.0">false</tcm:AllowMultimediaLinks> | |
<tcm:AllowedTargetSchemas xmlns:tcm="http://www.tridion.com/ContentManager/5.0"> | |
</tcm:AllowedTargetSchemas> | |
</xsd:appinfo> | |
</xsd:annotation> | |
</xsd:element> | |
</xsd:sequence> | |
</xsd:complexType> | |
</xsd:schema> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment