diff --git a/lexicons/com/chrisvanderloo/project.json b/lexicons/com/chrisvanderloo/project.json new file mode 100644 index 0000000..3bf85ea --- /dev/null +++ b/lexicons/com/chrisvanderloo/project.json @@ -0,0 +1,22 @@ +{ + "lexicon": 1, + "id": "com.chrisvanderloo.project", + "defs": { + "main": { + "type": "record", + "description": "A project for display on my website.", + "key": "any", + "record": { + "type": "object", + "properties": { + "title": { "type": "string", "maxLength": 120 }, + "description": { "type": "string", "maxLength": 2048 }, + "link": { "type": "string", "format": "uri", "maxLength": 2048 }, + "repo": { "type": "string", "format": "uri", "maxLength": 2048 }, + "language": { "type": "string", "maxLength": 64 } + }, + "required": ["title", "description", "repo", "language"] + } + } + } +}