مخطط DSPL

توثّق هذه الصفحة وصفحاتها الفرعية المرتبطة مخطط DSPL XML. هذه المادة مخصّصة للمستخدمين المتقدّمين الذين يريدون التعرّف على التفاصيل المنخفضة المستوى للغة؛ لمعظم المستخدمين، يجب أن يكون المحتوى في دليل المطوِّر يجب أن يكون كافيًا للإنشاء والتعديل. مجموعات بيانات DSPL.

يتوفّر مخطط XML الكامل للتنزيل بتنسيق XSD. في موقع رمز DSPL الإلكتروني.

العنصر: dspl

مساحة الاسم http://schemas.google.com/dspl/2010
التعليقات التوضيحية تصف مواصفات DSPL مجموعة بيانات. يتم تحديد مجموعة البيانات من خلال مساحة اسمها. تتألّف مجموعة البيانات من العناصر التالية: - الجداول: بيانات المفاهيم والشرائح المحدّدة في مجموعة البيانات - المفاهيم: التعريفات والهياكل التي يحدّدها المستخدم والتي يتم استخدامها في مجموعة البيانات - الشرائح: مجموعات من السمات والمقاييس المتوفّرة في مجموعة البيانات - المواضيع: التصنيفات الهرمية المستخدَمة لتنظيم مفاهيم مجموعة البيانات
الرسم البياني مخطّط dspl9.tmp#id103 dspl9.tmp#id2 dspl9.tmp#id5 dspl9.tmp#id16 dspl9.tmp#id17 dspl9.tmp#id27 dspl9.tmp#id35 dspl9.tmp#id68 dspl9.tmp#id86
أماكن إقامة
المحتوى: معقد
الطراز import* أو info أو provider السمة* , الموضوعات{0,1} , المفاهيم{0,1} , الشرائح{0,1} , الجداول{0,1}
أطفال السمة والمفاهيم وimport info وprovider وslices الجداول، المواضيع
آلة افتراضية
<dspl targetNamespace="">
  <import location="" namespace="">{0,unbounded}</import>
  <info>{1,1}</info>
  <provider>{1,1}</provider>
  <attribute concept="" id="">{0,unbounded}</attribute>
  <topics>{0,1}</topics>
  <concepts>{0,1}</concepts>
  <slices>{0,1}</slices>
  <tables>{0,1}</tables>
