Skip to content

reviewpad/schemas

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Schemas

This repository contains a collection of JSON Schema specifications for the validation of Reviewpad configuration files.

Usage

VSCode

You can configure your VSCode to validate your Reviewpad configuration file against the schemas.

Open your settings.json file and add the following configuration:

{
    "yaml.schemas": {
        // Validate reviewpad.yml against the latest schema
        "https://raw.githubusercontent.com/reviewpad/schemas/main/latest/schema.json": [
            "reviewpad.yml",
        ]
    },
}