1{
2  "type": "object",
3  "required": [
4    "key",
5    "name",
6    "nickname",
7    "popular",
8    "html_url",
9    "source_url",
10    "description",
11    "conditions",
12    "permissions",
13    "limitations",
14    "content"
15  ],
16  "properties": {
17    "key": { "type": "string" },
18    "name": { "type": "string" },
19    "nickname": { "type": ["null", "string"] },
20    "popular": { "type": "boolean" },
21    "html_url": { "type": ["null", "string"] },
22    "source_url": { "type": ["null", "string"] },
23    "description": { "type": ["null", "string"] },
24    "conditions": { "type": "array", "items": { "type": "string" } },
25    "permissions": { "type": "array", "items": { "type": "string" } },
26    "limitations": { "type": "array", "items": { "type": "string" } },
27    "content": { "type": "string" }
28  },
29  "additionalProperties": false
30}
31