Banish more tabs

This commit is contained in:
Daniel Wagner-Hall 2015-10-01 22:23:24 -05:00
parent e996933a29
commit fdccf35c47

View file

@ -22,26 +22,26 @@
"type": ["string", "null"], "type": ["string", "null"],
"description": "The display name for this user, if any. This is added by the homeserver." "description": "The display name for this user, if any. This is added by the homeserver."
}, },
"token": { "token": {
"type": "string", "type": "string",
"description": "A token which must be correctly signed, in order to join the room." "description": "A token which must be correctly signed, in order to join the room."
}, },
"key_validity_url": { "key_validity_url": {
"type": "string", "type": "string",
"description": "A URL which can be fetched, with querystring public_key=public_key, to validate whether the key has been revoked. The URL must return a JSON object containing a boolean property named 'valid'." "description": "A URL which can be fetched, with querystring public_key=public_key, to validate whether the key has been revoked. The URL must return a JSON object containing a boolean property named 'valid'."
}, },
"public_key": { "public_key": {
"type": "string", "type": "string",
"description": "A base64-encoded ed25519 key with which token must be signed." "description": "A base64-encoded ed25519 key with which token must be signed."
}, },
"signature": { "signature": {
"type": "string", "type": "string",
"description": "A base64-encoded signature of token with public_key." "description": "A base64-encoded signature of token with public_key."
}, },
"sender": { "sender": {
"type": "string", "type": "string",
"description": "The matrix user ID of the user who send the invite which is being used." "description": "The matrix user ID of the user who send the invite which is being used."
} }
}, },
"required": ["membership"] "required": ["membership"]
}, },