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

Restricted characters in message and components Name_t #118

Closed
YuvalCohen opened this issue Feb 26, 2021 · 3 comments
Closed

Restricted characters in message and components Name_t #118

YuvalCohen opened this issue Feb 26, 2021 · 3 comments

Comments

@YuvalCohen
Copy link

The names of message and components in the repository is currently defined in the format of Name_t
Which is: ([A-Z]|[a-z])([0-9]|[A-Z]|[a-z]|_)*

Our naming convention for messages and components is slightly different then FIX and require dot ('.') in the names of messages and components

Adding '.' to the Name_t near the underscore may be very useful.

@donmendelson donmendelson added this to the Orchestra v1.1 milestone Aug 13, 2021
@donmendelson
Copy link
Member

Proposal:

<xs:simpleType name="Name_t">
  <xs:annotation>
	<xs:documentation>Names are from 1-64 characters. The XML processor will remove line feeds, carriage returns, tabs, leading and trailing spaces, and multiple spaces. Internal spaces are allowed by the schema but may be restricted by an external style.</xs:documentation>
  </xs:annotation>
  <xs:restriction base="xs:token">
	<xs:minLength value="1"/>
	<xs:maxLength value="64"/>
  </xs:restriction>
</xs:simpleType>

@kleihan
Copy link
Member

kleihan commented Nov 4, 2022

Added text for naming rules

@kleihan kleihan closed this as completed Jun 3, 2024
@kleihan
Copy link
Member

kleihan commented Jun 3, 2024

Implemented for RC1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants