Showing:

Annotations
Attributes
Diagrams
Facets
Properties
Source
Used by
Included schema IC-XLink.xsd
Namespace urn:us:gov:ic:irm
Annotations
W3C XML Schema module for W3C XLink-compliant attributes.
Properties
attribute form default: unqualified
element form default: unqualified
Schema location IC-XLink.xsd
Attribute @href
Namespace http://www.w3.org/1999/xlink
Annotations
A hyperlink reference address.
Type xsd:anyURI
Properties
content: simple
Used by
Source
<xsd:attribute name="href" type="xsd:anyURI">
  <xsd:annotation>
    <xsd:documentation xml:lang="en">A hyperlink reference address.</xsd:documentation>
  </xsd:annotation>
</xsd:attribute>
Schema location IC-XLink.xsd
Attribute @role
Namespace http://www.w3.org/1999/xlink
Annotations
Identification of a resource that specifies the intended property of a hyperlink. xlink:role may be used to categorize a link by its role. The value of this attribute must be a uniform resource identifier (URI).
Type xsd:anyURI
Properties
content: simple
Used by
Source
<xsd:attribute name="role" type="xsd:anyURI">
  <xsd:annotation>
    <xsd:documentation xml:lang="en">Identification of a resource that specifies the intended property of a hyperlink.  xlink:role may be used to categorize a link by its role. The value of this attribute must be a uniform resource identifier (URI).</xsd:documentation>
  </xsd:annotation>
</xsd:attribute>
Schema location IC-XLink.xsd
Attribute @title
Namespace http://www.w3.org/1999/xlink
Annotations
A concise description of the target of a hyperlink in a human-readable form used to provide a plain text description of the link for display during a mouse-over.
Type xsd:string
Properties
content: simple
Used by
Source
<xsd:attribute name="title" type="xsd:string">
  <xsd:annotation>
    <xsd:documentation xml:lang="en">A concise description of the target of a hyperlink in a human-readable form used to provide a plain text description of the link for display during a mouse-over.</xsd:documentation>
  </xsd:annotation>
</xsd:attribute>
Schema location IC-XLink.xsd
Attribute @label
Namespace http://www.w3.org/1999/xlink
Type xsd:string
Properties
content: simple
Used by
Source
<xsd:attribute name="label" type="xsd:string"/>
Schema location IC-XLink.xsd
Attribute SimpleLinkAttributesGroup / @type
Namespace http://www.w3.org/1999/xlink
Annotations
Identifies the type of Extensible Linking Language (XLink) element the current element is functioning as. The value of this attribute is constrained to certain value(s) by the schema. XLink elements can serve several functions. The function is indicated by the value of the attribute xlink:type. The value of xlink:type can be simple, extended, locator, arc, or resource. In addition to xlink:type, the XLink specification defines several other attributes which are used in various combinations to fulfill the various functions. These attributes are: xlink:href, xlink:arcrole, xlink:role, xlink:show, xlink:actuate, xlink:title, xlink:label, xlink:from, and xlink:to.
Type xsd:NMTOKEN
Properties
fixed: simple
Used by
Attribute Group SimpleLinkAttributesGroup
Source
<xsd:attribute name="type" type="xsd:NMTOKEN" fixed="simple" form="qualified">
  <xsd:annotation>
    <xsd:documentation xml:lang="en">Identifies the type of Extensible Linking Language (XLink) element the current element is functioning as.  The value of this attribute is constrained to certain value(s) by the schema.  XLink elements can serve several functions. The function is indicated by the value of the attribute xlink:type. The value of xlink:type can be simple, extended, locator, arc, or resource. In addition to xlink:type, the XLink specification defines several other attributes which are used in various combinations to fulfill the various functions. These attributes are: xlink:href, xlink:arcrole, xlink:role, xlink:show, xlink:actuate, xlink:title, xlink:label, xlink:from, and xlink:to.</xsd:documentation>
  </xsd:annotation>
</xsd:attribute>
Schema location IC-XLink.xsd
Attribute @arcrole
Namespace http://www.w3.org/1999/xlink
Annotations
Identification of a resource that specifies the intended property of a hyperlink.
Type xsd:anyURI
Properties
content: simple
Used by
Source
<xsd:attribute name="arcrole" type="xsd:anyURI">
  <xsd:annotation>
    <xsd:documentation xml:lang="en">Identification of a resource that specifies the intended property of a hyperlink.</xsd:documentation>
  </xsd:annotation>
</xsd:attribute>
Schema location IC-XLink.xsd
Attribute @show
Namespace http://www.w3.org/1999/xlink
Annotations
The 'show' attribute is used to communicate the desired presentation of the ending resource on traversal from the starting resource; it's value should be treated as follows: new - load ending resource in a new window, frame, pane, or other presentation context replace - load the resource in the same window, frame, pane, or other presentation context embed - load ending resource in place of the presentation of the starting resource other - behavior is unconstrained; examine other markup in the link for hints none - behavior is unconstrained
Type restriction of xsd:string
Properties
content: simple
Facets
enumeration new
enumeration replace
enumeration embed
enumeration other
enumeration none
Used by
Source
<xsd:attribute name="show">
  <xsd:annotation>
    <xsd:documentation>The 'show' attribute is used to communicate the desired presentation of the ending resource on traversal from the starting resource; it's value should be treated as follows: 
             new - load ending resource in a new window, frame, pane, or other presentation context
            replace - load the resource in the same window, frame, pane, or other presentation context
            embed - load ending resource in place of the presentation of the starting resource
            other - behavior is unconstrained; examine other markup in the link for hints 
            none - behavior is unconstrained</xsd:documentation>
  </xsd:annotation>
  <xsd:simpleType>
    <xsd:restriction base="xsd:string">
      <xsd:enumeration value="new"/>
      <xsd:enumeration value="replace"/>
      <xsd:enumeration value="embed"/>
      <xsd:enumeration value="other"/>
      <xsd:enumeration value="none"/>
    </xsd:restriction>
  </xsd:simpleType>
