GitHub · Schema

project-collaborator-permission

Project Collaborator Permission

CodePipelinesPlatformSoftware DevelopmentSource ControlT1

Properties

Name Type Description
permission string
user object
View JSON Schema on GitHub

JSON Schema

github-projects-project-collaborator-permission-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-projects-project-collaborator-permission-schema.json",
  "title": "project-collaborator-permission",
  "description": "Project Collaborator Permission",
  "type": "object",
  "properties": {
    "permission": {
      "type": "string",
      "example": "example_value"
    },
    "user": {
      "$ref": "#/components/schemas/nullable-simple-user"
    }
  },
  "required": [
    "permission",
    "user"
  ]
}