</dspl>
السمات
QName النوع ثابت تلقائي استخدام تعليق توضيحي
targetNamespace xs:anyURI اختياري قد توفر كل مجموعة بيانات مساحة اسم مستهدَفة. الهدف مساحة الاسم هي معرف موارد منتظم (URI) يُعرّف مجموعة البيانات بشكل فريد. لمزيد من المعلومات عن استخدام مساحات الأسماء في XML، يُرجى الاطّلاع على: http://www.w3.org/TR/REC-xml-names/ في حال عدم تحديد مساحة الاسم targetNamespace، سيتم إنشاء مساحة اسم عند استيراد مجموعة البيانات.
المصدر
<xs:element name="dspl">
  <xs:annotation>
    <xs:documentation>A DSPL specification describes a dataset. A dataset is
        identified by its namespace. A dataset is comprised of the
        following elements:

        - Tables: Data for the concepts and slices defined in the
        dataset

        - Concepts: User-specified definitions and structures used in
        the dataset

        - Slices: Combinations of dimensions and metrics present in
        the dataset

        - Topics: Hierarchical labels used to organise the concepts of
        the dataset</xs:documentation>
  </xs:annotation>
  <xs:complexType>
    <xs:sequence>
      <xs:element name="import" minOccurs="0" maxOccurs="unbounded">
        <xs:annotation>
          <xs:documentation>Import directive for external datasets -- modeled after
              the XML Schema import directive.  In order to use
              elements defined in an external dataset, the external
              dataset must be referenced using an import directive.</xs:documentation>
        </xs:annotation>
        <xs:complexType>
          <xs:attribute name="namespace" use="required">
            <xs:annotation>
              <xs:documentation>The namespace of the imported dataset, specified as
                  a URI. A prefix must be associated with this
                  namespace before its contents can be referenced. See
                  [XML Namespaces] for more information about the use
                  of namespaces and prefixes in XML.</xs:documentation>
            </xs:annotation>
          </xs:attribute>
          <xs:attribute name="location" use="optional">
            <xs:annotation>
              <xs:documentation>An optional location where the definition of the
                  imported dataset can be found, specified as a
                  URL. If the location is omitted, the system
                  processing this DSPL dataset must already know the
                  imported dataset.

                  Implementation note: The Google dataset importer
                  ignores the location attribute. Any imported dataset
                  must be known by the Google importer beforehand.</xs:documentation>
            </xs:annotation>
          </xs:attribute>
        </xs:complexType>
      </xs:element>
      <xs:element name="info" type="Info" minOccurs="1">
        <xs:annotation>
          <xs:documentation>General information about the dataset.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="provider" type="Info">
        <xs:annotation>
          <xs:documentation>General information about the dataset provider.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="attribute" type="Attribute" minOccurs="0" maxOccurs="unbounded">
        <xs:annotation>
          <xs:documentation>Attribute associated with the dataset.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="topics" minOccurs="0">
        <xs:annotation>
          <xs:documentation>A hierarchy of topics used to organize the contents of
              the dataset. The order in which topics are given is
              meaningful and should be respected by visualizations
              that displays these topics.</xs:documentation>
        </xs:annotation>
        <xs:complexType>
          <xs:sequence>
            <xs:element name="topic" type="Topic" maxOccurs="unbounded"/>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="concepts" minOccurs="0">
        <xs:annotation>
          <xs:documentation>A list of concepts defined in this dataset.</xs:documentation>
        </xs:annotation>
        <xs:complexType>
          <xs:sequence>
            <xs:element name="concept" type="Concept" maxOccurs="unbounded"/>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="slices" minOccurs="0">
        <xs:annotation>
          <xs:documentation>A list of slices defined in this dataset.</xs:documentation>
        </xs:annotation>
        <xs:complexType>
          <xs:sequence>
            <xs:element name="slice" type="Slice" maxOccurs="unbounded"/>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="tables" minOccurs="0">
        <xs:annotation>
          <xs:documentation>A list of tables defined in this dataset.</xs:documentation>
        </xs:annotation>
        <xs:complexType>
          <xs:sequence>
            <xs:element name="table" type="Table" maxOccurs="unbounded"/>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="targetNamespace" type="xs:anyURI" use="optional">
      <xs:annotation>
        <xs:documentation>Each dataset may provide a target namespace. The
              target namespace is a URI that uniquely identifies the
              dataset. For more information about the use of namespaces in XML,
              see:

              http://www.w3.org/TR/REC-xml-names/

              If no targetNamespace is provided,  then a namespace will be
              generated when the dataset is imported.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>
</xs:element>

العنصر: dspl / استيراد

مساحة الاسم http://schemas.google.com/dspl/2010
التعليقات التوضيحية توجيه الاستيراد لمجموعات البيانات الخارجية -- المصممة على طراز XML توجيه استيراد المخطط لاستخدام العناصر المحدّدة في مجموعة بيانات خارجية، يجب الإشارة إلى مجموعة البيانات الخارجية باستخدام توجيه الاستيراد.
المخطط البياني المخطط البياني dspl9.tmp#id3 dspl9.tmp#id4
أماكن إقامة
المحتوى: معقد
minOccurs: 0
maxOccurs: غير محدود
السمات
QName النوع ثابت تلقائي استخدام تعليق توضيحي
الموقع الجغرافي اختياري موقع اختياري يكون فيه تعريف ملفات تعريف الارتباط التي تم استيرادها مجموعة البيانات المحددة كعنوان URL. إذا كان الموقع إلا أن النظام الذي يعالج مجموعة بيانات DSPL هذه يجب أن يعرف مجموعة البيانات المستوردة. ملاحظة حول التنفيذ: يتجاهل مستورِد مجموعة بيانات Google سمة الموقع الجغرافي. يجب أن تكون أي مجموعة بيانات مستوردة أن يكون مستوردًا في Google معروفًا مسبقًا.
مساحة الاسم مطلوب مساحة الاسم لمجموعة البيانات التي تم استيرادها، والمحددة معرّف الموارد المنتظم (URI). يجب ربط بادئة بمساحة الاسم هذه قبل أن تتمكّن من الإشارة إلى محتوياتها. يمكنك الاطّلاع على [XML Namespaces] للحصول على مزيد من المعلومات. معلومات حول استخدام مساحات الاسم والبادئات في XML.
المصدر
<xs:element name="import" minOccurs="0" maxOccurs="unbounded">
  <xs:annotation>
    <xs:documentation>Import directive for external datasets -- modeled after
              the XML Schema import directive.  In order to use
              elements defined in an external dataset, the external
              dataset must be referenced using an import directive.</xs:documentation>
  </xs:annotation>
  <xs:complexType>
    <xs:attribute name="namespace" use="required">
      <xs:annotation>
        <xs:documentation>The namespace of the imported dataset, specified as
                  a URI. A prefix must be associated with this
                  namespace before its contents can be referenced. See
                  [XML Namespaces] for more information about the use
                  of namespaces and prefixes in XML.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="location" use="optional">
      <xs:annotation>
        <xs:documentation>An optional location where the definition of the
                  imported dataset can be found, specified as a
                  URL. If the location is omitted, the system
                  processing this DSPL dataset must already know the
                  imported dataset.

                  Implementation note: The Google dataset importer
                  ignores the location attribute. Any imported dataset
                  must be known by the Google importer beforehand.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>