</xsd:attribute>
Schema location IC-XLink.xsd
Attribute @actuate
Namespace http://www.w3.org/1999/xlink
Annotations
The 'actuate' attribute is used to communicate the desired timing of traversal from the starting resource to the ending resource; it's value should be treated as follows: onLoad - traverse to the ending resource immediately on loading the starting resource onRequest - traverse from the starting resource to the ending resource only on a post-loading event triggered for this purpose other - behavior is unconstrained; examine other markup in link for hints none - behavior is unconstrained
Type restriction of xsd:string
Properties
content: simple
Facets
enumeration onLoad
enumeration onRequest
enumeration other
enumeration none
Used by
Source
<xsd:attribute name="actuate">
  <xsd:annotation>
    <xsd:documentation>The 'actuate' attribute is used to communicate the desired timing of traversal from the starting resource to the ending resource; it's value should be treated as follows:
             onLoad - traverse to the ending resource immediately on loading the starting resource 
             onRequest - traverse from the starting resource to the ending resource only on a post-loading event triggered for this purpose 
             other - behavior is unconstrained; examine other markup in link for hints 
             none - behavior is unconstrained</xsd:documentation>
  </xsd:annotation>
  <xsd:simpleType>
    <xsd:restriction base="xsd:string">
      <xsd:enumeration value="onLoad"/>
      <xsd:enumeration value="onRequest"/>
      <xsd:enumeration value="other"/>
      <xsd:enumeration value="none"/>
    </xsd:restriction>
  </xsd:simpleType>
</xsd:attribute>
Schema location IC-XLink.xsd
Attribute LocatorAttributesGroup / @type
Namespace http://www.w3.org/1999/xlink
Annotations
Identifies the type of Extensible Linking Language (XLink) element the current element is functioning as. The value of this attribute is constrained to certain value(s) by the schema. XLink elements can serve several functions. The function is indicated by the value of the attribute xlink:type. The value of xlink:type can be simple, extended, locator, arc, or resource. In addition to xlink:type, the XLink specification defines several other attributes which are used in various combinations to fulfill the various functions. These attributes are: xlink:href, xlink:arcrole, xlink:role, xlink:show, xlink:actuate, xlink:title, xlink:label, xlink:from, and xlink:to.
Type xsd:NMTOKEN
Properties
fixed: locator
Used by
Attribute Group LocatorAttributesGroup
Source
<xsd:attribute name="type" type="xsd:NMTOKEN" fixed="locator" form="qualified">
  <xsd:annotation>
    <xsd:documentation xml:lang="en">Identifies the type of Extensible Linking Language (XLink) element the current element is functioning as.  The value of this attribute is constrained to certain value(s) by the schema.  XLink elements can serve several functions. The function is indicated by the value of the attribute xlink:type. The value of xlink:type can be simple, extended, locator, arc, or resource. In addition to xlink:type, the XLink specification defines several other attributes which are used in various combinations to fulfill the various functions. These attributes are: xlink:href, xlink:arcrole, xlink:role, xlink:show, xlink:actuate, xlink:title, xlink:label, xlink:from, and xlink:to.</xsd:documentation>
  </xsd:annotation>
</xsd:attribute>
Schema location IC-XLink.xsd
Attribute ResourceAttributesGroup / @type
Namespace http://www.w3.org/1999/xlink
Annotations
Identifies the type of Extensible Linking Language (XLink) element the current element is functioning as. The value of this attribute is constrained to certain value(s) by the schema. XLink elements can serve several functions. The function is indicated by the value of the attribute xlink:type. The value of xlink:type can be simple, extended, locator, arc, or resource. In addition to xlink:type, the XLink specification defines several other attributes which are used in various combinations to fulfill the various functions. These attributes are: xlink:href, xlink:arcrole, xlink:role, xlink:show, xlink:actuate, xlink:title, xlink:label, xlink:from, and xlink:to.
Type restriction of xsd:NMTOKEN
Properties
content: simple
Facets
enumeration resource
Used by
Attribute Group ResourceAttributesGroup
Source
<xsd:attribute name="type" form="qualified">
  <xsd:annotation>
    <xsd:documentation xml:lang="en">Identifies the type of Extensible Linking Language (XLink) element the current element is functioning as.  The value of this attribute is constrained to certain value(s) by the schema.  XLink elements can serve several functions. The function is indicated by the value of the attribute xlink:type. The value of xlink:type can be simple, extended, locator, arc, or resource. In addition to xlink:type, the XLink specification defines several other attributes which are used in various combinations to fulfill the various functions. These attributes are: xlink:href, xlink:arcrole, xlink:role, xlink:show, xlink:actuate, xlink:title, xlink:label, xlink:from, and xlink:to.</xsd:documentation>
  </xsd:annotation>
  <xsd:simpleType>
    <xsd:restriction base="xsd:NMTOKEN">
      <xsd:enumeration value="resource"/>
    </xsd:restriction>
  </xsd:simpleType>
</xsd:attribute>
Schema location IC-XLink.xsd
Attribute @from
Namespace http://www.w3.org/1999/xlink
Type xsd:string
Properties
content: simple
Used by
Attribute Group ArcAttributesGroup
Source
<xsd:attribute name="from" type="xsd:string"/>
Schema location IC-XLink.xsd
Attribute @to
Namespace http://www.w3.org/1999/xlink
Type xsd:string
Properties
content: simple
Used by
Attribute Group ArcAttributesGroup
Source
<xsd:attribute name="to" type="xsd:string"/>
Schema location IC-XLink.xsd
Attribute RequiredSimpleLinkAttributesGroup / @type
Namespace http://www.w3.org/1999/xlink
Annotations
Identifies the type of Extensible Linking Language (XLink) element the current element is functioning as. The value of this attribute is constrained to certain value(s) by the schema. XLink elements can serve several functions. The function is indicated by the value of the attribute xlink:type. The value of xlink:type can be simple, extended, locator, arc, or resource. In addition to xlink:type, the XLink specification defines several other attributes which are used in various combinations to fulfill the various functions. These attributes are: xlink:href, xlink:arcrole, xlink:role, xlink:show, xlink:actuate, xlink:title, xlink:label, xlink:from, and xlink:to.
Type xsd:NMTOKEN
Properties
fixed: simple
Used by
Source
<xsd:attribute name="type" type="xsd:NMTOKEN" fixed="simple" form="qualified">
  <xsd:annotation>
    <xsd:documentation xml:lang="en">Identifies the type of Extensible Linking Language (XLink) element the current element is functioning as.  The value of this attribute is constrained to certain value(s) by the schema.  XLink elements can serve several functions. The function is indicated by the value of the attribute xlink:type. The value of xlink:type can be simple, extended, locator, arc, or resource. In addition to xlink:type, the XLink specification defines several other attributes which are used in various combinations to fulfill the various functions. These attributes are: xlink:href, xlink:arcrole, xlink:role, xlink:show, xlink:actuate, xlink:title, xlink:label, xlink:from, and xlink:to.</xsd:documentation>
  </xsd:annotation>
