Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Should RS be allowed to contain NAME or not? #166

Open
ilovan opened this issue Aug 15, 2019 · 1 comment
Open

Should RS be allowed to contain NAME or not? #166

ilovan opened this issue Aug 15, 2019 · 1 comment
Labels
Orlando any of the Orlando schemas question

Comments

@ilovan
Copy link
Contributor

ilovan commented Aug 15, 2019

In the Bio schema:

<define name="RS">
        <element name="RS">
            <a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">The rs
                element is a general purpose name element for all names that merit tagging for
                either display purposes or for search and retrieval, but that are not adequately
                covered by the name, orgName, place, or title elements.</a:documentation>
            <optional>
                <attribute name="REG" a:documentation="Regularized value">
                    <a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0"
                        >Reg (or regularization) contains a reading which has been regularized or
                        normalized in some sense.</a:documentation>
                    <data type="NCName"/>
                </attribute>
            </optional>
            <optional>
                <attribute name="TYPE">
                    <a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0"
                        >Type characterizes the element in some sense, using any convenient
                        classification scheme or typology.</a:documentation>
                </attribute>
            </optional>
            <oneOrMore>
                <choice>
                    <text/>
                    <ref name="NAME"/>
                </choice>
            </oneOrMore>
        </element>
    </define>

In the Writing schema

<define name="RS">
        <element name="RS">
            <a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">The rs
                element is a general purpose name element for all names that merit tagging for
                either display purposes or for search and retrieval, but that are not adequately
                covered by the name, orgName, place, or title elements.</a:documentation>
            <optional>
                <attribute name="REG" a:documentation="Regularized value">
                    <a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0"
                        >Reg (or regularization) contains a reading which has been regularized or
                        normalized in some sense.</a:documentation>
                </attribute>
            </optional>
            <optional>
                <attribute name="TYPE"/>
                <a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">Type
                    characterizes the element in some sense, using any convenient classification
                    scheme or typology.</a:documentation>
            </optional>
            <text/>
        </element>
    </define>

@ilovan ilovan added question Orlando any of the Orlando schemas labels Aug 15, 2019
@SusanBrown
Copy link

Disallow.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Orlando any of the Orlando schemas question
Projects
None yet
Development

No branches or pull requests

2 participants