valueflows

valueflows docs
git clone https://s.sonu.ch/~srfsh/valueflows.git
Log | Files | Refs | README

commit 3c76ae87660877050db262f07d495a5cdb8454d7
parent 0b8392c172e885a58face4b22a9a9a49b10a8485
Author: Bob Haugen <bob.haugen@gmail.com>
Date:   Thu,  1 Aug 2019 13:30:00 -0500

Merge pull request #519 from valueflows/lot

Lot
Diffstat:
Mdocs/specification/external-terms.md | 9+++++++++
Mrelease-doc-in-process/all_vf.TTL | 17+++++++++++++----
2 files changed, 22 insertions(+), 4 deletions(-)

diff --git a/docs/specification/external-terms.md b/docs/specification/external-terms.md @@ -55,3 +55,12 @@ https://www.w3.org/2003/01/geo/wgs84_pos# * [`geo:lat`](https://www.w3.org/2003/01/geo/wgs84_pos#lat) * [`geo:long`](https://www.w3.org/2003/01/geo/wgs84_pos#long) * [`geo:alt`](https://www.w3.org/2003/01/geo/wgs84_pos#alt) + +## DFC + +http://www.virtual-assembly.org/DataFoodConsortium/FullModel# + +* [`dfc:ProductBatch`](http://www.virtual-assembly.org/DataFoodConsortium/FullModel#ProductBatch) +* [`dfc:batchNumber`](http://www.virtual-assembly.org/DataFoodConsortium/FullModel#batchNumber) +* [`dfc:expiryDate`](http://www.virtual-assembly.org/DataFoodConsortium/FullModel#expiryDate) +* [`dfc:productionDate`](http://www.virtual-assembly.org/DataFoodConsortium/FullModel#productionDate) diff --git a/release-doc-in-process/all_vf.TTL b/release-doc-in-process/all_vf.TTL @@ -7,8 +7,9 @@ @prefix qudt: <http://qudt.org/schema/qudt/> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . @prefix time: <http://www.w3.org/2006/time#> . -@prefix geo: <http://www.w3.org/2003/01/geo/wgs84_pos#> . -@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> . +@prefix geo: <http://www.w3.org/2003/01/geo/wgs84_pos#> . +@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> . +@prefix dfc: <http://www.virtual-assembly.org/DataFoodConsortium/FullModel#> . <https://w3id.org/valueflows/> a owl:Ontology; @@ -386,9 +387,17 @@ vf:name a owl:DatatypeProperty ; vf:trackingIdentifier a owl:AnnotationProperty ; rdfs:label "tracking identifier" ; - rdfs:domain vf:EconomicResource ; + rdfs:domain vf:EconomicResource ; + rdfs:range xsd:string ; + vs:term_status "unstable" ; + rdfs:comment "Sometimes called serial number, used when each item must have a trackable identifier (like a computer). Could also be used for other unique tracking identifiers needed for resources." . + +vf:lot a owl:AnnotationProperty ; + rdfs:label "lot" ; + rdfs:domain vf:EconomicResource ; + rdfs:range dfc:ProductBatch ; vs:term_status "unstable" ; - rdfs:comment "Sometimes called lot number, used for trackable batched resources. Sometimes called serial number, used when each item must have a trackable identifier (like a computer). Could also be used for other unique tracking identifiers needed for resources." . + rdfs:comment "Lot or batch of an economic resource, used to track forward or backwards to all occurrences of resources of that lot." . vf:fulfilledBy a owl:ObjectProperty ; rdfs:label "fulfilled by" ;