</xsd:attribute>
Schema location IC-XLink.xsd
Attribute SimpleOrExtendedLinkAttributesGroup / @type
Namespace http://www.w3.org/1999/xlink
Annotations
Identifies the type of Extensible Linking Language (XLink) element the current element is functioning as. The value of this attribute is constrained to certain value(s) by the schema. XLink elements can serve several functions. The function is indicated by the value of the attribute xlink:type. The value of xlink:type can be simple, extended, locator, arc, or resource. In addition to xlink:type, the XLink specification defines several other attributes which are used in various combinations to fulfill the various functions. These attributes are: xlink:href, xlink:arcrole, xlink:role, xlink:show, xlink:actuate, xlink:title, xlink:label, xlink:from, and xlink:to.
Type restriction of xsd:NMTOKEN
Properties
use: required
Facets
enumeration extended
enumeration simple
Used by
Source
<xsd:attribute name="type" use="required" form="qualified">
  <xsd:annotation>
    <xsd:documentation xml:lang="en">Identifies the type of Extensible Linking Language (XLink) element the current element is functioning as.  The value of this attribute is constrained to certain value(s) by the schema.  XLink elements can serve several functions. The function is indicated by the value of the attribute xlink:type. The value of xlink:type can be simple, extended, locator, arc, or resource. In addition to xlink:type, the XLink specification defines several other attributes which are used in various combinations to fulfill the various functions. These attributes are: xlink:href, xlink:arcrole, xlink:role, xlink:show, xlink:actuate, xlink:title, xlink:label, xlink:from, and xlink:to.</xsd:documentation>
  </xsd:annotation>
  <xsd:simpleType>
    <xsd:restriction base="xsd:NMTOKEN">
      <xsd:enumeration value="extended"/>
      <xsd:enumeration value="simple"/>
    </xsd:restriction>
  </xsd:simpleType>
</xsd:attribute>
Schema location IC-XLink.xsd
Attribute SimpleOrResourceAttributesGroup / @type
Namespace http://www.w3.org/1999/xlink
Annotations
Identifies the type of Extensible Linking Language (XLink) element the current element is functioning as. The value of this attribute is constrained to certain value(s) by the schema. XLink elements can serve several functions. The function is indicated by the value of the attribute xlink:type. The value of xlink:type can be simple, extended, locator, arc, or resource. In addition to xlink:type, the XLink specification defines several other attributes which are used in various combinations to fulfill the various functions. These attributes are: xlink:href, xlink:arcrole, xlink:role, xlink:show, xlink:actuate, xlink:title, xlink:label, xlink:from, and xlink:to.
Type restriction of xsd:NMTOKEN
Properties
use: optional
Facets
enumeration resource
enumeration simple
Used by
Source
<xsd:attribute name="type" use="optional" form="qualified">
  <xsd:annotation>
    <xsd:documentation xml:lang="en">Identifies the type of Extensible Linking Language (XLink) element the current element is functioning as.  The value of this attribute is constrained to certain value(s) by the schema.  XLink elements can serve several functions. The function is indicated by the value of the attribute xlink:type. The value of xlink:type can be simple, extended, locator, arc, or resource. In addition to xlink:type, the XLink specification defines several other attributes which are used in various combinations to fulfill the various functions. These attributes are: xlink:href, xlink:arcrole, xlink:role, xlink:show, xlink:actuate, xlink:title, xlink:label, xlink:from, and xlink:to.</xsd:documentation>
  </xsd:annotation>
  <xsd:simpleType>
    <xsd:restriction base="xsd:NMTOKEN">
      <xsd:enumeration value="resource"/>
      <xsd:enumeration value="simple"/>
    </xsd:restriction>
  </xsd:simpleType>
</xsd:attribute>
Schema location IC-XLink.xsd
Attribute ExtendedLinkAttributesGroup / @type
Namespace http://www.w3.org/1999/xlink
Annotations
Identifies the type of Extensible Linking Language (XLink) element the current element is functioning as. The value of this attribute is constrained to certain value(s) by the schema. XLink elements can serve several functions. The function is indicated by the value of the attribute xlink:type. The value of xlink:type can be simple, extended, locator, arc, or resource. In addition to xlink:type, the XLink specification defines several other attributes which are used in various combinations to fulfill the various functions. These attributes are: xlink:href, xlink:arcrole, xlink:role, xlink:show, xlink:actuate, xlink:title, xlink:label, xlink:from, and xlink:to.
Type xsd:NMTOKEN
Properties
fixed: extended
Used by
Attribute Group ExtendedLinkAttributesGroup
Source
<xsd:attribute name="type" type="xsd:NMTOKEN" fixed="extended" form="qualified">
  <xsd:annotation>
    <xsd:documentation xml:lang="en">Identifies the type of Extensible Linking Language (XLink) element the current element is functioning as.  The value of this attribute is constrained to certain value(s) by the schema.  XLink elements can serve several functions. The function is indicated by the value of the attribute xlink:type. The value of xlink:type can be simple, extended, locator, arc, or resource. In addition to xlink:type, the XLink specification defines several other attributes which are used in various combinations to fulfill the various functions. These attributes are: xlink:href, xlink:arcrole, xlink:role, xlink:show, xlink:actuate, xlink:title, xlink:label, xlink:from, and xlink:to.</xsd:documentation>
  </xsd:annotation>
