{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/github/refs/heads/main/json-schema/github-repos-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" ] }