</xs:element>

العنصر: dspl / info

مساحة الاسم http://schemas.google.com/dspl/2010
التعليقات التوضيحية معلومات عامة عن مجموعة البيانات:
المخطط البياني الرسم البياني dspl4.tmp#id7 dspl4.tmp#id14 dspl4.tmp#id15 dspl4.tmp#id6
النوع معلومات
أماكن إقامة
المحتوى: معقد
minOccurs: 1
الطراز name ، description{0,1} ، url{0,1}
أطفال description وname وurl
آلة افتراضية
<info>
  <name>{1,1}</name>
  <description>{0,1}</description>
  <url>{0,1}</url>
</info>
المصدر
<xs:element name="info" type="Info" minOccurs="1">
  <xs:annotation>
    <xs:documentation>General information about the dataset.</xs:documentation>
  </xs:annotation>
</xs:element>

العنصر: dspl / provider

مساحة الاسم http://schemas.google.com/dspl/2010
التعليقات التوضيحية معلومات عامة عن موفِّر مجموعة البيانات
مخطّط الرسم البياني dspl4.tmp#id7 dspl4.tmp#id14 dspl4.tmp#id15 dspl4.tmp#id6
النوع معلومات
أماكن إقامة
المحتوى: معقد
الطراز name ، description{0,1} ، url{0,1}
أطفال description وname وurl
آلة افتراضية
<provider>
  <name>{1,1}</name>
  <description>{0,1}</description>
  <url>{0,1}</url>
</provider>
المصدر
<xs:element name="provider" type="Info">
  <xs:annotation>
    <xs:documentation>General information about the dataset provider.</xs:documentation>
  </xs:annotation>
</xs:element>

العنصر: dspl / السمة

مساحة الاسم http://schemas.google.com/dspl/2010
التعليقات التوضيحية السمة المرتبطة بمجموعة البيانات:
المخطط البياني المخطط البياني dspl14.tmp#id24 dspl14.tmp#id26 dspl14.tmp#id19 dspl14.tmp#id20 dspl0.tmp#id10 dspl0.tmp#id12 dspl0.tmp#id9 dspl14.tmp#id18
النوع السمة
أماكن إقامة
المحتوى: معقد
minOccurs: 0
maxOccurs: غير محدود
الطراز info{0,1} , type{0,1} , (value* | conceptValue{0,1})
أطفال conceptValue وinfo وtype القيمة
آلة افتراضية
<attribute concept="" id="">
  <info>{0,1}</info>
  <type format="" ref="">{0,1}</type>
</attribute>
السمات
QName النوع ثابت تلقائي استخدام تعليق توضيحي
concept xs:QName اختياري إشارة إلى مفهوم يتوافق مع القيم للسمة. إذا كانت السمة تحدد نوعًا، يتم تحديد النوع يجب أن يتطابق مع نوع المفهوم المُشار إليه. مرجع إلى المفهوم الخارجي يجب أن يكون شكل "prefix:other_concept_id"، حيث "prefix" CANNOT TRANSLATE البادئة المستخدمة في مساحة الاسم لمجموعة البيانات الخارجية (راجع XML ومساحات الاسم).
المعرِّف LocalId اختياري معرّف سمة المفهوم: يجب أن يكون هذا المعرّف فريدًا ضمن المفهوم (على مستوى السمات والخصائص). تشير رسالة الأشكال البيانية يمكن حذف المعرّف إذا تم تحديد سمة المفهوم. في ذلك، الحالة، المعرف هو عبارة عن ترابط يتم إنشاؤه بقيمة الاسم المحلي المفهوم المشار إليه. على سبيل المثال، <attribute concept=&quot;unit:currency&quot;/&gt; تعادل <attribute id="currency" concept=&quot;unit:currency&quot;/&gt;
المصدر
<xs:element name="attribute" type="Attribute" minOccurs="0" maxOccurs="unbounded">
  <xs:annotation>
    <xs:documentation>Attribute associated with the dataset.</xs:documentation>
  </xs:annotation>
