GitHub · Schema

starred-repository

Starred Repository

CodePipelinesPlatformSoftware DevelopmentSource ControlT1

Properties

Name Type Description
starred_at string
repo object
View JSON Schema on GitHub

JSON Schema

github-users-api-starred-repository-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-users-api-starred-repository-schema.json",
  "title": "starred-repository",
  "description": "Starred Repository",
  "type": "object",
  "properties": {
    "starred_at": {
      "type": "string",
      "format": "date-time",
      "example": "2026-04-17T12:00:00Z"
    },
    "repo": {
      "$ref": "#/components/schemas/repository"
    }
  },
  "required": [
    "starred_at",
    "repo"
  ]
}