|
28 | 28 |
|
29 | 29 | dct:description "The Function Ontology allows to declare and describe functions. The specification is online at https://w3id.org/function/spec"@en; |
30 | 30 |
|
31 | | - rdfs:comment """-Version 0.5.1: fno:type a ObjectProperty |
| 31 | + rdfs:comment """-Version 0.6.0: fno:ReturnMapping |
| 32 | +-Version 0.5.1: fno:type a ObjectProperty |
32 | 33 | -Version 0.5.0: added Mapping and Implementation classes. |
33 | 34 | -Version 0.4.1: wrong range definition, updated descriptions. |
34 | 35 | -Version 0.4: added some properties |
35 | 36 | -Version 0.3: improved comments. |
36 | 37 | -Version 0.2: added extra metadata. |
37 | 38 | -Version 0.1: creation."""@en ; |
38 | 39 |
|
39 | | - owl:versionIRI <https://w3id.org/function/ontology/0.5.1> ; |
40 | | - owl:versionInfo "0.5.1" ; |
41 | | - owl:priorVersion "https://w3id.org/function/ontology/0.5.0" ; |
| 40 | + owl:versionIRI <https://w3id.org/function/ontology/0.6.0> ; |
| 41 | + owl:versionInfo "0.6.0" ; |
| 42 | + owl:priorVersion "https://w3id.org/function/ontology/0.5.1" ; |
42 | 43 |
|
43 | 44 | rdfs:seeAlso <https://w3id.org/function/spec> ; |
44 | 45 |
|
45 | | - dct:modified "2019-05-21"^^xsd:date ; |
| 46 | + dct:modified "2019-05-29"^^xsd:date ; |
46 | 47 |
|
47 | 48 | dct:issued "2016-03-08"^^xsd:date ; |
48 | 49 |
|
@@ -328,6 +329,22 @@ xsd:date rdf:type rdfs:Datatype . |
328 | 329 |
|
329 | 330 | rdfs:range :ParameterMapping . |
330 | 331 |
|
| 332 | +### https://w3id.org/function/ontology#returnMapping |
| 333 | + |
| 334 | +:returnMapping rdf:type owl:ObjectProperty ; |
| 335 | + |
| 336 | + rdfs:label "return mapping"@en ; |
| 337 | + |
| 338 | + rdfs:comment "Connects a return mapping to a mapping definition"@en ; |
| 339 | + |
| 340 | + rdfs:isDefinedBy <https://w3id.org/function/ontology#> ; |
| 341 | + |
| 342 | + vs:term_status "testing" ; |
| 343 | + |
| 344 | + rdfs:domain :Mapping ; |
| 345 | + |
| 346 | + rdfs:range :ReturnMapping . |
| 347 | + |
331 | 348 | ### https://w3id.org/function/ontology#uses |
332 | 349 |
|
333 | 350 | :uses rdf:type owl:ObjectProperty ; |
@@ -469,3 +486,15 @@ xsd:date rdf:type rdfs:Datatype . |
469 | 486 | vs:term_status "testing" ; |
470 | 487 |
|
471 | 488 | rdfs:isDefinedBy <https://w3id.org/function/ontology#> . |
| 489 | + |
| 490 | +### https://w3id.org/function/ontology#ReturnMapping |
| 491 | + |
| 492 | +:ReturnMapping rdf:type owl:Class ; |
| 493 | + |
| 494 | + rdfs:label "Return mapping"@en ; |
| 495 | + |
| 496 | + rdfs:comment "A return mapping unambiguously specifies how the abstract output can be mapped to the implemented method's return value. For example: the return value of the method, or the thrown error of a the method"@en ; |
| 497 | + |
| 498 | + vs:term_status "testing" ; |
| 499 | + |
| 500 | + rdfs:isDefinedBy <https://w3id.org/function/ontology#> . |
0 commit comments