</xsd:attribute>
Schema location IC-XLink.xsd
Attribute ArcAttributesGroup / @type
Namespace http://www.w3.org/1999/xlink
Annotations
Identifies the type of Extensible Linking Language (XLink) element the current element is functioning as. The value of this attribute is constrained to certain value(s) by the schema. XLink elements can serve several functions. The function is indicated by the value of the attribute xlink:type. The value of xlink:type can be simple, extended, locator, arc, or resource. In addition to xlink:type, the XLink specification defines several other attributes which are used in various combinations to fulfill the various functions. These attributes are: xlink:href, xlink:arcrole, xlink:role, xlink:show, xlink:actuate, xlink:title, xlink:label, xlink:from, and xlink:to.
Type xsd:NMTOKEN
Properties
fixed: arc
Used by
Attribute Group ArcAttributesGroup
Source
<xsd:attribute name="type" type="xsd:NMTOKEN" fixed="arc" form="qualified">
  <xsd:annotation>
    <xsd:documentation xml:lang="en">Identifies the type of Extensible Linking Language (XLink) element the current element is functioning as.  The value of this attribute is constrained to certain value(s) by the schema.  XLink elements can serve several functions. The function is indicated by the value of the attribute xlink:type. The value of xlink:type can be simple, extended, locator, arc, or resource. In addition to xlink:type, the XLink specification defines several other attributes which are used in various combinations to fulfill the various functions. These attributes are: xlink:href, xlink:arcrole, xlink:role, xlink:show, xlink:actuate, xlink:title, xlink:label, xlink:from, and xlink:to.</xsd:documentation>
  </xsd:annotation>
</xsd:attribute>
Schema location IC-XLink.xsd
Attribute TitleAttributesGroup / @type
Namespace http://www.w3.org/1999/xlink
Annotations
Identifies the type of Extensible Linking Language (XLink) element the current element is functioning as. The value of this attribute is constrained to certain value(s) by the schema. XLink elements can serve several functions. The function is indicated by the value of the attribute xlink:type. The value of xlink:type can be simple, extended, locator, arc, or resource. In addition to xlink:type, the XLink specification defines several other attributes which are used in various combinations to fulfill the various functions. These attributes are: xlink:href, xlink:arcrole, xlink:role, xlink:show, xlink:actuate, xlink:title, xlink:label, xlink:from, and xlink:to.
Type xsd:NMTOKEN
Properties
fixed: title
Used by
Attribute Group TitleAttributesGroup
Source
<xsd:attribute name="type" type="xsd:NMTOKEN" fixed="title" form="qualified">
  <xsd:annotation>
    <xsd:documentation xml:lang="en">Identifies the type of Extensible Linking Language (XLink) element the current element is functioning as.  The value of this attribute is constrained to certain value(s) by the schema.  XLink elements can serve several functions. The function is indicated by the value of the attribute xlink:type. The value of xlink:type can be simple, extended, locator, arc, or resource. In addition to xlink:type, the XLink specification defines several other attributes which are used in various combinations to fulfill the various functions. These attributes are: xlink:href, xlink:arcrole, xlink:role, xlink:show, xlink:actuate, xlink:title, xlink:label, xlink:from, and xlink:to.</xsd:documentation>
  </xsd:annotation>
</xsd:attribute>
Schema location IC-XLink.xsd
Attribute Group SimpleLinkAttributesGroup
Namespace http://www.w3.org/1999/xlink
Diagram
Diagram IC-XLink_xsd.tmp#id261 IC-XLink_xsd.tmp#id229 IC-XLink_xsd.tmp#id230 IC-XLink_xsd.tmp#id262 IC-XLink_xsd.tmp#id231 IC-XLink_xsd.tmp#id263 IC-XLink_xsd.tmp#id264
Used by
Attribute Group SimpleLinkAttributesGroup
Attributes
QName Type Fixed Default Use Annotation
actuate restriction of xsd:string optional
The 'actuate' attribute is used to communicate the desired timing of traversal from the starting resource to the ending resource; it's value should be treated as follows: onLoad - traverse to the ending resource immediately on loading the starting resource onRequest - traverse from the starting resource to the ending resource only on a post-loading event triggered for this purpose other - behavior is unconstrained; examine other markup in link for hints none - behavior is unconstrained
arcrole xsd:anyURI optional
Identification of a resource that specifies the intended property of a hyperlink.
href xsd:anyURI optional
A hyperlink reference address.
role xsd:anyURI optional
Identification of a resource that specifies the intended property of a hyperlink. xlink:role may be used to categorize a link by its role. The value of this attribute must be a uniform resource identifier (URI).
show restriction of xsd:string optional
The 'show' attribute is used to communicate the desired presentation of the ending resource on traversal from the starting resource; it's value should be treated as follows: new - load ending resource in a new window, frame, pane, or other presentation context replace - load the resource in the same window, frame, pane, or other presentation context embed - load ending resource in place of the presentation of the starting resource other - behavior is unconstrained; examine other markup in the link for hints none - behavior is unconstrained
title xsd:string optional
A concise description of the target of a hyperlink in a human-readable form used to provide a plain text description of the link for display during a mouse-over.
type xsd:NMTOKEN simple optional
Identifies the type of Extensible Linking Language (XLink) element the current element is functioning as. The value of this attribute is constrained to certain value(s) by the schema. XLink elements can serve several functions. The function is indicated by the value of the attribute xlink:type. The value of xlink:type can be simple, extended, locator, arc, or resource. In addition to xlink:type, the XLink specification defines several other attributes which are used in various combinations to fulfill the various functions. These attributes are: xlink:href, xlink:arcrole, xlink:role, xlink:show, xlink:actuate, xlink:title, xlink:label, xlink:from, and xlink:to.
Source
<xsd:attributeGroup name="SimpleLinkAttributesGroup">
  <xsd:attribute name="type" type="xsd:NMTOKEN" fixed="simple" form="qualified">
    <xsd:annotation>
      <xsd:documentation xml:lang="en">Identifies the type of Extensible Linking Language (XLink) element the current element is functioning as.  The value of this attribute is constrained to certain value(s) by the schema.  XLink elements can serve several functions. The function is indicated by the value of the attribute xlink:type. The value of xlink:type can be simple, extended, locator, arc, or resource. In addition to xlink:type, the XLink specification defines several other attributes which are used in various combinations to fulfill the various functions. These attributes are: xlink:href, xlink:arcrole, xlink:role, xlink:show, xlink:actuate, xlink:title, xlink:label, xlink:from, and xlink:to.</xsd:documentation>
    </xsd:annotation>
  </xsd:attribute>
  <xsd:attribute ref="href" use="optional"/>
  <xsd:attribute ref="role" use="optional"/>
  <xsd:attribute ref="arcrole" use="optional"/>
  <xsd:attribute ref="title" use="optional"/>
  <xsd:attribute ref="show" use="optional"/>
  <xsd:attribute ref="actuate" use="optional"/>
