|
| 1 | +{ |
| 2 | + "$schema": "https://json-schema.org/draft-07/schema#", |
| 3 | + "type": "object", |
| 4 | + "title": "Contributor Activity", |
| 5 | + "properties": { |
| 6 | + "name": { |
| 7 | + "type": ["null", "string"] |
| 8 | + }, |
| 9 | + "email": { |
| 10 | + "type": ["string", "null"] |
| 11 | + }, |
| 12 | + "login": { |
| 13 | + "type": ["null", "string"] |
| 14 | + }, |
| 15 | + "id": { |
| 16 | + "type": ["null", "integer"] |
| 17 | + }, |
| 18 | + "node_id": { |
| 19 | + "type": ["null", "string"] |
| 20 | + }, |
| 21 | + "avatar_url": { |
| 22 | + "type": ["null", "string"], |
| 23 | + "format": "uri" |
| 24 | + }, |
| 25 | + "gravatar_id": { |
| 26 | + "type": ["string", "null"] |
| 27 | + }, |
| 28 | + "url": { |
| 29 | + "type": ["null", "string"], |
| 30 | + "format": "uri" |
| 31 | + }, |
| 32 | + "html_url": { |
| 33 | + "type": ["null", "string"], |
| 34 | + "format": "uri" |
| 35 | + }, |
| 36 | + "followers_url": { |
| 37 | + "type": ["null", "string"], |
| 38 | + "format": "uri" |
| 39 | + }, |
| 40 | + "following_url": { |
| 41 | + "type": ["null", "string"] |
| 42 | + }, |
| 43 | + "gists_url": { |
| 44 | + "type": ["null", "string"] |
| 45 | + }, |
| 46 | + "starred_url": { |
| 47 | + "type": ["null", "string"] |
| 48 | + }, |
| 49 | + "subscriptions_url": { |
| 50 | + "type": ["null", "string"], |
| 51 | + "format": "uri" |
| 52 | + }, |
| 53 | + "organizations_url": { |
| 54 | + "type": ["null", "string"], |
| 55 | + "format": "uri" |
| 56 | + }, |
| 57 | + "repos_url": { |
| 58 | + "type": ["null", "string"], |
| 59 | + "format": "uri" |
| 60 | + }, |
| 61 | + "events_url": { |
| 62 | + "type": ["null", "string"] |
| 63 | + }, |
| 64 | + "repository": { |
| 65 | + "type": ["null", "string"] |
| 66 | + }, |
| 67 | + "received_events_url": { |
| 68 | + "type": ["null", "string"], |
| 69 | + "format": "uri" |
| 70 | + }, |
| 71 | + "type": { |
| 72 | + "type": ["null", "string"] |
| 73 | + }, |
| 74 | + "site_admin": { |
| 75 | + "type": ["null", "boolean"] |
| 76 | + }, |
| 77 | + "starred_at": { |
| 78 | + "type": ["null", "string"] |
| 79 | + }, |
| 80 | + "total": { |
| 81 | + "type": ["null", "integer"] |
| 82 | + }, |
| 83 | + "weeks": { |
| 84 | + "type": "array", |
| 85 | + "items": { |
| 86 | + "type": "object", |
| 87 | + "properties": { |
| 88 | + "w": { |
| 89 | + "type": ["null", "integer"], |
| 90 | + "description": "Start of the week, given as a Unix timestamp." |
| 91 | + }, |
| 92 | + "a": { |
| 93 | + "type": ["null", "integer"], |
| 94 | + "description": "Number of additions" |
| 95 | + }, |
| 96 | + "d": { |
| 97 | + "type": ["null", "integer"], |
| 98 | + "description": "Number of deletions" |
| 99 | + }, |
| 100 | + "c": { |
| 101 | + "type": ["null", "integer"], |
| 102 | + "description": "Number of commits" |
| 103 | + } |
| 104 | + } |
| 105 | + } |
| 106 | + } |
| 107 | + } |
| 108 | +} |
0 commit comments