Platform Explorer / Nuxeo Platform 6.0

Extension point doctype

Documentation

Extension Point to register new document types and facets.

Document types may implement several schemas and extends other document types. You can compare document types with java classes and schemas with java interfaces. Document types may also contains several facets that define a behavior.

The prefetch element defines what fields are synchronously indexed, and are made available in search results listings.

A doctype XML extension may contain several 'doctype' elements. A doctype element may look like this:

    <doctype extends="Document" name="File">
        <schema name="common"/>
        <schema name="file"/>
        <schema name="dublincore"/>
        <schema name="uid"/>
        <facet name="Downloadable"/>
        <facet name="Versionable"/>
        <prefetch>dc:title, dc:modified, uid.uid</prefetch>
    </doctype>

Facets are also defined by this extension point. They can have zero or more schemas:

    <facet name="MyFacet" perDocumentQuery="false"/>
    <facet name="MyFacetWithData">
        <schema name="myschema"/>
        <schema name="otherschema"/>
    </facet>

Queries using ecm:mixinType on facets marked with perDocumentQuery="false" will not match any document where this facet has been added using DocumentModel.addFacet() and does not belong to the document type (this is done for performance reasons).

It's also possible to associate one or more schemas to all proxies:

    <proxies>
        <schema name="myschema"/>
    </proxies>

Contribution Descriptors

  • Class: org.nuxeo.ecm.core.schema.DocumentTypeDescriptor
  • Class: org.nuxeo.ecm.core.schema.FacetDescriptor
  • Class: org.nuxeo.ecm.core.schema.ProxiesDescriptor

Existing Contributions