</xsd:attributeGroup>
Schema location IC-XLink.xsd
Attribute Group LocatorAttributesGroup
Namespace http://www.w3.org/1999/xlink
Diagram
Diagram IC-XLink_xsd.tmp#id271 IC-XLink_xsd.tmp#id229 IC-XLink_xsd.tmp#id230 IC-XLink_xsd.tmp#id231 IC-XLink_xsd.tmp#id232
Used by
Attributes
QName Type Fixed Default Use Annotation
href xsd:anyURI required
A hyperlink reference address.
label xsd:string optional
role xsd:anyURI optional
Identification of a resource that specifies the intended property of a hyperlink. xlink:role may be used to categorize a link by its role. The value of this attribute must be a uniform resource identifier (URI).
title xsd:string optional
A concise description of the target of a hyperlink in a human-readable form used to provide a plain text description of the link for display during a mouse-over.
type xsd:NMTOKEN locator optional
Identifies the type of Extensible Linking Language (XLink) element the current element is functioning as. The value of this attribute is constrained to certain value(s) by the schema. XLink elements can serve several functions. The function is indicated by the value of the attribute xlink:type. The value of xlink:type can be simple, extended, locator, arc, or resource. In addition to xlink:type, the XLink specification defines several other attributes which are used in various combinations to fulfill the various functions. These attributes are: xlink:href, xlink:arcrole, xlink:role, xlink:show, xlink:actuate, xlink:title, xlink:label, xlink:from, and xlink:to.
Source
<xsd:attributeGroup name="LocatorAttributesGroup">
  <xsd:attribute name="type" type="xsd:NMTOKEN" fixed="locator" form="qualified">
    <xsd:annotation>
      <xsd:documentation xml:lang="en">Identifies the type of Extensible Linking Language (XLink) element the current element is functioning as.  The value of this attribute is constrained to certain value(s) by the schema.  XLink elements can serve several functions. The function is indicated by the value of the attribute xlink:type. The value of xlink:type can be simple, extended, locator, arc, or resource. In addition to xlink:type, the XLink specification defines several other attributes which are used in various combinations to fulfill the various functions. These attributes are: xlink:href, xlink:arcrole, xlink:role, xlink:show, xlink:actuate, xlink:title, xlink:label, xlink:from, and xlink:to.</xsd:documentation>
    </xsd:annotation>
  </xsd:attribute>
  <xsd:attribute ref="href" use="required"/>
  <xsd:attribute ref="role" use="optional"/>
  <xsd:attribute ref="title" use="optional"/>
  <xsd:attribute ref="label" use="optional"/>
</xsd:attributeGroup>
Schema location IC-XLink.xsd
Attribute Group ResourceAttributesGroup
Namespace http://www.w3.org/1999/xlink
Diagram
Diagram IC-XLink_xsd.tmp#id278 IC-XLink_xsd.tmp#id230 IC-XLink_xsd.tmp#id231 IC-XLink_xsd.tmp#id232
Used by
Attributes
QName Type Fixed Default Use Annotation
label xsd:string optional
role xsd:anyURI optional
Identification of a resource that specifies the intended property of a hyperlink. xlink:role may be used to categorize a link by its role. The value of this attribute must be a uniform resource identifier (URI).
title xsd:string optional
A concise description of the target of a hyperlink in a human-readable form used to provide a plain text description of the link for display during a mouse-over.
type restriction of xsd:NMTOKEN optional
Identifies the type of Extensible Linking Language (XLink) element the current element is functioning as. The value of this attribute is constrained to certain value(s) by the schema. XLink elements can serve several functions. The function is indicated by the value of the attribute xlink:type. The value of xlink:type can be simple, extended, locator, arc, or resource. In addition to xlink:type, the XLink specification defines several other attributes which are used in various combinations to fulfill the various functions. These attributes are: xlink:href, xlink:arcrole, xlink:role, xlink:show, xlink:actuate, xlink:title, xlink:label, xlink:from, and xlink:to.
Source
<xsd:attributeGroup name="ResourceAttributesGroup">
  <xsd:attribute name="type" form="qualified">
    <xsd:annotation>
      <xsd:documentation xml:lang="en">Identifies the type of Extensible Linking Language (XLink) element the current element is functioning as.  The value of this attribute is constrained to certain value(s) by the schema.  XLink elements can serve several functions. The function is indicated by the value of the attribute xlink:type. The value of xlink:type can be simple, extended, locator, arc, or resource. In addition to xlink:type, the XLink specification defines several other attributes which are used in various combinations to fulfill the various functions. These attributes are: xlink:href, xlink:arcrole, xlink:role, xlink:show, xlink:actuate, xlink:title, xlink:label, xlink:from, and xlink:to.</xsd:documentation>
    </xsd:annotation>
    <xsd:simpleType>
      <xsd:restriction base="xsd:NMTOKEN">
        <xsd:enumeration value="resource"/>
      </xsd:restriction>
    </xsd:simpleType>
  </xsd:attribute>
  <xsd:attribute ref="role" use="optional"/>
  <xsd:attribute ref="title" use="optional"/>
  <xsd:attribute ref="label" use="optional"/>
