Extend a schema extending-a-schema
dataSource=“file” and mappingType=“xmlFile”.
The following schemas must not be extended: xtk:entityBackupNew, xtk:entityBackupOriginal, xtk:entityOriginal, xtk:form, xtk:srcSchema, ncm:publishing, nl:monitoring, nms:calendar, nms:remoteTracking, nms:userAgentRules, xtk:builder, xtk:connections, xtk:dbInit, xtk:funcList, xtk:fusion, xtk: jst, xtk:navtree, xtk:queryDef, xtk:resourceMenu, xtk:schema, xtk:scriptContext, xtk:session, xtk:sqlSchema, xtk:strings.
This list is not exhaustive.
There are two methods for extending an existing schema:
-
Modifying the source schema directly.
-
Creating another schema with the same name but a different namespace. The advantage is that you can extend a table without needing to modify the original schema.
The root element of the schema must contain the extendedSchema attribute with the name of the schema to be extended as its value.
An extension schema does not have its own schema: the schema generated from the source schema will be filled in with the fields of the extension schema.
note important IMPORTANT You are not allowed to modify the built-in schemas of the application, but rather the schema extension mechanism. Otherwise, modified schemas will not be updated at the time of future upgrades of the application. This can lead to malfunctions in the use of Adobe Campaign. Example: extension of the nms:recipient schema.
code language-none <srcSchema extendedSchema="nms:recipient" name="recipient" namespace="cus"> <element name="recipient"> <attribute name="code" label="Branch code" type="long"/> </element> </srcSchema>
The nms:recipient extended schema is filled in with the field populated in the extension schema:
code language-none <schema dependingSchemas="cus:recipient" name="recipient" namespace="nms"> ... <attribute belongsTo="cus:recipient" label="Branch code" name="code" sqlname="iCode" type="long"/> ... </schema>
The dependingSchemas attribute on the root element of the schema references the dependencies on the extension schemas.
The belongsTo attribute on the field fills in the schema where it is declared.