<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2-ppt DokuWiki" -->
<?xml-stylesheet href="/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="/feed.php">
        <title>Documentation Center public:dson_spec</title>
        <description></description>
        <link>/</link>
        <image rdf:resource="/lib/tpl/dazdoccenter/images/favicon.ico" />
       <dc:date>2026-04-19T05:21:13+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="/public/dson_spec/start"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="/lib/tpl/dazdoccenter/images/favicon.ico">
        <title>Documentation Center</title>
        <link>/</link>
        <url>/lib/tpl/dazdoccenter/images/favicon.ico</url>
    </image>
    <item rdf:about="/public/dson_spec/start">
        <dc:format>text/html</dc:format>
        <dc:date>2022-09-22T16:29:25+00:00</dc:date>
        <title>DSON File Format Specification</title>
        <link>/public/dson_spec/start</link>
        <description>
&lt;h1 id=&quot;dson_file_format_specification&quot;&gt;DSON File Format Specification&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;

&lt;p&gt;
Version 0.6.1.0
&lt;/p&gt;
&lt;!-- EDIT1 PLUGIN_WRAP_START [0-] --&gt;&lt;div class=&quot;wrap_center wrap_round wrap_info plugin_wrap&quot; style=&quot;width: 80%;&quot;&gt;
&lt;p&gt;
Daz Studio 4.0.3.x produces files using version 0.5.0.0 of this specification, which is not published. The Daz Studio 4.5.x Release Candidate was the first version available to the general public that produced files which are consistent with this specification. The current version of Daz Studio is annotated &lt;a href=&quot;/public/software/dazstudio/4/start&quot; class=&quot;wikilink1&quot; title=&quot;public:software:dazstudio:4:start&quot;&gt;here&lt;/a&gt;.
&lt;/p&gt;
&lt;/div&gt;&lt;!-- EDIT2 PLUGIN_WRAP_END [0-] --&gt;
&lt;/div&gt;

&lt;h1 id=&quot;introduction&quot;&gt;Introduction&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;

&lt;p&gt;
The &lt;strong&gt;Daz Scene Object Notation&lt;/strong&gt; (&lt;abbr title=&quot;DAZ Scene Object Notation&quot;&gt;DSON&lt;/abbr&gt;) file format is meant to be a lightweight format that captures the creation of a scene as a collection of assets with defined relationships.  This format is not intended to be fully backward compatible with Poser content, although extensive efforts have been made to accommodate features of the Poser file format for features that are common to Poser and Daz Studio.
&lt;/p&gt;

&lt;/div&gt;

&lt;h2 id=&quot;why_another_format&quot;&gt;Why Another Format?&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;
Daz has traditionally delivered content to users in one of three formats: Poser (*.pz3,*.cr2, *pz2, *.pp2, etc.), Daz Studio Native Scene (*.daz), and Daz Script (*.ds, *.dsa, *.dsb, *.dse).  Each of these formats, with the exception of Daz Script, are primarily intended to be content development formats. They support a very low level of granularity and a high level of content functionality.
&lt;/p&gt;

&lt;p&gt;
The Daz Studio Native Scene (*.daz) format is a binary, object-serialization format that provides an extensible storage scheme but can only be reasonably read by Daz Studio itself due to its tight binding to Daz Studio data structures.  It is not intended to be a transport format and would be very difficult for another application to parse and use.
&lt;/p&gt;

&lt;p&gt;
Poser format is text-based, but not based on any modern format standards. Choosing instead to follow loose rules in its syntax which make parsing the file slow and error-prone. This also causes an inability to support &lt;a href=&quot;https://en.wikipedia.org/wiki/Simple_API_for_XML&quot; class=&quot;interwiki iw_wp&quot; target=&quot;_blank&quot; title=&quot;https://en.wikipedia.org/wiki/Simple_API_for_XML&quot; rel=&quot;noopener&quot;&gt;SAX&lt;/a&gt;-style parsing and delay loading of file segments.
&lt;/p&gt;

&lt;p&gt;
The &lt;abbr title=&quot;DAZ Scene Object Notation&quot;&gt;DSON&lt;/abbr&gt; format is capable of delivering content in a form that is designed for legal sharing, is simple to parse due to its &lt;a href=&quot;http://www.json.org&quot; class=&quot;urlextern&quot; target=&quot;_blank&quot; title=&quot;http://www.json.org&quot; rel=&quot;nofollow noopener&quot;&gt;JSON&lt;/a&gt; syntax, supports delayed loading, and can be delivered over the web.
&lt;/p&gt;

&lt;/div&gt;

&lt;h2 id=&quot;format_goals&quot;&gt;Format Goals&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Allow the transfer of intelligent 3D content and provide a format for exchange between applications that implement the Daz Content Engine.&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Lightweight, easy to transfer, and provides a human-readable form.&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Enable a means of legal sharing of scenes by use of an asset referencing scheme rather than inline storage of all elements of a scene.&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Support per-asset addressing and a definition of assets that is granular enough to allow artists to contribute in a variety of disciplines.&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Allow quick determination of what assets a user needs to recreate any segment of a scene.&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;

&lt;h1 id=&quot;topics&quot;&gt;Topics&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;/public/dson_spec/format_description/start&quot; class=&quot;wikilink1&quot; title=&quot;public:dson_spec:format_description:start&quot;&gt;Format Description&lt;/a&gt; - explains, in detail, the various parts needed and how they fit together&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;/public/dson_spec/object_definitions/start&quot; class=&quot;wikilink1&quot; title=&quot;public:dson_spec:object_definitions:start&quot;&gt;Object Definitions&lt;/a&gt; - provides an alphabetical listing of definitions for each data object type&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
</description>
    </item>
</rdf:RDF>
