# OpenSSF Scorecard GitHub projects list

**Use case:** 

Turn a GitHub projects list into structured OpenSSF Scorecard rows with repository scores, Scorecard versions, and check-level data.

## Input

```json
{
  "repositories": [
    "github.com/kubernetes/kubernetes",
    "github.com/golang/go",
    "github.com/nodejs/node",
    "github.com/facebook/react",
    "github.com/vuejs/core"
  ]
}
```

## Output

```json
{
  "repository": {
    "label": "Repository",
    "format": "string"
  },
  "score": {
    "label": "Score",
    "format": "number"
  },
  "commit": {
    "label": "Commit",
    "format": "string"
  },
  "scorecardDate": {
    "label": "Scorecard date",
    "format": "string"
  },
  "scorecardVersion": {
    "label": "Scorecard version",
    "format": "string"
  },
  "checks": {
    "label": "Checks",
    "format": "array"
  }
}
```

## About this Actor

This example demonstrates how to use [OpenSSF Scorecard Projects Scraper](https://apify.com/maximedupre/openssf-scorecard-projects-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/maximedupre/openssf-scorecard-projects-scraper) to learn more, explore other use cases, and run it yourself.