Last active
December 18, 2015 11:38
-
-
Save igkuz/5776754 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "http://json-schema.org/draft-04/schema#", | |
| "title": "Product", | |
| "description": "List object", | |
| "type": "object", | |
| "properties": { | |
| "id": { | |
| "description": "The unique identifier for a product", | |
| "type": "integer" | |
| }, | |
| "name": { | |
| "description": "Lists name in mailer project", | |
| "type": "string" | |
| } | |
| }, | |
| "required": ["id"] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment