{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "BranchCredentials", "description": "Credentials for accessing a branch, username and password", "type": "object", "properties": { "username": { "description": "Username for accessing the branch database", "type": "string" }, "password": { "description": "Password for accessing the branch database", "type": "string" } }, "required": [ "username", "password" ], "x-internal": true }