{ "type": "object", "required" : [ "client_id", "id", "active?", "secret", "owner", "random_token" ], "properties": { "client_id" : { "type" : "string" }, "id" : { "type" : "string" }, "active?" : { "type" : "boolean" }, "revoked_at" : { "type": ["string", "null"], "format": "date-time" }, "revoke_reason" : { "type": ["string", "null"] }, "secret" : { "type" : "string" }, "random_token" : { "type" : "string" }, "owner" : { "type" : "object", "required" : [ "id", "name", "email", "first_name", "last_name", "lang" ], "properties" : { "id" : { "type" : "integer" }, "name" : { "type" : "string" }, "email" : { "type" : "string" }, "first_name" : { "type" : "string" }, "last_name" : { "type" : "string" }, "lang" : { "type" : "string" } } } } }