Skip to content

Commit

Permalink
Removing groups and applicationRoles from users schema (#41)
Browse files Browse the repository at this point in the history
* Removing groups and applicationRoles from users schema

* Replace locale with accountType to match UserDetails
  • Loading branch information
dmosorast committed Aug 21, 2019
1 parent 2cb5355 commit 827cd03
Showing 1 changed file with 1 addition and 58 deletions.
59 changes: 1 addition & 58 deletions tap_jira/schemas/users.json
Expand Up @@ -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"
}
}
}
}
}
}
}
}

0 comments on commit 827cd03

Please sign in to comment.