forked from COMCIFS/cif_core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ddl.dic
3085 lines (2695 loc) · 98.1 KB
/
ddl.dic
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
#\#CIF_2.0
##############################################################################
# #
# DDLm REFERENCE DICTIONARY #
# #
##############################################################################
data_DDL_DIC
_dictionary.title DDL_DIC
_dictionary.class Reference
_dictionary.version 4.2.0
_dictionary.date 2023-11-14
_dictionary.uri
https://raw.githubusercontent.com/COMCIFS/cif_core/master/ddl.dic
_dictionary.ddl_conformance 4.2.0
_dictionary.namespace DdlDic
_description.text
;
This dictionary contains the definitions of attributes that
make up the DDLm dictionary definition language. It provides
the meta meta data for all CIF dictionaries.
;
save_ATTRIBUTES
_definition.id ATTRIBUTES
_definition.scope Category
_definition.class Head
_definition.update 2011-07-27
_description.text
;
This category is parent of all other categories in the DDLm
dictionary.
;
_name.category_id DDL_DIC
_name.object_id ATTRIBUTES
save_
save_ALIAS
_definition.id ALIAS
_definition.scope Category
_definition.class Loop
_definition.update 2013-09-08
_description.text
;
The attributes used to specify the aliased names of definitions.
;
_name.category_id ATTRIBUTES
_name.object_id ALIAS
_category_key.name '_alias.definition_id'
save_
save_alias.definition_id
_definition.id '_alias.definition_id'
_definition.class Attribute
_definition.update 2019-04-02
_description.text
;
Identifier tag of an aliased definition.
;
_name.category_id alias
_name.object_id definition_id
_type.purpose Encode
_type.source Assigned
_type.container Single
_type.contents Tag
save_
save_alias.deprecation_date
_definition.id '_alias.deprecation_date'
_definition.class Attribute
_definition.update 2013-09-08
_description.text
;
Date that the aliased tag was deprecated as a definition tag.
;
_name.category_id alias
_name.object_id deprecation_date
_type.purpose Audit
_type.source Assigned
_type.container Single
_type.contents Date
save_
save_alias.dictionary_uri
_definition.id '_alias.dictionary_uri'
_definition.class Attribute
_definition.update 2006-11-16
_description.text
;
Absolute URI of dictionary to which the aliased definition belongs.
;
_name.category_id alias
_name.object_id dictionary_uri
_type.purpose Identify
_type.source Assigned
_type.container Single
_type.contents Uri
save_
save_CATEGORY_KEY
_definition.id CATEGORY_KEY
_definition.scope Category
_definition.class Loop
_definition.update 2020-10-29
_description.text
;
The attributes used to specify (possibly multiple)
keys for a given category.
;
_name.category_id ATTRIBUTES
_name.object_id CATEGORY_KEY
_category_key.name '_category_key.name'
save_
save_category_key.name
_definition.id '_category_key.name'
_definition.class Attribute
_definition.update 2021-08-18
_description.text
;
A minimal list of tag(s) that together constitute a compound key
to access other items in a Loop category. In other words, the combined
values of the data items listed in this loop must be unique, so that
unambiguous access to a packet (row) in the table of values is possible.
;
_name.category_id category_key
_name.object_id name
_type.purpose Identify
_type.source Assigned
_type.container Single
_type.contents Tag
save_
save_DEFINITION
_definition.id DEFINITION
_definition.scope Category
_definition.class Set
_definition.update 2011-06-20
_description.text
;
The attributes for classifying dictionary definitions.
;
_name.category_id ATTRIBUTES
_name.object_id DEFINITION
save_
save_definition.class
_definition.id '_definition.class'
_definition.class Attribute
_definition.update 2019-10-08
_description.text
;
The nature and the function of a definition or definitions.
;
_name.category_id definition
_name.object_id class
_type.purpose State
_type.source Assigned
_type.container Single
_type.contents Code
loop_
_enumeration_set.state
_enumeration_set.detail
Attribute
;
Item used as an attribute in the definition of other data items in
DDLm dictionaries. These items never appear in data instance files.
;
Functions
;
Category of items that are transient function definitions used only in
dREL methods scripts. These items never appear in data instance files.
;
Datum
;
Item defined in a domain-specific dictionary. These items appear only
in data instance files.
;
Head
;
Category of items that is the parent of all other categories in the
dictionary.
;
Loop
;
Category of items that in a data file may reside in a loop-list with a
key item defined.
;
Set
;
Category of items that form a set (but not a loopable list). These
items may be referenced as a class of items in a dREL methods
expression.
;
_enumeration.default Datum
save_
save_definition.id
_definition.id '_definition.id'
_definition.class Attribute
_definition.update 2006-11-16
_description.text
;
Identifier name of the Item or Category being defined.
;
_name.category_id definition
_name.object_id id
_type.purpose Identify
_type.source Assigned
_type.container Single
_type.contents Code
save_
save_definition.scope
_definition.id '_definition.scope'
_definition.class Attribute
_definition.update 2006-11-16
_description.text
;
The extent to which a definition affects other definitions.
;
_name.category_id definition
_name.object_id scope
_type.purpose State
_type.source Assigned
_type.container Single
_type.contents Code
loop_
_enumeration_set.state
_enumeration_set.detail
Dictionary 'Applies to all defined items in the dictionary.'
Category 'Applies to all defined items in the category.'
Item 'Applies to a single item definition.'
_enumeration.default Item
save_
save_definition.update
_definition.id '_definition.update'
_definition.class Attribute
_definition.update 2006-11-16
_description.text
;
The date that a definition was last changed.
;
_name.category_id definition
_name.object_id update
_type.purpose Audit
_type.source Assigned
_type.container Single
_type.contents Date
save_
save_DEFINITION_REPLACED
_definition.id DEFINITION_REPLACED
_definition.scope Category
_definition.class Loop
_definition.update 2019-04-02
_description.text
;
Attributes used to describe deprecated and replaced definitions.
;
_name.category_id DEFINITION
_name.object_id DEFINITION_REPLACED
_category_key.name '_definition_replaced.id'
save_
save_definition_replaced.by
_definition.id '_definition_replaced.by'
_definition.class Attribute
_definition.update 2019-04-02
_description.text
;
Name of the data item that should be used instead of the defined data
item. The defined data item is deprecated and should not be used. A
value of '.' signifies that the data item is deprecated, with no
replacement.
;
_name.category_id definition_replaced
_name.object_id by
_type.purpose Encode
_type.source Assigned
_type.container Single
_type.contents Tag
save_
save_definition_replaced.id
_definition.id '_definition_replaced.id'
_definition.class Attribute
_definition.update 2019-04-02
_description.text
;
An opaque identifier for the replacement.
;
_name.category_id definition_replaced
_name.object_id id
_type.purpose Key
_type.source Assigned
_type.container Single
_type.contents Code
save_
save_DESCRIPTION
_definition.id DESCRIPTION
_definition.scope Category
_definition.class Set
_definition.update 2011-06-20
_description.text
;
The attributes of descriptive (non-machine parsable) parts of
definitions.
;
_name.category_id ATTRIBUTES
_name.object_id DESCRIPTION
save_
save_description.common
_definition.id '_description.common'
_definition.class Attribute
_definition.update 2006-11-16
_description.text
;
Commonly-used identifying name for the item.
;
_description.common 'common name'
_name.category_id description
_name.object_id common
_type.purpose Describe
_type.source Assigned
_type.container Single
_type.contents Text
save_
save_description.key_words
_definition.id '_description.key_words'
_definition.class Attribute
_definition.update 2013-03-06
_description.text
;
List of key-words categorising the item.
;
_description.common 'key words'
_name.category_id description
_name.object_id key_words
_type.purpose Encode
_type.source Assigned
_type.container Single
_type.contents Text
save_
save_description.text
_definition.id '_description.text'
_definition.class Attribute
_definition.update 2021-07-20
_description.text
;
The text description of the defined item, category,
or dictionary.
;
_description.common description
_name.category_id description
_name.object_id text
_type.purpose Describe
_type.source Assigned
_type.container Single
_type.contents Text
save_
save_DESCRIPTION_EXAMPLE
_definition.id DESCRIPTION_EXAMPLE
_definition.scope Category
_definition.class Loop
_definition.update 2021-07-20
_description.text
;
Descriptive (non-machine parsable) examples of values of the
defined items and categories.
;
_name.category_id DESCRIPTION
_name.object_id DESCRIPTION_EXAMPLE
_category_key.name '_description_example.case'
save_
save_description_example.case
_definition.id '_description_example.case'
_definition.class Attribute
_definition.update 2021-11-15
_description.text
;
An example case of the defined item or category. Category example cases
present data names and values as they would appear in a CIF-formatted file.
Item example cases present values only, which inherit the enumeration range,
enumeration set, container, dimension, content and purpose type constraints
of the defining item.
;
_name.category_id description_example
_name.object_id case
_type.purpose Describe
_type.source Assigned
_type.container Implied
_type.contents Implied
save_
save_description_example.detail
_definition.id '_description_example.detail'
_definition.class Attribute
_definition.update 2021-07-20
_description.text
;
A description of an example case for the defined item or category.
;
_name.category_id description_example
_name.object_id detail
_type.purpose Describe
_type.source Assigned
_type.container Single
_type.contents Text
save_
save_DICTIONARY
_definition.id DICTIONARY
_definition.scope Category
_definition.class Set
_definition.update 2011-06-20
_description.text
;
Attributes for identifying and registering the dictionary. The items
in this category are NOT used as attributes of INDIVIDUAL data items.
;
_name.category_id ATTRIBUTES
_name.object_id DICTIONARY
save_
save_dictionary.class
_definition.id '_dictionary.class'
_definition.class Attribute
_definition.update 2012-05-07
_description.text
;
The nature, or field of interest, of data items defined in the dictionary.
;
_name.category_id dictionary
_name.object_id class
_type.purpose State
_type.source Assigned
_type.container Single
_type.contents Code
loop_
_enumeration_set.state
_enumeration_set.detail
Reference 'DDLm reference attribute definitions.'
Instance 'Domain-specific data instance definitions.'
Template 'Domain-specific attribute/enumeration templates.'
Function 'Domain-specific method function scripts.'
_enumeration.default Instance
save_
save_dictionary.date
_definition.id '_dictionary.date'
_definition.class Attribute
_definition.update 2006-11-16
_description.text
;
The date that the last dictionary revision took place.
;
_name.category_id dictionary
_name.object_id date
_type.purpose Audit
_type.source Assigned
_type.container Single
_type.contents Date
save_
save_dictionary.ddl_conformance
_definition.id '_dictionary.ddl_conformance'
_definition.class Attribute
_definition.update 2006-11-16
_description.text
;
The version number of the DDL dictionary that this dictionary
conforms to.
;
_name.category_id dictionary
_name.object_id ddl_conformance
_type.purpose Audit
_type.source Assigned
_type.container Single
_type.contents Version
save_
save_dictionary.doi
_definition.id '_dictionary.DOI'
_definition.class Attribute
_definition.update 2023-06-19
_description.text
;
The digital object identifier (DOI) of the dictionary.
;
_name.category_id dictionary
_name.object_id doi
_type.purpose Identify
_type.source Assigned
_type.container Single
_type.contents Text
_description_example.case 10.5555/12345678
save_
save_dictionary.formalism
_definition.id '_dictionary.formalism'
_definition.class Attribute
_definition.update 2021-08-18
_description.text
;
The definitions contained in this dictionary are associated
with the value of this attribute. Data items may only be
redefined if the value of this attribute is also changed, and
any such redefinitions must include the original behaviour as
a particular case.
;
_name.category_id dictionary
_name.object_id formalism
_type.purpose Audit
_type.source Assigned
_type.container Single
_type.contents Text
save_
save_dictionary.namespace
_definition.id '_dictionary.namespace'
_definition.class Attribute
_definition.update 2006-12-05
_description.text
;
The namespace code that may be prefixed (with a trailing double colon
'::') to an item tag defined in the defining dictionary when used
in particular applications. Because tags must be unique, namespace
codes are unlikely to be used in data files.
;
_name.category_id dictionary
_name.object_id namespace
_type.purpose Audit
_type.source Assigned
_type.container Single
_type.contents Code
save_
save_dictionary.title
_definition.id '_dictionary.title'
_definition.class Attribute
_definition.update 2006-11-16
_description.text
;
The common title of the dictionary. Will usually match the name
attached to the data_ statement of the dictionary file.
;
_name.category_id dictionary
_name.object_id title
_type.purpose Audit
_type.source Assigned
_type.container Single
_type.contents Code
save_
save_dictionary.uri
_definition.id '_dictionary.uri'
_definition.class Attribute
_definition.update 2006-11-16
_description.text
;
An absolute uniform resource identifier (URI) for this dictionary.
;
_name.category_id dictionary
_name.object_id uri
_type.purpose Identify
_type.source Assigned
_type.container Single
_type.contents Uri
save_
save_dictionary.version
_definition.id '_dictionary.version'
_definition.class Attribute
_definition.update 2017-07-21
_description.text
;
A unique version identifier for the dictionary.
;
_name.category_id dictionary
_name.object_id version
_type.purpose Audit
_type.source Assigned
_type.container Single
_type.contents Version
save_
save_DICTIONARY_AUDIT
_definition.id DICTIONARY_AUDIT
_definition.scope Category
_definition.class Loop
_definition.update 2013-09-08
_description.text
;
Attributes for identifying and registering the dictionary. The items
in this category are NOT used as attributes of individual data items.
;
_name.category_id DICTIONARY
_name.object_id DICTIONARY_AUDIT
_category_key.name '_dictionary_audit.version'
save_
save_dictionary_audit.date
_definition.id '_dictionary_audit.date'
_definition.class Attribute
_definition.update 2011-06-27
_description.text
;
The date of each dictionary revision.
;
_name.category_id dictionary_audit
_name.object_id date
_type.purpose Audit
_type.source Assigned
_type.container Single
_type.contents Date
save_
save_dictionary_audit.revision
_definition.id '_dictionary_audit.revision'
_definition.class Attribute
_definition.update 2011-06-27
_description.text
;
A description of the revision applied for the _dictionary_audit.version.
;
_name.category_id dictionary_audit
_name.object_id revision
_type.purpose Describe
_type.source Assigned
_type.container Single
_type.contents Text
save_
save_dictionary_audit.version
_definition.id '_dictionary_audit.version'
_definition.class Attribute
_definition.update 2019-04-02
_description.text
;
A unique version identifier for each revision of the dictionary.
;
_name.category_id dictionary_audit
_name.object_id version
_type.purpose Encode
_type.source Assigned
_type.container Single
_type.contents Version
save_
save_DICTIONARY_AUTHOR
_definition.id DICTIONARY_AUTHOR
_definition.scope Category
_definition.class Loop
_definition.update 2023-06-02
_description.text
;
Attributes used to record the dictionary author information.
;
_name.category_id DICTIONARY
_name.object_id DICTIONARY_AUTHOR
_category_key.name '_dictionary_author.id'
save_
save_dictionary_author.email
_definition.id '_dictionary_author.email'
_definition.class Attribute
_definition.update 2023-07-13
_description.text
;
The electronic mail address of an author of the dictionary, in a form
recognizable to international networks. The format of e-mail addresses is
given in Section 3.4, Address Specification, of Internet Message Format,
RFC 2822, P. Resnick (Editor), Network Standards Group, April 2001.
;
_name.category_id dictionary_author
_name.object_id email
_type.purpose Encode
_type.source Recorded
_type.container Single
_type.contents Text
loop_
_description_example.case
name@host.domain.country
bm@iucr.org
save_
save_dictionary_author.id
_definition.id '_dictionary_author.id'
_definition.class Attribute
_definition.update 2023-07-13
_description.text
;
Arbitrary identifier for this author.
;
_name.category_id dictionary_author
_name.object_id id
_type.purpose Key
_type.source Related
_type.container Single
_type.contents Word
save_
save_dictionary_author.id_orcid
_definition.id '_dictionary_author.id_ORCID'
_definition.class Attribute
_definition.update 2023-07-13
_description.text
;
Identifier in the ORCID Registry of a publication
author. ORCID is an open, non-profit, community-driven
service to provide a registry of unique researcher
identifiers (https://orcid.org/).
;
_name.category_id dictionary_author
_name.object_id id_ORCID
_type.purpose Encode
_type.source Recorded
_type.container Single
_type.contents Code
_description_example.case 0000-0003-0391-0002
save_
save_dictionary_author.name
_definition.id '_dictionary_author.name'
_definition.class Attribute
_definition.update 2023-07-13
_description.text
;
The name of an author of this dictionary. The family name(s), followed
by a comma and including any dynastic components, precedes the first
name(s) or initial(s). For authors with only one name, provide the full
name without abbreviation.
;
_name.category_id dictionary_author
_name.object_id name
_type.purpose Describe
_type.source Recorded
_type.container Single
_type.contents Text
loop_
_description_example.case
'''Bleary, Percival R.'''
'''O'Neil, F.K.'''
'''Van den Bossche, G.'''
'''Yang, D.-L.'''
'''Simonov, Yu.A.'''
'''M\"uller, H.A.'''
'''Ross II, C.R.'''
'''Chandra'''
save_
save_DICTIONARY_VALID
_definition.id DICTIONARY_VALID
_definition.scope Category
_definition.class Loop
_definition.update 2021-07-20
_description.text
;
Data items which are used to specify the contents of definitions in
the dictionary in terms of the _definition.scope and the required
and prohibited attributes. Validation rules described by data items
in this category apply only to Reference and Instance dictionaries.
;
_name.category_id DICTIONARY
_name.object_id DICTIONARY_VALID
loop_
_category_key.name
'_dictionary_valid.scope'
'_dictionary_valid.option'
save_
save_dictionary_valid.application
_definition.id '_dictionary_valid.application'
_definition.class Attribute
_definition_replaced.id 1
_definition_replaced.by .
_definition.update 2021-07-20
_description.text
;
Deprecated. Provides the information identifying the definition scope
(from the _definition.scope enumeration list) and the validity options
(from the _dictionary_valid.option enumeration list), as a two element
list.
;
_name.category_id dictionary_valid
_name.object_id application
_type.purpose Encode
_type.source Assigned
_type.container List
_type.dimension '[2]'
_type.contents Code
_method.purpose Evaluation
_method.expression
;
_dictionary_valid.application
= [_dictionary_valid.scope,_dictionary_valid.option]
;
save_
save_dictionary_valid.attributes
_definition.id '_dictionary_valid.attributes'
_definition.class Attribute
_definition.update 2021-07-21
_description.text
;
A list of the attribute names and categories that are assessed
for application in the item, category and dictionary definitions. A
parent attribute category implicitly recursively includes all child
categories.
;
_name.category_id dictionary_valid
_name.object_id attributes
_type.purpose Audit
_type.source Assigned
_type.container List
_type.dimension '[]'
_type.contents Code
save_
save_dictionary_valid.option
_definition.id '_dictionary_valid.option'
_definition.class Attribute
_definition.update 2021-07-20
_description.text
;
Option codes for applicability of attributes in definitions. Attributes
not listed as 'Prohibited' for a given scope are allowed in that scope.
;
_name.category_id dictionary_valid
_name.object_id option
_type.purpose State
_type.source Assigned
_type.container Single
_type.contents Code
loop_
_enumeration_set.state
_enumeration_set.detail
Mandatory 'Attribute must be present in definition frame.'
Recommended 'Attribute is usually in definition frame.'
Prohibited 'Attribute must not be used in definition frame.'
_enumeration.default Recommended
save_
save_dictionary_valid.scope
_definition.id '_dictionary_valid.scope'
_definition.class Attribute
_definition.update 2015-01-28
_description.text
;
The scope to which the specified restriction on usable
attributes applies.
;
_name.category_id dictionary_valid
_name.object_id scope
_type.purpose Audit
_type.source Assigned
_type.container Single
_type.contents Code
loop_
_enumeration_set.state
_enumeration_set.detail
Dictionary 'Restriction applies to dictionary definition.'
Category 'Restriction applies to a category definition.'
Item 'Restriction applies to an item definition.'
save_
save_ENUMERATION
_definition.id ENUMERATION
_definition.scope Category
_definition.class Set
_definition.update 2011-06-20
_description.text
;
The attributes for restricting the values of defined data items.
;
_name.category_id ATTRIBUTES
_name.object_id ENUMERATION
save_
save_enumeration.def_index_id
_definition.id '_enumeration.def_index_id'
_definition.class Attribute
_definition_replaced.id 1
_definition_replaced.by '_enumeration.def_index_ids'