mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-25 00:28:31 -05:00
14 lines
325 B
CoffeeScript
14 lines
325 B
CoffeeScript
|
module.exports =
|
||
|
bus:
|
||
|
title: "Bus"
|
||
|
id: "bus"
|
||
|
$schema: "http://json-schema.org/draft-04/schema#"
|
||
|
description: "Bus" # TODO
|
||
|
type: "object"
|
||
|
properties: # TODO
|
||
|
joined:
|
||
|
type: "boolean"
|
||
|
players:
|
||
|
type: "object"
|
||
|
required: ["joined", "players"]
|
||
|
additionalProperties: false
|