atsid/schematic-js

View on GitHub
test/data/SimpleTestModelSchema.js

Summary

Maintainability
A
0 mins
Test Coverage
define({
    'id': 'TestData/SimpleTestModelSchema',
    'description': 'A simple model for testing',
    '$schema': 'http://json-schema.org/draft-03/schema',
    'type': 'object',
    'properties': {
        'modelNumber': {
            'type': 'string',
            'maxLength': 4,
            'description': 'The number of the model.',
            'pattern': '[0-9]',
            'required': true
        },
        'optionalprop': {
            'type': 'string',
            'description': 'an optional property.'
        },
        'creditCardNumber': {
            'type': 'string',
            'description': 'Credit Debit Card Number',
            'required': true
        }
    }
});