</xs:element>

العنصر: dspl / Topics

مساحة الاسم http://schemas.google.com/dspl/2010
التعليقات التوضيحية تسلسل هرمي للمواضيع يُستخدم لتنظيم محتوى مجموعة البيانات الأصلية. الترتيب الذي تعطى به المواضيع مهم ويجب أيضًا من خلال العروض المرئية التي تعرض هذه المواضيع
المخطط البياني المخطط البياني dspl9.tmp#id28
أماكن إقامة
المحتوى: معقد
minOccurs: 0
الطراز topic+
أطفال الموضوع
آلة افتراضية
<topics>
  <topic id="" parentTopic="">{1,unbounded}</topic>
</topics>
المصدر
<xs:element name="topics" minOccurs="0">
  <xs:annotation>
    <xs:documentation>A hierarchy of topics used to organize the contents of
              the dataset. The order in which topics are given is
              meaningful and should be respected by visualizations
              that displays these topics.</xs:documentation>
  </xs:annotation>
  <xs:complexType>
    <xs:sequence>
      <xs:element name="topic" type="Topic" maxOccurs="unbounded"/>
    </xs:sequence>
  </xs:complexType>
</xs:element>

العنصر: dspl / topics / موضوع

مساحة الاسم http://schemas.google.com/dspl/2010
المخطط البياني المخطط البياني dspl15.tmp#id32 dspl15.tmp#id34 dspl15.tmp#id30 dspl15.tmp#id31 dspl15.tmp#id29
النوع Topic
أماكن إقامة
المحتوى: معقد
maxOccurs: غير محدود
الطراز info , topic*
أطفال info وtopic
آلة افتراضية
<topic id="" parentTopic="">
  <info>{1,1}</info>
  <topic id="" parentTopic="">{0,unbounded}</topic>
</topic>
السمات
QName النوع ثابت تلقائي استخدام تعليق توضيحي
المعرِّف رقم التعريف مطلوب المعرف الفريد للموضوع في مجموعة البيانات
parentTopic xs:QName اختياري معرّف الموضوع الرئيسي لهذا الموضوع، إذا كان متوفرًا. لا يمكن تحديد parentTopic للمواضيع التي تم تضمينها داخل مواضيع أخرى
المصدر
<xs:element name="topic" type="Topic" maxOccurs="unbounded"/>

العنصر: dspl / المفاهيم

مساحة الاسم http://schemas.google.com/dspl/2010
التعليقات التوضيحية قائمة بالمفاهيم المحدّدة في مجموعة البيانات هذه
الرسم البياني المخطط البياني dspl9.tmp#id36
أماكن إقامة
المحتوى: معقد
minOccurs: 0
الطراز مفهوم+
أطفال مفهوم
آلة افتراضية
<concepts>
  <concept extends="" id="">{1,unbounded}</concept>
</concepts>
المصدر
<xs:element name="concepts" minOccurs="0">
  <xs:annotation>
    <xs:documentation>A list of concepts defined in this dataset.</xs:documentation>
  </xs:annotation>
  <xs:complexType>
    <xs:sequence>
      <xs:element name="concept" type="Concept" maxOccurs="unbounded"/>
    </xs:sequence>
  </xs:complexType>
</xs:element>

العنصر: dspl / concepts / concept

