-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathzcl_ibmc_nat_lang_undrstnd_v1.clas.abap
3012 lines (2729 loc) · 124 KB
/
zcl_ibmc_nat_lang_undrstnd_v1.clas.abap
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
* Copyright 2019, 2023 IBM Corp. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
"! <p class="shorttext synchronized" lang="en">Natural Language Understanding</p>
"! Analyze various features of text content at scale. Provide text, raw HTML, or a
"! public URL and IBM Watson Natural Language Understanding will give you results
"! for the features you request. The service cleans HTML content before analysis
"! by default, so the results can ignore most advertisements and other unwanted
"! content.<br/>
"! <br/>
"! You can create [custom
"! models](https://cloud.ibm.com/docs/natural-language-understanding?topic=natural
"! -language-understanding-customizing) with Watson Knowledge Studio to detect
"! custom entities and relations in Natural Language Understanding. <br/>
"! <br/>
"! IBM is sunsetting Watson Natural Language Understanding Custom Sentiment (BETA).
"! From **June 1, 2023** onward, you will no longer be able to use the Custom
"! Sentiment feature.<br /><br />To ensure we continue providing our
"! clients with robust and powerful text classification capabilities, IBM recently
"! announced the general availability of a new [single-label text classification
"! capability](https://cloud.ibm.com/docs/natural-language-understanding?topic=nat
"! ural-language-understanding-classifications). This new feature includes extended
"! language support and training data customizations suited for building a custom
"! sentiment classifier.<br /><br />If you would like more information
"! or further guidance, please contact IBM Cloud Support.{: deprecated} <br/>
class ZCL_IBMC_NAT_LANG_UNDRSTND_V1 DEFINITION
public
inheriting from ZCL_IBMC_SERVICE_EXT
create public .
public section.
types:
"! No documentation available.
begin of T_SEMANTIC_ROLES_ENTITY,
"! Entity type.
TYPE type STRING,
"! The entity text.
TEXT type STRING,
end of T_SEMANTIC_ROLES_ENTITY.
types:
"! No documentation available.
begin of T_SEMANTIC_ROLES_KEYWORD,
"! The keyword text.
TEXT type STRING,
end of T_SEMANTIC_ROLES_KEYWORD.
types:
"! <p class="shorttext synchronized" lang="en">
"! The extracted subject from the sentence.</p>
begin of T_SMNTC_ROLES_RESULT_SUBJECT,
"! Text that corresponds to the subject role.
TEXT type STRING,
"! An array of extracted entities.
ENTITIES type STANDARD TABLE OF T_SEMANTIC_ROLES_ENTITY WITH NON-UNIQUE DEFAULT KEY,
"! An array of extracted keywords.
KEYWORDS type STANDARD TABLE OF T_SEMANTIC_ROLES_KEYWORD WITH NON-UNIQUE DEFAULT KEY,
end of T_SMNTC_ROLES_RESULT_SUBJECT.
types:
"! <p class="shorttext synchronized" lang="en">
"! The extracted object from the sentence.</p>
begin of T_SEMANTIC_ROLES_RESULT_OBJECT,
"! Object text.
TEXT type STRING,
"! An array of extracted keywords.
KEYWORDS type STANDARD TABLE OF T_SEMANTIC_ROLES_KEYWORD WITH NON-UNIQUE DEFAULT KEY,
end of T_SEMANTIC_ROLES_RESULT_OBJECT.
types:
"! No documentation available.
begin of T_SEMANTIC_ROLES_VERB,
"! The keyword text.
TEXT type STRING,
"! Verb tense.
TENSE type STRING,
end of T_SEMANTIC_ROLES_VERB.
types:
"! <p class="shorttext synchronized" lang="en">
"! The extracted action from the sentence.</p>
begin of T_SEMANTIC_ROLES_RESULT_ACTION,
"! Analyzed text that corresponds to the action.
TEXT type STRING,
"! normalized version of the action.
NORMALIZED type STRING,
"! No documentation available.
VERB type T_SEMANTIC_ROLES_VERB,
end of T_SEMANTIC_ROLES_RESULT_ACTION.
types:
"! <p class="shorttext synchronized" lang="en">
"! The object containing the actions and the objects the</p>
"! actions act upon.
begin of T_SEMANTIC_ROLES_RESULT,
"! Sentence from the source that contains the subject, action, and object.
SENTENCE type STRING,
"! The extracted subject from the sentence.
SUBJECT type T_SMNTC_ROLES_RESULT_SUBJECT,
"! The extracted action from the sentence.
ACTION type T_SEMANTIC_ROLES_RESULT_ACTION,
"! The extracted object from the sentence.
OBJECT type T_SEMANTIC_ROLES_RESULT_OBJECT,
end of T_SEMANTIC_ROLES_RESULT.
types:
"! <p class="shorttext synchronized" lang="en">
"! Parses sentences into subject, action, and object form.</p><br/>
"! <br/>
"! Supported languages: English, German, Japanese, Korean, Spanish.
begin of T_SEMANTIC_ROLES_OPTIONS,
"! Maximum number of semantic_roles results to return.
LIMIT type INTEGER,
"! Set this to `true` to return keyword information for subjects and objects.
KEYWORDS type BOOLEAN,
"! Set this to `true` to return entity information for subjects and objects.
ENTITIES type BOOLEAN,
end of T_SEMANTIC_ROLES_OPTIONS.
types:
"! <p class="shorttext synchronized" lang="en">
"! Metadata associated with this custom model.</p>
begin of T_MODEL_METADATA,
"! An optional name for the model.
NAME type STRING,
"! An optional map of metadata key-value pairs to store with this model.
USER_METADATA type JSONOBJECT,
"! The 2-letter language code of this model.
LANGUAGE type STRING,
"! An optional description of the model.
DESCRIPTION type STRING,
"! An optional version string.
MODEL_VERSION type STRING,
"! ID of the Watson Knowledge Studio workspace that deployed this model to Natural
"! Language Understanding.
WORKSPACE_ID type STRING,
"! The description of the version.
VERSION_DESCRIPTION type STRING,
end of T_MODEL_METADATA.
types:
"! <p class="shorttext synchronized" lang="en">
"! A list of messages describing model training issues when</p>
"! model status is `error`.
begin of T_NOTICE,
"! Describes deficiencies or inconsistencies in training data.
MESSAGE type STRING,
end of T_NOTICE.
types:
"! <p class="shorttext synchronized" lang="en">
"! Classifications model.</p>
begin of T_CLASSIFICATIONS_MODEL,
"! An optional name for the model.
NAME type STRING,
"! An optional map of metadata key-value pairs to store with this model.
USER_METADATA type JSONOBJECT,
"! The 2-letter language code of this model.
LANGUAGE type STRING,
"! An optional description of the model.
DESCRIPTION type STRING,
"! An optional version string.
MODEL_VERSION type STRING,
"! ID of the Watson Knowledge Studio workspace that deployed this model to Natural
"! Language Understanding.
WORKSPACE_ID type STRING,
"! The description of the version.
VERSION_DESCRIPTION type STRING,
"! The service features that are supported by the custom model.
FEATURES type STANDARD TABLE OF STRING WITH NON-UNIQUE DEFAULT KEY,
"! When the status is `available`, the model is ready to use.
STATUS type STRING,
"! Unique model ID.
MODEL_ID type STRING,
"! dateTime indicating when the model was created.
CREATED type DATETIME,
"! No documentation available.
NOTICES type STANDARD TABLE OF T_NOTICE WITH NON-UNIQUE DEFAULT KEY,
"! dateTime of last successful model training.
LAST_TRAINED type DATETIME,
"! dateTime of last successful model deployment.
LAST_DEPLOYED type DATETIME,
end of T_CLASSIFICATIONS_MODEL.
types:
"! <p class="shorttext synchronized" lang="en">
"! List of classifications models.</p>
begin of T_CLASSIFICATIONS_MODEL_LIST,
"! The classifications models.
MODELS type STANDARD TABLE OF T_CLASSIFICATIONS_MODEL WITH NON-UNIQUE DEFAULT KEY,
end of T_CLASSIFICATIONS_MODEL_LIST.
types:
"! <p class="shorttext synchronized" lang="en">
"! An entity that corresponds with an argument in a relation.</p>
begin of T_RELATION_ENTITY,
"! Text that corresponds to the entity.
TEXT type STRING,
"! Entity type.
TYPE type STRING,
end of T_RELATION_ENTITY.
types:
"! No documentation available.
begin of T_RELATION_ARGUMENT,
"! An array of extracted entities.
ENTITIES type STANDARD TABLE OF T_RELATION_ENTITY WITH NON-UNIQUE DEFAULT KEY,
"! Character offsets indicating the beginning and end of the mention in the
"! analyzed text.
LOCATION type STANDARD TABLE OF INTEGER WITH NON-UNIQUE DEFAULT KEY,
"! Text that corresponds to the argument.
TEXT type STRING,
end of T_RELATION_ARGUMENT.
types:
"! <p class="shorttext synchronized" lang="en">
"! The relations between entities found in the content.</p>
begin of T_RELATIONS_RESULT,
"! Confidence score for the relation. Higher values indicate greater confidence.
SCORE type DOUBLE,
"! The sentence that contains the relation.
SENTENCE type STRING,
"! The type of the relation.
TYPE type STRING,
"! Entity mentions that are involved in the relation.
ARGUMENTS type STANDARD TABLE OF T_RELATION_ARGUMENT WITH NON-UNIQUE DEFAULT KEY,
end of T_RELATIONS_RESULT.
types:
"! No documentation available.
begin of T_MODEL,
"! When the status is `available`, the model is ready to use.
STATUS type STRING,
"! Unique model ID.
MODEL_ID type STRING,
"! ISO 639-1 code that indicates the language of the model.
LANGUAGE type STRING,
"! Model description.
DESCRIPTION type STRING,
"! ID of the Watson Knowledge Studio workspace that deployed this model to Natural
"! Language Understanding.
WORKSPACE_ID type STRING,
"! The model version, if it was manually provided in Watson Knowledge Studio.
MODEL_VERSION type STRING,
"! Deprecated — use `model_version`.
VERSION type STRING,
"! The description of the version, if it was manually provided in Watson Knowledge
"! Studio.
VERSION_DESCRIPTION type STRING,
"! A dateTime indicating when the model was created.
CREATED type DATETIME,
end of T_MODEL.
types:
"! No documentation available.
begin of T_FEATURE_SENTIMENT_RESULTS,
"! Sentiment score from -1 (negative) to 1 (positive).
SCORE type DOUBLE,
end of T_FEATURE_SENTIMENT_RESULTS.
types:
"! No documentation available.
begin of T_EMOTION_SCORES,
"! Anger score from 0 to 1. A higher score means that the text is more likely to
"! convey anger.
ANGER type DOUBLE,
"! Disgust score from 0 to 1. A higher score means that the text is more likely to
"! convey disgust.
DISGUST type DOUBLE,
"! Fear score from 0 to 1. A higher score means that the text is more likely to
"! convey fear.
FEAR type DOUBLE,
"! Joy score from 0 to 1. A higher score means that the text is more likely to
"! convey joy.
JOY type DOUBLE,
"! Sadness score from 0 to 1. A higher score means that the text is more likely to
"! convey sadness.
SADNESS type DOUBLE,
end of T_EMOTION_SCORES.
types:
"! <p class="shorttext synchronized" lang="en">
"! The author of the analyzed content.</p>
begin of T_AUTHOR,
"! Name of the author.
NAME type STRING,
end of T_AUTHOR.
types:
"! <p class="shorttext synchronized" lang="en">
"! RSS or ATOM feed found on the webpage.</p>
begin of T_FEED,
"! URL of the RSS or ATOM feed.
LINK type STRING,
end of T_FEED.
types:
"! <p class="shorttext synchronized" lang="en">
"! Webpage metadata, such as the author and the title of the</p>
"! page.
begin of T_FEATURES_RESULTS_METADATA,
"! The authors of the document.
AUTHORS type STANDARD TABLE OF T_AUTHOR WITH NON-UNIQUE DEFAULT KEY,
"! The publication date in the format ISO 8601.
PUBLICATION_DATE type STRING,
"! The title of the document.
TITLE type STRING,
"! URL of a prominent image on the webpage.
IMAGE type STRING,
"! RSS/ATOM feeds found on the webpage.
FEEDS type STANDARD TABLE OF T_FEED WITH NON-UNIQUE DEFAULT KEY,
end of T_FEATURES_RESULTS_METADATA.
types:
"! No documentation available.
begin of T_ENTITY_MENTION,
"! Entity mention text.
TEXT type STRING,
"! Character offsets indicating the beginning and end of the mention in the
"! analyzed text.
LOCATION type STANDARD TABLE OF INTEGER WITH NON-UNIQUE DEFAULT KEY,
"! Confidence in the entity identification from 0 to 1. Higher values indicate
"! higher confidence. In standard entities requests, confidence is returned only
"! for English text. All entities requests that use custom models return the
"! confidence score.
CONFIDENCE type DOUBLE,
end of T_ENTITY_MENTION.
types:
"! <p class="shorttext synchronized" lang="en">
"! Disambiguation information for the entity.</p>
begin of T_DISAMBIGUATION_RESULT,
"! Common entity name.
NAME type STRING,
"! Link to the corresponding DBpedia resource.
DBPEDIA_RESOURCE type STRING,
"! Entity subtype information.
SUBTYPE type STANDARD TABLE OF STRING WITH NON-UNIQUE DEFAULT KEY,
end of T_DISAMBIGUATION_RESULT.
types:
"! <p class="shorttext synchronized" lang="en">
"! The important people, places, geopolitical entities and</p>
"! other types of entities in your content.
begin of T_ENTITIES_RESULT,
"! Entity type.
TYPE type STRING,
"! The name of the entity.
TEXT type STRING,
"! Relevance score from 0 to 1. Higher values indicate greater relevance.
RELEVANCE type DOUBLE,
"! Confidence in the entity identification from 0 to 1. Higher values indicate
"! higher confidence. In standard entities requests, confidence is returned only
"! for English text. All entities requests that use custom models return the
"! confidence score.
CONFIDENCE type DOUBLE,
"! Entity mentions and locations.
MENTIONS type STANDARD TABLE OF T_ENTITY_MENTION WITH NON-UNIQUE DEFAULT KEY,
"! How many times the entity was mentioned in the text.
COUNT type INTEGER,
"! Emotion analysis results for the entity, enabled with the `emotion` option.
EMOTION type T_EMOTION_SCORES,
"! Sentiment analysis results for the entity, enabled with the `sentiment` option.
SENTIMENT type T_FEATURE_SENTIMENT_RESULTS,
"! Disambiguation information for the entity.
DISAMBIGUATION type T_DISAMBIGUATION_RESULT,
end of T_ENTITIES_RESULT.
types:
"! <p class="shorttext synchronized" lang="en">
"! Emotion results for a specified target.</p>
begin of T_TARGETED_EMOTION_RESULTS,
"! Targeted text.
TEXT type STRING,
"! The emotion results for the target.
EMOTION type T_EMOTION_SCORES,
end of T_TARGETED_EMOTION_RESULTS.
types:
"! <p class="shorttext synchronized" lang="en">
"! The important keywords in the content, organized by</p>
"! relevance.
begin of T_KEYWORDS_RESULT,
"! Number of times the keyword appears in the analyzed text.
COUNT type INTEGER,
"! Relevance score from 0 to 1. Higher values indicate greater relevance.
RELEVANCE type DOUBLE,
"! The keyword text.
TEXT type STRING,
"! Emotion analysis results for the keyword, enabled with the `emotion` option.
EMOTION type T_EMOTION_SCORES,
"! Sentiment analysis results for the keyword, enabled with the `sentiment` option.
"!
SENTIMENT type T_FEATURE_SENTIMENT_RESULTS,
end of T_KEYWORDS_RESULT.
types:
"! No documentation available.
begin of T_TARGETED_SENTIMENT_RESULTS,
"! Targeted text.
TEXT type STRING,
"! Sentiment score from -1 (negative) to 1 (positive).
SCORE type DOUBLE,
end of T_TARGETED_SENTIMENT_RESULTS.
types:
"! <p class="shorttext synchronized" lang="en">
"! Relevant text that contributed to the categorization.</p>
begin of T_CATEGORIES_RELEVANT_TEXT,
"! Text from the analyzed source that supports the categorization.
TEXT type STRING,
end of T_CATEGORIES_RELEVANT_TEXT.
types:
"! <p class="shorttext synchronized" lang="en">
"! Emotion results for the document as a whole.</p>
begin of T_DOCUMENT_EMOTION_RESULTS,
"! Emotion results for the document as a whole.
EMOTION type T_EMOTION_SCORES,
end of T_DOCUMENT_EMOTION_RESULTS.
types:
"! No documentation available.
begin of T_DOCUMENT_SENTIMENT_RESULTS,
"! Indicates whether the sentiment is positive, neutral, or negative.
LABEL type STRING,
"! Sentiment score from -1 (negative) to 1 (positive).
SCORE type DOUBLE,
end of T_DOCUMENT_SENTIMENT_RESULTS.
types:
"! <p class="shorttext synchronized" lang="en">
"! The sentiment of the content.</p>
begin of T_SENTIMENT_RESULT,
"! The document level sentiment.
DOCUMENT type T_DOCUMENT_SENTIMENT_RESULTS,
"! The targeted sentiment to analyze.
TARGETS type STANDARD TABLE OF T_TARGETED_SENTIMENT_RESULTS WITH NON-UNIQUE DEFAULT KEY,
end of T_SENTIMENT_RESULT.
types:
"! No documentation available.
begin of T_TOKEN_RESULT,
"! The token as it appears in the analyzed text.
TEXT type STRING,
"! The part of speech of the token. For more information about the values, see
"! [Universal Dependencies POS tags](https://universaldependencies.org/u/pos/).
PART_OF_SPEECH type STRING,
"! Character offsets indicating the beginning and end of the token in the analyzed
"! text.
LOCATION type STANDARD TABLE OF INTEGER WITH NON-UNIQUE DEFAULT KEY,
"! The [lemma](https://wikipedia.org/wiki/Lemma_%28morphology%29) of the token.
LEMMA type STRING,
end of T_TOKEN_RESULT.
types:
"! No documentation available.
begin of T_SENTENCE_RESULT,
"! The sentence.
TEXT type STRING,
"! Character offsets indicating the beginning and end of the sentence in the
"! analyzed text.
LOCATION type STANDARD TABLE OF INTEGER WITH NON-UNIQUE DEFAULT KEY,
end of T_SENTENCE_RESULT.
types:
"! <p class="shorttext synchronized" lang="en">
"! Tokens and sentences returned from syntax analysis.</p>
begin of T_SYNTAX_RESULT,
"! No documentation available.
TOKENS type STANDARD TABLE OF T_TOKEN_RESULT WITH NON-UNIQUE DEFAULT KEY,
"! No documentation available.
SENTENCES type STANDARD TABLE OF T_SENTENCE_RESULT WITH NON-UNIQUE DEFAULT KEY,
end of T_SYNTAX_RESULT.
types:
"! <p class="shorttext synchronized" lang="en">
"! A classification of the analyzed text.</p>
begin of T_CLASSIFICATIONS_RESULT,
"! Classification assigned to the text.
CLASS_NAME type STRING,
"! Confidence score for the classification. Higher values indicate greater
"! confidence.
CONFIDENCE type DOUBLE,
end of T_CLASSIFICATIONS_RESULT.
types:
"! <p class="shorttext synchronized" lang="en">
"! The general concepts referenced or alluded to in the</p>
"! analyzed text.
begin of T_CONCEPTS_RESULT,
"! Name of the concept.
TEXT type STRING,
"! Relevance score between 0 and 1. Higher scores indicate greater relevance.
RELEVANCE type DOUBLE,
"! Link to the corresponding DBpedia resource.
DBPEDIA_RESOURCE type STRING,
end of T_CONCEPTS_RESULT.
types:
"! <p class="shorttext synchronized" lang="en">
"! Information that helps to explain what contributed to the</p>
"! categories result.
begin of T_CTGRS_RESULT_EXPLANATION,
"! An array of relevant text from the source that contributed to the
"! categorization. The sorted array begins with the phrase that contributed most
"! significantly to the result, followed by phrases that were less and less
"! impactful.
RELEVANT_TEXT type STANDARD TABLE OF T_CATEGORIES_RELEVANT_TEXT WITH NON-UNIQUE DEFAULT KEY,
end of T_CTGRS_RESULT_EXPLANATION.
types:
"! <p class="shorttext synchronized" lang="en">
"! A categorization of the analyzed text.</p>
begin of T_CATEGORIES_RESULT,
"! The path to the category through the multi-level taxonomy hierarchy. For more
"! information about the categories, see [Categories
"! hierarchy](https://cloud.ibm.com/docs/natural-language-understanding?topic=natu
"! ral-language-understanding-categories#categories-hierarchy).
LABEL type STRING,
"! Confidence score for the category classification. Higher values indicate greater
"! confidence.
SCORE type DOUBLE,
"! Information that helps to explain what contributed to the categories result.
EXPLANATION type T_CTGRS_RESULT_EXPLANATION,
end of T_CATEGORIES_RESULT.
types:
"! <p class="shorttext synchronized" lang="en">
"! The detected anger, disgust, fear, joy, or sadness that is</p>
"! conveyed by the content. Emotion information can be returned for detected
"! entities, keywords, or user-specified target phrases found in the text.
begin of T_EMOTION_RESULT,
"! Emotion results for the document as a whole.
DOCUMENT type T_DOCUMENT_EMOTION_RESULTS,
"! Emotion results for specified targets.
TARGETS type STANDARD TABLE OF T_TARGETED_EMOTION_RESULTS WITH NON-UNIQUE DEFAULT KEY,
end of T_EMOTION_RESULT.
types:
"! <p class="shorttext synchronized" lang="en">
"! Analysis results for each requested feature.</p>
begin of T_FEATURES_RESULTS,
"! The general concepts referenced or alluded to in the analyzed text.
CONCEPTS type STANDARD TABLE OF T_CONCEPTS_RESULT WITH NON-UNIQUE DEFAULT KEY,
"! The entities detected in the analyzed text.
ENTITIES type STANDARD TABLE OF T_ENTITIES_RESULT WITH NON-UNIQUE DEFAULT KEY,
"! The keywords from the analyzed text.
KEYWORDS type STANDARD TABLE OF T_KEYWORDS_RESULT WITH NON-UNIQUE DEFAULT KEY,
"! The categories that the service assigned to the analyzed text.
CATEGORIES type STANDARD TABLE OF T_CATEGORIES_RESULT WITH NON-UNIQUE DEFAULT KEY,
"! The classifications assigned to the analyzed text.
CLASSIFICATIONS type STANDARD TABLE OF T_CLASSIFICATIONS_RESULT WITH NON-UNIQUE DEFAULT KEY,
"! The anger, disgust, fear, joy, or sadness conveyed by the content.
EMOTION type T_EMOTION_RESULT,
"! Webpage metadata, such as the author and the title of the page.
METADATA type T_FEATURES_RESULTS_METADATA,
"! The relationships between entities in the content.
RELATIONS type STANDARD TABLE OF T_RELATIONS_RESULT WITH NON-UNIQUE DEFAULT KEY,
"! Sentences parsed into `subject`, `action`, and `object` form.
SEMANTIC_ROLES type STANDARD TABLE OF T_SEMANTIC_ROLES_RESULT WITH NON-UNIQUE DEFAULT KEY,
"! The sentiment of the content.
SENTIMENT type T_SENTIMENT_RESULT,
"! Tokens and sentences returned from syntax analysis.
SYNTAX type T_SYNTAX_RESULT,
end of T_FEATURES_RESULTS.
types:
"! <p class="shorttext synchronized" lang="en">
"! The authors, publication date, title, prominent page image,</p>
"! and RSS/ATOM feeds of the webpage. Supports URL and HTML input types.
begin of T_METADATA_RESULT,
"! The authors of the document.
AUTHORS type STANDARD TABLE OF T_AUTHOR WITH NON-UNIQUE DEFAULT KEY,
"! The publication date in the format ISO 8601.
PUBLICATION_DATE type STRING,
"! The title of the document.
TITLE type STRING,
"! URL of a prominent image on the webpage.
IMAGE type STRING,
"! RSS/ATOM feeds found on the webpage.
FEEDS type STANDARD TABLE OF T_FEED WITH NON-UNIQUE DEFAULT KEY,
end of T_METADATA_RESULT.
types:
"! No documentation available.
begin of T_ERROR_RESPONSE,
"! The HTTP error status code.
CODE type INTEGER,
"! A message describing the error.
ERROR type STRING,
end of T_ERROR_RESPONSE.
types:
"! <p class="shorttext synchronized" lang="en">
"! Detects anger, disgust, fear, joy, or sadness that is</p>
"! conveyed in the content or by the context around target phrases specified in
"! the targets parameter. You can analyze emotion for detected entities with
"! `entities.emotion` and for keywords with `keywords.emotion`.<br/>
"! <br/>
"! Supported languages: English.
begin of T_EMOTION_OPTIONS,
"! Set this to `false` to hide document-level emotion results.
DOCUMENT type BOOLEAN,
"! Emotion results will be returned for each target string that is found in the
"! document.
TARGETS type STANDARD TABLE OF STRING WITH NON-UNIQUE DEFAULT KEY,
end of T_EMOTION_OPTIONS.
types:
"! <p class="shorttext synchronized" lang="en">
"! Usage information.</p>
begin of T_USAGE,
"! Number of features used in the API call.
FEATURES type INTEGER,
"! Number of text characters processed.
TEXT_CHARACTERS type INTEGER,
"! Number of 10,000-character units processed.
TEXT_UNITS type INTEGER,
end of T_USAGE.
types:
"! <p class="shorttext synchronized" lang="en">
"! Analyzes the general sentiment of your content or the</p>
"! sentiment toward specific target phrases. You can analyze sentiment for
"! detected entities with `entities.sentiment` and for keywords with
"! `keywords.sentiment`.<br/>
"! <br/>
"! Supported languages: Arabic, English, French, German, Italian, Japanese,
"! Korean, Portuguese, Russian, Spanish.
begin of T_SENTIMENT_OPTIONS,
"! Set this to `false` to hide document-level sentiment results.
DOCUMENT type BOOLEAN,
"! Sentiment results will be returned for each target string that is found in the
"! document.
TARGETS type STANDARD TABLE OF STRING WITH NON-UNIQUE DEFAULT KEY,
end of T_SENTIMENT_OPTIONS.
types:
"! No documentation available.
begin of T_SEMANTIC_ROLES_ACTION,
"! Analyzed text that corresponds to the action.
TEXT type STRING,
"! normalized version of the action.
NORMALIZED type STRING,
"! No documentation available.
VERB type T_SEMANTIC_ROLES_VERB,
end of T_SEMANTIC_ROLES_ACTION.
types:
"! <p class="shorttext synchronized" lang="en">
"! Tokenization options.</p>
begin of T_SYNTAX_OPTIONS_TOKENS,
"! Set this to `true` to return the lemma for each token.
LEMMA type BOOLEAN,
"! Set this to `true` to return the part of speech for each token.
PART_OF_SPEECH type BOOLEAN,
end of T_SYNTAX_OPTIONS_TOKENS.
types:
"! <p class="shorttext synchronized" lang="en">
"! Metadata associated with this custom model.</p>
begin of T_FILE_AND_METADATA,
"! An optional name for the model.
NAME type STRING,
"! An optional map of metadata key-value pairs to store with this model.
USER_METADATA type JSONOBJECT,
"! The 2-letter language code of this model.
LANGUAGE type STRING,
"! An optional description of the model.
DESCRIPTION type STRING,
"! An optional version string.
MODEL_VERSION type STRING,
"! ID of the Watson Knowledge Studio workspace that deployed this model to Natural
"! Language Understanding.
WORKSPACE_ID type STRING,
"! The description of the version.
VERSION_DESCRIPTION type STRING,
"! The advanced rules feature is deprecated. Existing models are supported until 24
"! June 2021, but after 10 June 2021, you will not be able to deploy advanced
"! rules models to Natural Language Understanding. After 24 June 2021, advanced
"! rules models will not run in Natural Language Understanding.<br/>
"! <br/>
"! Model file exported from the advanced rules editor in Watson Knowledge Studio.
"! For more information, see [Creating an advanced rules
"! model](https://cloud.ibm.com/docs/watson-knowledge-studio?topic=watson-knowledg
"! e-studio-create-advanced-rules-model#create-advanced-rules-model-procedure).
MODEL type FILE,
end of T_FILE_AND_METADATA.
types:
"! <p class="shorttext synchronized" lang="en">
"! (Experimental) Returns a summary of content. </p><br/>
"! <br/>
"! Supported languages: English only. <br/>
"! <br/>
"! Supported regions: Dallas region only.
begin of T_SUMMARIZATION_OPTIONS,
"! Maximum number of summary sentences to return.
LIMIT type INTEGER,
end of T_SUMMARIZATION_OPTIONS.
types:
"! <p class="shorttext synchronized" lang="en">
"! Returns important keywords in the content.</p><br/>
"! <br/>
"! Supported languages: English, French, German, Italian, Japanese, Korean,
"! Portuguese, Russian, Spanish, Swedish.
begin of T_KEYWORDS_OPTIONS,
"! Maximum number of keywords to return.
LIMIT type INTEGER,
"! Set this to `true` to return sentiment information for detected keywords.
SENTIMENT type BOOLEAN,
"! Set this to `true` to analyze emotion for detected keywords.
EMOTION type BOOLEAN,
end of T_KEYWORDS_OPTIONS.
types:
"! <p class="shorttext synchronized" lang="en">
"! Recognizes when two entities are related and identifies the</p>
"! type of relation. For example, an `awardedTo` relation might connect the
"! entities "Nobel Prize" and "Albert Einstein". For more
"! information, see [Relation
"! types](https://cloud.ibm.com/docs/natural-language-understanding?topic=natural-
"! language-understanding-relations).<br/>
"! <br/>
"! Supported languages: Arabic, English, German, Japanese, Korean, Spanish.
"! Chinese, Dutch, French, Italian, and Portuguese custom models are also
"! supported.
begin of T_RELATIONS_OPTIONS,
"! Enter a [custom
"! model](https://cloud.ibm.com/docs/natural-language-understanding?topic=natural-
"! language-understanding-customizing) ID to override the default model.
MODEL type STRING,
end of T_RELATIONS_OPTIONS.
types:
"! <p class="shorttext synchronized" lang="en">
"! Identifies people, cities, organizations, and other entities</p>
"! in the content. For more information, see [Entity types and
"! subtypes](https://cloud.ibm.com/docs/natural-language-understanding?topic=natur
"! al-language-understanding-entity-types).<br/>
"! <br/>
"! Supported languages: English, French, German, Italian, Japanese, Korean,
"! Portuguese, Russian, Spanish, Swedish. Arabic, Chinese, and Dutch are supported
"! only through custom models.
begin of T_ENTITIES_OPTIONS,
"! Maximum number of entities to return.
LIMIT type INTEGER,
"! Set this to `true` to return locations of entity mentions.
MENTIONS type BOOLEAN,
"! Enter a [custom
"! model](https://cloud.ibm.com/docs/natural-language-understanding?topic=natural-
"! language-understanding-customizing) ID to override the standard entity detection
"! model.
MODEL type STRING,
"! Set this to `true` to return sentiment information for detected entities.
SENTIMENT type BOOLEAN,
"! Set this to `true` to analyze emotion for detected keywords.
EMOTION type BOOLEAN,
end of T_ENTITIES_OPTIONS.
types:
"! <p class="shorttext synchronized" lang="en">
"! Returns high-level concepts in the content. For example, a</p>
"! research paper about deep learning might return the concept, "Artificial
"! Intelligence" although the term is not mentioned.<br/>
"! <br/>
"! Supported languages: English, French, German, Italian, Japanese, Korean,
"! Portuguese, Spanish.
begin of T_CONCEPTS_OPTIONS,
"! Maximum number of concepts to return.
LIMIT type INTEGER,
end of T_CONCEPTS_OPTIONS.
types:
"! <p class="shorttext synchronized" lang="en">
"! Returns tokens and sentences from the input text.</p>
begin of T_SYNTAX_OPTIONS,
"! Tokenization options.
TOKENS type T_SYNTAX_OPTIONS_TOKENS,
"! Set this to `true` to return sentence information.
SENTENCES type BOOLEAN,
end of T_SYNTAX_OPTIONS.
types:
"! <p class="shorttext synchronized" lang="en">
"! Returns text classifications for the content.</p>
begin of T_CLASSIFICATIONS_OPTIONS,
"! Enter a [custom
"! model](https://cloud.ibm.com/docs/natural-language-understanding?topic=natural-
"! language-understanding-customizing) ID of the classifications model to be used.
"! <br/>
"! <br/>
"! You can analyze tone by using a language-specific model ID. See [Tone analytics
"! (Classifications)](https://cloud.ibm.com/docs/natural-language-understanding?to
"! pic=natural-language-understanding-tone_analytics) for more information.
MODEL type STRING,
end of T_CLASSIFICATIONS_OPTIONS.
types:
"! <p class="shorttext synchronized" lang="en">
"! Returns a hierarchical taxonomy of the content. The top</p>
"! three categories are returned by default. <br/>
"! <br/>
"! Supported languages: Arabic, English, French, German, Italian, Japanese, Korean,
"! Portuguese, Spanish.
begin of T_CATEGORIES_OPTIONS,
"! Set this to `true` to return explanations for each categorization. **This is
"! available only for English categories.**.
EXPLANATION type BOOLEAN,
"! Maximum number of categories to return.
LIMIT type INTEGER,
"! (Beta) Enter a [custom
"! model](https://cloud.ibm.com/docs/natural-language-understanding?topic=natural-
"! language-understanding-customizing) ID to override the standard categories
"! model. **This is available only for English categories.**.
MODEL type STRING,
end of T_CATEGORIES_OPTIONS.
types:
"! <p class="shorttext synchronized" lang="en">
"! Analysis features and options.</p>
begin of T_FEATURES,
"! Returns text classifications for the content.
CLASSIFICATIONS type T_CLASSIFICATIONS_OPTIONS,
"! Returns high-level concepts in the content. For example, a research paper about
"! deep learning might return the concept, "Artificial Intelligence"
"! although the term is not mentioned.<br/>
"! <br/>
"! Supported languages: English, French, German, Italian, Japanese, Korean,
"! Portuguese, Spanish.
CONCEPTS type T_CONCEPTS_OPTIONS,
"! Detects anger, disgust, fear, joy, or sadness that is conveyed in the content or
"! by the context around target phrases specified in the targets parameter. You
"! can analyze emotion for detected entities with `entities.emotion` and for
"! keywords with `keywords.emotion`.<br/>
"! <br/>
"! Supported languages: English.
EMOTION type T_EMOTION_OPTIONS,
"! Identifies people, cities, organizations, and other entities in the content. For
"! more information, see [Entity types and
"! subtypes](https://cloud.ibm.com/docs/natural-language-understanding?topic=natur
"! al-language-understanding-entity-types).<br/>
"! <br/>
"! Supported languages: English, French, German, Italian, Japanese, Korean,
"! Portuguese, Russian, Spanish, Swedish. Arabic, Chinese, and Dutch are supported
"! only through custom models.
ENTITIES type T_ENTITIES_OPTIONS,
"! Returns important keywords in the content.<br/>
"! <br/>
"! Supported languages: English, French, German, Italian, Japanese, Korean,
"! Portuguese, Russian, Spanish, Swedish.
KEYWORDS type T_KEYWORDS_OPTIONS,
"! Returns information from the document, including author name, title, RSS/ATOM
"! feeds, prominent page image, and publication date. Supports URL and HTML input
"! types only.
METADATA type JSONOBJECT,
"! Recognizes when two entities are related and identifies the type of relation.
"! For example, an `awardedTo` relation might connect the entities "Nobel
"! Prize" and "Albert Einstein". For more information, see
"! [Relation
"! types](https://cloud.ibm.com/docs/natural-language-understanding?topic=natural-
"! language-understanding-relations).<br/>
"! <br/>
"! Supported languages: Arabic, English, German, Japanese, Korean, Spanish.
"! Chinese, Dutch, French, Italian, and Portuguese custom models are also
"! supported.
RELATIONS type T_RELATIONS_OPTIONS,
"! Parses sentences into subject, action, and object form.<br/>
"! <br/>
"! Supported languages: English, German, Japanese, Korean, Spanish.
SEMANTIC_ROLES type T_SEMANTIC_ROLES_OPTIONS,
"! Analyzes the general sentiment of your content or the sentiment toward specific
"! target phrases. You can analyze sentiment for detected entities with
"! `entities.sentiment` and for keywords with `keywords.sentiment`.<br/>
"! <br/>
"! Supported languages: Arabic, English, French, German, Italian, Japanese,
"! Korean, Portuguese, Russian, Spanish.
SENTIMENT type T_SENTIMENT_OPTIONS,
"! (Experimental) Returns a summary of content. <br/>
"! <br/>
"! Supported languages: English only. <br/>
"! <br/>
"! Supported regions: Dallas region only.
SUMMARIZATION type T_SUMMARIZATION_OPTIONS,
"! Returns a hierarchical taxonomy of the content. The top three categories are
"! returned by default. <br/>
"! <br/>
"! Supported languages: Arabic, English, French, German, Italian, Japanese, Korean,
"! Portuguese, Spanish.
CATEGORIES type T_CATEGORIES_OPTIONS,
"! Returns tokens and sentences from the input text.
SYNTAX type T_SYNTAX_OPTIONS,
end of T_FEATURES.
types:
"! <p class="shorttext synchronized" lang="en">
"! Metadata associated with this custom model.</p>
begin of T_CLSSFCTNS_MDL_FL_AND_MTDT,
"! An optional name for the model.
NAME type STRING,
"! An optional map of metadata key-value pairs to store with this model.
USER_METADATA type JSONOBJECT,
"! The 2-letter language code of this model.
LANGUAGE type STRING,
"! An optional description of the model.
DESCRIPTION type STRING,
"! An optional version string.
MODEL_VERSION type STRING,
"! ID of the Watson Knowledge Studio workspace that deployed this model to Natural
"! Language Understanding.
WORKSPACE_ID type STRING,
"! The description of the version.
VERSION_DESCRIPTION type STRING,
"! Training data in JSON format. For more information, see [Classifications
"! training data
"! requirements](https://cloud.ibm.com/docs/natural-language-understanding?topic=n
"! atural-language-understanding-classifications#classification-training-data-requi
"! rements).
TRAINING_DATA type FILE,
end of T_CLSSFCTNS_MDL_FL_AND_MTDT.
types:
"! <p class="shorttext synchronized" lang="en">
"! The advanced rules feature is deprecated. Existing models</p>
"! are supported until 24 June 2021, but after 10 June 2021, you will not be able
"! to deploy advanced rules models to Natural Language Understanding. After 24
"! June 2021, advanced rules models will not run in Natural Language
"! Understanding.<br/>
"! <br/>
"! Advanced rules model.
begin of T_BASE_ADVANCED_RULES_MODEL,
"! An optional name for the model.
NAME type STRING,
"! An optional map of metadata key-value pairs to store with this model.
USER_METADATA type JSONOBJECT,
"! The 2-letter language code of this model.
LANGUAGE type STRING,
"! An optional description of the model.
DESCRIPTION type STRING,
"! An optional version string.
MODEL_VERSION type STRING,
"! ID of the Watson Knowledge Studio workspace that deployed this model to Natural
"! Language Understanding.
WORKSPACE_ID type STRING,
"! The description of the version.
VERSION_DESCRIPTION type STRING,
"! The service features that are supported by the custom model.
FEATURES type STANDARD TABLE OF STRING WITH NON-UNIQUE DEFAULT KEY,
"! When the status is `available`, the model is ready to use.
STATUS type STRING,
"! Unique model ID.
MODEL_ID type STRING,
"! dateTime indicating when the model was created.
CREATED type DATETIME,
"! No documentation available.
NOTICES type STANDARD TABLE OF T_NOTICE WITH NON-UNIQUE DEFAULT KEY,
"! dateTime of last successful model training.
LAST_TRAINED type DATETIME,
"! dateTime of last successful model deployment.
LAST_DEPLOYED type DATETIME,
end of T_BASE_ADVANCED_RULES_MODEL.
types:
"! <p class="shorttext synchronized" lang="en">
"! API usage information for the request.</p>
begin of T_ANALYSIS_RESULTS_USAGE,
"! Number of features used in the API call.
FEATURES type INTEGER,
"! Number of text characters processed.
TEXT_CHARACTERS type INTEGER,
"! Number of 10,000-character units processed.
TEXT_UNITS type INTEGER,
end of T_ANALYSIS_RESULTS_USAGE.
types:
"! <p class="shorttext synchronized" lang="en">
"! Results of the analysis, organized by feature.</p>
begin of T_ANALYSIS_RESULTS,
"! Language used to analyze the text.
LANGUAGE type STRING,
"! Text that was used in the analysis.
ANALYZED_TEXT type STRING,
"! URL of the webpage that was analyzed.
RETRIEVED_URL type STRING,
"! API usage information for the request.
USAGE type T_ANALYSIS_RESULTS_USAGE,
"! The general concepts referenced or alluded to in the analyzed text.
CONCEPTS type STANDARD TABLE OF T_CONCEPTS_RESULT WITH NON-UNIQUE DEFAULT KEY,
"! The entities detected in the analyzed text.
ENTITIES type STANDARD TABLE OF T_ENTITIES_RESULT WITH NON-UNIQUE DEFAULT KEY,
"! The keywords from the analyzed text.
KEYWORDS type STANDARD TABLE OF T_KEYWORDS_RESULT WITH NON-UNIQUE DEFAULT KEY,
"! The categories that the service assigned to the analyzed text.
CATEGORIES type STANDARD TABLE OF T_CATEGORIES_RESULT WITH NON-UNIQUE DEFAULT KEY,
"! The classifications assigned to the analyzed text.
CLASSIFICATIONS type STANDARD TABLE OF T_CLASSIFICATIONS_RESULT WITH NON-UNIQUE DEFAULT KEY,
"! The anger, disgust, fear, joy, or sadness conveyed by the content.
EMOTION type T_EMOTION_RESULT,
"! Webpage metadata, such as the author and the title of the page.
METADATA type T_FEATURES_RESULTS_METADATA,
"! The relationships between entities in the content.
RELATIONS type STANDARD TABLE OF T_RELATIONS_RESULT WITH NON-UNIQUE DEFAULT KEY,
"! Sentences parsed into `subject`, `action`, and `object` form.
SEMANTIC_ROLES type STANDARD TABLE OF T_SEMANTIC_ROLES_RESULT WITH NON-UNIQUE DEFAULT KEY,
"! The sentiment of the content.
SENTIMENT type T_SENTIMENT_RESULT,
"! Tokens and sentences returned from syntax analysis.
SYNTAX type T_SYNTAX_RESULT,
end of T_ANALYSIS_RESULTS.
types:
"! <p class="shorttext synchronized" lang="en">
"! Categories model.</p>
begin of T_CATEGORIES_MODEL,
"! An optional name for the model.
NAME type STRING,
"! An optional map of metadata key-value pairs to store with this model.
USER_METADATA type JSONOBJECT,
"! The 2-letter language code of this model.
LANGUAGE type STRING,
"! An optional description of the model.
DESCRIPTION type STRING,
"! An optional version string.
MODEL_VERSION type STRING,
"! ID of the Watson Knowledge Studio workspace that deployed this model to Natural
"! Language Understanding.
WORKSPACE_ID type STRING,
"! The description of the version.
VERSION_DESCRIPTION type STRING,
"! The service features that are supported by the custom model.
FEATURES type STANDARD TABLE OF STRING WITH NON-UNIQUE DEFAULT KEY,
"! When the status is `available`, the model is ready to use.
STATUS type STRING,
"! Unique model ID.
MODEL_ID type STRING,
"! dateTime indicating when the model was created.
CREATED type DATETIME,
"! No documentation available.
NOTICES type STANDARD TABLE OF T_NOTICE WITH NON-UNIQUE DEFAULT KEY,
"! dateTime of last successful model training.
LAST_TRAINED type DATETIME,
"! dateTime of last successful model deployment.
LAST_DEPLOYED type DATETIME,
end of T_CATEGORIES_MODEL.
types:
"! <p class="shorttext synchronized" lang="en">
"! List of categories models.</p>
begin of T_CATEGORIES_MODEL_LIST,
"! The categories models.