これに関する有用なドキュメントを見つけるのは本当に難しいと思います。基本的に、屋外コンテンツ モデルで定義された 2 つのカスタム タイプ 'Concept' と 'ConceptScheme' があります。コンセプト スキームは、多くの子コンセプトに関連付けられています。このような:
<type name="ancoat:conceptScheme">
<title>Concept Scheme</title>
<parent>ancoat:ddiObject</parent>
<associations>
<child-association name="ancoat:categories">
<source>
<mandatory>true</mandatory>
<many>false</many>
</source>
<target>
<class>ancoat:concept</class>
<mandatory>false</mandatory>
<many>true</many>
</target>
<duplicate>false</duplicate>
<propagateTimestamps>true</propagateTimestamps>
</child-association>
</associations>
<mandatory-aspects>
<aspect>ancoat:describedObject</aspect>
</mandatory-aspects>
</type>
コンセプト ノードを作成するための Web スクリプトと、コンセプト スキームを作成するための Web スクリプトがあります。ここで、これらの各オブジェクトへの参照を取得し、それらの間の関連付けを作成する Web スクリプトを作成したいと考えています。
それ、どうやったら出来るの?関数 Node.createAssociation を見つけましたが、それを使用した例が見つかりません。