GitHub · Schema

enterprise

An enterprise on GitHub.

CodePipelinesPlatformSoftware DevelopmentSource ControlT1

Properties

Name Type Description
description string short description of the enterprise.
html_url string
website_url string The enterprise's website URL.
id integer Unique identifier of the enterprise
node_id string
name string The name of the enterprise.
slug string The slug url identifier for the enterprise.
created_at string
updated_at string
avatar_url string
View JSON Schema on GitHub

JSON Schema

github-repo-tags-api-enterprise-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-tags-api-enterprise-schema.json",
  "title": "enterprise",
  "description": "An enterprise on GitHub.",
  "type": "object",
  "properties": {
    "description": {
      "description": "short description of the enterprise.",
      "type": "string",
      "example": "This is an example repository"
    },
    "html_url": {
      "type": "string",
      "format": "uri",
      "example": "https://github.com/enterprises/octo-business"
    },
    "website_url": {
      "description": "The enterprise's website URL.",
      "type": "string",
      "format": "uri",
      "example": "https://api.github.com/repos/octocat/Hello-World"
    },
    "id": {
      "description": "Unique identifier of the enterprise",
      "example": 42,
      "type": "integer"
    },
    "node_id": {
      "type": "string",
      "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5"
    },
    "name": {
      "description": "The name of the enterprise.",
      "type": "string",
      "example": "Octo Business"
    },
    "slug": {
      "description": "The slug url identifier for the enterprise.",
      "type": "string",
      "example": "octo-business"
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "example": "2019-01-26T19:01:12Z"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "example": "2019-01-26T19:14:43Z"
    },
    "avatar_url": {
      "type": "string",
      "format": "uri",
      "example": "https://api.github.com/repos/octocat/Hello-World"
    }
  },
  "required": [
    "id",
    "node_id",
    "name",
    "slug",
    "html_url",
    "created_at",
    "updated_at",
    "avatar_url"
  ]
}