post.json
1 { 2 "$schema": "http://json-schema.org/draft-07/schema#", 3 "type": "object", 4 "properties": { 5 "id": { 6 "type": ["null", "number"] 7 }, 8 "name": { 9 "type": ["null", "string"] 10 }, 11 "raw": { 12 "type": ["string"] 13 }, 14 "username": { 15 "type": ["null", "string"] 16 }, 17 "created_at": { 18 "type": ["null", "string"] 19 }, 20 "post_number": { 21 "type": ["null", "number"] 22 }, 23 "post_type": { 24 "type": ["null", "number"] 25 }, 26 "post_count": { 27 "type": ["number"] 28 }, 29 "post_url": { 30 "type": ["string"] 31 }, 32 "updated_at": { 33 "type": ["null", "string"] 34 }, 35 "reply_count": { 36 "type": ["null", "number"] 37 }, 38 "reply_to_post_number": { 39 "type": ["null", "string"] 40 }, 41 "quote_count": { 42 "type": ["null", "number"] 43 }, 44 "incoming_link_count": { 45 "type": ["null", "number"] 46 }, 47 "reads": { 48 "type": ["null", "number"] 49 }, 50 "readers_count": { 51 "type": ["null", "number"] 52 }, 53 "score": { 54 "type": ["null", "number"] 55 }, 56 "topic_id": { 57 "type": ["null", "number"] 58 }, 59 "topic_slug": { 60 "type": ["null", "string"] 61 }, 62 "topic_title": { 63 "type": ["null", "string"] 64 }, 65 "topic_html_title": { 66 "type": ["null", "string"] 67 }, 68 "category_id": { 69 "type": ["null", "number"] 70 }, 71 "base_url": { 72 "type": ["string"] 73 } 74 } 75 }