|
1 | | -@prefix bamm: <urn:bamm:io.openmanufacturing:meta-model:1.0.0#> . |
2 | | -@prefix bamm-c: <urn:bamm:io.openmanufacturing:characteristic:1.0.0#> . |
3 | | -@prefix bamm-e: <urn:bamm:io.openmanufacturing:entity:1.0.0#> . |
4 | | -@prefix unit: <urn:bamm:io.openmanufacturing:unit:1.0.0#> . |
| 1 | +# Copyright (c) 2022 Robert Bosch Manufacturing Solutions GmbH |
| 2 | +# |
| 3 | +# See the AUTHORS file(s) distributed with this work for |
| 4 | +# additional information regarding authorship. |
| 5 | +# |
| 6 | +# This Source Code Form is subject to the terms of the Mozilla Public |
| 7 | +# License, v. 2.0. If a copy of the MPL was not distributed with this |
| 8 | +# file, You can obtain one at https://mozilla.org/MPL/2.0/. |
| 9 | +# |
| 10 | +# SPDX-License-Identifier: MPL-2.0 |
| 11 | + |
| 12 | +@prefix bamm: <urn:bamm:io.openmanufacturing:meta-model:2.0.0#> . |
| 13 | +@prefix bamm-c: <urn:bamm:io.openmanufacturing:characteristic:2.0.0#> . |
| 14 | +@prefix bamm-e: <urn:bamm:io.openmanufacturing:entity:2.0.0#> . |
| 15 | +@prefix unit: <urn:bamm:io.openmanufacturing:unit:2.0.0#> . |
5 | 16 | @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . |
6 | 17 | @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . |
7 | 18 | @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . |
8 | 19 | @prefix : <urn:bamm:io.openmanufacturing:1.0.0#> . |
9 | 20 |
|
10 | 21 | :AspectWithAllCharacteristic a bamm:Aspect ; |
11 | | - bamm:name "AspectWithAllCharacteristic" ; |
12 | 22 | bamm:properties ( |
13 | 23 | :testCodeProperty |
14 | 24 | :testCollectiontProperty |
|
23 | 33 | bamm:operations ( ) . |
24 | 34 |
|
25 | 35 | :testCodeProperty a bamm:Property ; |
26 | | - bamm:name "testCodeProperty" ; |
27 | 36 | bamm:characteristic :TestCode . |
28 | 37 |
|
29 | 38 | :TestCode a bamm-c:Code ; |
30 | | - bamm:name "TestCode" ; |
31 | 39 | bamm:preferredName "Test Code"@en ; |
32 | 40 | bamm:description "This is a test code."@en ; |
33 | 41 | bamm:see <http://bosch.com/opcon> ; |
34 | 42 | bamm:dataType xsd:int . |
35 | 43 |
|
36 | 44 | :testCollectiontProperty a bamm:Property ; |
37 | | - bamm:name "testCollectiontProperty" ; |
38 | 45 | bamm:preferredName "Test Property"@en ; |
39 | 46 | bamm:description "This is a test property."@en ; |
40 | 47 | bamm:see <http://bosch.com/opcon> ; |
|
43 | 50 | bamm:characteristic :TestCollection . |
44 | 51 |
|
45 | 52 | :TestCollection a bamm-c:Collection ; |
46 | | - bamm:name "TestCollection" ; |
47 | 53 | bamm:preferredName "Test Collection"@en ; |
48 | 54 | bamm:description "This is a test collection."@en ; |
49 | 55 | bamm:see <http://bosch.com/opcon> ; |
50 | 56 | bamm:dataType xsd:string . |
51 | 57 |
|
52 | 58 | :testDurationProperty a bamm:Property ; |
53 | | - bamm:name "testDurationProperty" ; |
54 | 59 | bamm:characteristic :TestDuration . |
55 | 60 |
|
56 | 61 | :TestDuration a bamm-c:Duration ; |
57 | | - bamm:name "TestDuration" ; |
58 | 62 | bamm:preferredName "Test Duration"@en ; |
59 | 63 | bamm:description "This is a test Duration"@en ; |
60 | 64 | bamm:see <http://bosch.com/opcon> ; |
61 | 65 | bamm:dataType xsd:int ; |
62 | 66 | bamm-c:unit unit:kilosecond . |
63 | 67 |
|
64 | 68 | :testEnumerationProperty a bamm:Property ; |
65 | | - bamm:name "testEnumerationProperty" ; |
66 | 69 | bamm:preferredName "Test Property"@en ; |
67 | 70 | bamm:description "This is a test property."@en ; |
68 | 71 | bamm:see <http://bosch.com/opcon> ; |
|
71 | 74 | bamm:characteristic :TestEnumeration . |
72 | 75 |
|
73 | 76 | :TestEnumeration a bamm-c:Enumeration ; |
74 | | - bamm:name "TestEnumeration" ; |
75 | 77 | bamm:preferredName "Test Enumeration"@en ; |
76 | 78 | bamm:description "This is a test for enumeration."@en ; |
77 | 79 | bamm:see <http://bosch.com/opcon> ; |
78 | 80 | bamm:dataType xsd:int ; |
79 | 81 | bamm-c:values ( 1 2 3 ) . |
80 | 82 |
|
81 | 83 | :testListProperty a bamm:Property ; |
82 | | - bamm:name "testListProperty" ; |
83 | 84 | bamm:preferredName "Test Property"@en ; |
84 | 85 | bamm:description "This is a test property."@en ; |
85 | 86 | bamm:see <http://bosch.com/opcon> ; |
|
88 | 89 | bamm:characteristic :TestList . |
89 | 90 |
|
90 | 91 | :TestList a bamm-c:List ; |
91 | | - bamm:name "TestList" ; |
92 | 92 | bamm:preferredName "Test List"@en ; |
93 | 93 | bamm:description "This is a test list."@en ; |
94 | 94 | bamm:see <http://bosch.com/opcon> ; |
95 | 95 | bamm:dataType xsd:string . |
96 | 96 |
|
97 | 97 | :testMeasurementProperty a bamm:Property ; |
98 | | - bamm:name "testMeasurementProperty" ; |
99 | 98 | bamm:characteristic :TestMeasurement . |
100 | 99 |
|
101 | 100 | :TestMeasurement a bamm-c:Measurement ; |
102 | | - bamm:name "TestMeasurement" ; |
103 | 101 | bamm:preferredName "Test Measurement"@en ; |
104 | 102 | bamm:description "This is a test Measurement"@en ; |
105 | 103 | bamm:see <http://bosch.com/opcon> ; |
106 | 104 | bamm:dataType xsd:float ; |
107 | 105 | bamm-c:unit unit:kelvin . |
108 | 106 |
|
109 | 107 | :testQuantifiableProperty a bamm:Property ; |
110 | | - bamm:name "testQuantifiableProperty" ; |
111 | 108 | bamm:characteristic :TestQuantifiable . |
112 | 109 |
|
113 | 110 | :TestQuantifiable a bamm-c:Quantifiable ; |
114 | | - bamm:name "TestQuantifiable" ; |
115 | 111 | bamm:preferredName "Test Quantifiable"@en ; |
116 | 112 | bamm:description "This is a test Quantifiable"@en ; |
117 | 113 | bamm:see <http://bosch.com/opcon> ; |
118 | 114 | bamm:dataType xsd:float ; |
119 | 115 | bamm-c:unit unit:hertz . |
120 | 116 |
|
121 | 117 | :testSetProperty a bamm:Property ; |
122 | | - bamm:name "testSetProperty" ; |
123 | 118 | bamm:preferredName "Test Property"@en ; |
124 | 119 | bamm:description "This is a test property."@en ; |
125 | 120 | bamm:see <http://bosch.com/opcon> ; |
|
128 | 123 | bamm:characteristic :TestSet . |
129 | 124 |
|
130 | 125 | :TestSet a bamm-c:Set ; |
131 | | - bamm:name "TestSet" ; |
132 | 126 | bamm:preferredName "Test Set"@en ; |
133 | 127 | bamm:description "This is a test set."@en ; |
134 | 128 | bamm:see <http://bosch.com/opcon> ; |
135 | 129 | bamm:dataType xsd:string . |
136 | 130 |
|
137 | 131 | :testSortedSetProperty a bamm:Property ; |
138 | | - bamm:name "testSortedSetProperty" ; |
139 | 132 | bamm:preferredName "Test Property"@en ; |
140 | 133 | bamm:description "This is a test property."@en ; |
141 | 134 | bamm:see <http://bosch.com/opcon> ; |
|
144 | 137 | bamm:characteristic :TestSortedSet . |
145 | 138 |
|
146 | 139 | :TestSortedSet a bamm-c:SortedSet ; |
147 | | - bamm:name "TestSortedSet" ; |
148 | 140 | bamm:preferredName "Test Sorted Set"@en ; |
149 | 141 | bamm:description "This is a test sorted set."@en ; |
150 | 142 | bamm:see <http://bosch.com/opcon> ; |
|
0 commit comments