From 827cd03e693b1797a390d5164b833cba5cc8d18c Mon Sep 17 00:00:00 2001 From: Dan Mosora <30501696+dmosorast@users.noreply.github.com> Date: Wed, 21 Aug 2019 14:40:48 -0400 Subject: [PATCH] Removing groups and applicationRoles from users schema (#41) * Removing groups and applicationRoles from users schema * Replace locale with accountType to match UserDetails --- tap_jira/schemas/users.json | 59 +------------------------------------ 1 file changed, 1 insertion(+), 58 deletions(-) diff --git a/tap_jira/schemas/users.json b/tap_jira/schemas/users.json index 180153f..e9c368a 100644 --- a/tap_jira/schemas/users.json +++ b/tap_jira/schemas/users.json @@ -69,74 +69,17 @@ "string" ] }, - "locale": { + "accountType": { "type": [ "null", "string" ] }, - "groups": { - "$ref": "simple-list-wrapper" - }, - "applicationRoles": { - "$ref": "simple-list-wrapper" - }, "expand": { "type": [ "null", "string" ] } - }, - "definitions": { - "simple-list-wrapper": { - "title": "Simple List Wrapper", - "type": [ - "null", - "object" - ], - "properties": { - "size": { - "type": [ - "null", - "integer" - ] - }, - "max-results": { - "type": [ - "null", - "integer" - ] - }, - "items": { - "type": [ - "null", - "array" - ], - "items": { - "title": "Group", - "type": [ - "null", - "object" - ], - "properties": { - "name": { - "type": [ - "null", - "string" - ] - }, - "self": { - "type": [ - "null", - "string" - ], - "format": "uri" - } - } - } - } - } - } } }