atsid/circuits-js

View on GitHub
examples/schema/ExampleModel.js

Summary

Maintainability
A
40 mins
Test Coverage
define({
    "id": "schema/ExampleModel",
    "description": "A simple model for testing",
    "$schema": "http://json-schema.org/draft-03/schema",
    "type": "object",
    "properties": {
        "modelNumber": {
            "type": "string",
            "description": "The number of the model.",
            "required": true
        }
    }
});