Last active
March 8, 2019 14:42
-
-
Save dacioromero/b907cef5e552409db540852d9d813bb0 to your computer and use it in GitHub Desktop.
Reddit Post w/ Comments JSON Schema for https://medium.com/p/71e0ebb840ae
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-07/schema#", | |
"title": "Post", | |
"description": "A Reddit post and its comments", | |
"type": "object", | |
"properties": { | |
"title": { | |
"type": "string", | |
"minLength": 8, | |
"maxLength": 32 | |
}, | |
"content": { | |
"anyOf": [ | |
{ | |
"type": "string", | |
"format": "uri", | |
"pattern": "^https?://" | |
}, | |
{ | |
"type": "string", | |
"minLength": 16 | |
} | |
] | |
}, | |
"votes": { | |
"type": "object", | |
"properties": { | |
"up": { | |
"type": "integer", | |
"minimum": 0 | |
}, | |
"down": { | |
"type": "integer", | |
"minimum": 0 | |
} | |
} | |
}, | |
"comments": { | |
"type": "array", | |
"items": { | |
"type": "object", | |
"properties": { | |
"content": { | |
"type": "string", | |
"minLength": 16 | |
}, | |
"votes": { | |
"type": "object", | |
"properties": { | |
"up": { | |
"type": "integer", | |
"minimum": 0 | |
}, | |
"down": { | |
"type": "integer", | |
"minimum": 0 | |
} | |
} | |
}, | |
}, | |
"required": ["content"] | |
} | |
} | |
}, | |
"required": ["title", "content"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment