valueflows

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

commit 04c3669a3d8ee8df471325903c08e095d9943fee
parent efcb76f656d639c3b63f3bdfce728df7319d9161
Author: Lynn Foster <foster.j.lynn@gmail.com>
Date:   Sat,  9 Dec 2017 08:38:03 -0600

Merge pull request #252 from valueflows/json-schemas

resource currentQuantity, reference classification with uri (for now)
Diffstat:
Mjson-schemas/EconomicResource.json | 7++++---
1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/json-schemas/EconomicResource.json b/json-schemas/EconomicResource.json @@ -9,13 +9,14 @@ "description": "An informal or formal textual identifier for an object. Does not imply uniqueness.", "type": "string" }, - "quantity": { + "currentQuantity": { "description": "The current amount and unit of the economic resource.", "$ref": "https://raw.githubusercontent.com/valueflows/valueflows/master/json-schemas/QuantityValue.json" }, "resourceClassifiedAs": { "description": "A resource's primary classification, as part of describing that resource.", - "$ref": "https://raw.githubusercontent.com/valueflows/valueflows/master/json-schemas/ResourceClassification.json" + "type": "string", + "format": "uri" }, "trackingIdentifier": { "description": "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.", @@ -38,5 +39,5 @@ "$ref": "https://raw.githubusercontent.com/valueflows/valueflows/master/json-schemas/EconomicResource.json" } }, - "required": ["resourceClassifiedAs" ] + "required": ["resourceClassifiedAs", "quantity" ] }