<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ru">
		<id>http://wbex.ru/index.php?action=history&amp;feed=atom&amp;title=XML_Tutorial%2FXML_Schema%2FAnnotation</id>
		<title>XML Tutorial/XML Schema/Annotation - История изменений</title>
		<link rel="self" type="application/atom+xml" href="http://wbex.ru/index.php?action=history&amp;feed=atom&amp;title=XML_Tutorial%2FXML_Schema%2FAnnotation"/>
		<link rel="alternate" type="text/html" href="http://wbex.ru/index.php?title=XML_Tutorial/XML_Schema/Annotation&amp;action=history"/>
		<updated>2026-04-04T15:49:07Z</updated>
		<subtitle>История изменений этой страницы в вики</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>http://wbex.ru/index.php?title=XML_Tutorial/XML_Schema/Annotation&amp;diff=10647&amp;oldid=prev</id>
		<title>Admin: 1 версия</title>
		<link rel="alternate" type="text/html" href="http://wbex.ru/index.php?title=XML_Tutorial/XML_Schema/Annotation&amp;diff=10647&amp;oldid=prev"/>
				<updated>2010-05-26T08:26:46Z</updated>
		
		<summary type="html">&lt;p&gt;1 версия&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr style=&quot;vertical-align: top;&quot; lang=&quot;ru&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;← Предыдущая&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;Версия 08:26, 26 мая 2010&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; style=&quot;text-align: center;&quot; lang=&quot;ru&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(нет различий)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Admin</name></author>	</entry>

	<entry>
		<id>http://wbex.ru/index.php?title=XML_Tutorial/XML_Schema/Annotation&amp;diff=10646&amp;oldid=prev</id>
		<title> в 18:22, 25 мая 2010</title>
		<link rel="alternate" type="text/html" href="http://wbex.ru/index.php?title=XML_Tutorial/XML_Schema/Annotation&amp;diff=10646&amp;oldid=prev"/>
				<updated>2010-05-25T18:22:32Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Новая страница&lt;/b&gt;&lt;/p&gt;&lt;div&gt;== Annotating Schemas: add information about your schema or its elements.==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;!-- start source code --&amp;gt;&lt;br /&gt;
   &lt;br /&gt;
    &amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
You can create annotations right after the xsd:schema element to document the entire schema.&lt;br /&gt;
&amp;lt;annotation id=&amp;quot;ID&amp;quot;&lt;br /&gt;
            {any attributes with non-schema namespace}&amp;gt;&lt;br /&gt;
  Content: (appInfo | documentation)*&lt;br /&gt;
&amp;lt;/annotation&amp;gt;&lt;br /&gt;
&lt;br /&gt;
File: Schema.xsd&lt;br /&gt;
&amp;lt;xsd:schema xmlns:xsd=&amp;quot;http://www.w3.org/2000/10/XMLSchema&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;xsd:annotation&amp;gt;&lt;br /&gt;
    &amp;lt;xsd:documentation&amp;gt;&lt;br /&gt;
      test&lt;br /&gt;
    &amp;lt;/xsd:documentation&amp;gt;&lt;br /&gt;
  &amp;lt;/xsd:annotation&amp;gt;&lt;br /&gt;
&amp;lt;/xsd:schema&amp;gt;&amp;lt;/source&amp;gt;&lt;br /&gt;
    &lt;br /&gt;
   &lt;br /&gt;
&lt;br /&gt;
== Annotations for element tags==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;!-- start source code --&amp;gt;&lt;br /&gt;
   &lt;br /&gt;
    &amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?xml version = &amp;quot;1.0&amp;quot; ?&amp;gt;&lt;br /&gt;
&amp;lt;xs:schema xmlns:xs = &amp;quot;http://www.w3.org/2001/XMLSchema&amp;quot;&amp;gt;&lt;br /&gt;
   &amp;lt;xs:annotation&amp;gt;&lt;br /&gt;
      &amp;lt;xs:documentation&amp;gt;&lt;br /&gt;
         Schema for customer name information.&lt;br /&gt;
      &amp;lt;/xs:documentation&amp;gt;&lt;br /&gt;
   &amp;lt;/xs:annotation&amp;gt;&lt;br /&gt;
   &amp;lt;xs:element name = &amp;quot;Customer&amp;quot;&amp;gt;&lt;br /&gt;
       &amp;lt;xs:annotation&amp;gt;&lt;br /&gt;
          &amp;lt;xs:documentation&amp;gt;&lt;br /&gt;
             MiddleInitial is optional &lt;br /&gt;
          &amp;lt;/xs:documentation&amp;gt;&lt;br /&gt;
       &amp;lt;/xs:annotation&amp;gt;&lt;br /&gt;
      &amp;lt;xs:complexType&amp;gt;&lt;br /&gt;
         &amp;lt;xs:group ref = &amp;quot;NameGroup&amp;quot; /&amp;gt;&lt;br /&gt;
      &amp;lt;/xs:complexType&amp;gt;&lt;br /&gt;
   &amp;lt;/xs:element&amp;gt;&lt;br /&gt;
   &amp;lt;xs:group name = &amp;quot;NameGroup&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;xs:sequence&amp;gt;&lt;br /&gt;
         &amp;lt;xs:element name = &amp;quot;FirstName&amp;quot; type = &amp;quot;xs:string&amp;quot; /&amp;gt;&lt;br /&gt;
         &amp;lt;xs:element name = &amp;quot;MiddleInitial&amp;quot; type = &amp;quot;xs:string&amp;quot; /&amp;gt;&lt;br /&gt;
         &amp;lt;xs:element name = &amp;quot;LastName&amp;quot; type = &amp;quot;xs:string&amp;quot; /&amp;gt;&lt;br /&gt;
      &amp;lt;/xs:sequence&amp;gt;&lt;br /&gt;
   &amp;lt;/xs:group&amp;gt;&lt;br /&gt;
&amp;lt;/xs:schema&amp;gt;&amp;lt;/source&amp;gt;&lt;br /&gt;
    &lt;br /&gt;
   &lt;br /&gt;
&lt;br /&gt;
== Annotations provides documentation information, as well as additional application information==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;!-- start source code --&amp;gt;&lt;br /&gt;
   &lt;br /&gt;
    &amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;annotation id=&amp;quot;unique identifier&amp;quot;&amp;gt; &lt;br /&gt;
The &amp;lt;annotation&amp;gt; declaration can appear as a child of most XML Schema declarations. &lt;br /&gt;
The &amp;lt;annotation&amp;gt; declaration adds two forms of information to your declarations:&lt;br /&gt;
Application information &lt;br /&gt;
Documentation information &lt;br /&gt;
Each &amp;lt;annotation&amp;gt; declaration may contain the elements &amp;lt;appinfo&amp;gt; and &amp;lt;documentation&amp;gt;. &lt;br /&gt;
These elements may contain any XML content from any namespace. &lt;br /&gt;
Each of these elements may also contain a source attribute. &lt;br /&gt;
The source attribute is used to refer to an external file that may be used for application information or documentation information. &lt;br /&gt;
Annotations usually include &amp;lt;documentation&amp;gt; declarations to describe the features, or uses, of a particular declaration within the XML Schema.&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
			</entry>

	</feed>