-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdraft-coretta-oiddir-schema-02.txt
3307 lines (2201 loc) · 109 KB
/
draft-coretta-oiddir-schema-02.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
RASCHEMA J. Coretta
Internet-Draft August 27, 2024
Intended status: Experimental
Obsoletes: X660LDAP
Expires: February 23, 2025
The OID Directory: The Schema
draft-coretta-oiddir-schema-02.txt
Abstract
In service to the "OID Directory" I-D series, this I-D extends schema
definitions for use within an implementation of the Registration
Authority Directory Information Tree.
See the RADIR I-D for a complete draft series manifest.
Status of This Memo
This Internet-Draft is submitted in full conformance with the
provisions of BCP 78 and BCP 79.
Internet-Drafts are working documents of the Internet Engineering
Task Force (IETF). Note that other groups may also distribute
working documents as Internet-Drafts. The list of current Internet-
Drafts is at https://datatracker.ietf.org/drafts/current/.
Internet-Drafts are draft documents valid for a maximum of six months
and may be updated, replaced, or obsoleted by other documents at any
time. It is inappropriate to use Internet-Drafts as reference
material or to cite them other than as "work in progress."
This Internet-Draft will expire on February 23, 2025.
Copyright Notice
Copyright (c) 2024 IETF Trust and the persons identified as the
document authors. All rights reserved.
This document is subject to BCP 78 and the IETF Trust's Legal
Provisions Relating to IETF Documents
(https://trustee.ietf.org/license-info) in effect on the date of
publication of this document. Please review these documents
carefully, as they describe your rights and restrictions with respect
to this document. Code Components extracted from this document must
include Simplified BSD License text as described in Section 4.e of
the Trust Legal Provisions and are provided without warranty as
described in the Simplified BSD License.
Coretta Expires February 23, 2025 [Page 1]
Internet-Draft The OID Directory: Schema August 2024
Table of Contents
1. Introduction ....................................................4
1.1. Conventions ................................................5
1.2. Acronyms Used ..............................................5
1.3. Allocations ................................................5
1.4. Well-Known Numeric OIDs ....................................5
2. Schema Definitions ..............................................6
2.1. LDAP Syntaxes ..............................................6
2.2. Matching Rules .............................................6
2.3. Attribute Types ............................................6
2.3.1. 'n' ...................................................7
2.3.2. 'dotNotation' .........................................7
2.3.3. 'iRI' .................................................7
2.3.4. 'aSN1Notation' ........................................8
2.3.5. 'unicodeValue' ........................................9
2.3.6. 'additionalUnicodeValue' ..............................9
2.3.7. 'identifier' ..........................................9
2.3.8. 'secondaryIdentifier' ................................10
2.3.9. 'registrationInformation' ............................10
2.3.10. 'registrationURI' ...................................11
2.3.11. 'registrationCreated' ...............................11
2.3.12. 'registrationModified' ..............................11
2.3.13. 'registrationRange' .................................12
2.3.14. 'registrationStatus' ................................12
2.3.15. 'registrationClassification' ........................12
2.3.16. 'isLeafNode' ........................................13
2.3.17. 'isFrozen' ..........................................13
2.3.18. 'standardizedNameForm' ..............................13
2.3.19. 'nameAndNumberForm' .................................14
2.3.20. 'longArc' ...........................................14
2.3.21. 'supArc' ............................................15
2.3.22. 'c-supArc' ..........................................15
2.3.23. 'topArc' ............................................16
2.3.24. 'c-topArc' ..........................................16
2.3.25. 'subArc' ............................................17
2.3.26. 'leftArc' ...........................................17
2.3.27. 'minArc' ............................................17
2.3.28. 'c-minArc' ..........................................18
2.3.29. 'rightArc' ..........................................18
2.3.30. 'maxArc' ............................................19
2.3.31. 'c-maxArc' ..........................................19
2.3.32. 'discloseTo' ........................................20
2.3.33. 'c-discloseTo' ......................................20
2.3.34. 'registrantID .......................................20
2.3.35. 'currentAuthority' ..................................21
2.3.36. 'c-currentAuthority' ................................21
2.3.37. 'currentAuthorityStartTimestamp' ....................22
2.3.38. 'currentAuthorityCommonName' ........................22
2.3.39. 'currentAuthorityCountryCode' .......................22
2.3.40. 'currentAuthorityCountryName' .......................23
2.3.41. 'currentAuthorityEmail' .............................23
Coretta Expires February 23, 2025 [Page 2]
Internet-Draft The OID Directory: Schema August 2024
2.3.42. 'currentAuthorityFax' ...............................23
2.3.43. 'currentAuthorityLocality' ..........................24
2.3.44. 'currentAuthorityMobile' ............................24
2.3.45. 'currentAuthorityOrg' ...............................25
2.3.46. 'currentAuthorityPOBox' .............................25
2.3.47. 'currentAuthorityPostalAddress' .....................25
2.3.48. 'currentAuthorityPostalCode' ........................26
2.3.49. 'currentAuthorityState' .............................26
2.3.50. 'currentAuthorityStreet' ............................26
2.3.51. 'currentAuthorityTelephone' .........................27
2.3.52. 'currentAuthorityTitle' .............................27
2.3.53. 'currentAuthorityURI' ...............................27
2.3.54. 'firstAuthority' ....................................28
2.3.55. 'c-firstAuthority' ..................................28
2.3.56. 'firstAuthorityStartTimestamp' ......................29
2.3.57. 'firstAuthorityEndTimestamp' ........................29
2.3.58. 'firstAuthorityCommonName' ..........................29
2.3.59. 'firstAuthorityCountryCode' .........................30
2.3.60. 'firstAuthorityCountryName' .........................30
2.3.61. 'firstAuthorityEmail' ...............................31
2.3.62. 'firstAuthorityFax' .................................31
2.3.63. 'firstAuthorityLocality' ............................31
2.3.64. 'firstAuthorityMobile' ..............................32
2.3.65. 'firstAuthorityOrg' .................................32
2.3.66. 'firstAuthorityPOBox' ...............................32
2.3.67. 'firstAuthorityPostalAddress' .......................33
2.3.68. 'firstAuthorityPostalCode' ..........................33
2.3.69. 'firstAuthorityState' ...............................34
2.3.70. 'firstAuthorityStreet' ..............................34
2.3.71. 'firstAuthorityTelephone' ...........................34
2.3.72. 'firstAuthorityTitle' ...............................35
2.3.73. 'firstAuthorityURI' .................................35
2.3.74. 'sponsor' ...........................................35
2.3.75. 'c-sponsor' .........................................36
2.3.76. 'sponsorStartTimestamp ..............................36
2.3.77. 'sponsorEndTimestamp ................................37
2.3.78. 'sponsorCommonName' .................................37
2.3.79. 'sponsorCountryCode' ................................37
2.3.80. 'sponsorCountryName' ................................38
2.3.81. 'sponsorEmail' ......................................38
2.3.82. 'sponsorFax' ........................................38
2.3.83. 'sponsorLocality' ...................................39
2.3.84. 'sponsorMobile' .....................................39
2.3.85. 'sponsorOrg' ........................................39
2.3.86. 'sponsorPOBox' ......................................40
2.3.87. 'sponsorPostalAddress' ..............................40
2.3.88. 'sponsorPostalCode' .................................41
2.3.89. 'sponsorState' ......................................41
2.3.90. 'sponsorStreet' .....................................41
2.3.91. 'sponsorTelephone' ..................................42
2.3.92. 'sponsorTitle' ......................................42
2.3.93. 'sponsorURI' ........................................42
Coretta Expires February 23, 2025 [Page 3]
Internet-Draft The OID Directory: Schema August 2024
2.3.94. 'rADITProfile' ......................................43
2.3.95. 'rARegistrationBase' ................................43
2.3.96. 'rARegistrantBase' ..................................43
2.3.97. 'rADirectoryModel' ..................................44
2.3.98. 'rAServiceMail' .....................................44
2.3.99. 'rAServiceURI' ......................................44
2.3.100. 'rATTL' ............................................45
2.3.101. 'c-rATTL' ..........................................45
2.3.102. 'registeredUUID' ...................................46
2.3.103. 'dotEncoding' ......................................46
2.4. Matching Rule Uses ........................................46
2.5. Object Classes ............................................47
2.5.1. 'registration' .......................................47
2.5.2. 'rootArc' ............................................47
2.5.3. 'arc' ................................................47
2.5.4. 'x660Context .........................................47
2.5.5. 'x667Context .........................................48
2.5.6. 'x680Context .........................................48
2.5.7. 'x690Context .........................................48
2.5.8. 'iTUTRegistration' ...................................49
2.5.9. 'iSORegistration' ....................................49
2.5.10. 'jointISOITUTRegistration' ..........................49
2.5.11. 'spatialContext' ....................................50
2.5.12. 'registrationSupplement' ............................50
2.5.13. 'firstAuthorityContext' .............................51
2.5.14. 'currentAuthorityContext' ...........................51
2.5.15. 'sponsorContext' ....................................52
2.5.16. 'registrant' ........................................53
2.5.17. 'rADUAConfig' .......................................53
2.6. DIT Content Rules .........................................53
2.7. Name Forms ................................................54
2.7.1. 'nRootArcForm' .......................................54
2.7.2. 'nArcForm' ...........................................54
2.7.3. 'dotNotationArcForm' .................................54
2.8. DIT Structure Rules .......................................54
3. IANA Considerations ............................................55
4. Security Considerations ........................................55
5. References .....................................................55
5.1. Normative References ......................................55
5.2. Informative References ....................................57
Author's Address ..................................................57
1. Introduction
The information bases meant to house registration and registrant data
by way of modern directory standards as outlined within this series
is dependent upon a comprehensive directory schema.
The schema is used to define content and -- to a degree -- structure
within the directory.
Coretta Expires February 23, 2025 [Page 4]
Internet-Draft The OID Directory: Schema August 2024
In context, the definitions set forth are based on concepts derived
from ITU-T Recommendations [X.660], [X.680], [RFC2578], et al.
The intended end result is a directory service specially suited to
operate as an object identifier registration authority service.
1.1. Conventions
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY",
and "OPTIONAL" in this document are to be interpreted as described
in BCP 14 [RFC2119] [RFC8174] when, and only when, they appear in
all capitals, as shown here.
1.2. Acronyms Used
See Section 1.3 of the RADIR I-D for all acronym references.
1.3. Allocations
This specification extends the previously defined I-D series OID root
1.3.6.1.4.1.56521.101 per Section 1.6 of the RADIR I-D:
- 1.3.6.1.4.1.56521.101.2 (schema)
- 1.3.6.1.4.1.56521.101.2.3 (attributeTypes)
- 1.3.6.1.4.1.56521.101.2.5 (objectClasses)
- 1.3.6.1.4.1.56521.101.2.7 (nameForms)
OIDs defined in this I-D correlate to the section numbers in which
they originate. For example, the 'n' attribute type defined within
Section 2.3.1 is associated with the OID 1.3.6.1.4.1.56521.101.2.3.1.
Should this I-D be elevated to RFC status, the aforementioned root
OID prefix shall be made obsolete in favor of an IANA-assigned OID,
at which point this I-D will be updated to reference the literal
'IANA-ASSIGNED-OID' placeholder prefix, where appropriate.
1.4. Well-Known Numeric OIDs
This I-D references several well-known numeric OIDs defined by other
parties or institutions, particularly as it pertains to the content
within all of Section 2.3. These numeric OIDs are shown below:
- 1.3 (Identified-Organization, per clause A.4.2 of ITU-T Rec.
[X.660])
- 1.3.6 (dod, per Section 3.1 of [RFC1155])
- 1.3.6.1 (Internet OID, per Section 3.1 of [RFC1155])
- 1.3.6.1.1.16.1 (UUID syntax, matching rule and ordering rule, per
Sections 2.1, 2.2 and 2.3 of [RFC4530] respectively)
Coretta Expires February 23, 2025 [Page 5]
Internet-Draft The OID Directory: Schema August 2024
- 1.3.6.1.4.1.1466.115.121.1.12 (DN syntax and matching rule, per
Section 4.2.15 of [RFC4517])
- 1.3.6.1.4.1.1466.115.121.1.24 (Generalized Time syntax, per
Section 3.3.13 of [RFC4517])
- 1.3.6.1.4.1.1466.115.121.1.27 (Integer syntax, per Section 3.3.16
of [RFC4517])
- 1.3.6.1.4.1.1466.115.121.1.38 (OID syntax, per Section 3.3.26
[RFC4517])
- 1.3.6.1.4.1.1466.115.121.1.40 (Octet String syntax, per Section
3.3.25 of [RFC4517])
2. Schema Definitions
This section discusses the particulars of the LDAP schema definitions
made available through this I-D.
These schema definitions described in this section are provided using
LDAP description formats [RFC4512]. These elements are line-wrapped
and indented for readability when needed.
ALL definitions declared throughout the following subsections are to
be considered "leaf nodes" (no subordinate registrations).
2.1. LDAP Syntaxes
No LDAP syntaxes are defined anywhere in this I-D series. However,
the topic of syntax is a recurring theme in ITU-T Recommendations
[X.660], [X.680] and many other standards relevant to this series.
This section serves only to advise the reader to consider the many
defined (or cited) ABNF productions throughout Section 2.3. While
the base LDAP syntaxes used within this I-D are often insufficient
in enforcing complete compliance with relevant syntax standards,
most modern X.500/LDAP products support use of constraining rules
of some form to narrow their scope.
While the particulars of such product features are out of scope for
this I-D series, the reader is nonetheless advised to make an effort
to sufficiently constrain attribute value input so as to honor the
relevant standard(s) in question.
2.2. Matching Rules
No LDAP matching rules are defined anywhere in this I-D series.
2.3. Attribute Types
The following subsections detail one hundred three (103) attribute
types created for use within implementations of this specification.
Coretta Expires February 23, 2025 [Page 6]
Internet-Draft The OID Directory: Schema August 2024
Please note that a great many of these attribute type definitions are
sub types of attribute types defined in the following Standards, and
as such are considered dependencies:
- [RFC2079] for URI support
- [RFC4519] for so-called "core" schema elements
- [RFC4524] for Cosine schema elements
If the nature of a particular directory implementation precludes the
use of sub typed attributes, this specification may not be practical
for adoption.
2.3.1. 'n'
The 'n' attribute type allows the assignment of an unsigned integer
used to represent the Number Form of a registration per ITU-T Rec.
[X.680].
A practical ABNF production, labeled 'number', is defined in Section
1.4 of [RFC4512].
( 1.3.6.1.4.1.56521.101.2.3.1
NAME 'n'
DESC 'X.680, cl. 32.3: NumberForm'
EQUALITY integerMatch
ORDERING integerOrderingMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
SINGLE-VALUE )
Examples: "56521", "0"
2.3.2. 'dotNotation'
The 'dotNotation' attribute type allows the assignment of one (1) OID
to any non root registration.
A practical ABNF production, labeled 'numericoid', is defined within
Section 1.4 of [RFC4512].
( 1.3.6.1.4.1.56521.101.2.3.2
NAME 'dotNotation'
DESC 'X.680: OID in dotted notation'
EQUALITY objectIdentifierMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.38
SINGLE-VALUE )
Examples: "1.3.6.1", "2.999"
2.3.3. 'iRI'
The 'iRI' attribute type allows the assignment of one (1) or more
OID-IRI values to a registration.
Coretta Expires February 23, 2025 [Page 7]
Internet-Draft The OID Directory: Schema August 2024
A practical ABNF production for this attribute type, as derived from
clause 34.3 of ITU-T Rec. [X.680], is as follows:
subArcId = SOLIDUS arcId *subArcId
arcId = intUV / nintUV
nintUV = 1*iunreserved ; non-integer unicode value
intUV = number ; integer unicode value
SOLIDUS = "%x2f" ; "/"
The 'number' ABNF production originates in Section 1.4 of [RFC4512].
The 'iunreserved' ABNR production originates within Section 2.2 of
[RFC3987].
( 1.3.6.1.4.1.56521.101.2.3.3
NAME 'iRI'
DESC 'X.680, cl. 34: OID-IRI'
EQUALITY octetStringMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 )
Examples: "/ITU-T", "/ISO/Identified-Organization", "/ASN.1"
2.3.4. 'aSN1Notation'
The 'aSN1Notation' attribute type allows the assignment of an OID in
ASN.1, or ITU-T Rec. [X.680] ObjectIdentifierValue, notation.
A practical ABNF production for this attribute type is as follows:
asn1notation = LCURL forms RCURL
forms = ( nanf / identifier ) *( SPACE ( nanf / number ) )
SPACE = "%x20" ; " "
LCURL = "%x7b" ; "{"
RCURL = "%x7d" ; "}"
The 'nanf' ABNF originates in Section 2.3.19. The 'identifier' ABNF
production originates in Section 2.3.7. The 'number' ABNF production
originates in Section 1.4 of [RFC4512].
( 1.3.6.1.4.1.56521.101.2.3.4
NAME 'aSN1Notation'
DESC 'X.680, cl. 32.3: ObjectIdentifierValue'
EQUALITY caseIgnoreMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
SINGLE-VALUE )
Examples: "{itu-t(0)}", "{iso(1) identified-organization(3)}"
Coretta Expires February 23, 2025 [Page 8]
Internet-Draft The OID Directory: Schema August 2024
2.3.5. 'unicodeValue'
The 'unicodeValue' attribute type allows the assignment of a single
non-integer Unicode label to a registration, per ITU-T Rec. [X.660].
A practical ABNF production for this attribute type is as follows:
uval = 1*iunreserved
The ABNF production 'iunreserved' is defined in Section 2.2 of
[RFC3987].
( 1.3.6.1.4.1.56521.101.2.3.5
NAME 'unicodeValue'
DESC 'X.660, cl. 7.5: non-integer Unicode label'
EQUALITY octetStringMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.40
SINGLE-VALUE )
Examples: "ITU-T", "Identified-Organization"
2.3.6. 'additionalUnicodeValue'
The 'additionalUnicodeValue' attribute type allows for the assignment
of one (1) or more additional non-integer Unicode labels, per clause
3.5.2 of ITU-T Rec. [X.660], to a registration.
A practical ABNF production for this attribute type is defined within
Section 2.3.5.
( 1.3.6.1.4.1.56521.101.2.3.6
NAME 'additionalUnicodeValue'
DESC 'X.660, cl. 3.5.2: additional non-integer Unicode labels'
EQUALITY octetStringMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 )
2.3.7. 'identifier'
The 'identifier' attribute type allows for the assignment of one (1)
non-numeric, non-Unicode identifier to a registration.
Per clause 12.3 of ITU-T Rec. [X.680]:
An "identifier" shall consist of an arbitrary number (one or more)
of letters, digits, and hyphens. The initial character shall be a
lower-case letter. A hyphen shall not be the last character. A
hyphen shall not be immediately followed by another hyphen.
As a practical ABNF production, the above clause translates as
follows:
Coretta Expires February 23, 2025 [Page 9]
Internet-Draft The OID Directory: Schema August 2024
identifier = leadkeychar *keychar
leadkeychar = LOWER
keychar = *( [ HYPHEN ] ( ALPHA / DIGIT ) )
ALPHA = ( LOWER / UPPER ) ; a-z / A-Z
UPPER = "%x41-%x5a" ; A-Z
LOWER = "%x61-%x7a" ; a-z
DIGIT = "%x30-%x39" ; 0-9
HYPHEN = "%x2d" ; "-"
The attribute type 'name', as defined in Section 2.18 of [RFC4519],
is a super type of this attribute type.
( 1.3.6.1.4.1.56521.101.2.3.7
NAME 'identifier'
DESC 'X.680, cl. 12.3: Identifier'
SUP name
SINGLE-VALUE )
Examples: "itu-t", "iso"
2.3.8. 'secondaryIdentifier'
The 'secondaryIdentifier' attribute type allows the assignment of
one (1) or more additional secondary non-numeric non-Unicode values,
per clause 3.5.1 of ITU-T Rec. [X.660], to a registration.
A practical ABNF production for this attribute type is defined within
Section 2.3.7.
The attribute type 'name', as defined in Section 2.18 of [RFC4519],
is a super type of this attribute type.
( 1.3.6.1.4.1.56521.101.2.3.8
NAME 'secondaryIdentifier'
DESC 'X.660, cl. 3.5.1: Additional Identifiers'
SUP name )
Examples: "enterprises", "ccitt"
2.3.9. 'registrationInformation'
The 'registrationInformation' attribute type allows the OPTIONAL
assignment of octet-based values intended for extended information
relating to the registration in question.
The 'OCTET' ABNF production defined in Section 1.4 of [RFC4512] is
applicable in any non-zero quantity or combination, as no defined
syntax or standard exists to govern this type.
Coretta Expires February 23, 2025 [Page 10]
Internet-Draft The OID Directory: Schema August 2024
( 1.3.6.1.4.1.56521.101.2.3.9
NAME 'registrationInformation'
DESC 'Extended octet-based registration data'
SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 )
Example: "Acme, Co., Research & Development, Copyright (c) 2024"
2.3.10. 'registrationURI'
The 'registrationURI' attribute type allows for the assignment of one
(1) or more URI values, with optional labels, to a registration.
The attribute type 'labeledURI', as defined in [RFC2079], is a super
type of this attribute type.
A practical ABNF production for this attribute type is defined within
Appendix A of [RFC3986].
( 1.3.6.1.4.1.56521.101.2.3.10
NAME 'registrationURI'
DESC 'Uniform Resource Identifier for a registration'
SUP labeledURI )
Examples: "http://example.com Example", "ftp://example.com"
2.3.11. 'registrationCreated'
The 'registrationCreated' attribute type allows for the assignment
of a generalized timestamp indicating the date and time at which a
registration was, or will be, created or officiated.
A practical ABNF production for this attribute type is defined within
Section 3.3.13 of [RFC4517].
( 1.3.6.1.4.1.56521.101.2.3.11
NAME 'registrationCreated'
DESC 'Generalized timestamp for a registration creation'
EQUALITY generalizedTimeMatch
ORDERING generalizedTimeOrderingMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.24
SINGLE-VALUE )
Examples: "19800229114853Z", "20130109033116Z"
2.3.12. 'registrationModified'
The 'registrationModified' attribute type allows for the assignment
of one (1) or more generalized timestamp values indicating the dates
and times of all applied updates to a registration.
A practical ABNF production for this attribute type is defined within
Section 3.3.13 of [RFC4517].
Coretta Expires February 23, 2025 [Page 11]
Internet-Draft The OID Directory: Schema August 2024
( 1.3.6.1.4.1.56521.101.2.3.12
NAME 'registrationModified'
DESC 'Generalized timestamps for registration modifications'
EQUALITY generalizedTimeMatch
ORDERING generalizedTimeOrderingMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 )
Examples: "19951231115959Z", "20130109033116Z"
2.3.13. 'registrationRange'
The 'registrationRange' attribute type allows for the expression of
an OID sibling allocation range, such as "100" to indicate 'up to
and including 100', or "-1" to indicate 'to infinity'.
A practical ABNF production, labeled 'number', is defined in Section
1.4 of [RFC4512]. This satisfies the unsigned form of instances of
this type.
( 1.3.6.1.4.1.56521.101.2.3.13
NAME 'registrationRange'
DESC 'Numerical registration range expression'
EQUALITY integerMatch
ORDERING integerOrderingMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
SINGLE-VALUE )
Examples: "-1", "1999", "1000000"
2.3.14. 'registrationStatus'
The 'registrationStatus' attribute type allows for the assignment of
status information meant to define the state of the registration.
A practical ABNF production for the super type, 'description', is
found within Section 3.3.6 of [RFC4517].
( 1.3.6.1.4.1.56521.101.2.3.14
NAME 'registrationStatus'
DESC 'Current registration status'
SUP description )
Examples: "OBSOLETE", "DEALLOCATED", "RESERVED"
2.3.15. 'registrationClassification'
The 'registrationClassification' attribute type allows a registration
to bear an informal classification value, thereby describing an OID's
context or category.
A practical ABNF production for the super type, 'description', can be
found within Section 3.3.6 in [RFC4517].
Coretta Expires February 23, 2025 [Page 12]
Internet-Draft The OID Directory: Schema August 2024
( 1.3.6.1.4.1.56521.101.2.3.15
NAME 'registrationClassification'
DESC 'Known registration classification'
SUP description
SINGLE-VALUE )
Examples: "Standard", "Individual", "ASN.1 Modules"
2.3.16. 'isLeafNode'
The 'isLeafNode' attribute type allows for the assignment of a single
Boolean value indicative of whether a registration can be a parent to
any subordinate registrations.
A practical ABNF production for this attribute type is found within
Section 3.3.3 of [RFC4517].
( 1.3.6.1.4.1.56521.101.2.3.16
NAME 'isLeafNode'
DESC 'Whether a registration may allocate sub arcs'
EQUALITY booleanMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
SINGLE-VALUE )
Examples: "TRUE", "FALSE", or Undefined (implies "FALSE")
2.3.17. 'isFrozen'
The 'isFrozen' attribute type allows for the assignment of a single
Boolean value indicative of whether a registration can be a parent
to any further subordinate registrations beyond those that already
exist at present.
A practical ABNF production for this attribute type is found within
Section 3.3.3 of [RFC4517].
( 1.3.6.1.4.1.56521.101.2.3.17
NAME 'isFrozen'
DESC 'Whether additional sub arcs are permitted'
EQUALITY booleanMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
SINGLE-VALUE )
Examples: "TRUE", "FALSE", or Undefined (implies "FALSE")
2.3.18. 'standardizedNameForm'
The 'standardizedNameForm' attribute type allows for the assignment
of one (1) or more Standardized NameForm values, per clauses A.2 and
A.3 of ITU-T Rec. [X.660], to a registration only if its 'identifier'
value is considered standardized.
Coretta Expires February 23, 2025 [Page 13]
Internet-Draft The OID Directory: Schema August 2024
A practical ABNF production for this attribute type is as follows:
stdnf = LCURL nonfs RCURL
nonfs = nonf *( SPACE nonf )
nonf = ( identifier / number ) ; name OR number
SPACE = "%x20" ; " "
LCURL = "%x7b" ; "{"
RCURL = "%x7d" ; "}"
The 'identifier' ABNF originates in Section 2.3.7. The 'number' ABNF
production can be found within Section 1.4 of [RFC4512].
( 1.3.6.1.4.1.56521.101.2.3.18
NAME 'standardizedNameForm'
DESC 'X.660, cl. A.2-A-3: Standardized Identifier or NameForm'
EQUALITY caseExactMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 )
Examples: "{itu-t}", "{0 0 d}"
2.3.19. 'nameAndNumberForm'
The 'nameAndNumberForm' attribute type allows for the assignment of
an ITU-T Rec. [X.680] NameAndNumberForm value to a registration.
A practical ABNF production for this attribute type is as follows:
nanf = name LPAREN number RPAREN ; name AND numberForm
name = identifier ; name form
LPAREN = "%x28" ; "("
RPAREN = "%x29" ; ")"
The 'identifier' ABNF production can be found in Section 2.3.7. The
'number' ABNF production is defined in Section 1.4 of [RFC4512].
( 1.3.6.1.4.1.56521.101.2.3.19
NAME 'nameAndNumberForm'
DESC 'X.680, cl. 32.3: NameAndNumberForm'
EQUALITY caseExactMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
SINGLE-VALUE )
Examples: "private(4)", "itu-t(0)"
2.3.20. 'longArc'
The 'longArc' attribute type allows for the assignment of one (1) or
more so-called "Long Arc" well-known identifiers to a registration.
A practical ABNF production for this attribute type is as follows:
Coretta Expires February 23, 2025 [Page 14]
Internet-Draft The OID Directory: Schema August 2024
longArc = SOLIDUS ( intUV / nintUV )
nintUV = 1*iunreserved ; non-integer unicode value
intUV = number ; integer unicode value
( 1.3.6.1.4.1.56521.101.2.3.20
NAME 'longArc'
DESC 'X.660, cl. A.7: Long Arc'
EQUALITY octetStringMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 )
Examples: "/Example", "/Ejemplo"
2.3.21. 'supArc'
The 'supArc' attribute type allows for the assignment of an LDAP DN
value to any non-root registration, thereby identifying the DN of the
immediate superior (parent) registration.
A practical ABNF production for this attribute type can be found in
Section 3 of [RFC4514].
The attribute type 'distinguishedName', as defined in Section 2.7 of
[RFC4519], is a super type of this attribute type.
( 1.3.6.1.4.1.56521.101.2.3.21
NAME 'supArc'
DESC 'Immediate superior registration DN'
SUP distinguishedName
SINGLE-VALUE )
Example: "n=1,n=2,ou=Registrations,o=rA"
2.3.22. 'c-supArc'
The 'c-supArc' attribute type is the manifestation of the 'supArc'
attribute type defined in Section 2.3.21 with Collective Attribute
[RFC3671] support.
This attribute type should only be used in directory environments
which actively support and require [RFC3671] capabilities.
This attribute type MUST NOT be present for entries that also bear
a 'supArc' attribute type instance. The value MUST be singular.
A practical ABNF production for this attribute type can be found in
Section 3 of [RFC4514].
The attribute type 'distinguishedName', as defined in Section 2.7 of
[RFC4519], is a super type of this attribute type.
Coretta Expires February 23, 2025 [Page 15]
Internet-Draft The OID Directory: Schema August 2024
( 1.3.6.1.4.1.56521.101.2.3.22
NAME 'c-supArc'
DESC 'Collective immediate superior registration DN'
SUP distinguishedName
COLLECTIVE )
Example: "n=1,n=2,ou=Registrations,o=rA"
2.3.23. 'topArc'
The 'topArc' attribute type allows for the assignment of an LDAP DN
value to any non-root registration, thereby identifying the superior
root registration.
A practical ABNF production for this attribute type can be found in
Section 3 of [RFC4514].
The attribute type 'distinguishedName', as defined in Section 2.7 of
[RFC4519], is a super type of this attribute type.
( 1.3.6.1.4.1.56521.101.2.3.23
NAME 'topArc'
DESC 'Superior root registration DN'
SUP distinguishedName
SINGLE-VALUE )
Example: "n=2,ou=Registrations,o=rA"
2.3.24. 'c-topArc'
The 'c-topArc' attribute type is the manifestation of the 'topArc'
attribute type defined in Section 2.3.23 with Collective Attribute
[RFC3671] support.
This attribute type should only be used in directory environments
which actively support and require [RFC3671] capabilities.
This attribute type MUST NOT be present for entries that also bear
a 'topArc' attribute type instance. The value MUST be singular.
A practical ABNF production for this attribute type can be found in
Section 3 of [RFC4514].
The attribute type 'distinguishedName', as defined in Section 2.7 of
[RFC4519], is a super type of this attribute type.
( 1.3.6.1.4.1.56521.101.2.3.24
NAME 'c-topArc'
DESC 'Collective superior root registration DN'
SUP distinguishedName
COLLECTIVE )
Coretta Expires February 23, 2025 [Page 16]
Internet-Draft The OID Directory: Schema August 2024
Example: "n=2,ou=Registrations,o=rA"
2.3.25. 'subArc'
The 'subArc' attribute type allows for the assignment of one (1) or
more LDAP DN values to a registration as a manifest of subordinate
registrations residing exactly one (1) logical level below, if any.
In robust implementations of this I-D that cover most (or all) of the
OID Tree, use of this attribute type will require careful, long-term
planning.
A practical ABNF production for this attribute type can be found in
Section 3 of [RFC4514].
The attribute type 'distinguishedName', as defined in Section 2.7 of
[RFC4519], is a super type of this attribute type.
( 1.3.6.1.4.1.56521.101.2.3.25
NAME 'subArc'
DESC 'Subordinate registration DN'
SUP distinguishedName )
Example: "n=1,n=6,n=3,n=1,ou=Registrations,o=rA"
2.3.26. 'leftArc'
The 'leftArc' attribute type allows for the assignment of a DN value
to a registration, referencing a registration positioned to the left
side of the bearer in terms of (lesser) 'n' magnitude.
A practical ABNF production for this attribute type can be found in
Section 3 of [RFC4514].
The attribute type 'distinguishedName', as defined in Section 2.7 of
[RFC4519], is a super type of this attribute type.
( 1.3.6.1.4.1.56521.101.2.3.26
NAME 'leftArc'
DESC 'Nearest antecedent registration DN'
SUP distinguishedName
SINGLE-VALUE )
Example: "n=5,n=2,ou=Registrations,o=rA"
2.3.27. 'minArc'
The 'minArc' attribute type allows for the assignment of a DN value
to a registration. The value SHOULD reference the entry which bears
the lowest 'n' value of any of its siblings.
Coretta Expires February 23, 2025 [Page 17]
Internet-Draft The OID Directory: Schema August 2024
A practical ABNF production for this attribute type can be found in
Section 3 of [RFC4514].
The attribute type 'distinguishedName', as defined in Section 2.7 of
[RFC4519], is a super type of this attribute type.
( 1.3.6.1.4.1.56521.101.2.3.27
NAME 'minArc'
DESC 'First or left-most sibling registration DN'
SUP distinguishedName