Skip to content

Contest package#

This documentation goes over how each field (or group of fields) in contest.rbx.yml works.

Contest definition#

Schema: rbx.box.contest.schema.Contest

The only required field of a contest is its name.

A barebones package would look something like:

name: "my-problem"

Contest problem#

Schema: List[ContestProblem]

name: "my-contest"
problems:
  - short_name: "A"
    path: "A"
    color: "ff0000"
  - short_name: "B"
    path: "B"
    color: "00ff00"