</xsd:attributeGroup>
Schema location IC-XLink.xsd
Attribute Group RequiredSimpleLinkAttributesGroup
Namespace http://www.w3.org/1999/xlink
Diagram
Diagram IC-XLink_xsd.tmp#id384 IC-XLink_xsd.tmp#id229 IC-XLink_xsd.tmp#id230 IC-XLink_xsd.tmp#id262 IC-XLink_xsd.tmp#id231 IC-XLink_xsd.tmp#id263 IC-XLink_xsd.tmp#id264
Attributes
QName Type Fixed Default Use Annotation
actuate restriction of xsd:string optional
The 'actuate' attribute is used to communicate the desired timing of traversal from the starting resource to the ending resource; it's value should be treated as follows: onLoad - traverse to the ending resource immediately on loading the starting resource onRequest - traverse from the starting resource to the ending resource only on a post-loading event triggered for this purpose other - behavior is unconstrained; examine other markup in link for hints none - behavior is unconstrained
arcrole xsd:anyURI optional
Identification of a resource that specifies the intended property of a hyperlink.
href xsd:anyURI required
A hyperlink reference address.
role xsd:anyURI optional
Identification of a resource that specifies the intended property of a hyperlink. xlink:role may be used to categorize a link by its role. The value of this attribute must be a uniform resource identifier (URI).
show restriction of xsd:string optional
The 'show' attribute is used to communicate the desired presentation of the ending resource on traversal from the starting resource; it's value should be treated as follows: new - load ending resource in a new window, frame, pane, or other presentation context replace - load the resource in the same window, frame, pane, or other presentation context embed - load ending resource in place of the presentation of the starting resource other - behavior is unconstrained; examine other markup in the link for hints none - behavior is unconstrained
title xsd:string optional
A concise description of the target of a hyperlink in a human-readable form used to provide a plain text description of the link for display during a mouse-over.
type xsd:NMTOKEN simple optional
Identifies the type of Extensible Linking Language (XLink) element the current element is functioning as. The value of this attribute is constrained to certain value(s) by the schema. XLink elements can serve several functions. The function is indicated by the value of the attribute xlink:type. The value of xlink:type can be simple, extended, locator, arc, or resource. In addition to xlink:type, the XLink specification defines several other attributes which are used in various combinations to fulfill the various functions. These attributes are: xlink:href, xlink:arcrole, xlink:role, xlink:show, xlink:actuate, xlink:title, xlink:label, xlink:from, and xlink:to.
Source
<xsd:attributeGroup name="RequiredSimpleLinkAttributesGroup">
  <xsd:attribute name="type" type="xsd:NMTOKEN" fixed="simple" form="qualified">
    <xsd:annotation>
      <xsd:documentation xml:lang="en">Identifies the type of Extensible Linking Language (XLink) element the current element is functioning as.  The value of this attribute is constrained to certain value(s) by the schema.  XLink elements can serve several functions. The function is indicated by the value of the attribute xlink:type. The value of xlink:type can be simple, extended, locator, arc, or resource. In addition to xlink:type, the XLink specification defines several other attributes which are used in various combinations to fulfill the various functions. These attributes are: xlink:href, xlink:arcrole, xlink:role, xlink:show, xlink:actuate, xlink:title, xlink:label, xlink:from, and xlink:to.</xsd:documentation>
    </xsd:annotation>
  </xsd:attribute>
  <xsd:attribute ref="href" use="required"/>
  <xsd:attribute ref="role" use="optional"/>
  <xsd:attribute ref="arcrole" use="optional"/>
  <xsd:attribute ref="title" use="optional"/>
  <xsd:attribute ref="show" use="optional"/>
  <xsd:attribute ref="actuate" use="optional"/>
</xsd:attributeGroup>
Schema location IC-XLink.xsd
Attribute Group SimpleOrExtendedLinkAttributesGroup
Namespace http://www.w3.org/1999/xlink
Diagram
Diagram IC-XLink_xsd.tmp#id386 IC-XLink_xsd.tmp#id229 IC-XLink_xsd.tmp#id230 IC-XLink_xsd.tmp#id262 IC-XLink_xsd.tmp#id231 IC-XLink_xsd.tmp#id263 IC-XLink_xsd.tmp#id264
Attributes
QName Type Fixed Default Use Annotation
actuate restriction of xsd:string optional
The 'actuate' attribute is used to communicate the desired timing of traversal from the starting resource to the ending resource; it's value should be treated as follows: onLoad - traverse to the ending resource immediately on loading the starting resource onRequest - traverse from the starting resource to the ending resource only on a post-loading event triggered for this purpose other - behavior is unconstrained; examine other markup in link for hints none - behavior is unconstrained
arcrole xsd:anyURI optional
Identification of a resource that specifies the intended property of a hyperlink.
href xsd:anyURI optional
A hyperlink reference address.
role xsd:anyURI optional
Identification of a resource that specifies the intended property of a hyperlink. xlink:role may be used to categorize a link by its role. The value of this attribute must be a uniform resource identifier (URI).
show restriction of xsd:string optional
The 'show' attribute is used to communicate the desired presentation of the ending resource on traversal from the starting resource; it's value should be treated as follows: new - load ending resource in a new window, frame, pane, or other presentation context replace - load the resource in the same window, frame, pane, or other presentation context embed - load ending resource in place of the presentation of the starting resource other - behavior is unconstrained; examine other markup in the link for hints none - behavior is unconstrained
title xsd:string optional
A concise description of the target of a hyperlink in a human-readable form used to provide a plain text description of the link for display during a mouse-over.
type restriction of xsd:NMTOKEN required
Identifies the type of Extensible Linking Language (XLink) element the current element is functioning as. The value of this attribute is constrained to certain value(s) by the schema. XLink elements can serve several functions. The function is indicated by the value of the attribute xlink:type. The value of xlink:type can be simple, extended, locator, arc, or resource. In addition to xlink:type, the XLink specification defines several other attributes which are used in various combinations to fulfill the various functions. These attributes are: xlink:href, xlink:arcrole, xlink:role, xlink:show, xlink:actuate, xlink:title, xlink:label, xlink:from, and xlink:to.
Source
<xsd:attributeGroup name="SimpleOrExtendedLinkAttributesGroup">
  <xsd:attribute name="type" use="required" form="qualified">
    <xsd:annotation>
      <xsd:documentation xml:lang="en">Identifies the type of Extensible Linking Language (XLink) element the current element is functioning as.  The value of this attribute is constrained to certain value(s) by the schema.  XLink elements can serve several functions. The function is indicated by the value of the attribute xlink:type. The value of xlink:type can be simple, extended, locator, arc, or resource. In addition to xlink:type, the XLink specification defines several other attributes which are used in various combinations to fulfill the various functions. These attributes are: xlink:href, xlink:arcrole, xlink:role, xlink:show, xlink:actuate, xlink:title, xlink:label, xlink:from, and xlink:to.</xsd:documentation>
    </xsd:annotation>
    <xsd:simpleType>
      <xsd:restriction base="xsd:NMTOKEN">
        <xsd:enumeration value="extended"/>
        <xsd:enumeration value="simple"/>
      </xsd:restriction>
    </xsd:simpleType>
  </xsd:attribute>
  <xsd:attribute ref="href" use="optional"/>
  <xsd:attribute ref="role" use="optional"/>
  <xsd:attribute ref="arcrole" use="optional"/>
  <xsd:attribute ref="title" use="optional"/>
  <xsd:attribute ref="show" use="optional"/>
  <xsd:attribute ref="actuate" use="optional"/>
