Sha256: 2df1ebe70f8bb799f65d5657ec02e5a7dbe144d8013d6b33604690dab513a5c5
Contents?: true
Size: 816 Bytes
Versions: 20
Compression:
Stored size: 816 Bytes
Contents
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "measure.json#", "type": "object", "title": "measure", "description": "Number and type of units", "example": "../examples/measure.json", "required": ["type", "value", "unitOfMeasure"], "additionalProperties": true, "properties": { "type": { "type": "string", "description": "The type of measurement.", "translation": {}, "enum": ["distance", "length", "vertical", "angle"] }, "value": { "type": "number", "description": "The number of units in the measurement.", "translation": {} }, "unitOfMeasure": { "type": "string", "description": "The type of units to associated with the value.", "translation": {}, "minLength": 1 } } }
Version data entries
20 entries across 20 versions & 1 rubygems