Status attribute specialization
Posted: Thu Oct 22, 2020 4:28 pm
Hi,
I would like to manage a "draft" status on topics to have the possibility to filter its.
So, I would like to add a new enumeration value to the @status attribute: "draft".
I tried to do that with a subject scheme map, but I have the following message (with or without subject scheme map):
How can I add a new value allowed in @status attribute?
Is it possible to do that with a specialization? If yes, how can I do that?
Thanks.
I would like to manage a "draft" status on topics to have the possibility to filter its.
So, I would like to add a new enumeration value to the @status attribute: "draft".
I tried to do that with a subject scheme map, but I have the following message (with or without subject scheme map):
Attribute "status" with value "draft" must have a value from the list "changed deleted new unchanged -dita-use-conref-target ".
Code: Select all
<subjectScheme>
<subjectdef keys="status.values">
<subjectdef keys="draft" />
<subjectdef keys="new" />
<subjectdef keys="test" />
</subjectdef>
<enumerationdef>
<attributedef name="status"/>
<subjectdef keyref="status.values"/>
</enumerationdef>
</subjectScheme>
How can I add a new value allowed in @status attribute?
Is it possible to do that with a specialization? If yes, how can I do that?
Thanks.