</xsd:attributeGroup>
Schema location IC-XLink.xsd
Attribute Group SimpleOrResourceAttributesGroup
Namespace http://www.w3.org/1999/xlink
Diagram
Diagram IC-XLink_xsd.tmp#id388 IC-XLink_xsd.tmp#id229 IC-XLink_xsd.tmp#id230 IC-XLink_xsd.tmp#id262 IC-XLink_xsd.tmp#id231 IC-XLink_xsd.tmp#id263 IC-XLink_xsd.tmp#id264 IC-XLink_xsd.tmp#id232
Attributes
QName Type Fixed Default Use Annotation
actuate restriction of xsd:string optional
The 'actuate' attribute is used to communicate the desired timing of traversal from the starting resource to the ending resource; it's value should be treated as follows: onLoad - traverse to the ending resource immediately on loading the starting resource onRequest - traverse from the starting resource to the ending resource only on a post-loading event triggered for this purpose other - behavior is unconstrained; examine other markup in link for hints none - behavior is unconstrained
arcrole xsd:anyURI optional
Identification of a resource that specifies the intended property of a hyperlink.
href xsd:anyURI optional
A hyperlink reference address.
label xsd:string optional
role xsd:anyURI optional
Identification of a resource that specifies the intended property of a hyperlink. xlink:role may be used to categorize a link by its role. The value of this attribute must be a uniform resource identifier (URI).
show restriction of xsd:string optional
The 'show' attribute is used to communicate the desired presentation of the ending resource on traversal from the starting resource; it's value should be treated as follows: new - load ending resource in a new window, frame, pane, or other presentation context replace - load the resource in the same window, frame, pane, or other presentation context embed - load ending resource in place of the presentation of the starting resource other - behavior is unconstrained; examine other markup in the link for hints none - behavior is unconstrained
title xsd:string optional
A concise description of the target of a hyperlink in a human-readable form used to provide a plain text description of the link for display during a mouse-over.
type restriction of xsd:NMTOKEN optional
Identifies the type of Extensible Linking Language (XLink) element the current element is functioning as. The value of this attribute is constrained to certain value(s) by the schema. XLink elements can serve several functions. The function is indicated by the value of the attribute xlink:type. The value of xlink:type can be simple, extended, locator, arc, or resource. In addition to xlink:type, the XLink specification defines several other attributes which are used in various combinations to fulfill the various functions. These attributes are: xlink:href, xlink:arcrole, xlink:role, xlink:show, xlink:actuate, xlink:title, xlink:label, xlink:from, and xlink:to.
Source
<xsd:attributeGroup name="SimpleOrResourceAttributesGroup">
  <xsd:attribute name="type" use="optional" form="qualified">
    <xsd:annotation>
      <xsd:documentation xml:lang="en">Identifies the type of Extensible Linking Language (XLink) element the current element is functioning as.  The value of this attribute is constrained to certain value(s) by the schema.  XLink elements can serve several functions. The function is indicated by the value of the attribute xlink:type. The value of xlink:type can be simple, extended, locator, arc, or resource. In addition to xlink:type, the XLink specification defines several other attributes which are used in various combinations to fulfill the various functions. These attributes are: xlink:href, xlink:arcrole, xlink:role, xlink:show, xlink:actuate, xlink:title, xlink:label, xlink:from, and xlink:to.</xsd:documentation>
    </xsd:annotation>
    <xsd:simpleType>
      <xsd:restriction base="xsd:NMTOKEN">
        <xsd:enumeration value="resource"/>
        <xsd:enumeration value="simple"/>
      </xsd:restriction>
    </xsd:simpleType>
  </xsd:attribute>
  <xsd:attribute ref="href" use="optional"/>
  <xsd:attribute ref="role" use="optional"/>
  <xsd:attribute ref="arcrole" use="optional"/>
  <xsd:attribute ref="title" use="optional"/>
  <xsd:attribute ref="show" use="optional"/>
  <xsd:attribute ref="actuate" use="optional"/>
  <xsd:attribute ref="label" use="optional"/>
</xsd:attributeGroup>
Schema location IC-XLink.xsd
Attribute Group ExtendedLinkAttributesGroup
Namespace http://www.w3.org/1999/xlink
Diagram
Diagram IC-XLink_xsd.tmp#id390 IC-XLink_xsd.tmp#id230 IC-XLink_xsd.tmp#id231
Attributes
QName Type Fixed Default Use Annotation
role xsd:anyURI optional
Identification of a resource that specifies the intended property of a hyperlink. xlink:role may be used to categorize a link by its role. The value of this attribute must be a uniform resource identifier (URI).
title xsd:string optional
A concise description of the target of a hyperlink in a human-readable form used to provide a plain text description of the link for display during a mouse-over.
type xsd:NMTOKEN extended optional
Identifies the type of Extensible Linking Language (XLink) element the current element is functioning as. The value of this attribute is constrained to certain value(s) by the schema. XLink elements can serve several functions. The function is indicated by the value of the attribute xlink:type. The value of xlink:type can be simple, extended, locator, arc, or resource. In addition to xlink:type, the XLink specification defines several other attributes which are used in various combinations to fulfill the various functions. These attributes are: xlink:href, xlink:arcrole, xlink:role, xlink:show, xlink:actuate, xlink:title, xlink:label, xlink:from, and xlink:to.
Source
<xsd:attributeGroup name="ExtendedLinkAttributesGroup">
  <xsd:attribute name="type" type="xsd:NMTOKEN" fixed="extended" form="qualified">
    <xsd:annotation>
      <xsd:documentation xml:lang="en">Identifies the type of Extensible Linking Language (XLink) element the current element is functioning as.  The value of this attribute is constrained to certain value(s) by the schema.  XLink elements can serve several functions. The function is indicated by the value of the attribute xlink:type. The value of xlink:type can be simple, extended, locator, arc, or resource. In addition to xlink:type, the XLink specification defines several other attributes which are used in various combinations to fulfill the various functions. These attributes are: xlink:href, xlink:arcrole, xlink:role, xlink:show, xlink:actuate, xlink:title, xlink:label, xlink:from, and xlink:to.</xsd:documentation>
    </xsd:annotation>
  </xsd:attribute>
  <xsd:attribute ref="role" use="optional"/>
  <xsd:attribute ref="title" use="optional"/>
