{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/github/refs/heads/main/json-schema/github-repo-actions-api-nullable-license-simple-schema.json", "title": "nullable-license-simple", "description": "License Simple", "type": "object", "properties": { "key": { "type": "string", "example": "mit" }, "name": { "type": "string", "example": "MIT License" }, "url": { "type": "string", "format": "uri", "example": "https://api.github.com/licenses/mit" }, "spdx_id": { "type": "string", "example": "MIT" }, "node_id": { "type": "string", "example": "MDc6TGljZW5zZW1pdA==" }, "html_url": { "type": "string", "format": "uri", "example": "https://api.github.com/repos/octocat/Hello-World" } }, "required": [ "key", "name", "url", "spdx_id", "node_id" ] }