مساحة الاسم http://schemas.google.com/dspl/2010
المخطط البياني المخطط البياني dspl6.tmp#id66 dspl6.tmp#id67 dspl6.tmp#id38 dspl6.tmp#id43 dspl6.tmp#id45 dspl6.tmp#id47 dspl6.tmp#id48 dspl6.tmp#id57 dspl6.tmp#id58 dspl6.tmp#id37
النوع المفهوم
أماكن إقامة
المحتوى: معقد
maxOccurs: غير محدود
الطراز info ، topic* ، type{0,1} ، attribute* , property* , defaultValue{0,1} , table{0,1}
أطفال attribute وdefaultValue وinfo property وtable وtopic type
آلة افتراضية
<concept extends="" id="">
  <info>{1,1}</info>
  <topic ref="">{0,unbounded}</topic>
  <type ref="">{0,1}</type>
  <attribute concept="" id="">{0,unbounded}</attribute>
  <property concept="" id="" isMapping="false" isParent="false">{0,unbounded}</property>
  <defaultValue>{0,1}</defaultValue>
  <table ref="">{0,1}</table>
</concept>
السمات
QName النوع ثابت تلقائي استخدام تعليق توضيحي
يمتد xs:QName اختياري المعرّف الفريد لمفهوم يمتد إليه هذا المفهوم يمكن تعريف المفهوم المُشار إليه في مجموعة البيانات نفسها. أو خارجيًا، أي في مجموعة بيانات أخرى. يجب أن يكون التنسيق المُستخدَم للإشارة إلى مفهوم خارجي على النحو التالي: "البادئة:معرّف_المفهوم_الآخر"، حيث تكون "البادئة" هي البادئة المستخدَمة لمساحة اسم المجموعة الخارجية من البيانات (راجِع مساحات أسماء XML).
المعرِّف المعرّف مطلوب المعرف الفريد للمفهوم، والذي يجب فريدة عالميًا ضمن مجموعة البيانات
المصدر
<xs:element name="concept" type="Concept" maxOccurs="unbounded"/>

العنصر: dspl / الشرائح

مساحة الاسم http://schemas.google.com/dspl/2010
التعليقات التوضيحية قائمة بالشرائح المحددة في مجموعة البيانات هذه.
الرسم البياني المخطط البياني dspl9.tmp#id69
أماكن إقامة
المحتوى: معقد
minOccurs: 0
الطراز slice+
أطفال شريحة
آلة افتراضية
<slices>
  <slice id="">{1,unbounded}</slice>
</slices>
المصدر
<xs:element name="slices" minOccurs="0">
  <xs:annotation>
    <xs:documentation>A list of slices defined in this dataset.</xs:documentation>
  </xs:annotation>
  <xs:complexType>
    <xs:sequence>
      <xs:element name="slice" type="Slice" maxOccurs="unbounded"/>
    </xs:sequence>
  </xs:complexType>
</xs:element>

العنصر: dspl / slices / slice

مساحة الاسم http://schemas.google.com/dspl/2010
المخطط البياني المخطط البياني dspl2.tmp#id85 dspl2.tmp#id71 dspl2.tmp#id72 dspl2.tmp#id75 dspl2.tmp#id76 dspl2.tmp#id70
النوع الشريحة
أماكن إقامة
المحتوى: معقد
maxOccurs: غير محدود
الطراز info{0,1} وdimension+ وmetric+ ، جدول
أطفال السمة والمعلومات والمقياس جدول
آلة افتراضية
<slice id="">
  <info>{0,1}</info>
  <dimension concept="">{1,unbounded}</dimension>
  <metric concept="">{1,unbounded}</metric>
  <table ref="">{1,1}</table>
</slice>
السمات
QName النوع ثابت تلقائي استخدام تعليق توضيحي
المعرِّف رقم التعريف مطلوب المعرّف الفريد للقسم
المصدر
<xs:element name="slice" type="Slice" maxOccurs="unbounded"/>

العنصر: dspl / الجداول

مساحة الاسم http://schemas.google.com/dspl/2010
التعليقات التوضيحية قائمة الجداول المحدّدة في مجموعة البيانات هذه
المخطط البياني المخطط البياني dspl9.tmp#id87
أماكن إقامة
المحتوى: معقد
minOccurs: 0
الطراز table+
أطفال جدول
آلة افتراضية
<tables>
  <table id="">{1,unbounded}</table>
</tables>
المصدر
<xs:element name="tables" minOccurs="0">
  <xs:annotation>
    <xs:documentation>A list of tables defined in this dataset.</xs:documentation>
  </xs:annotation>
  <xs:complexType>
    <xs:sequence>
      <xs:element name="table" type="Table" maxOccurs="unbounded"/>
    </xs:sequence>
  </xs:complexType>
</xs:element>

العنصر: dspl / tables / جدول