</xsd:attributeGroup>
Schema location IC-XLink.xsd
Attribute Group ArcAttributesGroup
Namespace http://www.w3.org/1999/xlink
Diagram
Diagram IC-XLink_xsd.tmp#id392 IC-XLink_xsd.tmp#id262 IC-XLink_xsd.tmp#id231 IC-XLink_xsd.tmp#id263 IC-XLink_xsd.tmp#id264 IC-XLink_xsd.tmp#id381 IC-XLink_xsd.tmp#id382
Attributes
QName Type Fixed Default Use Annotation
actuate restriction of xsd:string optional
The 'actuate' attribute is used to communicate the desired timing of traversal from the starting resource to the ending resource; it's value should be treated as follows: onLoad - traverse to the ending resource immediately on loading the starting resource onRequest - traverse from the starting resource to the ending resource only on a post-loading event triggered for this purpose other - behavior is unconstrained; examine other markup in link for hints none - behavior is unconstrained
arcrole xsd:anyURI optional
Identification of a resource that specifies the intended property of a hyperlink.
from xsd:string optional
show restriction of xsd:string optional
The 'show' attribute is used to communicate the desired presentation of the ending resource on traversal from the starting resource; it's value should be treated as follows: new - load ending resource in a new window, frame, pane, or other presentation context replace - load the resource in the same window, frame, pane, or other presentation context embed - load ending resource in place of the presentation of the starting resource other - behavior is unconstrained; examine other markup in the link for hints none - behavior is unconstrained
title xsd:string optional
A concise description of the target of a hyperlink in a human-readable form used to provide a plain text description of the link for display during a mouse-over.
to xsd:string optional
type xsd:NMTOKEN arc optional
Identifies the type of Extensible Linking Language (XLink) element the current element is functioning as. The value of this attribute is constrained to certain value(s) by the schema. XLink elements can serve several functions. The function is indicated by the value of the attribute xlink:type. The value of xlink:type can be simple, extended, locator, arc, or resource. In addition to xlink:type, the XLink specification defines several other attributes which are used in various combinations to fulfill the various functions. These attributes are: xlink:href, xlink:arcrole, xlink:role, xlink:show, xlink:actuate, xlink:title, xlink:label, xlink:from, and xlink:to.
Source
<xsd:attributeGroup name="ArcAttributesGroup">
  <xsd:attribute name="type" type="xsd:NMTOKEN" fixed="arc" form="qualified">
    <xsd:annotation>
      <xsd:documentation xml:lang="en">Identifies the type of Extensible Linking Language (XLink) element the current element is functioning as.  The value of this attribute is constrained to certain value(s) by the schema.  XLink elements can serve several functions. The function is indicated by the value of the attribute xlink:type. The value of xlink:type can be simple, extended, locator, arc, or resource. In addition to xlink:type, the XLink specification defines several other attributes which are used in various combinations to fulfill the various functions. These attributes are: xlink:href, xlink:arcrole, xlink:role, xlink:show, xlink:actuate, xlink:title, xlink:label, xlink:from, and xlink:to.</xsd:documentation>
    </xsd:annotation>
  </xsd:attribute>
  <xsd:attribute ref="arcrole" use="optional"/>
  <xsd:attribute ref="title" use="optional"/>
  <xsd:attribute ref="show" use="optional"/>
  <xsd:attribute ref="actuate" use="optional"/>
  <xsd:attribute ref="from" use="optional"/>
  <xsd:attribute ref="to" use="optional"/>
</xsd:attributeGroup>
Schema location IC-XLink.xsd
Attribute Group TitleAttributesGroup
Namespace http://www.w3.org/1999/xlink
Diagram
Diagram IC-XLink_xsd.tmp#id394
Attributes
QName Type Fixed Default Use Annotation
type xsd:NMTOKEN title optional
Identifies the type of Extensible Linking Language (XLink) element the current element is functioning as. The value of this attribute is constrained to certain value(s) by the schema. XLink elements can serve several functions. The function is indicated by the value of the attribute xlink:type. The value of xlink:type can be simple, extended, locator, arc, or resource. In addition to xlink:type, the XLink specification defines several other attributes which are used in various combinations to fulfill the various functions. These attributes are: xlink:href, xlink:arcrole, xlink:role, xlink:show, xlink:actuate, xlink:title, xlink:label, xlink:from, and xlink:to.
Source
<xsd:attributeGroup name="TitleAttributesGroup">
  <xsd:attribute name="type" type="xsd:NMTOKEN" fixed="title" form="qualified">
    <xsd:annotation>
      <xsd:documentation xml:lang="en">Identifies the type of Extensible Linking Language (XLink) element the current element is functioning as.  The value of this attribute is constrained to certain value(s) by the schema.  XLink elements can serve several functions. The function is indicated by the value of the attribute xlink:type. The value of xlink:type can be simple, extended, locator, arc, or resource. In addition to xlink:type, the XLink specification defines several other attributes which are used in various combinations to fulfill the various functions. These attributes are: xlink:href, xlink:arcrole, xlink:role, xlink:show, xlink:actuate, xlink:title, xlink:label, xlink:from, and xlink:to.</xsd:documentation>
    </xsd:annotation>
  </xsd:attribute>
</xsd:attributeGroup>
Schema location IC-XLink.xsd