GitHub · Schema

nullable-license-simple

License Simple

CodePipelinesPlatformSoftware DevelopmentSource ControlT1

Properties

Name Type Description
key string
name string
url string
spdx_id string
node_id string
html_url string
View JSON Schema on GitHub

JSON Schema

github-repo-actions-api-nullable-license-simple-schema.json Raw ↑
{
  "$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"
  ]
}