@oml/language 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +44 -0
- package/out/oml/generated/ast.d.ts +2109 -0
- package/out/oml/generated/ast.js +1807 -0
- package/out/oml/generated/ast.js.map +1 -0
- package/out/oml/generated/grammar.d.ts +6 -0
- package/out/oml/generated/grammar.js +6885 -0
- package/out/oml/generated/grammar.js.map +1 -0
- package/out/oml/generated/module.d.ts +13 -0
- package/out/oml/generated/module.js +21 -0
- package/out/oml/generated/module.js.map +1 -0
- package/out/oml/index.d.ts +17 -0
- package/out/oml/index.js +19 -0
- package/out/oml/index.js.map +1 -0
- package/out/oml/oml-candidates.d.ts +27 -0
- package/out/oml/oml-candidates.js +146 -0
- package/out/oml/oml-candidates.js.map +1 -0
- package/out/oml/oml-code-actions.d.ts +6 -0
- package/out/oml/oml-code-actions.js +79 -0
- package/out/oml/oml-code-actions.js.map +1 -0
- package/out/oml/oml-completion.d.ts +50 -0
- package/out/oml/oml-completion.js +188 -0
- package/out/oml/oml-completion.js.map +1 -0
- package/out/oml/oml-converter.d.ts +10 -0
- package/out/oml/oml-converter.js +62 -0
- package/out/oml/oml-converter.js.map +1 -0
- package/out/oml/oml-document-validator.d.ts +10 -0
- package/out/oml/oml-document-validator.js +31 -0
- package/out/oml/oml-document-validator.js.map +1 -0
- package/out/oml/oml-document.d.ts +9 -0
- package/out/oml/oml-document.js +18 -0
- package/out/oml/oml-document.js.map +1 -0
- package/out/oml/oml-edit.d.ts +72 -0
- package/out/oml/oml-edit.js +1155 -0
- package/out/oml/oml-edit.js.map +1 -0
- package/out/oml/oml-formatter.d.ts +22 -0
- package/out/oml/oml-formatter.js +357 -0
- package/out/oml/oml-formatter.js.map +1 -0
- package/out/oml/oml-hover.d.ts +13 -0
- package/out/oml/oml-hover.js +71 -0
- package/out/oml/oml-hover.js.map +1 -0
- package/out/oml/oml-index-manager.d.ts +10 -0
- package/out/oml/oml-index-manager.js +48 -0
- package/out/oml/oml-index-manager.js.map +1 -0
- package/out/oml/oml-index.d.ts +20 -0
- package/out/oml/oml-index.js +133 -0
- package/out/oml/oml-index.js.map +1 -0
- package/out/oml/oml-module.d.ts +42 -0
- package/out/oml/oml-module.js +76 -0
- package/out/oml/oml-module.js.map +1 -0
- package/out/oml/oml-rename.d.ts +14 -0
- package/out/oml/oml-rename.js +114 -0
- package/out/oml/oml-rename.js.map +1 -0
- package/out/oml/oml-scope.d.ts +30 -0
- package/out/oml/oml-scope.js +225 -0
- package/out/oml/oml-scope.js.map +1 -0
- package/out/oml/oml-serializer.d.ts +2 -0
- package/out/oml/oml-serializer.js +883 -0
- package/out/oml/oml-serializer.js.map +1 -0
- package/out/oml/oml-utils.d.ts +53 -0
- package/out/oml/oml-utils.js +241 -0
- package/out/oml/oml-utils.js.map +1 -0
- package/out/oml/oml-validator.d.ts +49 -0
- package/out/oml/oml-validator.js +668 -0
- package/out/oml/oml-validator.js.map +1 -0
- package/out/oml/oml-workspace.d.ts +23 -0
- package/out/oml/oml-workspace.js +68 -0
- package/out/oml/oml-workspace.js.map +1 -0
- package/package.json +50 -0
- package/src/oml/generated/ast.ts +2641 -0
- package/src/oml/generated/grammar.ts +6887 -0
- package/src/oml/generated/module.ts +25 -0
- package/src/oml/index.ts +19 -0
- package/src/oml/oml-candidates.ts +176 -0
- package/src/oml/oml-code-actions.ts +120 -0
- package/src/oml/oml-completion.ts +222 -0
- package/src/oml/oml-converter.ts +66 -0
- package/src/oml/oml-document-validator.ts +39 -0
- package/src/oml/oml-document.ts +24 -0
- package/src/oml/oml-edit.ts +1292 -0
- package/src/oml/oml-formatter.ts +390 -0
- package/src/oml/oml-hover.ts +93 -0
- package/src/oml/oml-index-manager.ts +56 -0
- package/src/oml/oml-index.ts +145 -0
- package/src/oml/oml-module.ts +105 -0
- package/src/oml/oml-rename.ts +140 -0
- package/src/oml/oml-scope.ts +279 -0
- package/src/oml/oml-serializer.ts +1080 -0
- package/src/oml/oml-utils.ts +294 -0
- package/src/oml/oml-validator.ts +725 -0
- package/src/oml/oml-workspace.ts +81 -0
- package/src/oml/oml.langium +594 -0
|
@@ -0,0 +1,2109 @@
|
|
|
1
|
+
/******************************************************************************
|
|
2
|
+
* This file was generated by langium-cli 4.1.0.
|
|
3
|
+
* DO NOT EDIT MANUALLY!
|
|
4
|
+
******************************************************************************/
|
|
5
|
+
import * as langium from 'langium';
|
|
6
|
+
export declare const OmlTerminals: {
|
|
7
|
+
ML_COMMENT: RegExp;
|
|
8
|
+
SL_COMMENT: RegExp;
|
|
9
|
+
WS: RegExp;
|
|
10
|
+
BOOLEAN: RegExp;
|
|
11
|
+
DOUBLE: RegExp;
|
|
12
|
+
DECIMAL: RegExp;
|
|
13
|
+
INTEGER: RegExp;
|
|
14
|
+
UNSIGNED_INTEGER: RegExp;
|
|
15
|
+
STRING: RegExp;
|
|
16
|
+
NAMESPACE: RegExp;
|
|
17
|
+
IRI: RegExp;
|
|
18
|
+
QNAME: RegExp;
|
|
19
|
+
ID: RegExp;
|
|
20
|
+
};
|
|
21
|
+
export type OmlTerminalNames = keyof typeof OmlTerminals;
|
|
22
|
+
export type OmlKeywordNames = "$" | "&" | "(" | ")" | "," | "->" | ":" | "<" | "=" | "@" | "[" | "]" | "^^" | "all" | "annotation" | "as" | "aspect" | "asymmetric" | "builtIn" | "builtin" | "bundle" | "concept" | "description" | "differentFrom" | "domain" | "entity" | "exactly" | "extends" | "forward" | "from" | "functional" | "includes" | "instance" | "inverse" | "irreflexive" | "key" | "language" | "length" | "max" | "maxExclusive" | "maxInclusive" | "maxLength" | "min" | "minExclusive" | "minInclusive" | "minLength" | "oneOf" | "pattern" | "property" | "range" | "ref" | "reflexive" | "relation" | "restricts" | "reverse" | "rule" | "sameAs" | "scalar" | "self" | "some" | "symmetric" | "to" | "transitive" | "uses" | "vocabulary" | "{" | "}";
|
|
23
|
+
export type OmlTokenNames = OmlTerminalNames | OmlKeywordNames;
|
|
24
|
+
export interface Annotation extends langium.AstNode {
|
|
25
|
+
readonly $container: AnnotationProperty | Aspect | BuiltIn | Concept | ConceptInstance | Description | DescriptionBundle | ForwardRelation | RelationEntity | RelationInstance | ReverseRelation | Rule | Scalar | ScalarProperty | UnreifiedRelation | Vocabulary | VocabularyBundle;
|
|
26
|
+
readonly $type: 'Annotation';
|
|
27
|
+
literalValues: Array<Literal>;
|
|
28
|
+
property: langium.Reference<AnnotationProperty>;
|
|
29
|
+
referencedValues: Array<langium.Reference<Member>>;
|
|
30
|
+
}
|
|
31
|
+
export declare const Annotation: {
|
|
32
|
+
readonly $type: "Annotation";
|
|
33
|
+
readonly literalValues: "literalValues";
|
|
34
|
+
readonly property: "property";
|
|
35
|
+
readonly referencedValues: "referencedValues";
|
|
36
|
+
};
|
|
37
|
+
export declare function isAnnotation(item: unknown): item is Annotation;
|
|
38
|
+
export interface AnnotationProperty extends langium.AstNode {
|
|
39
|
+
readonly $container: Vocabulary;
|
|
40
|
+
readonly $type: 'AnnotationProperty';
|
|
41
|
+
name?: string;
|
|
42
|
+
ownedAnnotations: Array<Annotation>;
|
|
43
|
+
ownedEquivalences: Array<PropertyEquivalenceAxiom>;
|
|
44
|
+
ownedSpecializations: Array<SpecializationAxiom>;
|
|
45
|
+
ref?: langium.Reference<AnnotationProperty>;
|
|
46
|
+
}
|
|
47
|
+
export declare const AnnotationProperty: {
|
|
48
|
+
readonly $type: "AnnotationProperty";
|
|
49
|
+
readonly name: "name";
|
|
50
|
+
readonly ownedAnnotations: "ownedAnnotations";
|
|
51
|
+
readonly ownedEquivalences: "ownedEquivalences";
|
|
52
|
+
readonly ownedSpecializations: "ownedSpecializations";
|
|
53
|
+
readonly ref: "ref";
|
|
54
|
+
};
|
|
55
|
+
export declare function isAnnotationProperty(item: unknown): item is AnnotationProperty;
|
|
56
|
+
export interface AnonymousConceptInstance extends langium.AstNode {
|
|
57
|
+
readonly $container: PropertyValueAssertion | PropertyValueRestrictionAxiom;
|
|
58
|
+
readonly $type: 'AnonymousConceptInstance';
|
|
59
|
+
ownedPropertyValues: Array<PropertyValueAssertion>;
|
|
60
|
+
type?: langium.Reference<Concept>;
|
|
61
|
+
}
|
|
62
|
+
export declare const AnonymousConceptInstance: {
|
|
63
|
+
readonly $type: "AnonymousConceptInstance";
|
|
64
|
+
readonly ownedPropertyValues: "ownedPropertyValues";
|
|
65
|
+
readonly type: "type";
|
|
66
|
+
};
|
|
67
|
+
export declare function isAnonymousConceptInstance(item: unknown): item is AnonymousConceptInstance;
|
|
68
|
+
export type AnonymousInstance = AnonymousConceptInstance | AnonymousRelationInstance;
|
|
69
|
+
export declare const AnonymousInstance: {
|
|
70
|
+
readonly $type: "AnonymousInstance";
|
|
71
|
+
};
|
|
72
|
+
export declare function isAnonymousInstance(item: unknown): item is AnonymousInstance;
|
|
73
|
+
export interface AnonymousRelationInstance extends langium.AstNode {
|
|
74
|
+
readonly $container: PropertyValueAssertion | PropertyValueRestrictionAxiom;
|
|
75
|
+
readonly $type: 'AnonymousRelationInstance';
|
|
76
|
+
ownedPropertyValues: Array<PropertyValueAssertion>;
|
|
77
|
+
target: langium.Reference<NamedInstance>;
|
|
78
|
+
}
|
|
79
|
+
export declare const AnonymousRelationInstance: {
|
|
80
|
+
readonly $type: "AnonymousRelationInstance";
|
|
81
|
+
readonly ownedPropertyValues: "ownedPropertyValues";
|
|
82
|
+
readonly target: "target";
|
|
83
|
+
};
|
|
84
|
+
export declare function isAnonymousRelationInstance(item: unknown): item is AnonymousRelationInstance;
|
|
85
|
+
export interface Argument extends langium.AstNode {
|
|
86
|
+
readonly $container: BuiltInPredicate | DifferentFromPredicate | PropertyPredicate | RelationEntityPredicate | SameAsPredicate | TypePredicate;
|
|
87
|
+
readonly $type: 'Argument';
|
|
88
|
+
instance?: langium.Reference<NamedInstance>;
|
|
89
|
+
literal?: Literal;
|
|
90
|
+
variable?: string;
|
|
91
|
+
}
|
|
92
|
+
export declare const Argument: {
|
|
93
|
+
readonly $type: "Argument";
|
|
94
|
+
readonly instance: "instance";
|
|
95
|
+
readonly literal: "literal";
|
|
96
|
+
readonly variable: "variable";
|
|
97
|
+
};
|
|
98
|
+
export declare function isArgument(item: unknown): item is Argument;
|
|
99
|
+
export interface Aspect extends langium.AstNode {
|
|
100
|
+
readonly $container: Vocabulary;
|
|
101
|
+
readonly $type: 'Aspect';
|
|
102
|
+
name?: string;
|
|
103
|
+
ownedAnnotations: Array<Annotation>;
|
|
104
|
+
ownedEquivalences: Array<EntityEquivalenceAxiom>;
|
|
105
|
+
ownedKeys: Array<KeyAxiom>;
|
|
106
|
+
ownedPropertyRestrictions: Array<PropertyRestrictionAxiom>;
|
|
107
|
+
ownedSpecializations: Array<SpecializationAxiom>;
|
|
108
|
+
ref?: langium.Reference<Aspect>;
|
|
109
|
+
}
|
|
110
|
+
export declare const Aspect: {
|
|
111
|
+
readonly $type: "Aspect";
|
|
112
|
+
readonly name: "name";
|
|
113
|
+
readonly ownedAnnotations: "ownedAnnotations";
|
|
114
|
+
readonly ownedEquivalences: "ownedEquivalences";
|
|
115
|
+
readonly ownedKeys: "ownedKeys";
|
|
116
|
+
readonly ownedPropertyRestrictions: "ownedPropertyRestrictions";
|
|
117
|
+
readonly ownedSpecializations: "ownedSpecializations";
|
|
118
|
+
readonly ref: "ref";
|
|
119
|
+
};
|
|
120
|
+
export declare function isAspect(item: unknown): item is Aspect;
|
|
121
|
+
export type Assertion = PropertyValueAssertion | TypeAssertion;
|
|
122
|
+
export declare const Assertion: {
|
|
123
|
+
readonly $type: "Assertion";
|
|
124
|
+
};
|
|
125
|
+
export declare function isAssertion(item: unknown): item is Assertion;
|
|
126
|
+
export type Axiom = EntityEquivalenceAxiom | InstanceEnumerationAxiom | KeyAxiom | LiteralEnumerationAxiom | PropertyEquivalenceAxiom | PropertyRestrictionAxiom | ScalarEquivalenceAxiom | SpecializationAxiom;
|
|
127
|
+
export declare const Axiom: {
|
|
128
|
+
readonly $type: "Axiom";
|
|
129
|
+
};
|
|
130
|
+
export declare function isAxiom(item: unknown): item is Axiom;
|
|
131
|
+
export type BinaryPredicate = DifferentFromPredicate | PropertyPredicate | SameAsPredicate;
|
|
132
|
+
export declare const BinaryPredicate: {
|
|
133
|
+
readonly $type: "BinaryPredicate";
|
|
134
|
+
};
|
|
135
|
+
export declare function isBinaryPredicate(item: unknown): item is BinaryPredicate;
|
|
136
|
+
export type Boolean = boolean;
|
|
137
|
+
export declare function isBoolean(item: unknown): item is Boolean;
|
|
138
|
+
export interface BooleanLiteral extends langium.AstNode {
|
|
139
|
+
readonly $container: Annotation | Argument | LiteralEnumerationAxiom | PropertyValueAssertion | PropertyValueRestrictionAxiom | ScalarEquivalenceAxiom;
|
|
140
|
+
readonly $type: 'BooleanLiteral';
|
|
141
|
+
value: Boolean;
|
|
142
|
+
}
|
|
143
|
+
export declare const BooleanLiteral: {
|
|
144
|
+
readonly $type: "BooleanLiteral";
|
|
145
|
+
readonly value: "value";
|
|
146
|
+
};
|
|
147
|
+
export declare function isBooleanLiteral(item: unknown): item is BooleanLiteral;
|
|
148
|
+
export interface BuiltIn extends langium.AstNode {
|
|
149
|
+
readonly $container: Vocabulary;
|
|
150
|
+
readonly $type: 'BuiltIn';
|
|
151
|
+
name?: string;
|
|
152
|
+
ownedAnnotations: Array<Annotation>;
|
|
153
|
+
ref?: langium.Reference<BuiltIn>;
|
|
154
|
+
}
|
|
155
|
+
export declare const BuiltIn: {
|
|
156
|
+
readonly $type: "BuiltIn";
|
|
157
|
+
readonly name: "name";
|
|
158
|
+
readonly ownedAnnotations: "ownedAnnotations";
|
|
159
|
+
readonly ref: "ref";
|
|
160
|
+
};
|
|
161
|
+
export declare function isBuiltIn(item: unknown): item is BuiltIn;
|
|
162
|
+
export interface BuiltInPredicate extends langium.AstNode {
|
|
163
|
+
readonly $container: Rule;
|
|
164
|
+
readonly $type: 'BuiltInPredicate';
|
|
165
|
+
arguments: Array<Argument>;
|
|
166
|
+
builtIn: langium.Reference<BuiltIn>;
|
|
167
|
+
}
|
|
168
|
+
export declare const BuiltInPredicate: {
|
|
169
|
+
readonly $type: "BuiltInPredicate";
|
|
170
|
+
readonly arguments: "arguments";
|
|
171
|
+
readonly builtIn: "builtIn";
|
|
172
|
+
};
|
|
173
|
+
export declare function isBuiltInPredicate(item: unknown): item is BuiltInPredicate;
|
|
174
|
+
export type CardinalityRestrictionKind = 'exactly' | 'max' | 'min';
|
|
175
|
+
export declare function isCardinalityRestrictionKind(item: unknown): item is CardinalityRestrictionKind;
|
|
176
|
+
export interface Concept extends langium.AstNode {
|
|
177
|
+
readonly $container: Vocabulary;
|
|
178
|
+
readonly $type: 'Concept';
|
|
179
|
+
name?: string;
|
|
180
|
+
ownedAnnotations: Array<Annotation>;
|
|
181
|
+
ownedEnumeration?: InstanceEnumerationAxiom;
|
|
182
|
+
ownedEquivalences: Array<EntityEquivalenceAxiom>;
|
|
183
|
+
ownedKeys: Array<KeyAxiom>;
|
|
184
|
+
ownedPropertyRestrictions: Array<PropertyRestrictionAxiom>;
|
|
185
|
+
ownedSpecializations: Array<SpecializationAxiom>;
|
|
186
|
+
ref?: langium.Reference<Concept>;
|
|
187
|
+
}
|
|
188
|
+
export declare const Concept: {
|
|
189
|
+
readonly $type: "Concept";
|
|
190
|
+
readonly name: "name";
|
|
191
|
+
readonly ownedAnnotations: "ownedAnnotations";
|
|
192
|
+
readonly ownedEnumeration: "ownedEnumeration";
|
|
193
|
+
readonly ownedEquivalences: "ownedEquivalences";
|
|
194
|
+
readonly ownedKeys: "ownedKeys";
|
|
195
|
+
readonly ownedPropertyRestrictions: "ownedPropertyRestrictions";
|
|
196
|
+
readonly ownedSpecializations: "ownedSpecializations";
|
|
197
|
+
readonly ref: "ref";
|
|
198
|
+
};
|
|
199
|
+
export declare function isConcept(item: unknown): item is Concept;
|
|
200
|
+
export interface ConceptInstance extends langium.AstNode {
|
|
201
|
+
readonly $container: Description;
|
|
202
|
+
readonly $type: 'ConceptInstance';
|
|
203
|
+
name?: string;
|
|
204
|
+
ownedAnnotations: Array<Annotation>;
|
|
205
|
+
ownedPropertyValues: Array<PropertyValueAssertion>;
|
|
206
|
+
ownedTypes: Array<TypeAssertion>;
|
|
207
|
+
ref?: langium.Reference<ConceptInstance>;
|
|
208
|
+
}
|
|
209
|
+
export declare const ConceptInstance: {
|
|
210
|
+
readonly $type: "ConceptInstance";
|
|
211
|
+
readonly name: "name";
|
|
212
|
+
readonly ownedAnnotations: "ownedAnnotations";
|
|
213
|
+
readonly ownedPropertyValues: "ownedPropertyValues";
|
|
214
|
+
readonly ownedTypes: "ownedTypes";
|
|
215
|
+
readonly ref: "ref";
|
|
216
|
+
};
|
|
217
|
+
export declare function isConceptInstance(item: unknown): item is ConceptInstance;
|
|
218
|
+
export type CrossRef = string;
|
|
219
|
+
export declare function isCrossRef(item: unknown): item is CrossRef;
|
|
220
|
+
export type Decimal = number;
|
|
221
|
+
export declare function isDecimal(item: unknown): item is Decimal;
|
|
222
|
+
export interface DecimalLiteral extends langium.AstNode {
|
|
223
|
+
readonly $container: Annotation | Argument | LiteralEnumerationAxiom | PropertyValueAssertion | PropertyValueRestrictionAxiom | ScalarEquivalenceAxiom;
|
|
224
|
+
readonly $type: 'DecimalLiteral';
|
|
225
|
+
value: Decimal;
|
|
226
|
+
}
|
|
227
|
+
export declare const DecimalLiteral: {
|
|
228
|
+
readonly $type: "DecimalLiteral";
|
|
229
|
+
readonly value: "value";
|
|
230
|
+
};
|
|
231
|
+
export declare function isDecimalLiteral(item: unknown): item is DecimalLiteral;
|
|
232
|
+
export interface Description extends langium.AstNode {
|
|
233
|
+
readonly $type: 'Description';
|
|
234
|
+
namespace: string;
|
|
235
|
+
ownedAnnotations: Array<Annotation>;
|
|
236
|
+
ownedImports: Array<Import>;
|
|
237
|
+
ownedStatements: Array<DescriptionStatement>;
|
|
238
|
+
prefix: string;
|
|
239
|
+
}
|
|
240
|
+
export declare const Description: {
|
|
241
|
+
readonly $type: "Description";
|
|
242
|
+
readonly namespace: "namespace";
|
|
243
|
+
readonly ownedAnnotations: "ownedAnnotations";
|
|
244
|
+
readonly ownedImports: "ownedImports";
|
|
245
|
+
readonly ownedStatements: "ownedStatements";
|
|
246
|
+
readonly prefix: "prefix";
|
|
247
|
+
};
|
|
248
|
+
export declare function isDescription(item: unknown): item is Description;
|
|
249
|
+
export type DescriptionBox = Description | DescriptionBundle;
|
|
250
|
+
export declare const DescriptionBox: {
|
|
251
|
+
readonly $type: "DescriptionBox";
|
|
252
|
+
};
|
|
253
|
+
export declare function isDescriptionBox(item: unknown): item is DescriptionBox;
|
|
254
|
+
export interface DescriptionBundle extends langium.AstNode {
|
|
255
|
+
readonly $type: 'DescriptionBundle';
|
|
256
|
+
namespace: string;
|
|
257
|
+
ownedAnnotations: Array<Annotation>;
|
|
258
|
+
ownedImports: Array<Import>;
|
|
259
|
+
prefix: string;
|
|
260
|
+
}
|
|
261
|
+
export declare const DescriptionBundle: {
|
|
262
|
+
readonly $type: "DescriptionBundle";
|
|
263
|
+
readonly namespace: "namespace";
|
|
264
|
+
readonly ownedAnnotations: "ownedAnnotations";
|
|
265
|
+
readonly ownedImports: "ownedImports";
|
|
266
|
+
readonly prefix: "prefix";
|
|
267
|
+
};
|
|
268
|
+
export declare function isDescriptionBundle(item: unknown): item is DescriptionBundle;
|
|
269
|
+
export type DescriptionMember = DescriptionStatement;
|
|
270
|
+
export declare const DescriptionMember: {
|
|
271
|
+
readonly $type: "DescriptionMember";
|
|
272
|
+
};
|
|
273
|
+
export declare function isDescriptionMember(item: unknown): item is DescriptionMember;
|
|
274
|
+
export type DescriptionStatement = NamedInstance;
|
|
275
|
+
export declare const DescriptionStatement: {
|
|
276
|
+
readonly $type: "DescriptionStatement";
|
|
277
|
+
};
|
|
278
|
+
export declare function isDescriptionStatement(item: unknown): item is DescriptionStatement;
|
|
279
|
+
export interface DifferentFromPredicate extends langium.AstNode {
|
|
280
|
+
readonly $container: Rule;
|
|
281
|
+
readonly $type: 'DifferentFromPredicate';
|
|
282
|
+
argument1: Argument;
|
|
283
|
+
argument2: Argument;
|
|
284
|
+
}
|
|
285
|
+
export declare const DifferentFromPredicate: {
|
|
286
|
+
readonly $type: "DifferentFromPredicate";
|
|
287
|
+
readonly argument1: "argument1";
|
|
288
|
+
readonly argument2: "argument2";
|
|
289
|
+
};
|
|
290
|
+
export declare function isDifferentFromPredicate(item: unknown): item is DifferentFromPredicate;
|
|
291
|
+
export type Double = number;
|
|
292
|
+
export declare function isDouble(item: unknown): item is Double;
|
|
293
|
+
export interface DoubleLiteral extends langium.AstNode {
|
|
294
|
+
readonly $container: Annotation | Argument | LiteralEnumerationAxiom | PropertyValueAssertion | PropertyValueRestrictionAxiom | ScalarEquivalenceAxiom;
|
|
295
|
+
readonly $type: 'DoubleLiteral';
|
|
296
|
+
value: Double;
|
|
297
|
+
}
|
|
298
|
+
export declare const DoubleLiteral: {
|
|
299
|
+
readonly $type: "DoubleLiteral";
|
|
300
|
+
readonly value: "value";
|
|
301
|
+
};
|
|
302
|
+
export declare function isDoubleLiteral(item: unknown): item is DoubleLiteral;
|
|
303
|
+
export type Element = Annotation | Argument | Assertion | Axiom | IdentifiedElement | Import | Instance | Literal | Predicate;
|
|
304
|
+
export declare const Element: {
|
|
305
|
+
readonly $type: "Element";
|
|
306
|
+
};
|
|
307
|
+
export declare function isElement(item: unknown): item is Element;
|
|
308
|
+
export type Entity = Aspect | Concept | RelationEntity;
|
|
309
|
+
export declare const Entity: {
|
|
310
|
+
readonly $type: "Entity";
|
|
311
|
+
};
|
|
312
|
+
export declare function isEntity(item: unknown): item is Entity;
|
|
313
|
+
export interface EntityEquivalenceAxiom extends langium.AstNode {
|
|
314
|
+
readonly $container: Aspect | Concept | RelationEntity;
|
|
315
|
+
readonly $type: 'EntityEquivalenceAxiom';
|
|
316
|
+
ownedPropertyRestrictions: Array<PropertyRestrictionAxiom>;
|
|
317
|
+
superTerms: Array<langium.Reference<Entity>>;
|
|
318
|
+
}
|
|
319
|
+
export declare const EntityEquivalenceAxiom: {
|
|
320
|
+
readonly $type: "EntityEquivalenceAxiom";
|
|
321
|
+
readonly ownedPropertyRestrictions: "ownedPropertyRestrictions";
|
|
322
|
+
readonly superTerms: "superTerms";
|
|
323
|
+
};
|
|
324
|
+
export declare function isEntityEquivalenceAxiom(item: unknown): item is EntityEquivalenceAxiom;
|
|
325
|
+
export type EquivalenceAxiom = EntityEquivalenceAxiom | PropertyEquivalenceAxiom | ScalarEquivalenceAxiom;
|
|
326
|
+
export declare const EquivalenceAxiom: {
|
|
327
|
+
readonly $type: "EquivalenceAxiom";
|
|
328
|
+
};
|
|
329
|
+
export declare function isEquivalenceAxiom(item: unknown): item is EquivalenceAxiom;
|
|
330
|
+
export interface ForwardRelation extends langium.AstNode {
|
|
331
|
+
readonly $container: RelationEntity;
|
|
332
|
+
readonly $type: 'ForwardRelation';
|
|
333
|
+
name: string;
|
|
334
|
+
ownedAnnotations: Array<Annotation>;
|
|
335
|
+
}
|
|
336
|
+
export declare const ForwardRelation: {
|
|
337
|
+
readonly $type: "ForwardRelation";
|
|
338
|
+
readonly name: "name";
|
|
339
|
+
readonly ownedAnnotations: "ownedAnnotations";
|
|
340
|
+
};
|
|
341
|
+
export declare function isForwardRelation(item: unknown): item is ForwardRelation;
|
|
342
|
+
export type IdentifiedElement = Member | Ontology;
|
|
343
|
+
export declare const IdentifiedElement: {
|
|
344
|
+
readonly $type: "IdentifiedElement";
|
|
345
|
+
};
|
|
346
|
+
export declare function isIdentifiedElement(item: unknown): item is IdentifiedElement;
|
|
347
|
+
export interface Import extends langium.AstNode {
|
|
348
|
+
readonly $container: Description | DescriptionBundle | Vocabulary | VocabularyBundle;
|
|
349
|
+
readonly $type: 'Import';
|
|
350
|
+
imported: langium.Reference<Ontology>;
|
|
351
|
+
kind: ImportKind;
|
|
352
|
+
prefix?: string;
|
|
353
|
+
}
|
|
354
|
+
export declare const Import: {
|
|
355
|
+
readonly $type: "Import";
|
|
356
|
+
readonly imported: "imported";
|
|
357
|
+
readonly kind: "kind";
|
|
358
|
+
readonly prefix: "prefix";
|
|
359
|
+
};
|
|
360
|
+
export declare function isImport(item: unknown): item is Import;
|
|
361
|
+
export type ImportKind = 'extends' | 'includes' | 'uses';
|
|
362
|
+
export declare function isImportKind(item: unknown): item is ImportKind;
|
|
363
|
+
export type Instance = AnonymousInstance | NamedInstance;
|
|
364
|
+
export declare const Instance: {
|
|
365
|
+
readonly $type: "Instance";
|
|
366
|
+
};
|
|
367
|
+
export declare function isInstance(item: unknown): item is Instance;
|
|
368
|
+
export interface InstanceEnumerationAxiom extends langium.AstNode {
|
|
369
|
+
readonly $container: Concept;
|
|
370
|
+
readonly $type: 'InstanceEnumerationAxiom';
|
|
371
|
+
instances: Array<langium.Reference<ConceptInstance>>;
|
|
372
|
+
}
|
|
373
|
+
export declare const InstanceEnumerationAxiom: {
|
|
374
|
+
readonly $type: "InstanceEnumerationAxiom";
|
|
375
|
+
readonly instances: "instances";
|
|
376
|
+
};
|
|
377
|
+
export declare function isInstanceEnumerationAxiom(item: unknown): item is InstanceEnumerationAxiom;
|
|
378
|
+
export type Integer = number;
|
|
379
|
+
export declare function isInteger(item: unknown): item is Integer;
|
|
380
|
+
export interface IntegerLiteral extends langium.AstNode {
|
|
381
|
+
readonly $container: Annotation | Argument | LiteralEnumerationAxiom | PropertyValueAssertion | PropertyValueRestrictionAxiom | ScalarEquivalenceAxiom;
|
|
382
|
+
readonly $type: 'IntegerLiteral';
|
|
383
|
+
value: Integer;
|
|
384
|
+
}
|
|
385
|
+
export declare const IntegerLiteral: {
|
|
386
|
+
readonly $type: "IntegerLiteral";
|
|
387
|
+
readonly value: "value";
|
|
388
|
+
};
|
|
389
|
+
export declare function isIntegerLiteral(item: unknown): item is IntegerLiteral;
|
|
390
|
+
export interface KeyAxiom extends langium.AstNode {
|
|
391
|
+
readonly $container: Aspect | Concept | RelationEntity;
|
|
392
|
+
readonly $type: 'KeyAxiom';
|
|
393
|
+
properties: Array<langium.Reference<Property>>;
|
|
394
|
+
}
|
|
395
|
+
export declare const KeyAxiom: {
|
|
396
|
+
readonly $type: "KeyAxiom";
|
|
397
|
+
readonly properties: "properties";
|
|
398
|
+
};
|
|
399
|
+
export declare function isKeyAxiom(item: unknown): item is KeyAxiom;
|
|
400
|
+
export type Literal = BooleanLiteral | DecimalLiteral | DoubleLiteral | IntegerLiteral | QuotedLiteral;
|
|
401
|
+
export declare const Literal: {
|
|
402
|
+
readonly $type: "Literal";
|
|
403
|
+
};
|
|
404
|
+
export declare function isLiteral(item: unknown): item is Literal;
|
|
405
|
+
export interface LiteralEnumerationAxiom extends langium.AstNode {
|
|
406
|
+
readonly $container: Scalar;
|
|
407
|
+
readonly $type: 'LiteralEnumerationAxiom';
|
|
408
|
+
literals: Array<Literal>;
|
|
409
|
+
}
|
|
410
|
+
export declare const LiteralEnumerationAxiom: {
|
|
411
|
+
readonly $type: "LiteralEnumerationAxiom";
|
|
412
|
+
readonly literals: "literals";
|
|
413
|
+
};
|
|
414
|
+
export declare function isLiteralEnumerationAxiom(item: unknown): item is LiteralEnumerationAxiom;
|
|
415
|
+
export type Member = DescriptionMember | Statement | VocabularyMember;
|
|
416
|
+
export declare const Member: {
|
|
417
|
+
readonly $type: "Member";
|
|
418
|
+
};
|
|
419
|
+
export declare function isMember(item: unknown): item is Member;
|
|
420
|
+
export type NamedInstance = ConceptInstance | RelationInstance;
|
|
421
|
+
export declare const NamedInstance: {
|
|
422
|
+
readonly $type: "NamedInstance";
|
|
423
|
+
};
|
|
424
|
+
export declare function isNamedInstance(item: unknown): item is NamedInstance;
|
|
425
|
+
export type Ontology = DescriptionBox | VocabularyBox;
|
|
426
|
+
export declare const Ontology: {
|
|
427
|
+
readonly $type: "Ontology";
|
|
428
|
+
};
|
|
429
|
+
export declare function isOntology(item: unknown): item is Ontology;
|
|
430
|
+
export type Predicate = BinaryPredicate | BuiltInPredicate | UnaryPredicate;
|
|
431
|
+
export declare const Predicate: {
|
|
432
|
+
readonly $type: "Predicate";
|
|
433
|
+
};
|
|
434
|
+
export declare function isPredicate(item: unknown): item is Predicate;
|
|
435
|
+
export type Property = SemanticProperty | SpecializableProperty;
|
|
436
|
+
export declare const Property: {
|
|
437
|
+
readonly $type: "Property";
|
|
438
|
+
};
|
|
439
|
+
export declare function isProperty(item: unknown): item is Property;
|
|
440
|
+
export interface PropertyCardinalityRestrictionAxiom extends langium.AstNode {
|
|
441
|
+
readonly $container: Aspect | Concept | EntityEquivalenceAxiom | RelationEntity;
|
|
442
|
+
readonly $type: 'PropertyCardinalityRestrictionAxiom';
|
|
443
|
+
cardinality: UnsignedInteger;
|
|
444
|
+
kind: CardinalityRestrictionKind;
|
|
445
|
+
property: langium.Reference<SemanticProperty>;
|
|
446
|
+
range?: langium.Reference<Type>;
|
|
447
|
+
}
|
|
448
|
+
export declare const PropertyCardinalityRestrictionAxiom: {
|
|
449
|
+
readonly $type: "PropertyCardinalityRestrictionAxiom";
|
|
450
|
+
readonly cardinality: "cardinality";
|
|
451
|
+
readonly kind: "kind";
|
|
452
|
+
readonly property: "property";
|
|
453
|
+
readonly range: "range";
|
|
454
|
+
};
|
|
455
|
+
export declare function isPropertyCardinalityRestrictionAxiom(item: unknown): item is PropertyCardinalityRestrictionAxiom;
|
|
456
|
+
export interface PropertyEquivalenceAxiom extends langium.AstNode {
|
|
457
|
+
readonly $container: AnnotationProperty | ScalarProperty | UnreifiedRelation;
|
|
458
|
+
readonly $type: 'PropertyEquivalenceAxiom';
|
|
459
|
+
superTerms: Array<langium.Reference<Property>>;
|
|
460
|
+
}
|
|
461
|
+
export declare const PropertyEquivalenceAxiom: {
|
|
462
|
+
readonly $type: "PropertyEquivalenceAxiom";
|
|
463
|
+
readonly superTerms: "superTerms";
|
|
464
|
+
};
|
|
465
|
+
export declare function isPropertyEquivalenceAxiom(item: unknown): item is PropertyEquivalenceAxiom;
|
|
466
|
+
export interface PropertyPredicate extends langium.AstNode {
|
|
467
|
+
readonly $container: Rule;
|
|
468
|
+
readonly $type: 'PropertyPredicate';
|
|
469
|
+
argument1: Argument;
|
|
470
|
+
argument2: Argument;
|
|
471
|
+
property: langium.Reference<Property>;
|
|
472
|
+
}
|
|
473
|
+
export declare const PropertyPredicate: {
|
|
474
|
+
readonly $type: "PropertyPredicate";
|
|
475
|
+
readonly argument1: "argument1";
|
|
476
|
+
readonly argument2: "argument2";
|
|
477
|
+
readonly property: "property";
|
|
478
|
+
};
|
|
479
|
+
export declare function isPropertyPredicate(item: unknown): item is PropertyPredicate;
|
|
480
|
+
export interface PropertyRangeRestrictionAxiom extends langium.AstNode {
|
|
481
|
+
readonly $container: Aspect | Concept | EntityEquivalenceAxiom | RelationEntity;
|
|
482
|
+
readonly $type: 'PropertyRangeRestrictionAxiom';
|
|
483
|
+
kind: RangeRestrictionKind;
|
|
484
|
+
property: langium.Reference<SemanticProperty>;
|
|
485
|
+
range: langium.Reference<Type>;
|
|
486
|
+
}
|
|
487
|
+
export declare const PropertyRangeRestrictionAxiom: {
|
|
488
|
+
readonly $type: "PropertyRangeRestrictionAxiom";
|
|
489
|
+
readonly kind: "kind";
|
|
490
|
+
readonly property: "property";
|
|
491
|
+
readonly range: "range";
|
|
492
|
+
};
|
|
493
|
+
export declare function isPropertyRangeRestrictionAxiom(item: unknown): item is PropertyRangeRestrictionAxiom;
|
|
494
|
+
export type PropertyRestrictionAxiom = PropertyCardinalityRestrictionAxiom | PropertyRangeRestrictionAxiom | PropertySelfRestrictionAxiom | PropertyValueRestrictionAxiom;
|
|
495
|
+
export declare const PropertyRestrictionAxiom: {
|
|
496
|
+
readonly $type: "PropertyRestrictionAxiom";
|
|
497
|
+
};
|
|
498
|
+
export declare function isPropertyRestrictionAxiom(item: unknown): item is PropertyRestrictionAxiom;
|
|
499
|
+
export interface PropertySelfRestrictionAxiom extends langium.AstNode {
|
|
500
|
+
readonly $container: Aspect | Concept | EntityEquivalenceAxiom | RelationEntity;
|
|
501
|
+
readonly $type: 'PropertySelfRestrictionAxiom';
|
|
502
|
+
property: langium.Reference<SemanticProperty>;
|
|
503
|
+
}
|
|
504
|
+
export declare const PropertySelfRestrictionAxiom: {
|
|
505
|
+
readonly $type: "PropertySelfRestrictionAxiom";
|
|
506
|
+
readonly property: "property";
|
|
507
|
+
};
|
|
508
|
+
export declare function isPropertySelfRestrictionAxiom(item: unknown): item is PropertySelfRestrictionAxiom;
|
|
509
|
+
export interface PropertyValueAssertion extends langium.AstNode {
|
|
510
|
+
readonly $container: AnonymousConceptInstance | AnonymousRelationInstance | ConceptInstance | RelationInstance;
|
|
511
|
+
readonly $type: 'PropertyValueAssertion';
|
|
512
|
+
containedValues: Array<AnonymousInstance>;
|
|
513
|
+
literalValues: Array<Literal>;
|
|
514
|
+
property: langium.Reference<SemanticProperty>;
|
|
515
|
+
referencedValues: Array<langium.Reference<NamedInstance>>;
|
|
516
|
+
}
|
|
517
|
+
export declare const PropertyValueAssertion: {
|
|
518
|
+
readonly $type: "PropertyValueAssertion";
|
|
519
|
+
readonly containedValues: "containedValues";
|
|
520
|
+
readonly literalValues: "literalValues";
|
|
521
|
+
readonly property: "property";
|
|
522
|
+
readonly referencedValues: "referencedValues";
|
|
523
|
+
};
|
|
524
|
+
export declare function isPropertyValueAssertion(item: unknown): item is PropertyValueAssertion;
|
|
525
|
+
export interface PropertyValueRestrictionAxiom extends langium.AstNode {
|
|
526
|
+
readonly $container: Aspect | Concept | EntityEquivalenceAxiom | RelationEntity;
|
|
527
|
+
readonly $type: 'PropertyValueRestrictionAxiom';
|
|
528
|
+
containedValue?: AnonymousInstance;
|
|
529
|
+
literalValue?: Literal;
|
|
530
|
+
property: langium.Reference<SemanticProperty>;
|
|
531
|
+
referencedValue?: langium.Reference<NamedInstance>;
|
|
532
|
+
}
|
|
533
|
+
export declare const PropertyValueRestrictionAxiom: {
|
|
534
|
+
readonly $type: "PropertyValueRestrictionAxiom";
|
|
535
|
+
readonly containedValue: "containedValue";
|
|
536
|
+
readonly literalValue: "literalValue";
|
|
537
|
+
readonly property: "property";
|
|
538
|
+
readonly referencedValue: "referencedValue";
|
|
539
|
+
};
|
|
540
|
+
export declare function isPropertyValueRestrictionAxiom(item: unknown): item is PropertyValueRestrictionAxiom;
|
|
541
|
+
export interface QuotedLiteral extends langium.AstNode {
|
|
542
|
+
readonly $container: Annotation | Argument | LiteralEnumerationAxiom | PropertyValueAssertion | PropertyValueRestrictionAxiom | ScalarEquivalenceAxiom;
|
|
543
|
+
readonly $type: 'QuotedLiteral';
|
|
544
|
+
langTag?: string;
|
|
545
|
+
type?: langium.Reference<Scalar>;
|
|
546
|
+
value: string;
|
|
547
|
+
}
|
|
548
|
+
export declare const QuotedLiteral: {
|
|
549
|
+
readonly $type: "QuotedLiteral";
|
|
550
|
+
readonly langTag: "langTag";
|
|
551
|
+
readonly type: "type";
|
|
552
|
+
readonly value: "value";
|
|
553
|
+
};
|
|
554
|
+
export declare function isQuotedLiteral(item: unknown): item is QuotedLiteral;
|
|
555
|
+
export type RangeRestrictionKind = 'all' | 'some';
|
|
556
|
+
export declare function isRangeRestrictionKind(item: unknown): item is RangeRestrictionKind;
|
|
557
|
+
export type Ref = string;
|
|
558
|
+
export declare function isRef(item: unknown): item is Ref;
|
|
559
|
+
export type Relation = ForwardRelation | ReverseRelation | UnreifiedRelation;
|
|
560
|
+
export declare const Relation: {
|
|
561
|
+
readonly $type: "Relation";
|
|
562
|
+
};
|
|
563
|
+
export declare function isRelation(item: unknown): item is Relation;
|
|
564
|
+
export type RelationBase = RelationEntity | UnreifiedRelation;
|
|
565
|
+
export declare const RelationBase: {
|
|
566
|
+
readonly $type: "RelationBase";
|
|
567
|
+
};
|
|
568
|
+
export declare function isRelationBase(item: unknown): item is RelationBase;
|
|
569
|
+
export interface RelationEntity extends langium.AstNode {
|
|
570
|
+
readonly $container: Vocabulary;
|
|
571
|
+
readonly $type: 'RelationEntity';
|
|
572
|
+
asymmetric: boolean;
|
|
573
|
+
forwardRelation?: ForwardRelation;
|
|
574
|
+
functional: boolean;
|
|
575
|
+
inverseFunctional: boolean;
|
|
576
|
+
irreflexive: boolean;
|
|
577
|
+
name?: string;
|
|
578
|
+
ownedAnnotations: Array<Annotation>;
|
|
579
|
+
ownedEquivalences: Array<EntityEquivalenceAxiom>;
|
|
580
|
+
ownedKeys: Array<KeyAxiom>;
|
|
581
|
+
ownedPropertyRestrictions: Array<PropertyRestrictionAxiom>;
|
|
582
|
+
ownedSpecializations: Array<SpecializationAxiom>;
|
|
583
|
+
ref?: langium.Reference<RelationEntity>;
|
|
584
|
+
reflexive: boolean;
|
|
585
|
+
reverseRelation?: ReverseRelation;
|
|
586
|
+
sources: Array<langium.Reference<Entity>>;
|
|
587
|
+
symmetric: boolean;
|
|
588
|
+
targets: Array<langium.Reference<Entity>>;
|
|
589
|
+
transitive: boolean;
|
|
590
|
+
}
|
|
591
|
+
export declare const RelationEntity: {
|
|
592
|
+
readonly $type: "RelationEntity";
|
|
593
|
+
readonly asymmetric: "asymmetric";
|
|
594
|
+
readonly forwardRelation: "forwardRelation";
|
|
595
|
+
readonly functional: "functional";
|
|
596
|
+
readonly inverseFunctional: "inverseFunctional";
|
|
597
|
+
readonly irreflexive: "irreflexive";
|
|
598
|
+
readonly name: "name";
|
|
599
|
+
readonly ownedAnnotations: "ownedAnnotations";
|
|
600
|
+
readonly ownedEquivalences: "ownedEquivalences";
|
|
601
|
+
readonly ownedKeys: "ownedKeys";
|
|
602
|
+
readonly ownedPropertyRestrictions: "ownedPropertyRestrictions";
|
|
603
|
+
readonly ownedSpecializations: "ownedSpecializations";
|
|
604
|
+
readonly ref: "ref";
|
|
605
|
+
readonly reflexive: "reflexive";
|
|
606
|
+
readonly reverseRelation: "reverseRelation";
|
|
607
|
+
readonly sources: "sources";
|
|
608
|
+
readonly symmetric: "symmetric";
|
|
609
|
+
readonly targets: "targets";
|
|
610
|
+
readonly transitive: "transitive";
|
|
611
|
+
};
|
|
612
|
+
export declare function isRelationEntity(item: unknown): item is RelationEntity;
|
|
613
|
+
export interface RelationEntityPredicate extends langium.AstNode {
|
|
614
|
+
readonly $container: Rule;
|
|
615
|
+
readonly $type: 'RelationEntityPredicate';
|
|
616
|
+
argument: Argument;
|
|
617
|
+
argument1: Argument;
|
|
618
|
+
argument2: Argument;
|
|
619
|
+
type: langium.Reference<RelationEntity>;
|
|
620
|
+
}
|
|
621
|
+
export declare const RelationEntityPredicate: {
|
|
622
|
+
readonly $type: "RelationEntityPredicate";
|
|
623
|
+
readonly argument: "argument";
|
|
624
|
+
readonly argument1: "argument1";
|
|
625
|
+
readonly argument2: "argument2";
|
|
626
|
+
readonly type: "type";
|
|
627
|
+
};
|
|
628
|
+
export declare function isRelationEntityPredicate(item: unknown): item is RelationEntityPredicate;
|
|
629
|
+
export interface RelationInstance extends langium.AstNode {
|
|
630
|
+
readonly $container: Description;
|
|
631
|
+
readonly $type: 'RelationInstance';
|
|
632
|
+
name?: string;
|
|
633
|
+
ownedAnnotations: Array<Annotation>;
|
|
634
|
+
ownedPropertyValues: Array<PropertyValueAssertion>;
|
|
635
|
+
ownedTypes: Array<TypeAssertion>;
|
|
636
|
+
ref?: langium.Reference<RelationInstance>;
|
|
637
|
+
sources: Array<langium.Reference<NamedInstance>>;
|
|
638
|
+
targets: Array<langium.Reference<NamedInstance>>;
|
|
639
|
+
}
|
|
640
|
+
export declare const RelationInstance: {
|
|
641
|
+
readonly $type: "RelationInstance";
|
|
642
|
+
readonly name: "name";
|
|
643
|
+
readonly ownedAnnotations: "ownedAnnotations";
|
|
644
|
+
readonly ownedPropertyValues: "ownedPropertyValues";
|
|
645
|
+
readonly ownedTypes: "ownedTypes";
|
|
646
|
+
readonly ref: "ref";
|
|
647
|
+
readonly sources: "sources";
|
|
648
|
+
readonly targets: "targets";
|
|
649
|
+
};
|
|
650
|
+
export declare function isRelationInstance(item: unknown): item is RelationInstance;
|
|
651
|
+
export interface ReverseRelation extends langium.AstNode {
|
|
652
|
+
readonly $container: RelationEntity | UnreifiedRelation;
|
|
653
|
+
readonly $type: 'ReverseRelation';
|
|
654
|
+
name: string;
|
|
655
|
+
ownedAnnotations: Array<Annotation>;
|
|
656
|
+
}
|
|
657
|
+
export declare const ReverseRelation: {
|
|
658
|
+
readonly $type: "ReverseRelation";
|
|
659
|
+
readonly name: "name";
|
|
660
|
+
readonly ownedAnnotations: "ownedAnnotations";
|
|
661
|
+
};
|
|
662
|
+
export declare function isReverseRelation(item: unknown): item is ReverseRelation;
|
|
663
|
+
export interface Rule extends langium.AstNode {
|
|
664
|
+
readonly $container: Vocabulary;
|
|
665
|
+
readonly $type: 'Rule';
|
|
666
|
+
antecedent: Array<Predicate>;
|
|
667
|
+
consequent: Array<Predicate>;
|
|
668
|
+
name?: string;
|
|
669
|
+
ownedAnnotations: Array<Annotation>;
|
|
670
|
+
ref?: langium.Reference<Rule>;
|
|
671
|
+
}
|
|
672
|
+
export declare const Rule: {
|
|
673
|
+
readonly $type: "Rule";
|
|
674
|
+
readonly antecedent: "antecedent";
|
|
675
|
+
readonly consequent: "consequent";
|
|
676
|
+
readonly name: "name";
|
|
677
|
+
readonly ownedAnnotations: "ownedAnnotations";
|
|
678
|
+
readonly ref: "ref";
|
|
679
|
+
};
|
|
680
|
+
export declare function isRule(item: unknown): item is Rule;
|
|
681
|
+
export interface SameAsPredicate extends langium.AstNode {
|
|
682
|
+
readonly $container: Rule;
|
|
683
|
+
readonly $type: 'SameAsPredicate';
|
|
684
|
+
argument1: Argument;
|
|
685
|
+
argument2: Argument;
|
|
686
|
+
}
|
|
687
|
+
export declare const SameAsPredicate: {
|
|
688
|
+
readonly $type: "SameAsPredicate";
|
|
689
|
+
readonly argument1: "argument1";
|
|
690
|
+
readonly argument2: "argument2";
|
|
691
|
+
};
|
|
692
|
+
export declare function isSameAsPredicate(item: unknown): item is SameAsPredicate;
|
|
693
|
+
export interface Scalar extends langium.AstNode {
|
|
694
|
+
readonly $container: Vocabulary;
|
|
695
|
+
readonly $type: 'Scalar';
|
|
696
|
+
name?: string;
|
|
697
|
+
ownedAnnotations: Array<Annotation>;
|
|
698
|
+
ownedEnumeration?: LiteralEnumerationAxiom;
|
|
699
|
+
ownedEquivalences: Array<ScalarEquivalenceAxiom>;
|
|
700
|
+
ownedSpecializations: Array<SpecializationAxiom>;
|
|
701
|
+
ref?: langium.Reference<Scalar>;
|
|
702
|
+
}
|
|
703
|
+
export declare const Scalar: {
|
|
704
|
+
readonly $type: "Scalar";
|
|
705
|
+
readonly name: "name";
|
|
706
|
+
readonly ownedAnnotations: "ownedAnnotations";
|
|
707
|
+
readonly ownedEnumeration: "ownedEnumeration";
|
|
708
|
+
readonly ownedEquivalences: "ownedEquivalences";
|
|
709
|
+
readonly ownedSpecializations: "ownedSpecializations";
|
|
710
|
+
readonly ref: "ref";
|
|
711
|
+
};
|
|
712
|
+
export declare function isScalar(item: unknown): item is Scalar;
|
|
713
|
+
export interface ScalarEquivalenceAxiom extends langium.AstNode {
|
|
714
|
+
readonly $container: Scalar;
|
|
715
|
+
readonly $type: 'ScalarEquivalenceAxiom';
|
|
716
|
+
language: Array<string>;
|
|
717
|
+
length: Array<UnsignedInteger>;
|
|
718
|
+
maxExclusive: Array<Literal>;
|
|
719
|
+
maxInclusive: Array<Literal>;
|
|
720
|
+
maxLength: Array<UnsignedInteger>;
|
|
721
|
+
minExclusive: Array<Literal>;
|
|
722
|
+
minInclusive: Array<Literal>;
|
|
723
|
+
minLength: Array<UnsignedInteger>;
|
|
724
|
+
pattern: Array<string>;
|
|
725
|
+
superTerms: Array<langium.Reference<Scalar>>;
|
|
726
|
+
}
|
|
727
|
+
export declare const ScalarEquivalenceAxiom: {
|
|
728
|
+
readonly $type: "ScalarEquivalenceAxiom";
|
|
729
|
+
readonly language: "language";
|
|
730
|
+
readonly length: "length";
|
|
731
|
+
readonly maxExclusive: "maxExclusive";
|
|
732
|
+
readonly maxInclusive: "maxInclusive";
|
|
733
|
+
readonly maxLength: "maxLength";
|
|
734
|
+
readonly minExclusive: "minExclusive";
|
|
735
|
+
readonly minInclusive: "minInclusive";
|
|
736
|
+
readonly minLength: "minLength";
|
|
737
|
+
readonly pattern: "pattern";
|
|
738
|
+
readonly superTerms: "superTerms";
|
|
739
|
+
};
|
|
740
|
+
export declare function isScalarEquivalenceAxiom(item: unknown): item is ScalarEquivalenceAxiom;
|
|
741
|
+
export interface ScalarProperty extends langium.AstNode {
|
|
742
|
+
readonly $container: Vocabulary;
|
|
743
|
+
readonly $type: 'ScalarProperty';
|
|
744
|
+
domains: Array<langium.Reference<Entity>>;
|
|
745
|
+
functional: boolean;
|
|
746
|
+
name?: string;
|
|
747
|
+
ownedAnnotations: Array<Annotation>;
|
|
748
|
+
ownedEquivalences: Array<PropertyEquivalenceAxiom>;
|
|
749
|
+
ownedSpecializations: Array<SpecializationAxiom>;
|
|
750
|
+
ranges: Array<langium.Reference<Scalar>>;
|
|
751
|
+
ref?: langium.Reference<ScalarProperty>;
|
|
752
|
+
}
|
|
753
|
+
export declare const ScalarProperty: {
|
|
754
|
+
readonly $type: "ScalarProperty";
|
|
755
|
+
readonly domains: "domains";
|
|
756
|
+
readonly functional: "functional";
|
|
757
|
+
readonly name: "name";
|
|
758
|
+
readonly ownedAnnotations: "ownedAnnotations";
|
|
759
|
+
readonly ownedEquivalences: "ownedEquivalences";
|
|
760
|
+
readonly ownedSpecializations: "ownedSpecializations";
|
|
761
|
+
readonly ranges: "ranges";
|
|
762
|
+
readonly ref: "ref";
|
|
763
|
+
};
|
|
764
|
+
export declare function isScalarProperty(item: unknown): item is ScalarProperty;
|
|
765
|
+
export type SemanticProperty = Relation | ScalarProperty;
|
|
766
|
+
export declare const SemanticProperty: {
|
|
767
|
+
readonly $type: "SemanticProperty";
|
|
768
|
+
};
|
|
769
|
+
export declare function isSemanticProperty(item: unknown): item is SemanticProperty;
|
|
770
|
+
export type SpecializableProperty = AnnotationProperty | ScalarProperty | UnreifiedRelation;
|
|
771
|
+
export declare const SpecializableProperty: {
|
|
772
|
+
readonly $type: "SpecializableProperty";
|
|
773
|
+
};
|
|
774
|
+
export declare function isSpecializableProperty(item: unknown): item is SpecializableProperty;
|
|
775
|
+
export type SpecializableTerm = SpecializableProperty | Type;
|
|
776
|
+
export declare const SpecializableTerm: {
|
|
777
|
+
readonly $type: "SpecializableTerm";
|
|
778
|
+
};
|
|
779
|
+
export declare function isSpecializableTerm(item: unknown): item is SpecializableTerm;
|
|
780
|
+
export interface SpecializationAxiom extends langium.AstNode {
|
|
781
|
+
readonly $container: AnnotationProperty | Aspect | Concept | RelationEntity | Scalar | ScalarProperty | UnreifiedRelation;
|
|
782
|
+
readonly $type: 'SpecializationAxiom';
|
|
783
|
+
superTerm: langium.Reference<Term>;
|
|
784
|
+
}
|
|
785
|
+
export declare const SpecializationAxiom: {
|
|
786
|
+
readonly $type: "SpecializationAxiom";
|
|
787
|
+
readonly superTerm: "superTerm";
|
|
788
|
+
};
|
|
789
|
+
export declare function isSpecializationAxiom(item: unknown): item is SpecializationAxiom;
|
|
790
|
+
export type Statement = DescriptionStatement | VocabularyStatement;
|
|
791
|
+
export declare const Statement: {
|
|
792
|
+
readonly $type: "Statement";
|
|
793
|
+
};
|
|
794
|
+
export declare function isStatement(item: unknown): item is Statement;
|
|
795
|
+
export type Term = Property | RelationBase | SpecializableTerm;
|
|
796
|
+
export declare const Term: {
|
|
797
|
+
readonly $type: "Term";
|
|
798
|
+
};
|
|
799
|
+
export declare function isTerm(item: unknown): item is Term;
|
|
800
|
+
export type Type = Entity | Scalar;
|
|
801
|
+
export declare const Type: {
|
|
802
|
+
readonly $type: "Type";
|
|
803
|
+
};
|
|
804
|
+
export declare function isType(item: unknown): item is Type;
|
|
805
|
+
export interface TypeAssertion extends langium.AstNode {
|
|
806
|
+
readonly $container: ConceptInstance | RelationInstance;
|
|
807
|
+
readonly $type: 'TypeAssertion';
|
|
808
|
+
type: langium.Reference<Entity>;
|
|
809
|
+
}
|
|
810
|
+
export declare const TypeAssertion: {
|
|
811
|
+
readonly $type: "TypeAssertion";
|
|
812
|
+
readonly type: "type";
|
|
813
|
+
};
|
|
814
|
+
export declare function isTypeAssertion(item: unknown): item is TypeAssertion;
|
|
815
|
+
export interface TypePredicate extends langium.AstNode {
|
|
816
|
+
readonly $container: Rule;
|
|
817
|
+
readonly $type: 'TypePredicate';
|
|
818
|
+
argument: Argument;
|
|
819
|
+
type: langium.Reference<Type>;
|
|
820
|
+
}
|
|
821
|
+
export declare const TypePredicate: {
|
|
822
|
+
readonly $type: "TypePredicate";
|
|
823
|
+
readonly argument: "argument";
|
|
824
|
+
readonly type: "type";
|
|
825
|
+
};
|
|
826
|
+
export declare function isTypePredicate(item: unknown): item is TypePredicate;
|
|
827
|
+
export type UnaryPredicate = RelationEntityPredicate | TypePredicate;
|
|
828
|
+
export declare const UnaryPredicate: {
|
|
829
|
+
readonly $type: "UnaryPredicate";
|
|
830
|
+
};
|
|
831
|
+
export declare function isUnaryPredicate(item: unknown): item is UnaryPredicate;
|
|
832
|
+
export interface UnreifiedRelation extends langium.AstNode {
|
|
833
|
+
readonly $container: Vocabulary;
|
|
834
|
+
readonly $type: 'UnreifiedRelation';
|
|
835
|
+
asymmetric: boolean;
|
|
836
|
+
functional: boolean;
|
|
837
|
+
inverseFunctional: boolean;
|
|
838
|
+
irreflexive: boolean;
|
|
839
|
+
name?: string;
|
|
840
|
+
ownedAnnotations: Array<Annotation>;
|
|
841
|
+
ownedEquivalences: Array<PropertyEquivalenceAxiom>;
|
|
842
|
+
ownedSpecializations: Array<SpecializationAxiom>;
|
|
843
|
+
ref?: langium.Reference<Relation>;
|
|
844
|
+
reflexive: boolean;
|
|
845
|
+
reverseRelation?: ReverseRelation;
|
|
846
|
+
sources: Array<langium.Reference<Entity>>;
|
|
847
|
+
symmetric: boolean;
|
|
848
|
+
targets: Array<langium.Reference<Entity>>;
|
|
849
|
+
transitive: boolean;
|
|
850
|
+
}
|
|
851
|
+
export declare const UnreifiedRelation: {
|
|
852
|
+
readonly $type: "UnreifiedRelation";
|
|
853
|
+
readonly asymmetric: "asymmetric";
|
|
854
|
+
readonly functional: "functional";
|
|
855
|
+
readonly inverseFunctional: "inverseFunctional";
|
|
856
|
+
readonly irreflexive: "irreflexive";
|
|
857
|
+
readonly name: "name";
|
|
858
|
+
readonly ownedAnnotations: "ownedAnnotations";
|
|
859
|
+
readonly ownedEquivalences: "ownedEquivalences";
|
|
860
|
+
readonly ownedSpecializations: "ownedSpecializations";
|
|
861
|
+
readonly ref: "ref";
|
|
862
|
+
readonly reflexive: "reflexive";
|
|
863
|
+
readonly reverseRelation: "reverseRelation";
|
|
864
|
+
readonly sources: "sources";
|
|
865
|
+
readonly symmetric: "symmetric";
|
|
866
|
+
readonly targets: "targets";
|
|
867
|
+
readonly transitive: "transitive";
|
|
868
|
+
};
|
|
869
|
+
export declare function isUnreifiedRelation(item: unknown): item is UnreifiedRelation;
|
|
870
|
+
export type UnsignedInteger = number;
|
|
871
|
+
export declare function isUnsignedInteger(item: unknown): item is UnsignedInteger;
|
|
872
|
+
export interface Vocabulary extends langium.AstNode {
|
|
873
|
+
readonly $type: 'Vocabulary';
|
|
874
|
+
namespace: string;
|
|
875
|
+
ownedAnnotations: Array<Annotation>;
|
|
876
|
+
ownedImports: Array<Import>;
|
|
877
|
+
ownedStatements: Array<VocabularyStatement>;
|
|
878
|
+
prefix: string;
|
|
879
|
+
}
|
|
880
|
+
export declare const Vocabulary: {
|
|
881
|
+
readonly $type: "Vocabulary";
|
|
882
|
+
readonly namespace: "namespace";
|
|
883
|
+
readonly ownedAnnotations: "ownedAnnotations";
|
|
884
|
+
readonly ownedImports: "ownedImports";
|
|
885
|
+
readonly ownedStatements: "ownedStatements";
|
|
886
|
+
readonly prefix: "prefix";
|
|
887
|
+
};
|
|
888
|
+
export declare function isVocabulary(item: unknown): item is Vocabulary;
|
|
889
|
+
export type VocabularyBox = Vocabulary | VocabularyBundle;
|
|
890
|
+
export declare const VocabularyBox: {
|
|
891
|
+
readonly $type: "VocabularyBox";
|
|
892
|
+
};
|
|
893
|
+
export declare function isVocabularyBox(item: unknown): item is VocabularyBox;
|
|
894
|
+
export interface VocabularyBundle extends langium.AstNode {
|
|
895
|
+
readonly $type: 'VocabularyBundle';
|
|
896
|
+
namespace: string;
|
|
897
|
+
ownedAnnotations: Array<Annotation>;
|
|
898
|
+
ownedImports: Array<Import>;
|
|
899
|
+
prefix: string;
|
|
900
|
+
}
|
|
901
|
+
export declare const VocabularyBundle: {
|
|
902
|
+
readonly $type: "VocabularyBundle";
|
|
903
|
+
readonly namespace: "namespace";
|
|
904
|
+
readonly ownedAnnotations: "ownedAnnotations";
|
|
905
|
+
readonly ownedImports: "ownedImports";
|
|
906
|
+
readonly prefix: "prefix";
|
|
907
|
+
};
|
|
908
|
+
export declare function isVocabularyBundle(item: unknown): item is VocabularyBundle;
|
|
909
|
+
export type VocabularyMember = Term | VocabularyStatement;
|
|
910
|
+
export declare const VocabularyMember: {
|
|
911
|
+
readonly $type: "VocabularyMember";
|
|
912
|
+
};
|
|
913
|
+
export declare function isVocabularyMember(item: unknown): item is VocabularyMember;
|
|
914
|
+
export type VocabularyStatement = BuiltIn | Rule | SpecializableTerm;
|
|
915
|
+
export declare const VocabularyStatement: {
|
|
916
|
+
readonly $type: "VocabularyStatement";
|
|
917
|
+
};
|
|
918
|
+
export declare function isVocabularyStatement(item: unknown): item is VocabularyStatement;
|
|
919
|
+
export type OmlAstType = {
|
|
920
|
+
Annotation: Annotation;
|
|
921
|
+
AnnotationProperty: AnnotationProperty;
|
|
922
|
+
AnonymousConceptInstance: AnonymousConceptInstance;
|
|
923
|
+
AnonymousInstance: AnonymousInstance;
|
|
924
|
+
AnonymousRelationInstance: AnonymousRelationInstance;
|
|
925
|
+
Argument: Argument;
|
|
926
|
+
Aspect: Aspect;
|
|
927
|
+
Assertion: Assertion;
|
|
928
|
+
Axiom: Axiom;
|
|
929
|
+
BinaryPredicate: BinaryPredicate;
|
|
930
|
+
BooleanLiteral: BooleanLiteral;
|
|
931
|
+
BuiltIn: BuiltIn;
|
|
932
|
+
BuiltInPredicate: BuiltInPredicate;
|
|
933
|
+
Concept: Concept;
|
|
934
|
+
ConceptInstance: ConceptInstance;
|
|
935
|
+
DecimalLiteral: DecimalLiteral;
|
|
936
|
+
Description: Description;
|
|
937
|
+
DescriptionBox: DescriptionBox;
|
|
938
|
+
DescriptionBundle: DescriptionBundle;
|
|
939
|
+
DescriptionMember: DescriptionMember;
|
|
940
|
+
DescriptionStatement: DescriptionStatement;
|
|
941
|
+
DifferentFromPredicate: DifferentFromPredicate;
|
|
942
|
+
DoubleLiteral: DoubleLiteral;
|
|
943
|
+
Element: Element;
|
|
944
|
+
Entity: Entity;
|
|
945
|
+
EntityEquivalenceAxiom: EntityEquivalenceAxiom;
|
|
946
|
+
EquivalenceAxiom: EquivalenceAxiom;
|
|
947
|
+
ForwardRelation: ForwardRelation;
|
|
948
|
+
IdentifiedElement: IdentifiedElement;
|
|
949
|
+
Import: Import;
|
|
950
|
+
Instance: Instance;
|
|
951
|
+
InstanceEnumerationAxiom: InstanceEnumerationAxiom;
|
|
952
|
+
IntegerLiteral: IntegerLiteral;
|
|
953
|
+
KeyAxiom: KeyAxiom;
|
|
954
|
+
Literal: Literal;
|
|
955
|
+
LiteralEnumerationAxiom: LiteralEnumerationAxiom;
|
|
956
|
+
Member: Member;
|
|
957
|
+
NamedInstance: NamedInstance;
|
|
958
|
+
Ontology: Ontology;
|
|
959
|
+
Predicate: Predicate;
|
|
960
|
+
Property: Property;
|
|
961
|
+
PropertyCardinalityRestrictionAxiom: PropertyCardinalityRestrictionAxiom;
|
|
962
|
+
PropertyEquivalenceAxiom: PropertyEquivalenceAxiom;
|
|
963
|
+
PropertyPredicate: PropertyPredicate;
|
|
964
|
+
PropertyRangeRestrictionAxiom: PropertyRangeRestrictionAxiom;
|
|
965
|
+
PropertyRestrictionAxiom: PropertyRestrictionAxiom;
|
|
966
|
+
PropertySelfRestrictionAxiom: PropertySelfRestrictionAxiom;
|
|
967
|
+
PropertyValueAssertion: PropertyValueAssertion;
|
|
968
|
+
PropertyValueRestrictionAxiom: PropertyValueRestrictionAxiom;
|
|
969
|
+
QuotedLiteral: QuotedLiteral;
|
|
970
|
+
Relation: Relation;
|
|
971
|
+
RelationBase: RelationBase;
|
|
972
|
+
RelationEntity: RelationEntity;
|
|
973
|
+
RelationEntityPredicate: RelationEntityPredicate;
|
|
974
|
+
RelationInstance: RelationInstance;
|
|
975
|
+
ReverseRelation: ReverseRelation;
|
|
976
|
+
Rule: Rule;
|
|
977
|
+
SameAsPredicate: SameAsPredicate;
|
|
978
|
+
Scalar: Scalar;
|
|
979
|
+
ScalarEquivalenceAxiom: ScalarEquivalenceAxiom;
|
|
980
|
+
ScalarProperty: ScalarProperty;
|
|
981
|
+
SemanticProperty: SemanticProperty;
|
|
982
|
+
SpecializableProperty: SpecializableProperty;
|
|
983
|
+
SpecializableTerm: SpecializableTerm;
|
|
984
|
+
SpecializationAxiom: SpecializationAxiom;
|
|
985
|
+
Statement: Statement;
|
|
986
|
+
Term: Term;
|
|
987
|
+
Type: Type;
|
|
988
|
+
TypeAssertion: TypeAssertion;
|
|
989
|
+
TypePredicate: TypePredicate;
|
|
990
|
+
UnaryPredicate: UnaryPredicate;
|
|
991
|
+
UnreifiedRelation: UnreifiedRelation;
|
|
992
|
+
Vocabulary: Vocabulary;
|
|
993
|
+
VocabularyBox: VocabularyBox;
|
|
994
|
+
VocabularyBundle: VocabularyBundle;
|
|
995
|
+
VocabularyMember: VocabularyMember;
|
|
996
|
+
VocabularyStatement: VocabularyStatement;
|
|
997
|
+
};
|
|
998
|
+
export declare class OmlAstReflection extends langium.AbstractAstReflection {
|
|
999
|
+
readonly types: {
|
|
1000
|
+
readonly Annotation: {
|
|
1001
|
+
readonly name: "Annotation";
|
|
1002
|
+
readonly properties: {
|
|
1003
|
+
readonly literalValues: {
|
|
1004
|
+
readonly name: "literalValues";
|
|
1005
|
+
readonly defaultValue: [];
|
|
1006
|
+
};
|
|
1007
|
+
readonly property: {
|
|
1008
|
+
readonly name: "property";
|
|
1009
|
+
readonly referenceType: "AnnotationProperty";
|
|
1010
|
+
};
|
|
1011
|
+
readonly referencedValues: {
|
|
1012
|
+
readonly name: "referencedValues";
|
|
1013
|
+
readonly defaultValue: [];
|
|
1014
|
+
readonly referenceType: "Member";
|
|
1015
|
+
};
|
|
1016
|
+
};
|
|
1017
|
+
readonly superTypes: ["Element"];
|
|
1018
|
+
};
|
|
1019
|
+
readonly AnnotationProperty: {
|
|
1020
|
+
readonly name: "AnnotationProperty";
|
|
1021
|
+
readonly properties: {
|
|
1022
|
+
readonly name: {
|
|
1023
|
+
readonly name: "name";
|
|
1024
|
+
};
|
|
1025
|
+
readonly ownedAnnotations: {
|
|
1026
|
+
readonly name: "ownedAnnotations";
|
|
1027
|
+
readonly defaultValue: [];
|
|
1028
|
+
};
|
|
1029
|
+
readonly ownedEquivalences: {
|
|
1030
|
+
readonly name: "ownedEquivalences";
|
|
1031
|
+
readonly defaultValue: [];
|
|
1032
|
+
};
|
|
1033
|
+
readonly ownedSpecializations: {
|
|
1034
|
+
readonly name: "ownedSpecializations";
|
|
1035
|
+
readonly defaultValue: [];
|
|
1036
|
+
};
|
|
1037
|
+
readonly ref: {
|
|
1038
|
+
readonly name: "ref";
|
|
1039
|
+
readonly referenceType: "AnnotationProperty";
|
|
1040
|
+
};
|
|
1041
|
+
};
|
|
1042
|
+
readonly superTypes: ["SpecializableProperty"];
|
|
1043
|
+
};
|
|
1044
|
+
readonly AnonymousConceptInstance: {
|
|
1045
|
+
readonly name: "AnonymousConceptInstance";
|
|
1046
|
+
readonly properties: {
|
|
1047
|
+
readonly ownedPropertyValues: {
|
|
1048
|
+
readonly name: "ownedPropertyValues";
|
|
1049
|
+
readonly defaultValue: [];
|
|
1050
|
+
};
|
|
1051
|
+
readonly type: {
|
|
1052
|
+
readonly name: "type";
|
|
1053
|
+
readonly referenceType: "Concept";
|
|
1054
|
+
};
|
|
1055
|
+
};
|
|
1056
|
+
readonly superTypes: ["AnonymousInstance"];
|
|
1057
|
+
};
|
|
1058
|
+
readonly AnonymousInstance: {
|
|
1059
|
+
readonly name: "AnonymousInstance";
|
|
1060
|
+
readonly properties: {};
|
|
1061
|
+
readonly superTypes: ["Instance"];
|
|
1062
|
+
};
|
|
1063
|
+
readonly AnonymousRelationInstance: {
|
|
1064
|
+
readonly name: "AnonymousRelationInstance";
|
|
1065
|
+
readonly properties: {
|
|
1066
|
+
readonly ownedPropertyValues: {
|
|
1067
|
+
readonly name: "ownedPropertyValues";
|
|
1068
|
+
readonly defaultValue: [];
|
|
1069
|
+
};
|
|
1070
|
+
readonly target: {
|
|
1071
|
+
readonly name: "target";
|
|
1072
|
+
readonly referenceType: "NamedInstance";
|
|
1073
|
+
};
|
|
1074
|
+
};
|
|
1075
|
+
readonly superTypes: ["AnonymousInstance"];
|
|
1076
|
+
};
|
|
1077
|
+
readonly Argument: {
|
|
1078
|
+
readonly name: "Argument";
|
|
1079
|
+
readonly properties: {
|
|
1080
|
+
readonly instance: {
|
|
1081
|
+
readonly name: "instance";
|
|
1082
|
+
readonly referenceType: "NamedInstance";
|
|
1083
|
+
};
|
|
1084
|
+
readonly literal: {
|
|
1085
|
+
readonly name: "literal";
|
|
1086
|
+
};
|
|
1087
|
+
readonly variable: {
|
|
1088
|
+
readonly name: "variable";
|
|
1089
|
+
};
|
|
1090
|
+
};
|
|
1091
|
+
readonly superTypes: ["Element"];
|
|
1092
|
+
};
|
|
1093
|
+
readonly Aspect: {
|
|
1094
|
+
readonly name: "Aspect";
|
|
1095
|
+
readonly properties: {
|
|
1096
|
+
readonly name: {
|
|
1097
|
+
readonly name: "name";
|
|
1098
|
+
};
|
|
1099
|
+
readonly ownedAnnotations: {
|
|
1100
|
+
readonly name: "ownedAnnotations";
|
|
1101
|
+
readonly defaultValue: [];
|
|
1102
|
+
};
|
|
1103
|
+
readonly ownedEquivalences: {
|
|
1104
|
+
readonly name: "ownedEquivalences";
|
|
1105
|
+
readonly defaultValue: [];
|
|
1106
|
+
};
|
|
1107
|
+
readonly ownedKeys: {
|
|
1108
|
+
readonly name: "ownedKeys";
|
|
1109
|
+
readonly defaultValue: [];
|
|
1110
|
+
};
|
|
1111
|
+
readonly ownedPropertyRestrictions: {
|
|
1112
|
+
readonly name: "ownedPropertyRestrictions";
|
|
1113
|
+
readonly defaultValue: [];
|
|
1114
|
+
};
|
|
1115
|
+
readonly ownedSpecializations: {
|
|
1116
|
+
readonly name: "ownedSpecializations";
|
|
1117
|
+
readonly defaultValue: [];
|
|
1118
|
+
};
|
|
1119
|
+
readonly ref: {
|
|
1120
|
+
readonly name: "ref";
|
|
1121
|
+
readonly referenceType: "Aspect";
|
|
1122
|
+
};
|
|
1123
|
+
};
|
|
1124
|
+
readonly superTypes: ["Entity"];
|
|
1125
|
+
};
|
|
1126
|
+
readonly Assertion: {
|
|
1127
|
+
readonly name: "Assertion";
|
|
1128
|
+
readonly properties: {};
|
|
1129
|
+
readonly superTypes: ["Element"];
|
|
1130
|
+
};
|
|
1131
|
+
readonly Axiom: {
|
|
1132
|
+
readonly name: "Axiom";
|
|
1133
|
+
readonly properties: {};
|
|
1134
|
+
readonly superTypes: ["Element"];
|
|
1135
|
+
};
|
|
1136
|
+
readonly BinaryPredicate: {
|
|
1137
|
+
readonly name: "BinaryPredicate";
|
|
1138
|
+
readonly properties: {};
|
|
1139
|
+
readonly superTypes: ["Predicate"];
|
|
1140
|
+
};
|
|
1141
|
+
readonly BooleanLiteral: {
|
|
1142
|
+
readonly name: "BooleanLiteral";
|
|
1143
|
+
readonly properties: {
|
|
1144
|
+
readonly value: {
|
|
1145
|
+
readonly name: "value";
|
|
1146
|
+
};
|
|
1147
|
+
};
|
|
1148
|
+
readonly superTypes: ["Literal"];
|
|
1149
|
+
};
|
|
1150
|
+
readonly BuiltIn: {
|
|
1151
|
+
readonly name: "BuiltIn";
|
|
1152
|
+
readonly properties: {
|
|
1153
|
+
readonly name: {
|
|
1154
|
+
readonly name: "name";
|
|
1155
|
+
};
|
|
1156
|
+
readonly ownedAnnotations: {
|
|
1157
|
+
readonly name: "ownedAnnotations";
|
|
1158
|
+
readonly defaultValue: [];
|
|
1159
|
+
};
|
|
1160
|
+
readonly ref: {
|
|
1161
|
+
readonly name: "ref";
|
|
1162
|
+
readonly referenceType: "BuiltIn";
|
|
1163
|
+
};
|
|
1164
|
+
};
|
|
1165
|
+
readonly superTypes: ["VocabularyStatement"];
|
|
1166
|
+
};
|
|
1167
|
+
readonly BuiltInPredicate: {
|
|
1168
|
+
readonly name: "BuiltInPredicate";
|
|
1169
|
+
readonly properties: {
|
|
1170
|
+
readonly arguments: {
|
|
1171
|
+
readonly name: "arguments";
|
|
1172
|
+
readonly defaultValue: [];
|
|
1173
|
+
};
|
|
1174
|
+
readonly builtIn: {
|
|
1175
|
+
readonly name: "builtIn";
|
|
1176
|
+
readonly referenceType: "BuiltIn";
|
|
1177
|
+
};
|
|
1178
|
+
};
|
|
1179
|
+
readonly superTypes: ["Predicate"];
|
|
1180
|
+
};
|
|
1181
|
+
readonly Concept: {
|
|
1182
|
+
readonly name: "Concept";
|
|
1183
|
+
readonly properties: {
|
|
1184
|
+
readonly name: {
|
|
1185
|
+
readonly name: "name";
|
|
1186
|
+
};
|
|
1187
|
+
readonly ownedAnnotations: {
|
|
1188
|
+
readonly name: "ownedAnnotations";
|
|
1189
|
+
readonly defaultValue: [];
|
|
1190
|
+
};
|
|
1191
|
+
readonly ownedEnumeration: {
|
|
1192
|
+
readonly name: "ownedEnumeration";
|
|
1193
|
+
};
|
|
1194
|
+
readonly ownedEquivalences: {
|
|
1195
|
+
readonly name: "ownedEquivalences";
|
|
1196
|
+
readonly defaultValue: [];
|
|
1197
|
+
};
|
|
1198
|
+
readonly ownedKeys: {
|
|
1199
|
+
readonly name: "ownedKeys";
|
|
1200
|
+
readonly defaultValue: [];
|
|
1201
|
+
};
|
|
1202
|
+
readonly ownedPropertyRestrictions: {
|
|
1203
|
+
readonly name: "ownedPropertyRestrictions";
|
|
1204
|
+
readonly defaultValue: [];
|
|
1205
|
+
};
|
|
1206
|
+
readonly ownedSpecializations: {
|
|
1207
|
+
readonly name: "ownedSpecializations";
|
|
1208
|
+
readonly defaultValue: [];
|
|
1209
|
+
};
|
|
1210
|
+
readonly ref: {
|
|
1211
|
+
readonly name: "ref";
|
|
1212
|
+
readonly referenceType: "Concept";
|
|
1213
|
+
};
|
|
1214
|
+
};
|
|
1215
|
+
readonly superTypes: ["Entity"];
|
|
1216
|
+
};
|
|
1217
|
+
readonly ConceptInstance: {
|
|
1218
|
+
readonly name: "ConceptInstance";
|
|
1219
|
+
readonly properties: {
|
|
1220
|
+
readonly name: {
|
|
1221
|
+
readonly name: "name";
|
|
1222
|
+
};
|
|
1223
|
+
readonly ownedAnnotations: {
|
|
1224
|
+
readonly name: "ownedAnnotations";
|
|
1225
|
+
readonly defaultValue: [];
|
|
1226
|
+
};
|
|
1227
|
+
readonly ownedPropertyValues: {
|
|
1228
|
+
readonly name: "ownedPropertyValues";
|
|
1229
|
+
readonly defaultValue: [];
|
|
1230
|
+
};
|
|
1231
|
+
readonly ownedTypes: {
|
|
1232
|
+
readonly name: "ownedTypes";
|
|
1233
|
+
readonly defaultValue: [];
|
|
1234
|
+
};
|
|
1235
|
+
readonly ref: {
|
|
1236
|
+
readonly name: "ref";
|
|
1237
|
+
readonly referenceType: "ConceptInstance";
|
|
1238
|
+
};
|
|
1239
|
+
};
|
|
1240
|
+
readonly superTypes: ["NamedInstance"];
|
|
1241
|
+
};
|
|
1242
|
+
readonly DecimalLiteral: {
|
|
1243
|
+
readonly name: "DecimalLiteral";
|
|
1244
|
+
readonly properties: {
|
|
1245
|
+
readonly value: {
|
|
1246
|
+
readonly name: "value";
|
|
1247
|
+
};
|
|
1248
|
+
};
|
|
1249
|
+
readonly superTypes: ["Literal"];
|
|
1250
|
+
};
|
|
1251
|
+
readonly Description: {
|
|
1252
|
+
readonly name: "Description";
|
|
1253
|
+
readonly properties: {
|
|
1254
|
+
readonly namespace: {
|
|
1255
|
+
readonly name: "namespace";
|
|
1256
|
+
};
|
|
1257
|
+
readonly ownedAnnotations: {
|
|
1258
|
+
readonly name: "ownedAnnotations";
|
|
1259
|
+
readonly defaultValue: [];
|
|
1260
|
+
};
|
|
1261
|
+
readonly ownedImports: {
|
|
1262
|
+
readonly name: "ownedImports";
|
|
1263
|
+
readonly defaultValue: [];
|
|
1264
|
+
};
|
|
1265
|
+
readonly ownedStatements: {
|
|
1266
|
+
readonly name: "ownedStatements";
|
|
1267
|
+
readonly defaultValue: [];
|
|
1268
|
+
};
|
|
1269
|
+
readonly prefix: {
|
|
1270
|
+
readonly name: "prefix";
|
|
1271
|
+
};
|
|
1272
|
+
};
|
|
1273
|
+
readonly superTypes: ["DescriptionBox"];
|
|
1274
|
+
};
|
|
1275
|
+
readonly DescriptionBox: {
|
|
1276
|
+
readonly name: "DescriptionBox";
|
|
1277
|
+
readonly properties: {};
|
|
1278
|
+
readonly superTypes: ["Ontology"];
|
|
1279
|
+
};
|
|
1280
|
+
readonly DescriptionBundle: {
|
|
1281
|
+
readonly name: "DescriptionBundle";
|
|
1282
|
+
readonly properties: {
|
|
1283
|
+
readonly namespace: {
|
|
1284
|
+
readonly name: "namespace";
|
|
1285
|
+
};
|
|
1286
|
+
readonly ownedAnnotations: {
|
|
1287
|
+
readonly name: "ownedAnnotations";
|
|
1288
|
+
readonly defaultValue: [];
|
|
1289
|
+
};
|
|
1290
|
+
readonly ownedImports: {
|
|
1291
|
+
readonly name: "ownedImports";
|
|
1292
|
+
readonly defaultValue: [];
|
|
1293
|
+
};
|
|
1294
|
+
readonly prefix: {
|
|
1295
|
+
readonly name: "prefix";
|
|
1296
|
+
};
|
|
1297
|
+
};
|
|
1298
|
+
readonly superTypes: ["DescriptionBox"];
|
|
1299
|
+
};
|
|
1300
|
+
readonly DescriptionMember: {
|
|
1301
|
+
readonly name: "DescriptionMember";
|
|
1302
|
+
readonly properties: {};
|
|
1303
|
+
readonly superTypes: ["Member"];
|
|
1304
|
+
};
|
|
1305
|
+
readonly DescriptionStatement: {
|
|
1306
|
+
readonly name: "DescriptionStatement";
|
|
1307
|
+
readonly properties: {};
|
|
1308
|
+
readonly superTypes: ["DescriptionMember", "Statement"];
|
|
1309
|
+
};
|
|
1310
|
+
readonly DifferentFromPredicate: {
|
|
1311
|
+
readonly name: "DifferentFromPredicate";
|
|
1312
|
+
readonly properties: {
|
|
1313
|
+
readonly argument1: {
|
|
1314
|
+
readonly name: "argument1";
|
|
1315
|
+
};
|
|
1316
|
+
readonly argument2: {
|
|
1317
|
+
readonly name: "argument2";
|
|
1318
|
+
};
|
|
1319
|
+
};
|
|
1320
|
+
readonly superTypes: ["BinaryPredicate"];
|
|
1321
|
+
};
|
|
1322
|
+
readonly DoubleLiteral: {
|
|
1323
|
+
readonly name: "DoubleLiteral";
|
|
1324
|
+
readonly properties: {
|
|
1325
|
+
readonly value: {
|
|
1326
|
+
readonly name: "value";
|
|
1327
|
+
};
|
|
1328
|
+
};
|
|
1329
|
+
readonly superTypes: ["Literal"];
|
|
1330
|
+
};
|
|
1331
|
+
readonly Element: {
|
|
1332
|
+
readonly name: "Element";
|
|
1333
|
+
readonly properties: {};
|
|
1334
|
+
readonly superTypes: [];
|
|
1335
|
+
};
|
|
1336
|
+
readonly Entity: {
|
|
1337
|
+
readonly name: "Entity";
|
|
1338
|
+
readonly properties: {};
|
|
1339
|
+
readonly superTypes: ["Type"];
|
|
1340
|
+
};
|
|
1341
|
+
readonly EntityEquivalenceAxiom: {
|
|
1342
|
+
readonly name: "EntityEquivalenceAxiom";
|
|
1343
|
+
readonly properties: {
|
|
1344
|
+
readonly ownedPropertyRestrictions: {
|
|
1345
|
+
readonly name: "ownedPropertyRestrictions";
|
|
1346
|
+
readonly defaultValue: [];
|
|
1347
|
+
};
|
|
1348
|
+
readonly superTerms: {
|
|
1349
|
+
readonly name: "superTerms";
|
|
1350
|
+
readonly defaultValue: [];
|
|
1351
|
+
readonly referenceType: "Entity";
|
|
1352
|
+
};
|
|
1353
|
+
};
|
|
1354
|
+
readonly superTypes: ["Axiom", "EquivalenceAxiom"];
|
|
1355
|
+
};
|
|
1356
|
+
readonly EquivalenceAxiom: {
|
|
1357
|
+
readonly name: "EquivalenceAxiom";
|
|
1358
|
+
readonly properties: {};
|
|
1359
|
+
readonly superTypes: [];
|
|
1360
|
+
};
|
|
1361
|
+
readonly ForwardRelation: {
|
|
1362
|
+
readonly name: "ForwardRelation";
|
|
1363
|
+
readonly properties: {
|
|
1364
|
+
readonly name: {
|
|
1365
|
+
readonly name: "name";
|
|
1366
|
+
};
|
|
1367
|
+
readonly ownedAnnotations: {
|
|
1368
|
+
readonly name: "ownedAnnotations";
|
|
1369
|
+
readonly defaultValue: [];
|
|
1370
|
+
};
|
|
1371
|
+
};
|
|
1372
|
+
readonly superTypes: ["Relation"];
|
|
1373
|
+
};
|
|
1374
|
+
readonly IdentifiedElement: {
|
|
1375
|
+
readonly name: "IdentifiedElement";
|
|
1376
|
+
readonly properties: {};
|
|
1377
|
+
readonly superTypes: ["Element"];
|
|
1378
|
+
};
|
|
1379
|
+
readonly Import: {
|
|
1380
|
+
readonly name: "Import";
|
|
1381
|
+
readonly properties: {
|
|
1382
|
+
readonly imported: {
|
|
1383
|
+
readonly name: "imported";
|
|
1384
|
+
readonly referenceType: "Ontology";
|
|
1385
|
+
};
|
|
1386
|
+
readonly kind: {
|
|
1387
|
+
readonly name: "kind";
|
|
1388
|
+
};
|
|
1389
|
+
readonly prefix: {
|
|
1390
|
+
readonly name: "prefix";
|
|
1391
|
+
};
|
|
1392
|
+
};
|
|
1393
|
+
readonly superTypes: ["Element"];
|
|
1394
|
+
};
|
|
1395
|
+
readonly Instance: {
|
|
1396
|
+
readonly name: "Instance";
|
|
1397
|
+
readonly properties: {};
|
|
1398
|
+
readonly superTypes: ["Element"];
|
|
1399
|
+
};
|
|
1400
|
+
readonly InstanceEnumerationAxiom: {
|
|
1401
|
+
readonly name: "InstanceEnumerationAxiom";
|
|
1402
|
+
readonly properties: {
|
|
1403
|
+
readonly instances: {
|
|
1404
|
+
readonly name: "instances";
|
|
1405
|
+
readonly defaultValue: [];
|
|
1406
|
+
readonly referenceType: "ConceptInstance";
|
|
1407
|
+
};
|
|
1408
|
+
};
|
|
1409
|
+
readonly superTypes: ["Axiom"];
|
|
1410
|
+
};
|
|
1411
|
+
readonly IntegerLiteral: {
|
|
1412
|
+
readonly name: "IntegerLiteral";
|
|
1413
|
+
readonly properties: {
|
|
1414
|
+
readonly value: {
|
|
1415
|
+
readonly name: "value";
|
|
1416
|
+
};
|
|
1417
|
+
};
|
|
1418
|
+
readonly superTypes: ["Literal"];
|
|
1419
|
+
};
|
|
1420
|
+
readonly KeyAxiom: {
|
|
1421
|
+
readonly name: "KeyAxiom";
|
|
1422
|
+
readonly properties: {
|
|
1423
|
+
readonly properties: {
|
|
1424
|
+
readonly name: "properties";
|
|
1425
|
+
readonly defaultValue: [];
|
|
1426
|
+
readonly referenceType: "Property";
|
|
1427
|
+
};
|
|
1428
|
+
};
|
|
1429
|
+
readonly superTypes: ["Axiom"];
|
|
1430
|
+
};
|
|
1431
|
+
readonly Literal: {
|
|
1432
|
+
readonly name: "Literal";
|
|
1433
|
+
readonly properties: {};
|
|
1434
|
+
readonly superTypes: ["Element"];
|
|
1435
|
+
};
|
|
1436
|
+
readonly LiteralEnumerationAxiom: {
|
|
1437
|
+
readonly name: "LiteralEnumerationAxiom";
|
|
1438
|
+
readonly properties: {
|
|
1439
|
+
readonly literals: {
|
|
1440
|
+
readonly name: "literals";
|
|
1441
|
+
readonly defaultValue: [];
|
|
1442
|
+
};
|
|
1443
|
+
};
|
|
1444
|
+
readonly superTypes: ["Axiom"];
|
|
1445
|
+
};
|
|
1446
|
+
readonly Member: {
|
|
1447
|
+
readonly name: "Member";
|
|
1448
|
+
readonly properties: {};
|
|
1449
|
+
readonly superTypes: ["IdentifiedElement"];
|
|
1450
|
+
};
|
|
1451
|
+
readonly NamedInstance: {
|
|
1452
|
+
readonly name: "NamedInstance";
|
|
1453
|
+
readonly properties: {};
|
|
1454
|
+
readonly superTypes: ["DescriptionStatement", "Instance"];
|
|
1455
|
+
};
|
|
1456
|
+
readonly Ontology: {
|
|
1457
|
+
readonly name: "Ontology";
|
|
1458
|
+
readonly properties: {};
|
|
1459
|
+
readonly superTypes: ["IdentifiedElement"];
|
|
1460
|
+
};
|
|
1461
|
+
readonly Predicate: {
|
|
1462
|
+
readonly name: "Predicate";
|
|
1463
|
+
readonly properties: {};
|
|
1464
|
+
readonly superTypes: ["Element"];
|
|
1465
|
+
};
|
|
1466
|
+
readonly Property: {
|
|
1467
|
+
readonly name: "Property";
|
|
1468
|
+
readonly properties: {};
|
|
1469
|
+
readonly superTypes: ["Term"];
|
|
1470
|
+
};
|
|
1471
|
+
readonly PropertyCardinalityRestrictionAxiom: {
|
|
1472
|
+
readonly name: "PropertyCardinalityRestrictionAxiom";
|
|
1473
|
+
readonly properties: {
|
|
1474
|
+
readonly cardinality: {
|
|
1475
|
+
readonly name: "cardinality";
|
|
1476
|
+
};
|
|
1477
|
+
readonly kind: {
|
|
1478
|
+
readonly name: "kind";
|
|
1479
|
+
};
|
|
1480
|
+
readonly property: {
|
|
1481
|
+
readonly name: "property";
|
|
1482
|
+
readonly referenceType: "SemanticProperty";
|
|
1483
|
+
};
|
|
1484
|
+
readonly range: {
|
|
1485
|
+
readonly name: "range";
|
|
1486
|
+
readonly referenceType: "Type";
|
|
1487
|
+
};
|
|
1488
|
+
};
|
|
1489
|
+
readonly superTypes: ["PropertyRestrictionAxiom"];
|
|
1490
|
+
};
|
|
1491
|
+
readonly PropertyEquivalenceAxiom: {
|
|
1492
|
+
readonly name: "PropertyEquivalenceAxiom";
|
|
1493
|
+
readonly properties: {
|
|
1494
|
+
readonly superTerms: {
|
|
1495
|
+
readonly name: "superTerms";
|
|
1496
|
+
readonly defaultValue: [];
|
|
1497
|
+
readonly referenceType: "Property";
|
|
1498
|
+
};
|
|
1499
|
+
};
|
|
1500
|
+
readonly superTypes: ["Axiom", "EquivalenceAxiom"];
|
|
1501
|
+
};
|
|
1502
|
+
readonly PropertyPredicate: {
|
|
1503
|
+
readonly name: "PropertyPredicate";
|
|
1504
|
+
readonly properties: {
|
|
1505
|
+
readonly argument1: {
|
|
1506
|
+
readonly name: "argument1";
|
|
1507
|
+
};
|
|
1508
|
+
readonly argument2: {
|
|
1509
|
+
readonly name: "argument2";
|
|
1510
|
+
};
|
|
1511
|
+
readonly property: {
|
|
1512
|
+
readonly name: "property";
|
|
1513
|
+
readonly referenceType: "Property";
|
|
1514
|
+
};
|
|
1515
|
+
};
|
|
1516
|
+
readonly superTypes: ["BinaryPredicate"];
|
|
1517
|
+
};
|
|
1518
|
+
readonly PropertyRangeRestrictionAxiom: {
|
|
1519
|
+
readonly name: "PropertyRangeRestrictionAxiom";
|
|
1520
|
+
readonly properties: {
|
|
1521
|
+
readonly kind: {
|
|
1522
|
+
readonly name: "kind";
|
|
1523
|
+
};
|
|
1524
|
+
readonly property: {
|
|
1525
|
+
readonly name: "property";
|
|
1526
|
+
readonly referenceType: "SemanticProperty";
|
|
1527
|
+
};
|
|
1528
|
+
readonly range: {
|
|
1529
|
+
readonly name: "range";
|
|
1530
|
+
readonly referenceType: "Type";
|
|
1531
|
+
};
|
|
1532
|
+
};
|
|
1533
|
+
readonly superTypes: ["PropertyRestrictionAxiom"];
|
|
1534
|
+
};
|
|
1535
|
+
readonly PropertyRestrictionAxiom: {
|
|
1536
|
+
readonly name: "PropertyRestrictionAxiom";
|
|
1537
|
+
readonly properties: {};
|
|
1538
|
+
readonly superTypes: ["Axiom"];
|
|
1539
|
+
};
|
|
1540
|
+
readonly PropertySelfRestrictionAxiom: {
|
|
1541
|
+
readonly name: "PropertySelfRestrictionAxiom";
|
|
1542
|
+
readonly properties: {
|
|
1543
|
+
readonly property: {
|
|
1544
|
+
readonly name: "property";
|
|
1545
|
+
readonly referenceType: "SemanticProperty";
|
|
1546
|
+
};
|
|
1547
|
+
};
|
|
1548
|
+
readonly superTypes: ["PropertyRestrictionAxiom"];
|
|
1549
|
+
};
|
|
1550
|
+
readonly PropertyValueAssertion: {
|
|
1551
|
+
readonly name: "PropertyValueAssertion";
|
|
1552
|
+
readonly properties: {
|
|
1553
|
+
readonly containedValues: {
|
|
1554
|
+
readonly name: "containedValues";
|
|
1555
|
+
readonly defaultValue: [];
|
|
1556
|
+
};
|
|
1557
|
+
readonly literalValues: {
|
|
1558
|
+
readonly name: "literalValues";
|
|
1559
|
+
readonly defaultValue: [];
|
|
1560
|
+
};
|
|
1561
|
+
readonly property: {
|
|
1562
|
+
readonly name: "property";
|
|
1563
|
+
readonly referenceType: "SemanticProperty";
|
|
1564
|
+
};
|
|
1565
|
+
readonly referencedValues: {
|
|
1566
|
+
readonly name: "referencedValues";
|
|
1567
|
+
readonly defaultValue: [];
|
|
1568
|
+
readonly referenceType: "NamedInstance";
|
|
1569
|
+
};
|
|
1570
|
+
};
|
|
1571
|
+
readonly superTypes: ["Assertion"];
|
|
1572
|
+
};
|
|
1573
|
+
readonly PropertyValueRestrictionAxiom: {
|
|
1574
|
+
readonly name: "PropertyValueRestrictionAxiom";
|
|
1575
|
+
readonly properties: {
|
|
1576
|
+
readonly containedValue: {
|
|
1577
|
+
readonly name: "containedValue";
|
|
1578
|
+
};
|
|
1579
|
+
readonly literalValue: {
|
|
1580
|
+
readonly name: "literalValue";
|
|
1581
|
+
};
|
|
1582
|
+
readonly property: {
|
|
1583
|
+
readonly name: "property";
|
|
1584
|
+
readonly referenceType: "SemanticProperty";
|
|
1585
|
+
};
|
|
1586
|
+
readonly referencedValue: {
|
|
1587
|
+
readonly name: "referencedValue";
|
|
1588
|
+
readonly referenceType: "NamedInstance";
|
|
1589
|
+
};
|
|
1590
|
+
};
|
|
1591
|
+
readonly superTypes: ["PropertyRestrictionAxiom"];
|
|
1592
|
+
};
|
|
1593
|
+
readonly QuotedLiteral: {
|
|
1594
|
+
readonly name: "QuotedLiteral";
|
|
1595
|
+
readonly properties: {
|
|
1596
|
+
readonly langTag: {
|
|
1597
|
+
readonly name: "langTag";
|
|
1598
|
+
};
|
|
1599
|
+
readonly type: {
|
|
1600
|
+
readonly name: "type";
|
|
1601
|
+
readonly referenceType: "Scalar";
|
|
1602
|
+
};
|
|
1603
|
+
readonly value: {
|
|
1604
|
+
readonly name: "value";
|
|
1605
|
+
};
|
|
1606
|
+
};
|
|
1607
|
+
readonly superTypes: ["Literal"];
|
|
1608
|
+
};
|
|
1609
|
+
readonly Relation: {
|
|
1610
|
+
readonly name: "Relation";
|
|
1611
|
+
readonly properties: {};
|
|
1612
|
+
readonly superTypes: ["SemanticProperty"];
|
|
1613
|
+
};
|
|
1614
|
+
readonly RelationBase: {
|
|
1615
|
+
readonly name: "RelationBase";
|
|
1616
|
+
readonly properties: {};
|
|
1617
|
+
readonly superTypes: ["Term"];
|
|
1618
|
+
};
|
|
1619
|
+
readonly RelationEntity: {
|
|
1620
|
+
readonly name: "RelationEntity";
|
|
1621
|
+
readonly properties: {
|
|
1622
|
+
readonly asymmetric: {
|
|
1623
|
+
readonly name: "asymmetric";
|
|
1624
|
+
readonly defaultValue: false;
|
|
1625
|
+
};
|
|
1626
|
+
readonly forwardRelation: {
|
|
1627
|
+
readonly name: "forwardRelation";
|
|
1628
|
+
};
|
|
1629
|
+
readonly functional: {
|
|
1630
|
+
readonly name: "functional";
|
|
1631
|
+
readonly defaultValue: false;
|
|
1632
|
+
};
|
|
1633
|
+
readonly inverseFunctional: {
|
|
1634
|
+
readonly name: "inverseFunctional";
|
|
1635
|
+
readonly defaultValue: false;
|
|
1636
|
+
};
|
|
1637
|
+
readonly irreflexive: {
|
|
1638
|
+
readonly name: "irreflexive";
|
|
1639
|
+
readonly defaultValue: false;
|
|
1640
|
+
};
|
|
1641
|
+
readonly name: {
|
|
1642
|
+
readonly name: "name";
|
|
1643
|
+
};
|
|
1644
|
+
readonly ownedAnnotations: {
|
|
1645
|
+
readonly name: "ownedAnnotations";
|
|
1646
|
+
readonly defaultValue: [];
|
|
1647
|
+
};
|
|
1648
|
+
readonly ownedEquivalences: {
|
|
1649
|
+
readonly name: "ownedEquivalences";
|
|
1650
|
+
readonly defaultValue: [];
|
|
1651
|
+
};
|
|
1652
|
+
readonly ownedKeys: {
|
|
1653
|
+
readonly name: "ownedKeys";
|
|
1654
|
+
readonly defaultValue: [];
|
|
1655
|
+
};
|
|
1656
|
+
readonly ownedPropertyRestrictions: {
|
|
1657
|
+
readonly name: "ownedPropertyRestrictions";
|
|
1658
|
+
readonly defaultValue: [];
|
|
1659
|
+
};
|
|
1660
|
+
readonly ownedSpecializations: {
|
|
1661
|
+
readonly name: "ownedSpecializations";
|
|
1662
|
+
readonly defaultValue: [];
|
|
1663
|
+
};
|
|
1664
|
+
readonly ref: {
|
|
1665
|
+
readonly name: "ref";
|
|
1666
|
+
readonly referenceType: "RelationEntity";
|
|
1667
|
+
};
|
|
1668
|
+
readonly reflexive: {
|
|
1669
|
+
readonly name: "reflexive";
|
|
1670
|
+
readonly defaultValue: false;
|
|
1671
|
+
};
|
|
1672
|
+
readonly reverseRelation: {
|
|
1673
|
+
readonly name: "reverseRelation";
|
|
1674
|
+
};
|
|
1675
|
+
readonly sources: {
|
|
1676
|
+
readonly name: "sources";
|
|
1677
|
+
readonly defaultValue: [];
|
|
1678
|
+
readonly referenceType: "Entity";
|
|
1679
|
+
};
|
|
1680
|
+
readonly symmetric: {
|
|
1681
|
+
readonly name: "symmetric";
|
|
1682
|
+
readonly defaultValue: false;
|
|
1683
|
+
};
|
|
1684
|
+
readonly targets: {
|
|
1685
|
+
readonly name: "targets";
|
|
1686
|
+
readonly defaultValue: [];
|
|
1687
|
+
readonly referenceType: "Entity";
|
|
1688
|
+
};
|
|
1689
|
+
readonly transitive: {
|
|
1690
|
+
readonly name: "transitive";
|
|
1691
|
+
readonly defaultValue: false;
|
|
1692
|
+
};
|
|
1693
|
+
};
|
|
1694
|
+
readonly superTypes: ["Entity", "RelationBase"];
|
|
1695
|
+
};
|
|
1696
|
+
readonly RelationEntityPredicate: {
|
|
1697
|
+
readonly name: "RelationEntityPredicate";
|
|
1698
|
+
readonly properties: {
|
|
1699
|
+
readonly argument: {
|
|
1700
|
+
readonly name: "argument";
|
|
1701
|
+
};
|
|
1702
|
+
readonly argument1: {
|
|
1703
|
+
readonly name: "argument1";
|
|
1704
|
+
};
|
|
1705
|
+
readonly argument2: {
|
|
1706
|
+
readonly name: "argument2";
|
|
1707
|
+
};
|
|
1708
|
+
readonly type: {
|
|
1709
|
+
readonly name: "type";
|
|
1710
|
+
readonly referenceType: "RelationEntity";
|
|
1711
|
+
};
|
|
1712
|
+
};
|
|
1713
|
+
readonly superTypes: ["UnaryPredicate"];
|
|
1714
|
+
};
|
|
1715
|
+
readonly RelationInstance: {
|
|
1716
|
+
readonly name: "RelationInstance";
|
|
1717
|
+
readonly properties: {
|
|
1718
|
+
readonly name: {
|
|
1719
|
+
readonly name: "name";
|
|
1720
|
+
};
|
|
1721
|
+
readonly ownedAnnotations: {
|
|
1722
|
+
readonly name: "ownedAnnotations";
|
|
1723
|
+
readonly defaultValue: [];
|
|
1724
|
+
};
|
|
1725
|
+
readonly ownedPropertyValues: {
|
|
1726
|
+
readonly name: "ownedPropertyValues";
|
|
1727
|
+
readonly defaultValue: [];
|
|
1728
|
+
};
|
|
1729
|
+
readonly ownedTypes: {
|
|
1730
|
+
readonly name: "ownedTypes";
|
|
1731
|
+
readonly defaultValue: [];
|
|
1732
|
+
};
|
|
1733
|
+
readonly ref: {
|
|
1734
|
+
readonly name: "ref";
|
|
1735
|
+
readonly referenceType: "RelationInstance";
|
|
1736
|
+
};
|
|
1737
|
+
readonly sources: {
|
|
1738
|
+
readonly name: "sources";
|
|
1739
|
+
readonly defaultValue: [];
|
|
1740
|
+
readonly referenceType: "NamedInstance";
|
|
1741
|
+
};
|
|
1742
|
+
readonly targets: {
|
|
1743
|
+
readonly name: "targets";
|
|
1744
|
+
readonly defaultValue: [];
|
|
1745
|
+
readonly referenceType: "NamedInstance";
|
|
1746
|
+
};
|
|
1747
|
+
};
|
|
1748
|
+
readonly superTypes: ["NamedInstance"];
|
|
1749
|
+
};
|
|
1750
|
+
readonly ReverseRelation: {
|
|
1751
|
+
readonly name: "ReverseRelation";
|
|
1752
|
+
readonly properties: {
|
|
1753
|
+
readonly name: {
|
|
1754
|
+
readonly name: "name";
|
|
1755
|
+
};
|
|
1756
|
+
readonly ownedAnnotations: {
|
|
1757
|
+
readonly name: "ownedAnnotations";
|
|
1758
|
+
readonly defaultValue: [];
|
|
1759
|
+
};
|
|
1760
|
+
};
|
|
1761
|
+
readonly superTypes: ["Relation"];
|
|
1762
|
+
};
|
|
1763
|
+
readonly Rule: {
|
|
1764
|
+
readonly name: "Rule";
|
|
1765
|
+
readonly properties: {
|
|
1766
|
+
readonly antecedent: {
|
|
1767
|
+
readonly name: "antecedent";
|
|
1768
|
+
readonly defaultValue: [];
|
|
1769
|
+
};
|
|
1770
|
+
readonly consequent: {
|
|
1771
|
+
readonly name: "consequent";
|
|
1772
|
+
readonly defaultValue: [];
|
|
1773
|
+
};
|
|
1774
|
+
readonly name: {
|
|
1775
|
+
readonly name: "name";
|
|
1776
|
+
};
|
|
1777
|
+
readonly ownedAnnotations: {
|
|
1778
|
+
readonly name: "ownedAnnotations";
|
|
1779
|
+
readonly defaultValue: [];
|
|
1780
|
+
};
|
|
1781
|
+
readonly ref: {
|
|
1782
|
+
readonly name: "ref";
|
|
1783
|
+
readonly referenceType: "Rule";
|
|
1784
|
+
};
|
|
1785
|
+
};
|
|
1786
|
+
readonly superTypes: ["VocabularyStatement"];
|
|
1787
|
+
};
|
|
1788
|
+
readonly SameAsPredicate: {
|
|
1789
|
+
readonly name: "SameAsPredicate";
|
|
1790
|
+
readonly properties: {
|
|
1791
|
+
readonly argument1: {
|
|
1792
|
+
readonly name: "argument1";
|
|
1793
|
+
};
|
|
1794
|
+
readonly argument2: {
|
|
1795
|
+
readonly name: "argument2";
|
|
1796
|
+
};
|
|
1797
|
+
};
|
|
1798
|
+
readonly superTypes: ["BinaryPredicate"];
|
|
1799
|
+
};
|
|
1800
|
+
readonly Scalar: {
|
|
1801
|
+
readonly name: "Scalar";
|
|
1802
|
+
readonly properties: {
|
|
1803
|
+
readonly name: {
|
|
1804
|
+
readonly name: "name";
|
|
1805
|
+
};
|
|
1806
|
+
readonly ownedAnnotations: {
|
|
1807
|
+
readonly name: "ownedAnnotations";
|
|
1808
|
+
readonly defaultValue: [];
|
|
1809
|
+
};
|
|
1810
|
+
readonly ownedEnumeration: {
|
|
1811
|
+
readonly name: "ownedEnumeration";
|
|
1812
|
+
};
|
|
1813
|
+
readonly ownedEquivalences: {
|
|
1814
|
+
readonly name: "ownedEquivalences";
|
|
1815
|
+
readonly defaultValue: [];
|
|
1816
|
+
};
|
|
1817
|
+
readonly ownedSpecializations: {
|
|
1818
|
+
readonly name: "ownedSpecializations";
|
|
1819
|
+
readonly defaultValue: [];
|
|
1820
|
+
};
|
|
1821
|
+
readonly ref: {
|
|
1822
|
+
readonly name: "ref";
|
|
1823
|
+
readonly referenceType: "Scalar";
|
|
1824
|
+
};
|
|
1825
|
+
};
|
|
1826
|
+
readonly superTypes: ["Type"];
|
|
1827
|
+
};
|
|
1828
|
+
readonly ScalarEquivalenceAxiom: {
|
|
1829
|
+
readonly name: "ScalarEquivalenceAxiom";
|
|
1830
|
+
readonly properties: {
|
|
1831
|
+
readonly language: {
|
|
1832
|
+
readonly name: "language";
|
|
1833
|
+
readonly defaultValue: [];
|
|
1834
|
+
};
|
|
1835
|
+
readonly length: {
|
|
1836
|
+
readonly name: "length";
|
|
1837
|
+
readonly defaultValue: [];
|
|
1838
|
+
};
|
|
1839
|
+
readonly maxExclusive: {
|
|
1840
|
+
readonly name: "maxExclusive";
|
|
1841
|
+
readonly defaultValue: [];
|
|
1842
|
+
};
|
|
1843
|
+
readonly maxInclusive: {
|
|
1844
|
+
readonly name: "maxInclusive";
|
|
1845
|
+
readonly defaultValue: [];
|
|
1846
|
+
};
|
|
1847
|
+
readonly maxLength: {
|
|
1848
|
+
readonly name: "maxLength";
|
|
1849
|
+
readonly defaultValue: [];
|
|
1850
|
+
};
|
|
1851
|
+
readonly minExclusive: {
|
|
1852
|
+
readonly name: "minExclusive";
|
|
1853
|
+
readonly defaultValue: [];
|
|
1854
|
+
};
|
|
1855
|
+
readonly minInclusive: {
|
|
1856
|
+
readonly name: "minInclusive";
|
|
1857
|
+
readonly defaultValue: [];
|
|
1858
|
+
};
|
|
1859
|
+
readonly minLength: {
|
|
1860
|
+
readonly name: "minLength";
|
|
1861
|
+
readonly defaultValue: [];
|
|
1862
|
+
};
|
|
1863
|
+
readonly pattern: {
|
|
1864
|
+
readonly name: "pattern";
|
|
1865
|
+
readonly defaultValue: [];
|
|
1866
|
+
};
|
|
1867
|
+
readonly superTerms: {
|
|
1868
|
+
readonly name: "superTerms";
|
|
1869
|
+
readonly defaultValue: [];
|
|
1870
|
+
readonly referenceType: "Scalar";
|
|
1871
|
+
};
|
|
1872
|
+
};
|
|
1873
|
+
readonly superTypes: ["Axiom", "EquivalenceAxiom"];
|
|
1874
|
+
};
|
|
1875
|
+
readonly ScalarProperty: {
|
|
1876
|
+
readonly name: "ScalarProperty";
|
|
1877
|
+
readonly properties: {
|
|
1878
|
+
readonly domains: {
|
|
1879
|
+
readonly name: "domains";
|
|
1880
|
+
readonly defaultValue: [];
|
|
1881
|
+
readonly referenceType: "Entity";
|
|
1882
|
+
};
|
|
1883
|
+
readonly functional: {
|
|
1884
|
+
readonly name: "functional";
|
|
1885
|
+
readonly defaultValue: false;
|
|
1886
|
+
};
|
|
1887
|
+
readonly name: {
|
|
1888
|
+
readonly name: "name";
|
|
1889
|
+
};
|
|
1890
|
+
readonly ownedAnnotations: {
|
|
1891
|
+
readonly name: "ownedAnnotations";
|
|
1892
|
+
readonly defaultValue: [];
|
|
1893
|
+
};
|
|
1894
|
+
readonly ownedEquivalences: {
|
|
1895
|
+
readonly name: "ownedEquivalences";
|
|
1896
|
+
readonly defaultValue: [];
|
|
1897
|
+
};
|
|
1898
|
+
readonly ownedSpecializations: {
|
|
1899
|
+
readonly name: "ownedSpecializations";
|
|
1900
|
+
readonly defaultValue: [];
|
|
1901
|
+
};
|
|
1902
|
+
readonly ranges: {
|
|
1903
|
+
readonly name: "ranges";
|
|
1904
|
+
readonly defaultValue: [];
|
|
1905
|
+
readonly referenceType: "Scalar";
|
|
1906
|
+
};
|
|
1907
|
+
readonly ref: {
|
|
1908
|
+
readonly name: "ref";
|
|
1909
|
+
readonly referenceType: "ScalarProperty";
|
|
1910
|
+
};
|
|
1911
|
+
};
|
|
1912
|
+
readonly superTypes: ["SemanticProperty", "SpecializableProperty"];
|
|
1913
|
+
};
|
|
1914
|
+
readonly SemanticProperty: {
|
|
1915
|
+
readonly name: "SemanticProperty";
|
|
1916
|
+
readonly properties: {};
|
|
1917
|
+
readonly superTypes: ["Property"];
|
|
1918
|
+
};
|
|
1919
|
+
readonly SpecializableProperty: {
|
|
1920
|
+
readonly name: "SpecializableProperty";
|
|
1921
|
+
readonly properties: {};
|
|
1922
|
+
readonly superTypes: ["Property", "SpecializableTerm"];
|
|
1923
|
+
};
|
|
1924
|
+
readonly SpecializableTerm: {
|
|
1925
|
+
readonly name: "SpecializableTerm";
|
|
1926
|
+
readonly properties: {};
|
|
1927
|
+
readonly superTypes: ["Term", "VocabularyStatement"];
|
|
1928
|
+
};
|
|
1929
|
+
readonly SpecializationAxiom: {
|
|
1930
|
+
readonly name: "SpecializationAxiom";
|
|
1931
|
+
readonly properties: {
|
|
1932
|
+
readonly superTerm: {
|
|
1933
|
+
readonly name: "superTerm";
|
|
1934
|
+
readonly referenceType: "Term";
|
|
1935
|
+
};
|
|
1936
|
+
};
|
|
1937
|
+
readonly superTypes: ["Axiom"];
|
|
1938
|
+
};
|
|
1939
|
+
readonly Statement: {
|
|
1940
|
+
readonly name: "Statement";
|
|
1941
|
+
readonly properties: {};
|
|
1942
|
+
readonly superTypes: ["Member"];
|
|
1943
|
+
};
|
|
1944
|
+
readonly Term: {
|
|
1945
|
+
readonly name: "Term";
|
|
1946
|
+
readonly properties: {};
|
|
1947
|
+
readonly superTypes: ["VocabularyMember"];
|
|
1948
|
+
};
|
|
1949
|
+
readonly Type: {
|
|
1950
|
+
readonly name: "Type";
|
|
1951
|
+
readonly properties: {};
|
|
1952
|
+
readonly superTypes: ["SpecializableTerm"];
|
|
1953
|
+
};
|
|
1954
|
+
readonly TypeAssertion: {
|
|
1955
|
+
readonly name: "TypeAssertion";
|
|
1956
|
+
readonly properties: {
|
|
1957
|
+
readonly type: {
|
|
1958
|
+
readonly name: "type";
|
|
1959
|
+
readonly referenceType: "Entity";
|
|
1960
|
+
};
|
|
1961
|
+
};
|
|
1962
|
+
readonly superTypes: ["Assertion"];
|
|
1963
|
+
};
|
|
1964
|
+
readonly TypePredicate: {
|
|
1965
|
+
readonly name: "TypePredicate";
|
|
1966
|
+
readonly properties: {
|
|
1967
|
+
readonly argument: {
|
|
1968
|
+
readonly name: "argument";
|
|
1969
|
+
};
|
|
1970
|
+
readonly type: {
|
|
1971
|
+
readonly name: "type";
|
|
1972
|
+
readonly referenceType: "Type";
|
|
1973
|
+
};
|
|
1974
|
+
};
|
|
1975
|
+
readonly superTypes: ["UnaryPredicate"];
|
|
1976
|
+
};
|
|
1977
|
+
readonly UnaryPredicate: {
|
|
1978
|
+
readonly name: "UnaryPredicate";
|
|
1979
|
+
readonly properties: {};
|
|
1980
|
+
readonly superTypes: ["Predicate"];
|
|
1981
|
+
};
|
|
1982
|
+
readonly UnreifiedRelation: {
|
|
1983
|
+
readonly name: "UnreifiedRelation";
|
|
1984
|
+
readonly properties: {
|
|
1985
|
+
readonly asymmetric: {
|
|
1986
|
+
readonly name: "asymmetric";
|
|
1987
|
+
readonly defaultValue: false;
|
|
1988
|
+
};
|
|
1989
|
+
readonly functional: {
|
|
1990
|
+
readonly name: "functional";
|
|
1991
|
+
readonly defaultValue: false;
|
|
1992
|
+
};
|
|
1993
|
+
readonly inverseFunctional: {
|
|
1994
|
+
readonly name: "inverseFunctional";
|
|
1995
|
+
readonly defaultValue: false;
|
|
1996
|
+
};
|
|
1997
|
+
readonly irreflexive: {
|
|
1998
|
+
readonly name: "irreflexive";
|
|
1999
|
+
readonly defaultValue: false;
|
|
2000
|
+
};
|
|
2001
|
+
readonly name: {
|
|
2002
|
+
readonly name: "name";
|
|
2003
|
+
};
|
|
2004
|
+
readonly ownedAnnotations: {
|
|
2005
|
+
readonly name: "ownedAnnotations";
|
|
2006
|
+
readonly defaultValue: [];
|
|
2007
|
+
};
|
|
2008
|
+
readonly ownedEquivalences: {
|
|
2009
|
+
readonly name: "ownedEquivalences";
|
|
2010
|
+
readonly defaultValue: [];
|
|
2011
|
+
};
|
|
2012
|
+
readonly ownedSpecializations: {
|
|
2013
|
+
readonly name: "ownedSpecializations";
|
|
2014
|
+
readonly defaultValue: [];
|
|
2015
|
+
};
|
|
2016
|
+
readonly ref: {
|
|
2017
|
+
readonly name: "ref";
|
|
2018
|
+
readonly referenceType: "Relation";
|
|
2019
|
+
};
|
|
2020
|
+
readonly reflexive: {
|
|
2021
|
+
readonly name: "reflexive";
|
|
2022
|
+
readonly defaultValue: false;
|
|
2023
|
+
};
|
|
2024
|
+
readonly reverseRelation: {
|
|
2025
|
+
readonly name: "reverseRelation";
|
|
2026
|
+
};
|
|
2027
|
+
readonly sources: {
|
|
2028
|
+
readonly name: "sources";
|
|
2029
|
+
readonly defaultValue: [];
|
|
2030
|
+
readonly referenceType: "Entity";
|
|
2031
|
+
};
|
|
2032
|
+
readonly symmetric: {
|
|
2033
|
+
readonly name: "symmetric";
|
|
2034
|
+
readonly defaultValue: false;
|
|
2035
|
+
};
|
|
2036
|
+
readonly targets: {
|
|
2037
|
+
readonly name: "targets";
|
|
2038
|
+
readonly defaultValue: [];
|
|
2039
|
+
readonly referenceType: "Entity";
|
|
2040
|
+
};
|
|
2041
|
+
readonly transitive: {
|
|
2042
|
+
readonly name: "transitive";
|
|
2043
|
+
readonly defaultValue: false;
|
|
2044
|
+
};
|
|
2045
|
+
};
|
|
2046
|
+
readonly superTypes: ["Relation", "RelationBase", "SpecializableProperty"];
|
|
2047
|
+
};
|
|
2048
|
+
readonly Vocabulary: {
|
|
2049
|
+
readonly name: "Vocabulary";
|
|
2050
|
+
readonly properties: {
|
|
2051
|
+
readonly namespace: {
|
|
2052
|
+
readonly name: "namespace";
|
|
2053
|
+
};
|
|
2054
|
+
readonly ownedAnnotations: {
|
|
2055
|
+
readonly name: "ownedAnnotations";
|
|
2056
|
+
readonly defaultValue: [];
|
|
2057
|
+
};
|
|
2058
|
+
readonly ownedImports: {
|
|
2059
|
+
readonly name: "ownedImports";
|
|
2060
|
+
readonly defaultValue: [];
|
|
2061
|
+
};
|
|
2062
|
+
readonly ownedStatements: {
|
|
2063
|
+
readonly name: "ownedStatements";
|
|
2064
|
+
readonly defaultValue: [];
|
|
2065
|
+
};
|
|
2066
|
+
readonly prefix: {
|
|
2067
|
+
readonly name: "prefix";
|
|
2068
|
+
};
|
|
2069
|
+
};
|
|
2070
|
+
readonly superTypes: ["VocabularyBox"];
|
|
2071
|
+
};
|
|
2072
|
+
readonly VocabularyBox: {
|
|
2073
|
+
readonly name: "VocabularyBox";
|
|
2074
|
+
readonly properties: {};
|
|
2075
|
+
readonly superTypes: ["Ontology"];
|
|
2076
|
+
};
|
|
2077
|
+
readonly VocabularyBundle: {
|
|
2078
|
+
readonly name: "VocabularyBundle";
|
|
2079
|
+
readonly properties: {
|
|
2080
|
+
readonly namespace: {
|
|
2081
|
+
readonly name: "namespace";
|
|
2082
|
+
};
|
|
2083
|
+
readonly ownedAnnotations: {
|
|
2084
|
+
readonly name: "ownedAnnotations";
|
|
2085
|
+
readonly defaultValue: [];
|
|
2086
|
+
};
|
|
2087
|
+
readonly ownedImports: {
|
|
2088
|
+
readonly name: "ownedImports";
|
|
2089
|
+
readonly defaultValue: [];
|
|
2090
|
+
};
|
|
2091
|
+
readonly prefix: {
|
|
2092
|
+
readonly name: "prefix";
|
|
2093
|
+
};
|
|
2094
|
+
};
|
|
2095
|
+
readonly superTypes: ["VocabularyBox"];
|
|
2096
|
+
};
|
|
2097
|
+
readonly VocabularyMember: {
|
|
2098
|
+
readonly name: "VocabularyMember";
|
|
2099
|
+
readonly properties: {};
|
|
2100
|
+
readonly superTypes: ["Member"];
|
|
2101
|
+
};
|
|
2102
|
+
readonly VocabularyStatement: {
|
|
2103
|
+
readonly name: "VocabularyStatement";
|
|
2104
|
+
readonly properties: {};
|
|
2105
|
+
readonly superTypes: ["Statement", "VocabularyMember"];
|
|
2106
|
+
};
|
|
2107
|
+
};
|
|
2108
|
+
}
|
|
2109
|
+
export declare const reflection: OmlAstReflection;
|