1
Fork 0
mirror of https://github.com/RGBCube/GitHubWrapper synced 2025-05-31 21:18:13 +00:00
GitHubWrapper/tools/source.json
2022-06-27 13:26:15 +03:00

58 lines
No EOL
992 B
JSON

{
"type": "array",
"items": {
"title": "License Simple",
"description": "License Simple",
"type": "object",
"properties": {
"key": {
"type": "string",
"examples": [
"mit"
]
},
"name": {
"type": "string",
"examples": [
"MIT License"
]
},
"url": {
"type": [
"string",
"null"
],
"format": "uri",
"examples": [
"https://api.github.com/licenses/mit"
]
},
"spdx_id": {
"type": [
"string",
"null"
],
"examples": [
"MIT"
]
},
"node_id": {
"type": "string",
"examples": [
"MDc6TGljZW5zZW1pdA=="
]
},
"html_url": {
"type": "string",
"format": "uri"
}
},
"required": [
"key",
"name",
"url",
"spdx_id",
"node_id"
]
}
}