DSPL 架构

此页面及其关联的子页面介绍了 DSPL XML 架构。 本资料适用于想要理解 语言的低层细节;对大多数用户而言 在 <ph type="x-smartling-placeholder"></ph> 开发者指南应足以创建和修改 DSPL 数据集。

您可以以 XSD 格式下载完整的 XML 架构 在 <ph type="x-smartling-placeholder"></ph> 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
属性
content: 复杂
型号 import*infoproviderattribute*topics{0,1}concepts{0,1}slices{0,1}tables{0,1}
儿童 属性概念导入信息提供程序slice主题
实例
<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/import

命名空间 http://schemas.google.com/dspl/2010
注释 外部数据集的导入指令 - 根据 XML 建模 架构导入指令。为了使用在外部 数据集,则必须使用导入方法引用外部数据集 指令。
图示 图示 dspl9.tmp#id3 dspl9.tmp#id4
属性
content: 复杂
minOccurs: 0
maxOccurs: 无界限
属性
QName 类型 固定 默认 使用 注解
位置 可选 导入文件的定义所在的可选位置 数据集(以网址的形式指定)。如果省略了位置信息,则处理此 DSPL 数据集的系统必须已知导入的数据集。实现说明:Google 数据集 importer 会忽略 location 属性。任何导入的数据集都必须 Google 导入方会预先知悉。
namespace 必填 导入数据集的命名空间,以 URI前缀必须与此命名空间相关联,然后再为其 内容可以被引用。如需了解详情,请参阅 [XML 命名空间] 命名空间和前缀的 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
类型 信息
属性
content: 复杂
minOccurs: 1
型号 namedescription{0,1}url{0,1}
儿童 descriptionnameurl
实例
<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
类型 信息
属性
content: 复杂
型号 namedescription{0,1}url{0,1}
儿童 descriptionnameurl
实例
<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
类型 属性
属性
content: 复杂
minOccurs: 0
maxOccurs: 无界限
型号 info{0,1}type{0,1}、(value* |conceptValue{0,1})
儿童 conceptValueinfotypevalue
实例
<attribute concept="" id="">
  <info>{0,1}</info>
  <type format="" ref="">{0,1}</type>
</attribute>
属性
QName 类型 固定 默认 使用 注解
概念 xs:QName 可选 对与值对应的概念的引用 属性。如果属性指定类型,则该类型 必须与所引用概念的类型相匹配。对 外部概念必须采用以下格式 “prefix:other_concept_id”,其中“前缀”为 用于外部数据集的命名空间的前缀(请参阅 XML) 命名空间)。
id LocalId 可选 概念属性的 ID。此标识符必须是 在概念内是唯一的(在所有属性和属性之间)。如果指定了概念属性,则可以省略 id。在该部分中, 会隐式创建 ID,其值为 引用的概念例如 <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 / 主题

命名空间 http://schemas.google.com/dspl/2010
注释 一个主题的层次结构,用于组织以下主题的内容: 数据集。主题的指定顺序是有意义的,应该 。
图示 图示 dspl9.tmp#id28
属性
content: 复杂
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 / topic

命名空间 http://schemas.google.com/dspl/2010
图示 图示 dspl15.tmp#id32 dspl15.tmp#id34 dspl15.tmp#id30 dspl15.tmp#id31 dspl15.tmp#id29
类型 主题
属性
content: 复杂
maxOccurs: 无界限
型号 信息topic*
儿童 信息主题
实例
<topic id="" parentTopic="">
  <info>{1,1}</info>
  <topic id="" parentTopic="">{0,unbounded}</topic>
</topic>
属性
QName 类型 固定 默认 使用 注解
id ID 必填 数据集中主题的唯一标识符。
parentTopic xs:QName 可选 此主题的父级主题的 ID(如果有)。 无法为内嵌在其他主题中的主题指定 parentTopic。
来源
<xs:element name="topic" type="Topic" maxOccurs="unbounded"/>

元素:dspl / 概念

命名空间 http://schemas.google.com/dspl/2010
注释 此数据集中定义的概念列表。
图示 图示 dspl9.tmp#id36
属性
content: 复杂
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/concept/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
类型 概念
属性
content: 复杂
maxOccurs: 无界限
型号 infotopic*type{0,1}attribute*property*defaultValue{0,1}table{0,1}
儿童 attributedefaultValueinfopropertytabletopic类型
实例
<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 可选 此概念所扩展的概念的唯一标识符。引用的概念可以在同一数据集中定义 或外部(即存储在另一个数据集中)。对外部 API 的引用 概念必须采用如下格式:“prefix:other_concept_id” 其中“prefix”是 外部数据集(请参阅 XML 命名空间)。
id ID 必填 概念的唯一标识符,必须为 在数据集内具有全局唯一性。
来源
<xs:element name="concept" type="Concept" maxOccurs="unbounded"/>

元素:dspl / slice

命名空间 http://schemas.google.com/dspl/2010
注释 此数据集中定义的切片列表。
图示 图示 dspl9.tmp#id69
属性
content: 复杂
minOccurs: 0
型号 slice+
儿童 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
类型 Slice
属性
content: 复杂
maxOccurs: 无界限
型号 info{0,1}维度+指标+表格
儿童 dimensioninfometric表格
实例
<slice id="">
  <info>{0,1}</info>
  <dimension concept="">{1,unbounded}</dimension>
  <metric concept="">{1,unbounded}</metric>
  <table ref="">{1,1}</table>
</slice>
属性
QName 类型 固定 默认 使用 注解
id ID 必填 切片的唯一标识符。
来源
<xs:element name="slice" type="Slice" maxOccurs="unbounded"/>

元素:dspl/表

命名空间 http://schemas.google.com/dspl/2010
注释 此数据集中定义的表的列表。
图示 图示 dspl9.tmp#id87
属性
content: 复杂
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 / table

命名空间 http://schemas.google.com/dspl/2010
图示 图示 dspl10.tmp#id102 dspl10.tmp#id89 dspl10.tmp#id90 dspl10.tmp#id97 dspl10.tmp#id88
类型 表格
属性
content: 复杂
maxOccurs: 无界限
型号 info{0,1} , column+ , data{0,1}
儿童 columndatainfo
实例
<table id="">
  <info>{0,1}</info>
  <column format="" id="" type="">{1,unbounded}</column>
  <data>{0,1}</data>
</table>
属性
QName 类型 固定 默认 使用 注解
id ID 必填 数据集。
来源
<xs:element name="table" type="Table" maxOccurs="unbounded"/>

属性:dspl / import / @namespace

命名空间 没有命名空间
注释 导入数据集的命名空间,以 URI 的形式指定。答 前缀必须与此命名空间相关联,其内容才能 引用。请参阅 [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

命名空间 没有命名空间
注释 导入文件的定义所在的可选位置 数据集(以网址的形式指定)。如果省略位置, 处理此 DSPL 数据集的系统必须已经知道导入的 数据集。实现说明:Google 数据集导入工具会忽略 location 属性。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>

使用 oXygen XML Editor