Contributions are presented in the same order as the registration order on this extension point. This order is displayed before the contribution name, in brackets.

  • nuxeo-platform-user-registration-core-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
        <facet name="UserRegistration">
          <schema name="userinfo"/>
          <schema name="docinfo"/>
          <schema name="registration"/>
        </facet>
    
        <facet name="RegistrationConfiguration">
          <schema name="registrationconfiguration"/>
        </facet>
      </extension>
  • nuxeo-template-rendering-jaxrs-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
    
        <doctype extends="Document" name="WebTemplateSource">
          <schema name="common"/>
          <schema name="note"/>
          <schema name="files"/>
          <schema name="dublincore"/>
          <schema name="uid"/>
          <schema name="documenttemplate"/>
          <facet name="Downloadable"/>
          <facet name="Versionable"/>
          <facet name="Commentable"/>
          <facet name="HasRelatedText"/>
          <facet name="Template"/>
        </doctype>
    
      </extension>
  • nuxeo-platform-collections-core-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
    
        <doctype extends="Document" name="Favorites">
          <facet name="Collection"/>
          <facet name="NotCollectionMember"/>
          <schema name="dublincore"/>
          <schema name="common"/>
        </doctype>
    
      </extension>
  • nuxeo-platform-faceted-search-dm-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
    
        <doctype extends="FacetedSearch" name="FacetedSearchDefault">
          <schema name="faceted_search_default"/>
          <facet name="FacetedSearch"/>
          <facet name="HiddenInNavigation"/>
        </doctype>
    
      </extension>
  • nuxeo-platform-imaging-core-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
        <doctype extends="Folder" name="PictureBook">
          <schema name="picturebook"/>
        </doctype>
      </extension>
  • nuxeo-platform-login-shibboleth-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
    
        <doctype extends="Document" name="shibbGroup">
          <schema name="shibbolethGroup"/>
        </doctype>
      </extension>
  • nuxeo-search-ui-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
    
        <facet name="SearchConfiguration">
          <schema name="search_configuration"/>
        </facet>
    
      </extension>
  • nuxeo-platform-userworkspace-types-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
    
        <doctype extends="Folder" name="UserWorkspacesRoot">
          <facet name="SuperSpace"/>
          <facet name="HiddenInNavigation"/>
        </doctype>
    
      </extension>
  • nuxeo-platform-faceted-search-jsf-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
    
        <!-- the facet HiddenInFacetedSearch is deprecated since 5.7 -->
        <facet name="FacetedSearch"/>
    
        <doctype extends="Document" name="FacetedSearch">
          <schema name="common"/>
          <schema name="dublincore"/>
          <schema name="uid"/>
          <schema name="faceted_search"/>
          <facet name="FacetedSearch"/>
        </doctype>
    
        <!-- Deprecated -->
        <doctype extends="Folder" name="FacetedSavedSearchesFolder"/>
    
      </extension>
  • nuxeo-birt-reporting-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
        <doctype extends="File" name="BirtReportModel">
          <schema name="birtreportmodel"/>
          <facet name="Commentable"/>
          <facet name="Versionable"/>
          <facet name="HiddenInNavigation"/>
        </doctype>
        <doctype extends="Document" name="BirtReport">
          <schema name="common"/>
          <schema name="dublincore"/>
          <schema name="files"/>
          <schema name="birtreport"/>
          <facet name="Commentable"/>
          <facet name="Versionable"/>
        </doctype>
        <doctype extends="Folder" name="BirtReportModelsRoot">
          <facet name="SuperSpace"/>
          <facet name="HiddenInNavigation"/>
        </doctype>
      </extension>
  • nuxeo-core-management-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
    
        <doctype extends="Folder" name="ManagementRoot">
          <schema name="dublincore"/>
          <facet name="HiddenInNavigation"/>
        </doctype>
    
        <doctype extends="Folder" name="AdministrativeStatusContainer">
          <schema name="dublincore"/>
          <facet name="HiddenInNavigation"/>
        </doctype>
    
        <doctype extends="Document" name="AdministrativeStatus">
          <schema name="dublincore"/>
          <schema name="status"/>
          <facet name="HiddenInNavigation"/>
        </doctype>
      </extension>
  • nuxeo-platform-publisher-core-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
        <doctype extends="Relation" name="PublicationRelation">
          <facet name="HiddenInNavigation"/>
        </doctype>
      </extension>
  • nuxeo-platform-relations-web-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
        <doctype extends="Document" name="RelationSearch">
          <schema name="relation_search"/>
        </doctype>
      </extension>
  • nuxeo-webengine-sites-core-contrib-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
        
        <doctype extends="Folder" name="WebSite">
          <schema name="webcontainer"/>
          <!-- the content of webcontainer -->
          <schema name="files"/>
          <facet name="WebView"/>
        </doctype>
        
        <doctype extends="Folder" name="WebPage">
          <schema name="dublincore"/>
          <schema name="webpage"/>
          <schema name="files"/>
           <facet name="Commentable"/>
        </doctype>
        
        <!-- ContextualLink doc type definition  -->
        <doctype extends="Document" name="ContextualLink">
          <schema name="common"/>
          <schema name="dublincore"/>
          <schema name="contextualLink"/>
        </doctype>        
      
      </extension>
  • nuxeo-routing-core-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
    
        <facet name="Routable"/>
        <facet name="DocumentRoute"/>
    
        <!-- @deprecated since 5.9.2 - Use only routes of type 'graph' -->
        <facet name="RouteStep"/>
        <!-- @deprecated since 5.9.2 - Use only routes of type 'graph' -->
        <facet name="StepFolder"/>
    
        <facet name="RoutingTask"/>
    
        <facet name="CommentsInfoHolder">
          <schema name="info_comments"/>
        </facet>
    
        <!-- @deprecated since 5.9.2 - Use only routes of type 'graph' -->
        <facet name="ConditionalStepFolder">
          <schema name="conditional_step_folder"/>
        </facet>
    
        <doctype extends="Folder" name="DocumentRouteInstancesRoot">
          <facet name="HiddenInNavigation"/>
          <facet name="SystemDocument"/>
          <subtypes>
            <type>HiddenFolder</type>
          </subtypes>
        </doctype>
    
        <doctype extends="Folder" name="DocumentRouteModelsRoot">
          <facet name="HiddenInNavigation"/>
          <facet name="SystemDocument"/>
          <subtypes>
            <type>Folder</type>
          </subtypes>
        </doctype>
    
        <doctype append="true" name="Domain">
          <subtypes>
            <type>DocumentRouteInstancesRoot</type>
          </subtypes>
        </doctype>
    
        <doctype extends="StepFolder" name="DocumentRoute">
          <facet name="DocumentRoute"/>
          <facet name="SystemDocument"/>
          <schema name="document_route_instance"/>
          <schema name="document_route_model"/>
          <subtypes>
            <type>StepFolder</type>
            <type>DocumentRouteStep</type>
            <type>ConditionalStepFolder</type>
          </subtypes>
        </doctype>
    
        <!-- @deprecated since 5.9.2 - Use only routes of type 'graph' -->
        <doctype extends="OrderedFolder" name="StepFolder">
          <facet name="HiddenInNavigation"/>
          <facet name="StepFolder"/>
          <facet name="SystemDocument"/>
          <schema name="step_folder"/>
          <subtypes>
            <type>StepFolder</type>
            <type>DocumentRouteStep</type>
            <type>RouteNode</type>
          </subtypes>
        </doctype>
    
        <!-- @deprecated since 5.9.2 - Use only routes of type 'graph' -->
        <doctype extends="Document" name="DocumentRouteStep">
          <schema name="dublincore"/>
          <facet name="RouteStep"/>
          <facet name="Commentable"/>
          <facet name="CommentsInfoHolder"/>
          <facet name="SystemDocument"/>
        </doctype>
    
        <!-- @deprecated since 5.9.2 - Use only routes of type 'graph' -->
        <doctype extends="StepFolder" name="ConditionalStepFolder">
          <facet name="ConditionalStepFolder"/>
          <facet name="SystemDocument"/>
          <subtypes>
            <type>StepFolder</type>
            <type>DocumentRouteStep</type>
          </subtypes>
        </doctype>
    
        <doctype extends="Document" name="RouteNode">
          <facet name="HiddenInNavigation"/>
          <facet name="SystemDocument"/>
          <facet name="NotFulltextIndexable"/>
          <schema name="dublincore"/>
          <schema name="route_node"/>
          <prefetch>rnode:nodeId</prefetch>
        </doctype>
    
      </extension>
  • nuxeo-search-ui-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
    
        <facet name="SavedSearch" perDocumentQuery="false">
          <schema name="common"/>
          <schema name="dublincore"/>
          <schema name="uid"/>
        </facet>
    
        <!-- For default search -->
        <doctype extends="Document" name="DefaultSearch">
          <facet name="SavedSearch"/>
          <facet name="ContentViewDisplay"/>
          <facet name="HiddenInNavigation"/>
          <schema name="default_search"/>
        </doctype>
    
      </extension>
  • nuxeo-apidoc-core-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
    
        <doctype extends="Folder" name="NXDistribution">
          <schema name="common"/>
          <schema name="dublincore"/>
          <schema name="file"/>
          <schema name="nxdistribution"/>
    
          <facet name="Commentable"/>
          <facet name="Versionable"/>
          <facet name="Folderish"/>
        </doctype>
    
    
        <doctype extends="Folder" name="NXBundleGroup">
          <schema name="common"/>
          <schema name="dublincore"/>
          <schema name="file"/>
          <schema name="nxbundlegroup"/>
    
          <facet name="Commentable"/>
          <facet name="Versionable"/>
          <facet name="Folderish"/>
        </doctype>
    
    
        <doctype extends="Folder" name="NXBundle">
          <schema name="common"/>
          <schema name="dublincore"/>
          <schema name="file"/>
          <schema name="nxbundle"/>
          <facet name="Commentable"/>
          <facet name="Versionable"/>
          <facet name="Folderish"/>
        </doctype>
    
        <doctype extends="Folder" name="NXComponent">
          <schema name="common"/>
          <schema name="dublincore"/>
          <schema name="file"/>
          <schema name="nxcomponent"/>
          <facet name="Commentable"/>
          <facet name="Versionable"/>
          <facet name="Folderish"/>
        </doctype>
    
        <doctype extends="Folder" name="NXExtensionPoint">
          <schema name="common"/>
          <schema name="dublincore"/>
          <schema name="file"/>
        <schema name="nxextensionpoint"/>
    
          <facet name="Commentable"/>
          <facet name="Versionable"/>
          <facet name="Folderish"/>
        </doctype>
    
        <doctype extends="Document" name="NXContribution">
          <schema name="common"/>
          <schema name="dublincore"/>
          <schema name="file"/>
          <schema name="nxcontribution"/>
    
          <facet name="Commentable"/>
          <facet name="Versionable"/>
        </doctype>
    
        <doctype extends="Document" name="NXService">
          <schema name="common"/>
          <schema name="dublincore"/>
          <schema name="file"/>
          <schema name="nxservice"/>
    
          <facet name="Commentable"/>
          <facet name="Versionable"/>
        </doctype>
    
        <doctype extends="Document" name="NXSeamComponent">
          <schema name="common"/>
          <schema name="dublincore"/>
          <schema name="file"/>
          <schema name="nxseam"/>
    
          <facet name="Commentable"/>
          <facet name="Versionable"/>
        </doctype>
    
        <doctype extends="Document" name="NXOperation">
          <schema name="common"/>
          <schema name="dublincore"/>
          <schema name="file"/>
    
          <schema name="nxoperation"/>
          <facet name="Commentable"/>
          <facet name="Versionable"/>
        </doctype>
    
        <doctype extends="Document" name="NXDocumentation">
          <schema name="common"/>
          <schema name="dublincore"/>
          <schema name="file"/>
          <schema name="files"/>
          <schema name="nxdocumentation"/>
          <facet name="Commentable"/>
          <facet name="Versionable"/>
        </doctype>
    
      </extension>
  • nuxeo-multi-tenant-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
        <facet name="TenantConfig">
          <schema name="tenantconfig"/>
        </facet>
    
        <doctype extends="Folder" name="Domain">
          <schema name="domain"/>
          <facet name="SuperSpace"/>
          <facet name="UITypesLocalConfiguration"/>
          <facet name="ContentViewLocalConfiguration"/>
          <facet name="SearchConfiguration"/>
          <subtypes>
            <type>WorkspaceRoot</type>
            <type>SectionRoot</type>
            <type>TemplateRoot</type>
          </subtypes>
        </doctype>
      </extension>
  • nuxeo-platform-video-core-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
        <facet name="Video">
          <schema name="file"/>
          <schema name="video"/>
          <schema name="picture"/>
        </facet>
    
        <facet name="HasStoryboard"/>
        <facet name="HasVideoPreview"/>
    
        <doctype extends="Document" name="Video">
          <schema name="common"/>
          <schema name="dublincore"/>
          <schema name="uid"/>
          <schema name="files"/>
          <facet name="Commentable"/>
          <facet name="Versionable"/>
          <facet name="Publishable"/>
          <facet name="Video"/>
          <facet name="HasStoryboard"/>
          <facet name="HasVideoPreview"/>
        </doctype>
      </extension>
  • nuxeo-platform-collections-core-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
    
        <facet name="Collection" perDocumentQuery="false">
          <schema name="collection"/>
        </facet>
    
        <facet name="NotCollectionMember" perDocumentQuery="false"/>
    
        <facet name="CollectionMember">
          <schema name="collectionMember"/>
        </facet>
    
        <doctype extends="Document" name="Collection">
          <facet name="Collection"/>
          <facet name="NotCollectionMember"/>
          <schema name="dublincore"/>
          <schema name="common"/>
        </doctype>
    
        <doctype extends="Folder" name="Collections">
          <facet name="NotCollectionMember"/>
        </doctype>
    
        <doctype append="true" name="WorkspaceRoot">
          <facet name="NotCollectionMember"/>
        </doctype>
    
        <doctype append="true" name="TemplateRoot">
          <facet name="NotCollectionMember"/>
        </doctype>
    
        <doctype append="true" name="SectionRoot">
          <facet name="NotCollectionMember"/>
        </doctype>
    
        <doctype append="true" name="Domain">
          <facet name="NotCollectionMember"/>
        </doctype>
    
        <doctype append="true" name="Root">
          <facet name="NotCollectionMember"/>
        </doctype>
    
      </extension>
  • nuxeo-platform-audio-core-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
        <facet name="Audio">
          <schema name="file"/>
          <schema name="audio"/>
        </facet>
    
        <doctype extends="Document" name="Audio">
          <schema name="common"/>
          <schema name="dublincore"/>
          <schema name="uid"/>
          <facet name="Audio"/>
          <facet name="Commentable"/>
          <facet name="Versionable"/>
          <facet name="Publishable"/>
        </doctype>
      </extension>
  • nuxeo-theme-styling-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
    
        <facet name="ThemeLocalConfiguration">
          <schema name="theme_configuration"/>
        </facet>
    
      </extension>
  • nuxeo-dam-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
    
        <doctype extends="Domain" name="AssetLibrary"/>
    
      </extension>
  • nuxeo-platform-forum-core-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
    
        <doctype extends="Folder" name="Forum">
        </doctype>
    
        <doctype extends="Document" name="Thread">
          <schema name="common"/>
          <schema name="dublincore"/>
          <schema name="thread"/>
          <facet name="Commentable"/>
        </doctype>
    
        <doctype extends="Document" name="Post">
          <schema name="common"/>
          <schema name="post"/>
          <schema name="dublincore"/>
          <facet name="HiddenInNavigation"/>
          <facet name="Commentable"/>
        </doctype>
      </extension>
  • nuxeo-platform-directory-core-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
    
        <facet name="DirectoryLocalConfiguration">
          <schema name="directory_configuration"/>
        </facet>
    
      </extension>
  • nuxeo-platform-imaging-core-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
    
        <facet name="Picture">
          <schema name="file"/>
          <schema name="picture"/>
          <schema name="image_metadata"/>
          <schema name="iptc"/>
        </facet>
    
        <facet name="MultiviewPicture"/>
    
        <doctype extends="Document" name="Picture">
          <schema name="common"/>
          <schema name="uid"/>
          <schema name="dublincore"/>
          <facet name="MultiviewPicture"/>
          <facet name="Picture"/>
          <facet name="Versionable"/>
          <facet name="Publishable"/>
          <facet name="Commentable"/>
          <facet name="HasRelatedText"/>
        </doctype>
    
      </extension>
  • nuxeo-user-profile-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
        <facet name="UserProfile">
          <schema name="userprofile"/>
        </facet>
    
        <doctype extends="Document" name="UserProfile">
          <schema name="common"/>
          <schema name="dublincore"/>
          <facet name="UserProfile"/>
          <facet name="HiddenInNavigation"/>
        </doctype>
    
      </extension>
  • nuxeo-platform-audit-core-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
    
        <doctype extends="Document" name="BasicAuditSearch">
          <schema name="basicauditsearch"/>
          <schema name="dublincore"/>
          <schema name="common"/>
        </doctype>
    
      </extension>
  • nuxeo-thumbnail-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
        <facet name="Thumbnail">
          <schema name="thumbnail"/>
        </facet>
      </extension>
  • nuxeo-template-rendering-core-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
    
        <facet name="Template"/>
    
        <facet name="TemplateBased">
          <schema name="templatesupport"/>
        </facet>
    
        <doctype extends="Document" name="TemplateSource">
          <schema name="common"/>
          <schema name="file"/>
          <schema name="dublincore"/>
          <schema name="uid"/>
          <schema name="documenttemplate"/>
          <facet name="Downloadable"/>
          <facet name="Versionable"/>
          <facet name="Commentable"/>
          <facet name="HasRelatedText"/>
          <facet name="Template"/>
        </doctype>
    
        <doctype extends="File" name="TemplateBasedFile">
          <facet name="TemplateBased"/>
        </doctype>
    
      </extension>
  • nuxeo-platform-mail-types-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
    
        <doctype extends="Document" name="MailMessage">
          <schema name="mail"/>
          <schema name="common"/>
          <schema name="dublincore"/>
          <schema name="uid"/>
          <schema name="files"/>
          <facet name="Commentable"/>
        </doctype>
    
        <doctype extends="Folder" name="MailFolder">
          <schema name="protocol"/>
        </doctype>
    
      </extension>
  • nuxeo-routing-dm-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
    
        <!-- @deprecated since 5.9.2 - Use only routes of type 'graph' -->
        <facet name="TaskStep">
          <schema name="task_step"/>
        </facet>
    
        <!-- @deprecated since 5.9.2 - Use only routes of type 'graph' -->
        <doctype extends="DocumentRouteStep" name="SimpleTask">
          <facet name="RouteStep"/>
          <facet name="TaskStep"/>
          <facet name="Commentable"/>
        </doctype>
    
        <!-- @deprecated since 5.9.2 - Use only routes of type 'graph' -->
        <doctype extends="SimpleTask" name="FollowLifeCycleTransitionTask">
        </doctype>
    
        <!-- @deprecated since 5.9.2 - Use only routes of type 'graph' -->
        <doctype extends="SimpleTask" name="PublishTask">
        </doctype>
    
        <doctype extends="SimpleTask" name="ConditionalTask">
          <schema name="conditional_task_step"/>
        </doctype>
    
    
      </extension>
  • nuxeo-webengine-blogs-core-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
    
        <!-- BlogSite document type definition -->
        <doctype extends="Folder" name="BlogSite">
          <schema name="blog"/>
          <schema name="webcontainer"/>
          <schema name="files"/>
          <facet name="SuperSpace"/>
          <facet name="WebView"/>
        </doctype>
    
        <!-- BlogPost document type definition -->
        <doctype extends="Document" name="BlogPost">
          <schema name="blogpost"/>
          <schema name="webpage"/>
          <schema name="dublincore"/>
          <schema name="common"/>
          <schema name="files"/>
          <facet name="Commentable"/>
        </doctype>
    
      </extension>
  • nuxeo-platform-webapp-base-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
        <doctype extends="File" name="UserInvitation">
          <facet name="UserInvitation"/>
          <facet name="HiddenInNavigation"/>
        </doctype>
    
        <doctype extends="Workspace" name="UserInvitationContainer">
          <facet name="HiddenInNavigation"/>
        </doctype>
      </extension>
  • nuxeo-platform-virtualnavigation-core-contrib-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
    
        <doctype extends="Document" name="QueryNav">
          <schema name="querynav"/>
        </doctype>
    
      </extension>
  • nuxeo-invite-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
        <facet name="UserInvitation">
          <schema name="userinfo"/>
          <schema name="registration"/>
        </facet>
        
        <facet name="RegistrationConfiguration">
          <schema name="registrationconfiguration"/>
        </facet>
      </extension>
  • nuxeo-platform-comment-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
    
        <doctype extends="Folder" name="CommentRoot">
          <facet name="HiddenInNavigation"/>
        </doctype>
    
        <doctype extends="Document" name="Comment">
          <schema name="comment"/>
          <schema name="common"/>
          <schema name="dublincore"/>
          <facet name="HiddenInNavigation"/>
          <prefetch>
            dc:title, dc:modified, comment.author, comment.text,
            comment.creationDate
          </prefetch>
        </doctype>
    
      </extension>
  • nuxeo-drive-core-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
    
        <!-- facet used to store drive metadata on folderish documents that act 
          as synchronization roots -->
        <facet name="DriveSynchronized">
          <schema name="driveroot"/>
        </facet>
    
      </extension>
  • nuxeo-platform-comment-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
        <doctype extends="Relation" name="CommentRelation">
          <facet name="HiddenInNavigation"/>
        </doctype>
      </extension>
  • nuxeo-platform-types-core-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
    
        <facet name="ContentViewLocalConfiguration">
          <schema name="content_view_configuration"/>
        </facet>
    
      </extension>
  • nuxeo-opensocial-spaces-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
        <doctype extends="Folder" name="Space">
          <schema name="common"/>
          <schema name="dublincore"/>
          <schema name="space"/>
          <schema name="file"/>
          <schema name="yuilayout"/>
          <facet name="Folderish"/>
          <facet name="HiddenInNavigation"/>
    
          <subtypes>
            <type>Unit</type>
          </subtypes>
        </doctype>
    
        <doctype extends="Folder" name="Unit">
          <schema name="common"/>
          <schema name="dublincore"/>
          <schema name="yuiunit"/>
          <schema name="file"/>
          <facet name="Folderish"/>
          <facet name="HiddenInNavigation"/>
    
          <subtypes>
            <type>WCPicture</type>
            <type>WCHtml</type>
            <type>WCOpenSocial</type>
          </subtypes>
        </doctype>
    
        <doctype extends="Picture" name="WCPicture">
          <schema name="webcontent"/>
          <schema name="gadget"/>
          <schema name="file"/>
          <schema name="files"/>
          <facet name="Folderish"/>
          <facet name="HiddenInNavigation"/>
        </doctype>
    
        <doctype extends="File" name="WCHtml">
          <schema name="webcontent"/>
    	    <schema name="gadget"/>
          <schema name="wchtml"/>
          <facet name="Folderish"/>
          <facet name="HiddenInNavigation"/>
        </doctype>
    
        <doctype extends="File" name="WCOpenSocial">
          <schema name="webcontent"/>
    	    <schema name="gadget"/>
          <schema name="wcopensocial"/>
          <facet name="Folderish"/>
          <facet name="HiddenInNavigation"/>
        </doctype>
    
    
    
        <!--  We keep it for compatibility reasons : we still
              need to be able to access Gadget types in order to
              make migration possible
               -->
    
        <doctype extends="Folder" name="Gadget">
          <schema name="common"/>
          <schema name="dublincore"/>
          <schema name="gadget"/>
          <schema name="file"/>
          <schema name="files"/>
          <facet name="Folderish"/>
          <facet name="HiddenInNavigation"/>
        </doctype>
      </extension>
  • nuxeo-platform-types-core-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
    
        <facet name="UITypesLocalConfiguration">
          <schema name="ui_types_configuration"/>
        </facet>
    
      </extension>
  • nuxeo-platform-rendition-core-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
    
        <facet name="Rendition">
          <schema name="rendition"/>
        </facet>
    
      </extension>
  • nuxeo-quota-core-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
    
        <facet name="DocumentsCountStatistics">
          <schema name="documents_count_statistics"/>
        </facet>
    
        <facet name="DocumentsSizeStatistics">
          <schema name="documents_size_statistics"/>
        </facet>
        
        <doctype extends="Document" name="quota_heaviest_containers_cv">
         <schema name="quota_heaviest_containers_cv"/>
        </doctype>
    
      </extension>
  • nuxeo-platform-tag-core-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
    
        <doctype extends="Document" name="Tag">
          <schema name="tag"/>
          <schema name="dublincore"/>
          <facet name="HiddenInNavigation"/>
        </doctype>
    
        <doctype extends="Relation" name="Tagging">
          <facet name="HiddenInNavigation"/>
        </doctype>
    
      </extension>
  • nuxeo-localconf-simple-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
    
        <!-- facet to be used on documents handling simple configuration
          (list of parameters key -> value) -->
        <facet name="SimpleConfiguration">
          <schema name="simpleconfiguration"/>
        </facet>
    
      </extension>
  • nuxeo-platform-webapp-types-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
    
        <facet name="ContentViewDisplay">
          <schema name="content_view_display"/>
        </facet>
    
        <doctype extends="Document" name="AdvancedSearch">
          <schema name="advanced_search"/>
        </doctype>
    
      </extension>
  • nuxeo-platform-task-core-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
    
        <facet name="Task">
          <schema name="task"/>
        </facet>
    
        <doctype extends="Folder" name="TaskRoot">
          <facet name="HiddenInNavigation"/>
          <facet name="SuperSpace"/>
        </doctype>
    
        <doctype extends="Document" name="TaskDoc">
          <schema name="common"/>
          <schema name="dublincore"/>
          <facet name="Task"/>
          <facet name="HiddenInNavigation"/>
          <prefetch>task</prefetch>
        </doctype>
    
      </extension>
  • nuxeo-platform-user-registration-web-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
        <doctype extends="File" name="UserRegistration">
          <facet name="UserRegistration"/>
          <facet name="HiddenInNavigation"/>
        </doctype>
    
        <doctype extends="Workspace" name="UserRegistrationContainer">
          <facet name="HiddenInNavigation"/>
        </doctype>
      </extension>
  • nuxeo-platform-relations-core-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
        <doctype extends="Relation" name="DefaultRelation">
          <facet name="HiddenInNavigation"/>
        </doctype>
      </extension>
  • nuxeo-platform-faceted-search-jsf-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
    
        <facet name="FacetedSearchLocalConfiguration">
          <schema name="faceted_search_configuration"/>
        </facet>
    
      </extension>
  • nuxeo-core-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
        <documentation>The core document types</documentation>
    
        <!-- standard facets with no schema -->
        <facet name="Folderish" perDocumentQuery="false"/> <!-- used by system -->
        <facet name="Orderable"/> <!-- used by system -->
        <facet name="Versionable"/> <!-- used by system -->
        <facet name="Downloadable"/>
        <facet name="Publishable"/>
        <facet name="PublishSpace"/>
        <facet name="MasterPublishSpace"/>
        <facet name="Commentable"/>
        <facet name="WebView"/>
        <facet name="SuperSpace"/>
        <facet name="HiddenInNavigation" perDocumentQuery="false"/>
        <facet name="SystemDocument"/>
        <facet name="NotFulltextIndexable"/>
    
        <!-- facet to be used for full-text indexing of related text content
          (e.g. comments, annotations, tags...) -->
        <facet name="HasRelatedText">
          <schema name="relatedtext"/>
        </facet>
    
        <doctype extends="Document" name="Folder">
          <schema name="common"/>
          <schema name="dublincore"/>
          <facet name="Folderish"/>
          <subtypes>
            <type>Folder</type>
            <type>File</type>
            <type>Note</type>
          </subtypes>
        </doctype>
    
        <doctype extends="Folder" name="OrderedFolder">
          <facet name="Orderable"/>
        </doctype>
    
        <doctype extends="Folder" name="HiddenFolder">
          <facet name="HiddenInNavigation"/>
        </doctype>
    
        <doctype extends="Folder" name="Root">
          <subtypes>
            <type>Domain</type>
          </subtypes>
        </doctype>
    
        <doctype name="Relation"> <!-- no extends -->
          <schema name="relation"/>
          <schema name="dublincore"/>
        </doctype>
    
        <doctype extends="Folder" name="Domain">
          <schema name="domain"/>
          <facet name="SuperSpace"/>
          <subtypes>
            <type>WorkspaceRoot</type>
            <type>SectionRoot</type>
            <type>TemplateRoot</type>
          </subtypes>
        </doctype>
    
        <doctype extends="Folder" name="WorkspaceRoot">
          <facet name="SuperSpace"/>
          <subtypes>
            <type>Workspace</type>
          </subtypes>
        </doctype>
    
        <doctype extends="Folder" name="Workspace">
          <!-- for logo -->
          <schema name="file"/>
          <schema name="webcontainer"/>
          <schema name="publishing"/>
          <!-- the content of webcontainer -->
          <schema name="files"/>
          <facet name="SuperSpace"/>
          <subtypes>
            <type>Workspace</type>
            <type>Folder</type>
            <type>File</type>
            <type>Note</type>
          </subtypes>
        </doctype>
    
        <doctype extends="Folder" name="TemplateRoot">
          <facet name="SuperSpace"/>
          <subtypes>
            <type>Workspace</type>
          </subtypes>
        </doctype>
    
        <doctype extends="Folder" name="SectionRoot">
          <facet name="SuperSpace"/>
          <facet name="MasterPublishSpace"/>
          <subtypes>
            <type>Section</type>
          </subtypes>
        </doctype>
    
        <doctype extends="Folder" name="Section">
          <!-- for logo -->
          <schema name="file"/>
          <facet name="SuperSpace"/>
          <facet name="PublishSpace"/>
          <subtypes>
            <type>Section</type>
          </subtypes>
        </doctype>
    
        <doctype extends="Document" name="File">
          <schema name="common"/>
          <schema name="file"/>
          <schema name="dublincore"/>
          <schema name="uid"/>
          <schema name="files"/>
          <facet name="Downloadable"/>
          <facet name="Versionable"/>
          <facet name="Publishable"/>
          <facet name="Commentable"/>
          <facet name="HasRelatedText"/>
        </doctype>
    
        <doctype extends="Document" name="Note">
          <schema name="common"/>
          <schema name="note"/>
          <schema name="uid"/>
          <schema name="files"/>
          <schema name="dublincore"/>
          <facet name="Versionable"/>
          <facet name="Publishable"/>
          <facet name="Commentable"/>
          <facet name="HasRelatedText"/>
        </doctype>
    
      </extension>
  • nuxeo-routing-dashboard-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
        <doctype extends="Document" name="user_open_tasks_cv">
          <facet name="ContentViewDisplay"/>
          <schema name="user_open_tasks_cv"/>
        </doctype>
      </extension>
  • nuxeo-routing-default-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
        <facet name="facet-var_Task2169">
          <schema name="var_Task2169"/>
        </facet>
        <facet name="facet-var_Task21a0">
          <schema name="var_Task21a0"/>
        </facet>
        <facet name="facet-var_Task2225">
          <schema name="var_Task2225"/>
        </facet>
        <facet name="facet-var_Task22b4">
          <schema name="var_Task22b4"/>
        </facet>
        <facet name="facet-var_Task232e">
          <schema name="var_Task232e"/>
        </facet>
        <facet name="facet-var_Task2556">
          <schema name="var_Task2556"/>
        </facet>
        <facet name="facet-var_Task328d">
          <schema name="var_Task328d"/>
        </facet>
        <facet name="facet-var_ParallelDocumentReview">
          <schema name="var_ParallelDocumentReview"/>
        </facet>
        <facet name="facet-var_Task375f">
          <schema name="var_Task375f"/>
        </facet>
        <facet name="facet-var_Task38e">
          <schema name="var_Task38e"/>
        </facet>
        <facet name="facet-var_Task542">
          <schema name="var_Task542"/>
        </facet>
        <facet name="facet-var_Task5c1">
          <schema name="var_Task5c1"/>
        </facet>
        <facet name="facet-var_Task6d8">
          <schema name="var_Task6d8"/>
        </facet>
        <facet name="facet-var_SerialDocumentReview">
          <schema name="var_SerialDocumentReview"/>
        </facet>
      </extension>
  • nuxeo-template-rendering-samples-6.0.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
        <doctype extends="File" name="CustomerReference">
          <schema name="customer_reference"/>
        </doctype>
        <doctype extends="File" name="InterventionStatement">
          <schema name="InterventionStatement"/>
        </doctype>
      </extension>
  • easyshare-1.0.4-593.jar
    <extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">
        <doctype extends="Folder" name="EasyShareFolder">
          <schema name="easysharefolder"/>
          <schema name="uid"/>
        </doctype>
      </extension>