mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 16:17:57 -05:00
14 lines
335 B
CoffeeScript
14 lines
335 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", "null"]
|
|
players:
|
|
type: "object"
|
|
required: ["joined", "players"]
|
|
additionalProperties: true
|