added some app schemas + missing schema stub

This commit is contained in:
Jasper D'haene 2014-04-13 16:05:11 +02:00
parent 4157447337
commit 2cde44319c

View file

@ -2,11 +2,21 @@ module.exports =
"application:idle-changed":
{} # TODO schema
"fbapi-loaded":
{} # TODO schema
"logging-in-with-facebook":
{} # TODO schema
"facebook-logged-in":
{} # TODO schema
title: "Facebook logged in"
$schema: "http://json-schema.org/draft-04/schema#"
description: "Published when you successfully logged in with facebook"
type: "object"
properties:
response:
type: "string"
required: ["response"]
"gapi-loaded":
{} # TODO schema
@ -15,4 +25,11 @@ module.exports =
{} # TODO schema
"gplus-logged-in":
{} # TODO schema
title: "G+ logged in"
$schema: "http://json-schema.org/draft-04/schema#"
description: "Published when you successfully logged in with G+"
type: "object"
properties:
authResult:
type: "string"
required: ["authResult"]