مساحة الاسم http://schemas.google.com/dspl/2010
المخطط البياني الرسم البياني dspl10.tmp#id102 dspl10.tmp#id89 dspl10.tmp#id90 dspl10.tmp#id97 dspl10.tmp#id88
النوع جدول
أماكن إقامة
المحتوى: معقد
maxOccurs: غير محدود
الطراز info{0,1} , column+ , data{0,1}
أطفال العمود، data، info
آلة افتراضية
<table id="">
  <info>{0,1}</info>
  <column format="" id="" type="">{1,unbounded}</column>
  <data>{0,1}</data>
</table>
السمات
QName النوع ثابت تلقائي استخدام تعليق توضيحي
المعرِّف رقم التعريف مطلوب المعرّف الفريد للجدول في مجموعة البيانات
المصدر
<xs:element name="table" type="Table" maxOccurs="unbounded"/>

السمة: dspl / import / @namespace

مساحة الاسم لا توجد مساحة اسم
التعليقات التوضيحية مساحة الاسم لمجموعة البيانات التي تم استيرادها، والمحددة كمعرّف موارد منتظم (URI). يجب ربط بادئة بمساحة الاسم هذه قبل أن تتمكّن من الإشارة إلى محتوياتها. يمكنك الاطلاع على [XML Namespaces] للحصول على مزيد من المعلومات حول استخدام ومساحات الاسم والبادئات في ملف XML.
أماكن إقامة
استخدام: مطلوب
قيد الاستخدام بواسطة
العنصر dspl/import
المصدر
<xs:attribute name="namespace" use="required">
  <xs:annotation>
    <xs:documentation>The namespace of the imported dataset, specified as
                  a URI. A prefix must be associated with this
                  namespace before its contents can be referenced. See
                  [XML Namespaces] for more information about the use
                  of namespaces and prefixes in XML.</xs:documentation>
  </xs:annotation>
</xs:attribute>

السمة: dspl / import / @location

مساحة الاسم لا توجد مساحة اسم
التعليقات التوضيحية موقع اختياري يكون فيه تعريف ملفات تعريف الارتباط التي تم استيرادها مجموعة البيانات المحددة كعنوان URL. في حال إسقاط الموقع، سيتم لمعالجة مجموعة بيانات DSPL هذه يجب أن تعرف بالفعل مجموعة البيانات الأصلية. ملاحظة حول التنفيذ: يتجاهل مستورِد مجموعة بيانات Google سمة الموقع الجغرافي. يجب أن تكون Google على علم بأي مجموعة بيانات تم استيرادها المستورد مسبقًا
أماكن إقامة
استخدام: اختياري
قيد الاستخدام بواسطة
العنصر dspl/import
المصدر
<xs:attribute name="location" use="optional">
  <xs:annotation>
    <xs:documentation>An optional location where the definition of the
                  imported dataset can be found, specified as a
                  URL. If the location is omitted, the system
                  processing this DSPL dataset must already know the
                  imported dataset.

                  Implementation note: The Google dataset importer
                  ignores the location attribute. Any imported dataset
                  must be known by the Google importer beforehand.</xs:documentation>
  </xs:annotation>
</xs:attribute>

السمة: dspl / @targetNamespace

مساحة الاسم لا توجد مساحة اسم
التعليقات التوضيحية قد توفر كل مجموعة بيانات مساحة اسم مستهدَفة. الهدف مساحة الاسم هي معرف موارد منتظم (URI) يُعرّف مجموعة البيانات بشكل فريد. لمزيد من المعلومات، لمزيد من المعلومات حول استخدام مساحات الاسم في XML، راجع: http://www.w3.org/TR/REC-xml-names/ إذا لم يتم تقديم targetNamespace، فسيتم إنشاء مساحة اسم عندما تكون مجموعة البيانات التي تم استيرادها
النوع xs:anyURI
أماكن إقامة
استخدام: اختياري
قيد الاستخدام بواسطة
العنصر dspl
المصدر
<xs:attribute name="targetNamespace" type="xs:anyURI" use="optional">
  <xs:annotation>
    <xs:documentation>Each dataset may provide a target namespace. The
              target namespace is a URI that uniquely identifies the
              dataset. For more information about the use of namespaces in XML,
              see:

              http://www.w3.org/TR/REC-xml-names/

              If no targetNamespace is provided,  then a namespace will be
              generated when the dataset is imported.</xs:documentation>
  </xs:annotation>
</xs:attribute>

تم إنشاؤه باستخدام محرِّر XML oXygen: