Advertisement
Guest User

Untitled

a guest
May 11th, 2017
621
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 307.48 KB | None | 0 0
  1. {
  2.  
  3.     "swagger": "2.0",
  4.     "info": {
  5.         "description": "Apache Syncope 2.0.4-SNAPSHOT",
  6.         "version": "2.0.4-SNAPSHOT",
  7.         "title": "Apache Syncope",
  8.         "contact": {
  9.             "name": "dev@syncope.apache.org"
  10.         },
  11.         "license": {
  12.             "name": "Apache 2.0 License",
  13.             "url": "http://www.apache.org/licenses/LICENSE-2.0.html"
  14.         }
  15.     },
  16.     "basePath": "/syncope/rest",
  17.     "paths": {
  18.         "/accessTokens/refresh": {
  19.             "post": {
  20.                 "operationId": "refresh",
  21.                 "parameters": [ ],
  22.                 "responses": {
  23.                     "default": {
  24.                         "description": "successful operation"
  25.                     }
  26.                 }
  27.             }
  28.         },
  29.         "/accessTokens/{key}": {
  30.             "delete": {
  31.                 "operationId": "delete",
  32.                 "parameters": [
  33.                     {
  34.                         "name": "key",
  35.                         "in": "path",
  36.                         "required": true,
  37.                         "type": "string"
  38.                     }
  39.                 ],
  40.                 "responses": {
  41.                     "default": {
  42.                         "description": "successful operation"
  43.                     }
  44.                 }
  45.             }
  46.         },
  47.         "/accessTokens": {
  48.             "get": {
  49.                 "operationId": "list",
  50.                 "parameters": [
  51.                     {
  52.                         "name": "page",
  53.                         "in": "query",
  54.                         "required": false,
  55.                         "type": "integer",
  56.                         "default": 1,
  57.                         "minimum": 1,
  58.                         "format": "int32"
  59.                     },
  60.                     {
  61.                         "name": "size",
  62.                         "in": "query",
  63.                         "required": false,
  64.                         "type": "integer",
  65.                         "default": 25,
  66.                         "minimum": 1,
  67.                         "format": "int32"
  68.                     },
  69.                     {
  70.                         "name": "orderby",
  71.                         "in": "query",
  72.                         "required": false,
  73.                         "type": "string"
  74.                     }
  75.                 ],
  76.                 "responses": {
  77.                     "200": {
  78.                         "description": "successful operation",
  79.                         "schema": {
  80.                             "$ref": "#/definitions/PagedResultAccessTokenTO"
  81.                         },
  82.                         "headers": { }
  83.                     }
  84.                 }
  85.             }
  86.         },
  87.         "/accessTokens/login": {
  88.             "post": {
  89.                 "operationId": "login",
  90.                 "parameters": [ ],
  91.                 "responses": {
  92.                     "default": {
  93.                         "description": "successful operation"
  94.                     }
  95.                 }
  96.             }
  97.         },
  98.         "/accessTokens/logout": {
  99.             "post": {
  100.                 "operationId": "logout",
  101.                 "parameters": [ ],
  102.                 "responses": {
  103.                     "default": {
  104.                         "description": "successful operation"
  105.                     }
  106.                 }
  107.             }
  108.         },
  109.         "/anyObjects/{key}/associate/{action}": {
  110.             "post": {
  111.                 "operationId": "associate",
  112.                 "consumes": [
  113.                     "application/json",
  114.                     "application/xml"
  115.                 ],
  116.                 "produces": [
  117.                     "application/json",
  118.                     "application/xml"
  119.                 ],
  120.                 "parameters": [
  121.                     {
  122.                         "in": "body",
  123.                         "name": "body",
  124.                         "required": false,
  125.                         "schema": {
  126.                             "$ref": "#/definitions/AssociationPatch"
  127.                         }
  128.                     }
  129.                 ],
  130.                 "responses": {
  131.                     "default": {
  132.                         "description": "successful operation"
  133.                     }
  134.                 }
  135.             }
  136.         },
  137.         "/anyObjects/bulk": {
  138.             "post": {
  139.                 "operationId": "bulk",
  140.                 "consumes": [
  141.                     "application/json",
  142.                     "application/xml"
  143.                 ],
  144.                 "produces": [
  145.                     "application/json",
  146.                     "application/xml"
  147.                 ],
  148.                 "parameters": [
  149.                     {
  150.                         "in": "body",
  151.                         "name": "body",
  152.                         "required": false,
  153.                         "schema": {
  154.                             "$ref": "#/definitions/BulkAction"
  155.                         }
  156.                     }
  157.                 ],
  158.                 "responses": {
  159.                     "default": {
  160.                         "description": "successful operation"
  161.                     }
  162.                 }
  163.             }
  164.         },
  165.         "/anyObjects/{key}/deassociate/{action}": {
  166.             "post": {
  167.                 "operationId": "deassociate",
  168.                 "consumes": [
  169.                     "application/json",
  170.                     "application/xml"
  171.                 ],
  172.                 "produces": [
  173.                     "application/json",
  174.                     "application/xml"
  175.                 ],
  176.                 "parameters": [
  177.                     {
  178.                         "in": "body",
  179.                         "name": "body",
  180.                         "required": false,
  181.                         "schema": {
  182.                             "$ref": "#/definitions/DeassociationPatch"
  183.                         }
  184.                     }
  185.                 ],
  186.                 "responses": {
  187.                     "default": {
  188.                         "description": "successful operation"
  189.                     }
  190.                 }
  191.             }
  192.         },
  193.         "/anyObjects/{key}": {
  194.             "get": {
  195.                 "operationId": "read",
  196.                 "produces": [
  197.                     "application/json",
  198.                     "application/xml"
  199.                 ],
  200.                 "parameters": [
  201.                     {
  202.                         "name": "key",
  203.                         "in": "path",
  204.                         "required": true,
  205.                         "type": "string"
  206.                     }
  207.                 ],
  208.                 "responses": {
  209.                     "200": {
  210.                         "description": "successful operation",
  211.                         "schema": {
  212.                             "$ref": "#/definitions/AnyTO"
  213.                         },
  214.                         "headers": { }
  215.                     }
  216.                 }
  217.             },
  218.             "put": {
  219.                 "operationId": "update_2",
  220.                 "consumes": [
  221.                     "application/json",
  222.                     "application/xml"
  223.                 ],
  224.                 "produces": [
  225.                     "application/json",
  226.                     "application/xml"
  227.                 ],
  228.                 "parameters": [
  229.                     {
  230.                         "in": "body",
  231.                         "name": "body",
  232.                         "required": false,
  233.                         "schema": {
  234.                             "$ref": "#/definitions/AnyObjectTO"
  235.                         }
  236.                     }
  237.                 ],
  238.                 "responses": {
  239.                     "default": {
  240.                         "description": "successful operation"
  241.                     }
  242.                 }
  243.             },
  244.             "delete": {
  245.                 "operationId": "delete_1",
  246.                 "consumes": [
  247.                     "application/json",
  248.                     "application/xml"
  249.                 ],
  250.                 "produces": [
  251.                     "application/json",
  252.                     "application/xml"
  253.                 ],
  254.                 "parameters": [
  255.                     {
  256.                         "name": "key",
  257.                         "in": "path",
  258.                         "required": true,
  259.                         "type": "string"
  260.                     }
  261.                 ],
  262.                 "responses": {
  263.                     "default": {
  264.                         "description": "successful operation"
  265.                     }
  266.                 }
  267.             },
  268.             "patch": {
  269.                 "operationId": "update",
  270.                 "consumes": [
  271.                     "application/json",
  272.                     "application/xml"
  273.                 ],
  274.                 "produces": [
  275.                     "application/json",
  276.                     "application/xml"
  277.                 ],
  278.                 "parameters": [
  279.                     {
  280.                         "in": "body",
  281.                         "name": "body",
  282.                         "required": false,
  283.                         "schema": {
  284.                             "$ref": "#/definitions/AnyObjectPatch"
  285.                         }
  286.                     }
  287.                 ],
  288.                 "responses": {
  289.                     "default": {
  290.                         "description": "successful operation"
  291.                     }
  292.                 }
  293.             }
  294.         },
  295.         "/anyObjects/{key}/{schemaType}/{schema}": {
  296.             "get": {
  297.                 "operationId": "read_1",
  298.                 "produces": [
  299.                     "application/json",
  300.                     "application/xml"
  301.                 ],
  302.                 "parameters": [
  303.                     {
  304.                         "name": "key",
  305.                         "in": "path",
  306.                         "required": true,
  307.                         "type": "string"
  308.                     },
  309.                     {
  310.                         "name": "schemaType",
  311.                         "in": "path",
  312.                         "required": true,
  313.                         "type": "string",
  314.                         "enum": [
  315.                             "PLAIN",
  316.                             "DERIVED",
  317.                             "VIRTUAL"
  318.                         ]
  319.                     },
  320.                     {
  321.                         "name": "schema",
  322.                         "in": "path",
  323.                         "required": true,
  324.                         "type": "string"
  325.                     }
  326.                 ],
  327.                 "responses": {
  328.                     "200": {
  329.                         "description": "successful operation",
  330.                         "schema": {
  331.                             "$ref": "#/definitions/AttrTO"
  332.                         },
  333.                         "headers": { }
  334.                     }
  335.                 }
  336.             },
  337.             "put": {
  338.                 "operationId": "update_1",
  339.                 "consumes": [
  340.                     "application/json",
  341.                     "application/xml"
  342.                 ],
  343.                 "produces": [
  344.                     "application/json",
  345.                     "application/xml"
  346.                 ],
  347.                 "parameters": [
  348.                     {
  349.                         "name": "key",
  350.                         "in": "path",
  351.                         "required": true,
  352.                         "type": "string"
  353.                     },
  354.                     {
  355.                         "name": "schemaType",
  356.                         "in": "path",
  357.                         "required": true,
  358.                         "type": "string",
  359.                         "enum": [
  360.                             "PLAIN",
  361.                             "DERIVED",
  362.                             "VIRTUAL"
  363.                         ]
  364.                     },
  365.                     {
  366.                         "in": "body",
  367.                         "name": "body",
  368.                         "required": false,
  369.                         "schema": {
  370.                             "$ref": "#/definitions/AttrTO"
  371.                         }
  372.                     }
  373.                 ],
  374.                 "responses": {
  375.                     "default": {
  376.                         "description": "successful operation"
  377.                     }
  378.                 }
  379.             },
  380.             "delete": {
  381.                 "operationId": "delete_2",
  382.                 "consumes": [
  383.                     "application/json",
  384.                     "application/xml"
  385.                 ],
  386.                 "produces": [
  387.                     "application/json",
  388.                     "application/xml"
  389.                 ],
  390.                 "parameters": [
  391.                     {
  392.                         "name": "key",
  393.                         "in": "path",
  394.                         "required": true,
  395.                         "type": "string"
  396.                     },
  397.                     {
  398.                         "name": "schemaType",
  399.                         "in": "path",
  400.                         "required": true,
  401.                         "type": "string",
  402.                         "enum": [
  403.                             "PLAIN",
  404.                             "DERIVED",
  405.                             "VIRTUAL"
  406.                         ]
  407.                     },
  408.                     {
  409.                         "name": "schema",
  410.                         "in": "path",
  411.                         "required": true,
  412.                         "type": "string"
  413.                     }
  414.                 ],
  415.                 "responses": {
  416.                     "default": {
  417.                         "description": "successful operation"
  418.                     }
  419.                 }
  420.             }
  421.         },
  422.         "/anyObjects/{key}/{schemaType}": {
  423.             "get": {
  424.                 "operationId": "read_2",
  425.                 "produces": [
  426.                     "application/json",
  427.                     "application/xml"
  428.                 ],
  429.                 "parameters": [
  430.                     {
  431.                         "name": "key",
  432.                         "in": "path",
  433.                         "required": true,
  434.                         "type": "string"
  435.                     },
  436.                     {
  437.                         "name": "schemaType",
  438.                         "in": "path",
  439.                         "required": true,
  440.                         "type": "string",
  441.                         "enum": [
  442.                             "PLAIN",
  443.                             "DERIVED",
  444.                             "VIRTUAL"
  445.                         ]
  446.                     }
  447.                 ],
  448.                 "responses": {
  449.                     "200": {
  450.                         "description": "successful operation",
  451.                         "schema": {
  452.                             "type": "array",
  453.                             "uniqueItems": true,
  454.                             "items": {
  455.                                 "$ref": "#/definitions/AttrTO"
  456.                             }
  457.                         },
  458.                         "headers": { }
  459.                     }
  460.                 }
  461.             }
  462.         },
  463.         "/anyObjects": {
  464.             "get": {
  465.                 "operationId": "search",
  466.                 "produces": [
  467.                     "application/json",
  468.                     "application/xml"
  469.                 ],
  470.                 "parameters": [
  471.                     {
  472.                         "name": "page",
  473.                         "in": "query",
  474.                         "required": false,
  475.                         "type": "integer",
  476.                         "default": 1,
  477.                         "minimum": 1,
  478.                         "format": "int32"
  479.                     },
  480.                     {
  481.                         "name": "size",
  482.                         "in": "query",
  483.                         "required": false,
  484.                         "type": "integer",
  485.                         "default": 25,
  486.                         "minimum": 1,
  487.                         "format": "int32"
  488.                     },
  489.                     {
  490.                         "name": "orderby",
  491.                         "in": "query",
  492.                         "required": false,
  493.                         "type": "string"
  494.                     },
  495.                     {
  496.                         "name": "realm",
  497.                         "in": "matrix",
  498.                         "required": false,
  499.                         "type": "string",
  500.                         "default": "/"
  501.                     },
  502.                     {
  503.                         "name": "details",
  504.                         "in": "query",
  505.                         "required": false,
  506.                         "type": "boolean",
  507.                         "default": true
  508.                     },
  509.                     {
  510.                         "name": "fiql",
  511.                         "in": "query",
  512.                         "required": false,
  513.                         "type": "string"
  514.                     }
  515.                 ],
  516.                 "responses": {
  517.                     "200": {
  518.                         "description": "successful operation",
  519.                         "schema": {
  520.                             "$ref": "#/definitions/PagedResultAnyTO"
  521.                         },
  522.                         "headers": { }
  523.                     }
  524.                 }
  525.             },
  526.             "post": {
  527.                 "operationId": "create",
  528.                 "consumes": [
  529.                     "application/json",
  530.                     "application/xml"
  531.                 ],
  532.                 "produces": [
  533.                     "application/json",
  534.                     "application/xml"
  535.                 ],
  536.                 "parameters": [
  537.                     {
  538.                         "in": "body",
  539.                         "name": "body",
  540.                         "required": false,
  541.                         "schema": {
  542.                             "$ref": "#/definitions/AnyObjectTO"
  543.                         }
  544.                     }
  545.                 ],
  546.                 "responses": {
  547.                     "default": {
  548.                         "description": "successful operation"
  549.                     }
  550.                 }
  551.             }
  552.         },
  553.         "/anyTypeClasses/{key}": {
  554.             "get": {
  555.                 "operationId": "read",
  556.                 "produces": [
  557.                     "application/json",
  558.                     "application/xml"
  559.                 ],
  560.                 "parameters": [
  561.                     {
  562.                         "name": "key",
  563.                         "in": "path",
  564.                         "required": true,
  565.                         "type": "string"
  566.                     }
  567.                 ],
  568.                 "responses": {
  569.                     "200": {
  570.                         "description": "successful operation",
  571.                         "schema": {
  572.                             "$ref": "#/definitions/AnyTypeClassTO"
  573.                         },
  574.                         "headers": { }
  575.                     }
  576.                 }
  577.             },
  578.             "put": {
  579.                 "operationId": "update",
  580.                 "consumes": [
  581.                     "application/json",
  582.                     "application/xml"
  583.                 ],
  584.                 "parameters": [
  585.                     {
  586.                         "in": "body",
  587.                         "name": "body",
  588.                         "required": false,
  589.                         "schema": {
  590.                             "$ref": "#/definitions/AnyTypeClassTO"
  591.                         }
  592.                     }
  593.                 ],
  594.                 "responses": {
  595.                     "default": {
  596.                         "description": "successful operation"
  597.                     }
  598.                 }
  599.             },
  600.             "delete": {
  601.                 "operationId": "delete",
  602.                 "parameters": [
  603.                     {
  604.                         "name": "key",
  605.                         "in": "path",
  606.                         "required": true,
  607.                         "type": "string"
  608.                     }
  609.                 ],
  610.                 "responses": {
  611.                     "default": {
  612.                         "description": "successful operation"
  613.                     }
  614.                 }
  615.             }
  616.         },
  617.         "/anyTypeClasses": {
  618.             "get": {
  619.                 "operationId": "list",
  620.                 "produces": [
  621.                     "application/json",
  622.                     "application/xml"
  623.                 ],
  624.                 "parameters": [ ],
  625.                 "responses": {
  626.                     "200": {
  627.                         "description": "successful operation",
  628.                         "schema": {
  629.                             "type": "array",
  630.                             "items": {
  631.                                 "$ref": "#/definitions/AnyTypeClassTO"
  632.                             }
  633.                         },
  634.                         "headers": { }
  635.                     }
  636.                 }
  637.             },
  638.             "post": {
  639.                 "operationId": "create",
  640.                 "consumes": [
  641.                     "application/json",
  642.                     "application/xml"
  643.                 ],
  644.                 "parameters": [
  645.                     {
  646.                         "in": "body",
  647.                         "name": "body",
  648.                         "required": false,
  649.                         "schema": {
  650.                             "$ref": "#/definitions/AnyTypeClassTO"
  651.                         }
  652.                     }
  653.                 ],
  654.                 "responses": {
  655.                     "default": {
  656.                         "description": "successful operation"
  657.                     }
  658.                 }
  659.             }
  660.         },
  661.         "/anyTypes/{key}": {
  662.             "get": {
  663.                 "operationId": "read",
  664.                 "produces": [
  665.                     "application/json",
  666.                     "application/xml"
  667.                 ],
  668.                 "parameters": [
  669.                     {
  670.                         "name": "key",
  671.                         "in": "path",
  672.                         "required": true,
  673.                         "type": "string"
  674.                     }
  675.                 ],
  676.                 "responses": {
  677.                     "200": {
  678.                         "description": "successful operation",
  679.                         "schema": {
  680.                             "$ref": "#/definitions/AnyTypeTO"
  681.                         },
  682.                         "headers": { }
  683.                     }
  684.                 }
  685.             },
  686.             "put": {
  687.                 "operationId": "update",
  688.                 "consumes": [
  689.                     "application/json",
  690.                     "application/xml"
  691.                 ],
  692.                 "parameters": [
  693.                     {
  694.                         "in": "body",
  695.                         "name": "body",
  696.                         "required": false,
  697.                         "schema": {
  698.                             "$ref": "#/definitions/AnyTypeTO"
  699.                         }
  700.                     }
  701.                 ],
  702.                 "responses": {
  703.                     "default": {
  704.                         "description": "successful operation"
  705.                     }
  706.                 }
  707.             },
  708.             "delete": {
  709.                 "operationId": "delete",
  710.                 "parameters": [
  711.                     {
  712.                         "name": "key",
  713.                         "in": "path",
  714.                         "required": true,
  715.                         "type": "string"
  716.                     }
  717.                 ],
  718.                 "responses": {
  719.                     "default": {
  720.                         "description": "successful operation"
  721.                     }
  722.                 }
  723.             }
  724.         },
  725.         "/anyTypes": {
  726.             "get": {
  727.                 "operationId": "list",
  728.                 "produces": [
  729.                     "application/json",
  730.                     "application/xml"
  731.                 ],
  732.                 "parameters": [ ],
  733.                 "responses": {
  734.                     "200": {
  735.                         "description": "successful operation",
  736.                         "schema": {
  737.                             "type": "array",
  738.                             "items": {
  739.                                 "$ref": "#/definitions/AnyTypeTO"
  740.                             }
  741.                         },
  742.                         "headers": { }
  743.                     }
  744.                 }
  745.             },
  746.             "post": {
  747.                 "operationId": "create",
  748.                 "consumes": [
  749.                     "application/json",
  750.                     "application/xml"
  751.                 ],
  752.                 "parameters": [
  753.                     {
  754.                         "in": "body",
  755.                         "name": "body",
  756.                         "required": false,
  757.                         "schema": {
  758.                             "$ref": "#/definitions/AnyTypeTO"
  759.                         }
  760.                     }
  761.                 ],
  762.                 "responses": {
  763.                     "default": {
  764.                         "description": "successful operation"
  765.                     }
  766.                 }
  767.             }
  768.         },
  769.         "/camelRoutes/restartContext": {
  770.             "post": {
  771.                 "operationId": "restartContext",
  772.                 "parameters": [ ],
  773.                 "responses": {
  774.                     "default": {
  775.                         "description": "successful operation"
  776.                     }
  777.                 }
  778.             }
  779.         },
  780.         "/camelRoutes/metrics": {
  781.             "get": {
  782.                 "operationId": "metrics",
  783.                 "produces": [
  784.                     "application/json",
  785.                     "application/xml"
  786.                 ],
  787.                 "parameters": [ ],
  788.                 "responses": {
  789.                     "200": {
  790.                         "description": "successful operation",
  791.                         "schema": {
  792.                             "$ref": "#/definitions/CamelMetrics"
  793.                         },
  794.                         "headers": { }
  795.                     }
  796.                 }
  797.             }
  798.         },
  799.         "/camelRoutes/{key}": {
  800.             "get": {
  801.                 "operationId": "read",
  802.                 "produces": [
  803.                     "application/json",
  804.                     "application/xml"
  805.                 ],
  806.                 "parameters": [
  807.                     {
  808.                         "name": "key",
  809.                         "in": "path",
  810.                         "required": true,
  811.                         "type": "string"
  812.                     }
  813.                 ],
  814.                 "responses": {
  815.                     "200": {
  816.                         "description": "successful operation",
  817.                         "schema": {
  818.                             "$ref": "#/definitions/CamelRouteTO"
  819.                         },
  820.                         "headers": { }
  821.                     }
  822.                 }
  823.             },
  824.             "put": {
  825.                 "operationId": "update",
  826.                 "consumes": [
  827.                     "application/json",
  828.                     "application/xml"
  829.                 ],
  830.                 "parameters": [
  831.                     {
  832.                         "in": "body",
  833.                         "name": "body",
  834.                         "required": false,
  835.                         "schema": {
  836.                             "$ref": "#/definitions/CamelRouteTO"
  837.                         }
  838.                     }
  839.                 ],
  840.                 "responses": {
  841.                     "default": {
  842.                         "description": "successful operation"
  843.                     }
  844.                 }
  845.             }
  846.         },
  847.         "/camelRoutes": {
  848.             "get": {
  849.                 "operationId": "list",
  850.                 "produces": [
  851.                     "application/json",
  852.                     "application/xml"
  853.                 ],
  854.                 "parameters": [
  855.                     {
  856.                         "name": "anyTypeKind",
  857.                         "in": "matrix",
  858.                         "required": true,
  859.                         "type": "string",
  860.                         "enum": [
  861.                             "USER",
  862.                             "GROUP",
  863.                             "ANY_OBJECT"
  864.                         ]
  865.                     }
  866.                 ],
  867.                 "responses": {
  868.                     "200": {
  869.                         "description": "successful operation",
  870.                         "schema": {
  871.                             "type": "array",
  872.                             "items": {
  873.                                 "$ref": "#/definitions/CamelRouteTO"
  874.                             }
  875.                         },
  876.                         "headers": { }
  877.                     }
  878.                 }
  879.             }
  880.         },
  881.         "/configurations/stream": {
  882.             "get": {
  883.                 "operationId": "export",
  884.                 "parameters": [ ],
  885.                 "responses": {
  886.                     "default": {
  887.                         "description": "successful operation"
  888.                     }
  889.                 }
  890.             }
  891.         },
  892.         "/configurations/{schema}": {
  893.             "get": {
  894.                 "operationId": "get",
  895.                 "produces": [
  896.                     "application/json",
  897.                     "application/xml"
  898.                 ],
  899.                 "parameters": [
  900.                     {
  901.                         "name": "schema",
  902.                         "in": "path",
  903.                         "required": true,
  904.                         "type": "string"
  905.                     }
  906.                 ],
  907.                 "responses": {
  908.                     "200": {
  909.                         "description": "successful operation",
  910.                         "schema": {
  911.                             "$ref": "#/definitions/AttrTO"
  912.                         },
  913.                         "headers": { }
  914.                     }
  915.                 }
  916.             },
  917.             "put": {
  918.                 "operationId": "set",
  919.                 "consumes": [
  920.                     "application/json",
  921.                     "application/xml"
  922.                 ],
  923.                 "parameters": [
  924.                     {
  925.                         "in": "body",
  926.                         "name": "body",
  927.                         "required": false,
  928.                         "schema": {
  929.                             "$ref": "#/definitions/AttrTO"
  930.                         }
  931.                     }
  932.                 ],
  933.                 "responses": {
  934.                     "default": {
  935.                         "description": "successful operation"
  936.                     }
  937.                 }
  938.             },
  939.             "delete": {
  940.                 "operationId": "delete",
  941.                 "consumes": [
  942.                     "application/json",
  943.                     "application/xml"
  944.                 ],
  945.                 "parameters": [
  946.                     {
  947.                         "name": "schema",
  948.                         "in": "path",
  949.                         "required": true,
  950.                         "type": "string"
  951.                     }
  952.                 ],
  953.                 "responses": {
  954.                     "default": {
  955.                         "description": "successful operation"
  956.                     }
  957.                 }
  958.             }
  959.         },
  960.         "/configurations": {
  961.             "get": {
  962.                 "operationId": "list",
  963.                 "produces": [
  964.                     "application/json",
  965.                     "application/xml"
  966.                 ],
  967.                 "parameters": [ ],
  968.                 "responses": {
  969.                     "200": {
  970.                         "description": "successful operation",
  971.                         "schema": {
  972.                             "type": "array",
  973.                             "items": {
  974.                                 "$ref": "#/definitions/AttrTO"
  975.                             }
  976.                         },
  977.                         "headers": { }
  978.                     }
  979.                 }
  980.             }
  981.         },
  982.         "/connectors/bundles": {
  983.             "get": {
  984.                 "operationId": "getBundles",
  985.                 "produces": [
  986.                     "application/json",
  987.                     "application/xml"
  988.                 ],
  989.                 "parameters": [
  990.                     {
  991.                         "name": "lang",
  992.                         "in": "query",
  993.                         "required": false,
  994.                         "type": "string"
  995.                     }
  996.                 ],
  997.                 "responses": {
  998.                     "200": {
  999.                         "description": "successful operation",
  1000.                         "schema": {
  1001.                             "type": "array",
  1002.                             "items": {
  1003.                                 "$ref": "#/definitions/ConnBundleTO"
  1004.                             }
  1005.                         },
  1006.                         "headers": { }
  1007.                     }
  1008.                 }
  1009.             }
  1010.         },
  1011.         "/connectors/{key}/supportedObjectClasses": {
  1012.             "post": {
  1013.                 "operationId": "buildObjectClassInfo",
  1014.                 "consumes": [
  1015.                     "application/json",
  1016.                     "application/xml"
  1017.                 ],
  1018.                 "produces": [
  1019.                     "application/json",
  1020.                     "application/xml"
  1021.                 ],
  1022.                 "parameters": [
  1023.                     {
  1024.                         "in": "body",
  1025.                         "name": "body",
  1026.                         "required": false,
  1027.                         "schema": {
  1028.                             "$ref": "#/definitions/ConnInstanceTO"
  1029.                         }
  1030.                     },
  1031.                     {
  1032.                         "name": "includeSpecial",
  1033.                         "in": "query",
  1034.                         "required": false,
  1035.                         "type": "boolean",
  1036.                         "default": false
  1037.                     }
  1038.                 ],
  1039.                 "responses": {
  1040.                     "200": {
  1041.                         "description": "successful operation",
  1042.                         "schema": {
  1043.                             "type": "array",
  1044.                             "items": {
  1045.                                 "$ref": "#/definitions/ConnIdObjectClassTO"
  1046.                             }
  1047.                         },
  1048.                         "headers": { }
  1049.                     }
  1050.                 }
  1051.             }
  1052.         },
  1053.         "/connectors/byResource/{resourceName}": {
  1054.             "get": {
  1055.                 "operationId": "readByResource",
  1056.                 "produces": [
  1057.                     "application/json",
  1058.                     "application/xml"
  1059.                 ],
  1060.                 "parameters": [
  1061.                     {
  1062.                         "name": "resourceName",
  1063.                         "in": "path",
  1064.                         "required": true,
  1065.                         "type": "string"
  1066.                     },
  1067.                     {
  1068.                         "name": "lang",
  1069.                         "in": "query",
  1070.                         "required": false,
  1071.                         "type": "string"
  1072.                     }
  1073.                 ],
  1074.                 "responses": {
  1075.                     "200": {
  1076.                         "description": "successful operation",
  1077.                         "schema": {
  1078.                             "$ref": "#/definitions/ConnInstanceTO"
  1079.                         },
  1080.                         "headers": { }
  1081.                     }
  1082.                 }
  1083.             }
  1084.         },
  1085.         "/connectors/reload": {
  1086.             "post": {
  1087.                 "operationId": "reload",
  1088.                 "parameters": [ ],
  1089.                 "responses": {
  1090.                     "default": {
  1091.                         "description": "successful operation"
  1092.                     }
  1093.                 }
  1094.             }
  1095.         },
  1096.         "/connectors/{key}": {
  1097.             "get": {
  1098.                 "operationId": "read",
  1099.                 "produces": [
  1100.                     "application/json",
  1101.                     "application/xml"
  1102.                 ],
  1103.                 "parameters": [
  1104.                     {
  1105.                         "name": "key",
  1106.                         "in": "path",
  1107.                         "required": true,
  1108.                         "type": "string"
  1109.                     },
  1110.                     {
  1111.                         "name": "lang",
  1112.                         "in": "query",
  1113.                         "required": false,
  1114.                         "type": "string"
  1115.                     }
  1116.                 ],
  1117.                 "responses": {
  1118.                     "200": {
  1119.                         "description": "successful operation",
  1120.                         "schema": {
  1121.                             "$ref": "#/definitions/ConnInstanceTO"
  1122.                         },
  1123.                         "headers": { }
  1124.                     }
  1125.                 }
  1126.             },
  1127.             "put": {
  1128.                 "operationId": "update",
  1129.                 "consumes": [
  1130.                     "application/json",
  1131.                     "application/xml"
  1132.                 ],
  1133.                 "parameters": [
  1134.                     {
  1135.                         "in": "body",
  1136.                         "name": "body",
  1137.                         "required": false,
  1138.                         "schema": {
  1139.                             "$ref": "#/definitions/ConnInstanceTO"
  1140.                         }
  1141.                     }
  1142.                 ],
  1143.                 "responses": {
  1144.                     "default": {
  1145.                         "description": "successful operation"
  1146.                     }
  1147.                 }
  1148.             },
  1149.             "delete": {
  1150.                 "operationId": "delete",
  1151.                 "parameters": [
  1152.                     {
  1153.                         "name": "key",
  1154.                         "in": "path",
  1155.                         "required": true,
  1156.                         "type": "string"
  1157.                     }
  1158.                 ],
  1159.                 "responses": {
  1160.                     "default": {
  1161.                         "description": "successful operation"
  1162.                     }
  1163.                 }
  1164.             }
  1165.         },
  1166.         "/connectors/check": {
  1167.             "post": {
  1168.                 "operationId": "check",
  1169.                 "consumes": [
  1170.                     "application/json",
  1171.                     "application/xml"
  1172.                 ],
  1173.                 "parameters": [
  1174.                     {
  1175.                         "in": "body",
  1176.                         "name": "body",
  1177.                         "required": false,
  1178.                         "schema": {
  1179.                             "$ref": "#/definitions/ConnInstanceTO"
  1180.                         }
  1181.                     }
  1182.                 ],
  1183.                 "responses": {
  1184.                     "default": {
  1185.                         "description": "successful operation"
  1186.                     }
  1187.                 }
  1188.             }
  1189.         },
  1190.         "/connectors": {
  1191.             "get": {
  1192.                 "operationId": "list",
  1193.                 "produces": [
  1194.                     "application/json",
  1195.                     "application/xml"
  1196.                 ],
  1197.                 "parameters": [
  1198.                     {
  1199.                         "name": "lang",
  1200.                         "in": "query",
  1201.                         "required": false,
  1202.                         "type": "string"
  1203.                     }
  1204.                 ],
  1205.                 "responses": {
  1206.                     "200": {
  1207.                         "description": "successful operation",
  1208.                         "schema": {
  1209.                             "type": "array",
  1210.                             "items": {
  1211.                                 "$ref": "#/definitions/ConnInstanceTO"
  1212.                             }
  1213.                         },
  1214.                         "headers": { }
  1215.                     }
  1216.                 }
  1217.             },
  1218.             "post": {
  1219.                 "operationId": "create",
  1220.                 "consumes": [
  1221.                     "application/json",
  1222.                     "application/xml"
  1223.                 ],
  1224.                 "parameters": [
  1225.                     {
  1226.                         "in": "body",
  1227.                         "name": "body",
  1228.                         "required": false,
  1229.                         "schema": {
  1230.                             "$ref": "#/definitions/ConnInstanceTO"
  1231.                         }
  1232.                     }
  1233.                 ],
  1234.                 "responses": {
  1235.                     "default": {
  1236.                         "description": "successful operation"
  1237.                     }
  1238.                 }
  1239.             }
  1240.         },
  1241.         "/domains/{key}": {
  1242.             "get": {
  1243.                 "operationId": "read",
  1244.                 "produces": [
  1245.                     "application/json",
  1246.                     "application/xml"
  1247.                 ],
  1248.                 "parameters": [
  1249.                     {
  1250.                         "name": "key",
  1251.                         "in": "path",
  1252.                         "required": true,
  1253.                         "type": "string"
  1254.                     }
  1255.                 ],
  1256.                 "responses": {
  1257.                     "200": {
  1258.                         "description": "successful operation",
  1259.                         "schema": {
  1260.                             "$ref": "#/definitions/DomainTO"
  1261.                         },
  1262.                         "headers": { }
  1263.                     }
  1264.                 }
  1265.             },
  1266.             "put": {
  1267.                 "operationId": "update",
  1268.                 "consumes": [
  1269.                     "application/json",
  1270.                     "application/xml"
  1271.                 ],
  1272.                 "parameters": [
  1273.                     {
  1274.                         "in": "body",
  1275.                         "name": "body",
  1276.                         "required": false,
  1277.                         "schema": {
  1278.                             "$ref": "#/definitions/DomainTO"
  1279.                         }
  1280.                     }
  1281.                 ],
  1282.                 "responses": {
  1283.                     "default": {
  1284.                         "description": "successful operation"
  1285.                     }
  1286.                 }
  1287.             },
  1288.             "delete": {
  1289.                 "operationId": "delete",
  1290.                 "parameters": [
  1291.                     {
  1292.                         "name": "key",
  1293.                         "in": "path",
  1294.                         "required": true,
  1295.                         "type": "string"
  1296.                     }
  1297.                 ],
  1298.                 "responses": {
  1299.                     "default": {
  1300.                         "description": "successful operation"
  1301.                     }
  1302.                 }
  1303.             }
  1304.         },
  1305.         "/domains": {
  1306.             "get": {
  1307.                 "operationId": "list",
  1308.                 "produces": [
  1309.                     "application/json",
  1310.                     "application/xml"
  1311.                 ],
  1312.                 "parameters": [ ],
  1313.                 "responses": {
  1314.                     "200": {
  1315.                         "description": "successful operation",
  1316.                         "schema": {
  1317.                             "type": "array",
  1318.                             "items": {
  1319.                                 "$ref": "#/definitions/DomainTO"
  1320.                             }
  1321.                         },
  1322.                         "headers": { }
  1323.                     }
  1324.                 }
  1325.             },
  1326.             "post": {
  1327.                 "operationId": "create",
  1328.                 "consumes": [
  1329.                     "application/json",
  1330.                     "application/xml"
  1331.                 ],
  1332.                 "parameters": [
  1333.                     {
  1334.                         "in": "body",
  1335.                         "name": "body",
  1336.                         "required": false,
  1337.                         "schema": {
  1338.                             "$ref": "#/definitions/DomainTO"
  1339.                         }
  1340.                     }
  1341.                 ],
  1342.                 "responses": {
  1343.                     "default": {
  1344.                         "description": "successful operation"
  1345.                     }
  1346.                 }
  1347.             }
  1348.         },
  1349.         "/groups/own": {
  1350.             "get": {
  1351.                 "operationId": "own",
  1352.                 "produces": [
  1353.                     "application/json",
  1354.                     "application/xml"
  1355.                 ],
  1356.                 "parameters": [ ],
  1357.                 "responses": {
  1358.                     "200": {
  1359.                         "description": "successful operation",
  1360.                         "schema": {
  1361.                             "type": "array",
  1362.                             "items": {
  1363.                                 "$ref": "#/definitions/GroupTO"
  1364.                             }
  1365.                         },
  1366.                         "headers": { }
  1367.                     }
  1368.                 }
  1369.             }
  1370.         },
  1371.         "/groups/{key}/{anyTypeKey}/typeExtension": {
  1372.             "get": {
  1373.                 "operationId": "readTypeExtension",
  1374.                 "produces": [
  1375.                     "application/json",
  1376.                     "application/xml"
  1377.                 ],
  1378.                 "parameters": [
  1379.                     {
  1380.                         "name": "key",
  1381.                         "in": "path",
  1382.                         "required": true,
  1383.                         "type": "string"
  1384.                     },
  1385.                     {
  1386.                         "name": "anyTypeKey",
  1387.                         "in": "path",
  1388.                         "required": true,
  1389.                         "type": "string"
  1390.                     }
  1391.                 ],
  1392.                 "responses": {
  1393.                     "200": {
  1394.                         "description": "successful operation",
  1395.                         "schema": {
  1396.                             "$ref": "#/definitions/TypeExtensionTO"
  1397.                         },
  1398.                         "headers": { }
  1399.                     }
  1400.                 }
  1401.             }
  1402.         },
  1403.         "/groups/{key}/members/{actionType}": {
  1404.             "post": {
  1405.                 "operationId": "bulkMembersAction",
  1406.                 "parameters": [
  1407.                     {
  1408.                         "name": "key",
  1409.                         "in": "path",
  1410.                         "required": true,
  1411.                         "type": "string"
  1412.                     },
  1413.                     {
  1414.                         "name": "actionType",
  1415.                         "in": "path",
  1416.                         "required": true,
  1417.                         "type": "string",
  1418.                         "enum": [
  1419.                             "PROVISION",
  1420.                             "DEPROVISION"
  1421.                         ]
  1422.                     }
  1423.                 ],
  1424.                 "responses": {
  1425.                     "200": {
  1426.                         "description": "successful operation",
  1427.                         "schema": {
  1428.                             "$ref": "#/definitions/ExecTO"
  1429.                         },
  1430.                         "headers": { }
  1431.                     }
  1432.                 }
  1433.             }
  1434.         },
  1435.         "/groups/{key}/associate/{action}": {
  1436.             "post": {
  1437.                 "operationId": "associate_1",
  1438.                 "consumes": [
  1439.                     "application/json",
  1440.                     "application/xml"
  1441.                 ],
  1442.                 "produces": [
  1443.                     "application/json",
  1444.                     "application/xml"
  1445.                 ],
  1446.                 "parameters": [
  1447.                     {
  1448.                         "in": "body",
  1449.                         "name": "body",
  1450.                         "required": false,
  1451.                         "schema": {
  1452.                             "$ref": "#/definitions/AssociationPatch"
  1453.                         }
  1454.                     }
  1455.                 ],
  1456.                 "responses": {
  1457.                     "default": {
  1458.                         "description": "successful operation"
  1459.                     }
  1460.                 }
  1461.             }
  1462.         },
  1463.         "/groups/bulk": {
  1464.             "post": {
  1465.                 "operationId": "bulk_1",
  1466.                 "consumes": [
  1467.                     "application/json",
  1468.                     "application/xml"
  1469.                 ],
  1470.                 "produces": [
  1471.                     "application/json",
  1472.                     "application/xml"
  1473.                 ],
  1474.                 "parameters": [
  1475.                     {
  1476.                         "in": "body",
  1477.                         "name": "body",
  1478.                         "required": false,
  1479.                         "schema": {
  1480.                             "$ref": "#/definitions/BulkAction"
  1481.                         }
  1482.                     }
  1483.                 ],
  1484.                 "responses": {
  1485.                     "default": {
  1486.                         "description": "successful operation"
  1487.                     }
  1488.                 }
  1489.             }
  1490.         },
  1491.         "/groups/{key}/deassociate/{action}": {
  1492.             "post": {
  1493.                 "operationId": "deassociate_1",
  1494.                 "consumes": [
  1495.                     "application/json",
  1496.                     "application/xml"
  1497.                 ],
  1498.                 "produces": [
  1499.                     "application/json",
  1500.                     "application/xml"
  1501.                 ],
  1502.                 "parameters": [
  1503.                     {
  1504.                         "in": "body",
  1505.                         "name": "body",
  1506.                         "required": false,
  1507.                         "schema": {
  1508.                             "$ref": "#/definitions/DeassociationPatch"
  1509.                         }
  1510.                     }
  1511.                 ],
  1512.                 "responses": {
  1513.                     "default": {
  1514.                         "description": "successful operation"
  1515.                     }
  1516.                 }
  1517.             }
  1518.         },
  1519.         "/groups/{key}": {
  1520.             "get": {
  1521.                 "operationId": "read_3",
  1522.                 "produces": [
  1523.                     "application/json",
  1524.                     "application/xml"
  1525.                 ],
  1526.                 "parameters": [
  1527.                     {
  1528.                         "name": "key",
  1529.                         "in": "path",
  1530.                         "required": true,
  1531.                         "type": "string"
  1532.                     }
  1533.                 ],
  1534.                 "responses": {
  1535.                     "200": {
  1536.                         "description": "successful operation",
  1537.                         "schema": {
  1538.                             "$ref": "#/definitions/AnyTO"
  1539.                         },
  1540.                         "headers": { }
  1541.                     }
  1542.                 }
  1543.             },
  1544.             "put": {
  1545.                 "operationId": "update_5",
  1546.                 "consumes": [
  1547.                     "application/json",
  1548.                     "application/xml"
  1549.                 ],
  1550.                 "produces": [
  1551.                     "application/json",
  1552.                     "application/xml"
  1553.                 ],
  1554.                 "parameters": [
  1555.                     {
  1556.                         "in": "body",
  1557.                         "name": "body",
  1558.                         "required": false,
  1559.                         "schema": {
  1560.                             "$ref": "#/definitions/GroupTO"
  1561.                         }
  1562.                     }
  1563.                 ],
  1564.                 "responses": {
  1565.                     "default": {
  1566.                         "description": "successful operation"
  1567.                     }
  1568.                 }
  1569.             },
  1570.             "delete": {
  1571.                 "operationId": "delete_3",
  1572.                 "consumes": [
  1573.                     "application/json",
  1574.                     "application/xml"
  1575.                 ],
  1576.                 "produces": [
  1577.                     "application/json",
  1578.                     "application/xml"
  1579.                 ],
  1580.                 "parameters": [
  1581.                     {
  1582.                         "name": "key",
  1583.                         "in": "path",
  1584.                         "required": true,
  1585.                         "type": "string"
  1586.                     }
  1587.                 ],
  1588.                 "responses": {
  1589.                     "default": {
  1590.                         "description": "successful operation"
  1591.                     }
  1592.                 }
  1593.             },
  1594.             "patch": {
  1595.                 "operationId": "update_3",
  1596.                 "consumes": [
  1597.                     "application/json",
  1598.                     "application/xml"
  1599.                 ],
  1600.                 "produces": [
  1601.                     "application/json",
  1602.                     "application/xml"
  1603.                 ],
  1604.                 "parameters": [
  1605.                     {
  1606.                         "in": "body",
  1607.                         "name": "body",
  1608.                         "required": false,
  1609.                         "schema": {
  1610.                             "$ref": "#/definitions/GroupPatch"
  1611.                         }
  1612.                     }
  1613.                 ],
  1614.                 "responses": {
  1615.                     "default": {
  1616.                         "description": "successful operation"
  1617.                     }
  1618.                 }
  1619.             }
  1620.         },
  1621.         "/groups/{key}/{schemaType}/{schema}": {
  1622.             "get": {
  1623.                 "operationId": "read_4",
  1624.                 "produces": [
  1625.                     "application/json",
  1626.                     "application/xml"
  1627.                 ],
  1628.                 "parameters": [
  1629.                     {
  1630.                         "name": "key",
  1631.                         "in": "path",
  1632.                         "required": true,
  1633.                         "type": "string"
  1634.                     },
  1635.                     {
  1636.                         "name": "schemaType",
  1637.                         "in": "path",
  1638.                         "required": true,
  1639.                         "type": "string",
  1640.                         "enum": [
  1641.                             "PLAIN",
  1642.                             "DERIVED",
  1643.                             "VIRTUAL"
  1644.                         ]
  1645.                     },
  1646.                     {
  1647.                         "name": "schema",
  1648.                         "in": "path",
  1649.                         "required": true,
  1650.                         "type": "string"
  1651.                     }
  1652.                 ],
  1653.                 "responses": {
  1654.                     "200": {
  1655.                         "description": "successful operation",
  1656.                         "schema": {
  1657.                             "$ref": "#/definitions/AttrTO"
  1658.                         },
  1659.                         "headers": { }
  1660.                     }
  1661.                 }
  1662.             },
  1663.             "put": {
  1664.                 "operationId": "update_4",
  1665.                 "consumes": [
  1666.                     "application/json",
  1667.                     "application/xml"
  1668.                 ],
  1669.                 "produces": [
  1670.                     "application/json",
  1671.                     "application/xml"
  1672.                 ],
  1673.                 "parameters": [
  1674.                     {
  1675.                         "name": "key",
  1676.                         "in": "path",
  1677.                         "required": true,
  1678.                         "type": "string"
  1679.                     },
  1680.                     {
  1681.                         "name": "schemaType",
  1682.                         "in": "path",
  1683.                         "required": true,
  1684.                         "type": "string",
  1685.                         "enum": [
  1686.                             "PLAIN",
  1687.                             "DERIVED",
  1688.                             "VIRTUAL"
  1689.                         ]
  1690.                     },
  1691.                     {
  1692.                         "in": "body",
  1693.                         "name": "body",
  1694.                         "required": false,
  1695.                         "schema": {
  1696.                             "$ref": "#/definitions/AttrTO"
  1697.                         }
  1698.                     }
  1699.                 ],
  1700.                 "responses": {
  1701.                     "default": {
  1702.                         "description": "successful operation"
  1703.                     }
  1704.                 }
  1705.             },
  1706.             "delete": {
  1707.                 "operationId": "delete_4",
  1708.                 "consumes": [
  1709.                     "application/json",
  1710.                     "application/xml"
  1711.                 ],
  1712.                 "produces": [
  1713.                     "application/json",
  1714.                     "application/xml"
  1715.                 ],
  1716.                 "parameters": [
  1717.                     {
  1718.                         "name": "key",
  1719.                         "in": "path",
  1720.                         "required": true,
  1721.                         "type": "string"
  1722.                     },
  1723.                     {
  1724.                         "name": "schemaType",
  1725.                         "in": "path",
  1726.                         "required": true,
  1727.                         "type": "string",
  1728.                         "enum": [
  1729.                             "PLAIN",
  1730.                             "DERIVED",
  1731.                             "VIRTUAL"
  1732.                         ]
  1733.                     },
  1734.                     {
  1735.                         "name": "schema",
  1736.                         "in": "path",
  1737.                         "required": true,
  1738.                         "type": "string"
  1739.                     }
  1740.                 ],
  1741.                 "responses": {
  1742.                     "default": {
  1743.                         "description": "successful operation"
  1744.                     }
  1745.                 }
  1746.             }
  1747.         },
  1748.         "/groups/{key}/{schemaType}": {
  1749.             "get": {
  1750.                 "operationId": "read_5",
  1751.                 "produces": [
  1752.                     "application/json",
  1753.                     "application/xml"
  1754.                 ],
  1755.                 "parameters": [
  1756.                     {
  1757.                         "name": "key",
  1758.                         "in": "path",
  1759.                         "required": true,
  1760.                         "type": "string"
  1761.                     },
  1762.                     {
  1763.                         "name": "schemaType",
  1764.                         "in": "path",
  1765.                         "required": true,
  1766.                         "type": "string",
  1767.                         "enum": [
  1768.                             "PLAIN",
  1769.                             "DERIVED",
  1770.                             "VIRTUAL"
  1771.                         ]
  1772.                     }
  1773.                 ],
  1774.                 "responses": {
  1775.                     "200": {
  1776.                         "description": "successful operation",
  1777.                         "schema": {
  1778.                             "type": "array",
  1779.                             "uniqueItems": true,
  1780.                             "items": {
  1781.                                 "$ref": "#/definitions/AttrTO"
  1782.                             }
  1783.                         },
  1784.                         "headers": { }
  1785.                     }
  1786.                 }
  1787.             }
  1788.         },
  1789.         "/groups": {
  1790.             "get": {
  1791.                 "operationId": "search_1",
  1792.                 "produces": [
  1793.                     "application/json",
  1794.                     "application/xml"
  1795.                 ],
  1796.                 "parameters": [
  1797.                     {
  1798.                         "name": "page",
  1799.                         "in": "query",
  1800.                         "required": false,
  1801.                         "type": "integer",
  1802.                         "default": 1,
  1803.                         "minimum": 1,
  1804.                         "format": "int32"
  1805.                     },
  1806.                     {
  1807.                         "name": "size",
  1808.                         "in": "query",
  1809.                         "required": false,
  1810.                         "type": "integer",
  1811.                         "default": 25,
  1812.                         "minimum": 1,
  1813.                         "format": "int32"
  1814.                     },
  1815.                     {
  1816.                         "name": "orderby",
  1817.                         "in": "query",
  1818.                         "required": false,
  1819.                         "type": "string"
  1820.                     },
  1821.                     {
  1822.                         "name": "realm",
  1823.                         "in": "matrix",
  1824.                         "required": false,
  1825.                         "type": "string",
  1826.                         "default": "/"
  1827.                     },
  1828.                     {
  1829.                         "name": "details",
  1830.                         "in": "query",
  1831.                         "required": false,
  1832.                         "type": "boolean",
  1833.                         "default": true
  1834.                     },
  1835.                     {
  1836.                         "name": "fiql",
  1837.                         "in": "query",
  1838.                         "required": false,
  1839.                         "type": "string"
  1840.                     }
  1841.                 ],
  1842.                 "responses": {
  1843.                     "200": {
  1844.                         "description": "successful operation",
  1845.                         "schema": {
  1846.                             "$ref": "#/definitions/PagedResultAnyTO"
  1847.                         },
  1848.                         "headers": { }
  1849.                     }
  1850.                 }
  1851.             },
  1852.             "post": {
  1853.                 "operationId": "create_1",
  1854.                 "consumes": [
  1855.                     "application/json",
  1856.                     "application/xml"
  1857.                 ],
  1858.                 "produces": [
  1859.                     "application/json",
  1860.                     "application/xml"
  1861.                 ],
  1862.                 "parameters": [
  1863.                     {
  1864.                         "in": "body",
  1865.                         "name": "body",
  1866.                         "required": false,
  1867.                         "schema": {
  1868.                             "$ref": "#/definitions/GroupTO"
  1869.                         }
  1870.                     }
  1871.                 ],
  1872.                 "responses": {
  1873.                     "default": {
  1874.                         "description": "successful operation"
  1875.                     }
  1876.                 }
  1877.             }
  1878.         },
  1879.         "/loggers/memoryAppenders": {
  1880.             "get": {
  1881.                 "operationId": "memoryAppenders",
  1882.                 "produces": [
  1883.                     "application/json",
  1884.                     "application/xml"
  1885.                 ],
  1886.                 "parameters": [ ],
  1887.                 "responses": {
  1888.                     "200": {
  1889.                         "description": "successful operation",
  1890.                         "schema": {
  1891.                             "type": "array",
  1892.                             "items": {
  1893.                                 "$ref": "#/definitions/LogAppender"
  1894.                             }
  1895.                         },
  1896.                         "headers": { }
  1897.                     }
  1898.                 }
  1899.             }
  1900.         },
  1901.         "/loggers/memoryAppenders/{memoryAppender}/lastLogStatements": {
  1902.             "get": {
  1903.                 "operationId": "getLastLogStatements",
  1904.                 "produces": [
  1905.                     "application/json",
  1906.                     "application/xml"
  1907.                 ],
  1908.                 "parameters": [
  1909.                     {
  1910.                         "name": "memoryAppender",
  1911.                         "in": "path",
  1912.                         "required": true,
  1913.                         "type": "string"
  1914.                     }
  1915.                 ],
  1916.                 "responses": {
  1917.                     "200": {
  1918.                         "description": "successful operation",
  1919.                         "schema": {
  1920.                             "type": "array",
  1921.                             "items": {
  1922.                                 "$ref": "#/definitions/LogStatementTO"
  1923.                             }
  1924.                         },
  1925.                         "headers": { }
  1926.                     }
  1927.                 }
  1928.             }
  1929.         },
  1930.         "/loggers/{type}/{key}": {
  1931.             "put": {
  1932.                 "operationId": "update",
  1933.                 "consumes": [
  1934.                     "application/json",
  1935.                     "application/xml"
  1936.                 ],
  1937.                 "parameters": [
  1938.                     {
  1939.                         "name": "type",
  1940.                         "in": "path",
  1941.                         "required": true,
  1942.                         "type": "string",
  1943.                         "enum": [
  1944.                             "LOG",
  1945.                             "AUDIT"
  1946.                         ]
  1947.                     },
  1948.                     {
  1949.                         "in": "body",
  1950.                         "name": "body",
  1951.                         "required": false,
  1952.                         "schema": {
  1953.                             "$ref": "#/definitions/LoggerTO"
  1954.                         }
  1955.                     }
  1956.                 ],
  1957.                 "responses": {
  1958.                     "default": {
  1959.                         "description": "successful operation"
  1960.                     }
  1961.                 }
  1962.             }
  1963.         },
  1964.         "/loggers/{type}/{name}": {
  1965.             "get": {
  1966.                 "operationId": "read",
  1967.                 "produces": [
  1968.                     "application/json",
  1969.                     "application/xml"
  1970.                 ],
  1971.                 "parameters": [
  1972.                     {
  1973.                         "name": "type",
  1974.                         "in": "path",
  1975.                         "required": true,
  1976.                         "type": "string",
  1977.                         "enum": [
  1978.                             "LOG",
  1979.                             "AUDIT"
  1980.                         ]
  1981.                     },
  1982.                     {
  1983.                         "name": "name",
  1984.                         "in": "path",
  1985.                         "required": true,
  1986.                         "type": "string"
  1987.                     }
  1988.                 ],
  1989.                 "responses": {
  1990.                     "200": {
  1991.                         "description": "successful operation",
  1992.                         "schema": {
  1993.                             "$ref": "#/definitions/LoggerTO"
  1994.                         },
  1995.                         "headers": { }
  1996.                     }
  1997.                 }
  1998.             },
  1999.             "delete": {
  2000.                 "operationId": "delete",
  2001.                 "parameters": [
  2002.                     {
  2003.                         "name": "type",
  2004.                         "in": "path",
  2005.                         "required": true,
  2006.                         "type": "string",
  2007.                         "enum": [
  2008.                             "LOG",
  2009.                             "AUDIT"
  2010.                         ]
  2011.                     },
  2012.                     {
  2013.                         "name": "name",
  2014.                         "in": "path",
  2015.                         "required": true,
  2016.                         "type": "string"
  2017.                     }
  2018.                 ],
  2019.                 "responses": {
  2020.                     "default": {
  2021.                         "description": "successful operation"
  2022.                     }
  2023.                 }
  2024.             }
  2025.         },
  2026.         "/loggers/{type}": {
  2027.             "get": {
  2028.                 "operationId": "list",
  2029.                 "produces": [
  2030.                     "application/json",
  2031.                     "application/xml"
  2032.                 ],
  2033.                 "parameters": [
  2034.                     {
  2035.                         "name": "type",
  2036.                         "in": "path",
  2037.                         "required": true,
  2038.                         "type": "string",
  2039.                         "enum": [
  2040.                             "LOG",
  2041.                             "AUDIT"
  2042.                         ]
  2043.                     }
  2044.                 ],
  2045.                 "responses": {
  2046.                     "200": {
  2047.                         "description": "successful operation",
  2048.                         "schema": {
  2049.                             "type": "array",
  2050.                             "items": {
  2051.                                 "$ref": "#/definitions/LoggerTO"
  2052.                             }
  2053.                         },
  2054.                         "headers": { }
  2055.                     }
  2056.                 }
  2057.             }
  2058.         },
  2059.         "/loggers/events": {
  2060.             "get": {
  2061.                 "operationId": "events",
  2062.                 "produces": [
  2063.                     "application/json",
  2064.                     "application/xml"
  2065.                 ],
  2066.                 "parameters": [ ],
  2067.                 "responses": {
  2068.                     "200": {
  2069.                         "description": "successful operation",
  2070.                         "schema": {
  2071.                             "type": "array",
  2072.                             "items": {
  2073.                                 "$ref": "#/definitions/EventCategoryTO"
  2074.                             }
  2075.                         },
  2076.                         "headers": { }
  2077.                     }
  2078.                 }
  2079.             }
  2080.         },
  2081.         "/mailTemplates/{key}/{format}": {
  2082.             "get": {
  2083.                 "operationId": "getFormat",
  2084.                 "parameters": [
  2085.                     {
  2086.                         "name": "key",
  2087.                         "in": "path",
  2088.                         "required": true,
  2089.                         "type": "string"
  2090.                     },
  2091.                     {
  2092.                         "name": "format",
  2093.                         "in": "path",
  2094.                         "required": true,
  2095.                         "type": "string",
  2096.                         "enum": [
  2097.                             "HTML",
  2098.                             "TEXT"
  2099.                         ]
  2100.                     }
  2101.                 ],
  2102.                 "responses": {
  2103.                     "default": {
  2104.                         "description": "successful operation"
  2105.                     }
  2106.                 }
  2107.             },
  2108.             "put": {
  2109.                 "operationId": "setFormat",
  2110.                 "parameters": [
  2111.                     {
  2112.                         "name": "key",
  2113.                         "in": "path",
  2114.                         "required": true,
  2115.                         "type": "string"
  2116.                     },
  2117.                     {
  2118.                         "name": "format",
  2119.                         "in": "path",
  2120.                         "required": true,
  2121.                         "type": "string",
  2122.                         "enum": [
  2123.                             "HTML",
  2124.                             "TEXT"
  2125.                         ]
  2126.                     },
  2127.                     {
  2128.                         "in": "body",
  2129.                         "name": "body",
  2130.                         "required": false,
  2131.                         "schema": {
  2132.                             "$ref": "#/definitions/InputStream"
  2133.                         }
  2134.                     }
  2135.                 ],
  2136.                 "responses": {
  2137.                     "default": {
  2138.                         "description": "successful operation"
  2139.                     }
  2140.                 }
  2141.             },
  2142.             "delete": {
  2143.                 "operationId": "removeFormat",
  2144.                 "parameters": [
  2145.                     {
  2146.                         "name": "key",
  2147.                         "in": "path",
  2148.                         "required": true,
  2149.                         "type": "string"
  2150.                     },
  2151.                     {
  2152.                         "name": "format",
  2153.                         "in": "path",
  2154.                         "required": true,
  2155.                         "type": "string",
  2156.                         "enum": [
  2157.                             "HTML",
  2158.                             "TEXT"
  2159.                         ]
  2160.                     }
  2161.                 ],
  2162.                 "responses": {
  2163.                     "default": {
  2164.                         "description": "successful operation"
  2165.                     }
  2166.                 }
  2167.             }
  2168.         },
  2169.         "/mailTemplates/{key}": {
  2170.             "get": {
  2171.                 "operationId": "read",
  2172.                 "produces": [
  2173.                     "application/json",
  2174.                     "application/xml"
  2175.                 ],
  2176.                 "parameters": [
  2177.                     {
  2178.                         "name": "key",
  2179.                         "in": "path",
  2180.                         "required": true,
  2181.                         "type": "string"
  2182.                     }
  2183.                 ],
  2184.                 "responses": {
  2185.                     "200": {
  2186.                         "description": "successful operation",
  2187.                         "schema": {
  2188.                             "$ref": "#/definitions/MailTemplateTO"
  2189.                         },
  2190.                         "headers": { }
  2191.                     }
  2192.                 }
  2193.             },
  2194.             "delete": {
  2195.                 "operationId": "delete",
  2196.                 "parameters": [
  2197.                     {
  2198.                         "name": "key",
  2199.                         "in": "path",
  2200.                         "required": true,
  2201.                         "type": "string"
  2202.                     }
  2203.                 ],
  2204.                 "responses": {
  2205.                     "default": {
  2206.                         "description": "successful operation"
  2207.                     }
  2208.                 }
  2209.             }
  2210.         },
  2211.         "/mailTemplates": {
  2212.             "get": {
  2213.                 "operationId": "list",
  2214.                 "produces": [
  2215.                     "application/json",
  2216.                     "application/xml"
  2217.                 ],
  2218.                 "parameters": [ ],
  2219.                 "responses": {
  2220.                     "200": {
  2221.                         "description": "successful operation",
  2222.                         "schema": {
  2223.                             "type": "array",
  2224.                             "items": {
  2225.                                 "$ref": "#/definitions/MailTemplateTO"
  2226.                             }
  2227.                         },
  2228.                         "headers": { }
  2229.                     }
  2230.                 }
  2231.             },
  2232.             "post": {
  2233.                 "operationId": "create",
  2234.                 "consumes": [
  2235.                     "application/json",
  2236.                     "application/xml"
  2237.                 ],
  2238.                 "parameters": [
  2239.                     {
  2240.                         "in": "body",
  2241.                         "name": "body",
  2242.                         "required": false,
  2243.                         "schema": {
  2244.                             "$ref": "#/definitions/MailTemplateTO"
  2245.                         }
  2246.                     }
  2247.                 ],
  2248.                 "responses": {
  2249.                     "default": {
  2250.                         "description": "successful operation"
  2251.                     }
  2252.                 }
  2253.             }
  2254.         },
  2255.         "/notifications/job": {
  2256.             "get": {
  2257.                 "operationId": "getJob",
  2258.                 "produces": [
  2259.                     "application/json",
  2260.                     "application/xml"
  2261.                 ],
  2262.                 "parameters": [ ],
  2263.                 "responses": {
  2264.                     "200": {
  2265.                         "description": "successful operation",
  2266.                         "schema": {
  2267.                             "$ref": "#/definitions/JobTO"
  2268.                         },
  2269.                         "headers": { }
  2270.                     }
  2271.                 }
  2272.             },
  2273.             "post": {
  2274.                 "operationId": "actionJob",
  2275.                 "parameters": [
  2276.                     {
  2277.                         "name": "action",
  2278.                         "in": "query",
  2279.                         "required": false,
  2280.                         "type": "string",
  2281.                         "enum": [
  2282.                             "START",
  2283.                             "STOP"
  2284.                         ]
  2285.                     }
  2286.                 ],
  2287.                 "responses": {
  2288.                     "default": {
  2289.                         "description": "successful operation"
  2290.                     }
  2291.                 }
  2292.             }
  2293.         },
  2294.         "/notifications/{key}": {
  2295.             "get": {
  2296.                 "operationId": "read",
  2297.                 "produces": [
  2298.                     "application/json",
  2299.                     "application/xml"
  2300.                 ],
  2301.                 "parameters": [
  2302.                     {
  2303.                         "name": "key",
  2304.                         "in": "path",
  2305.                         "required": true,
  2306.                         "type": "string"
  2307.                     }
  2308.                 ],
  2309.                 "responses": {
  2310.                     "200": {
  2311.                         "description": "successful operation",
  2312.                         "schema": {
  2313.                             "$ref": "#/definitions/NotificationTO"
  2314.                         },
  2315.                         "headers": { }
  2316.                     }
  2317.                 }
  2318.             },
  2319.             "put": {
  2320.                 "operationId": "update",
  2321.                 "consumes": [
  2322.                     "application/json",
  2323.                     "application/xml"
  2324.                 ],
  2325.                 "parameters": [
  2326.                     {
  2327.                         "in": "body",
  2328.                         "name": "body",
  2329.                         "required": false,
  2330.                         "schema": {
  2331.                             "$ref": "#/definitions/NotificationTO"
  2332.                         }
  2333.                     }
  2334.                 ],
  2335.                 "responses": {
  2336.                     "default": {
  2337.                         "description": "successful operation"
  2338.                     }
  2339.                 }
  2340.             },
  2341.             "delete": {
  2342.                 "operationId": "delete",
  2343.                 "parameters": [
  2344.                     {
  2345.                         "name": "key",
  2346.                         "in": "path",
  2347.                         "required": true,
  2348.                         "type": "string"
  2349.                     }
  2350.                 ],
  2351.                 "responses": {
  2352.                     "default": {
  2353.                         "description": "successful operation"
  2354.                     }
  2355.                 }
  2356.             }
  2357.         },
  2358.         "/notifications": {
  2359.             "get": {
  2360.                 "operationId": "list",
  2361.                 "produces": [
  2362.                     "application/json",
  2363.                     "application/xml"
  2364.                 ],
  2365.                 "parameters": [ ],
  2366.                 "responses": {
  2367.                     "200": {
  2368.                         "description": "successful operation",
  2369.                         "schema": {
  2370.                             "type": "array",
  2371.                             "items": {
  2372.                                 "$ref": "#/definitions/NotificationTO"
  2373.                             }
  2374.                         },
  2375.                         "headers": { }
  2376.                     }
  2377.                 }
  2378.             },
  2379.             "post": {
  2380.                 "operationId": "create",
  2381.                 "consumes": [
  2382.                     "application/json",
  2383.                     "application/xml"
  2384.                 ],
  2385.                 "parameters": [
  2386.                     {
  2387.                         "in": "body",
  2388.                         "name": "body",
  2389.                         "required": false,
  2390.                         "schema": {
  2391.                             "$ref": "#/definitions/NotificationTO"
  2392.                         }
  2393.                     }
  2394.                 ],
  2395.                 "responses": {
  2396.                     "default": {
  2397.                         "description": "successful operation"
  2398.                     }
  2399.                 }
  2400.             }
  2401.         },
  2402.         "/policies/{key}": {
  2403.             "get": {
  2404.                 "operationId": "read",
  2405.                 "produces": [
  2406.                     "application/json",
  2407.                     "application/xml"
  2408.                 ],
  2409.                 "parameters": [
  2410.                     {
  2411.                         "name": "key",
  2412.                         "in": "path",
  2413.                         "required": true,
  2414.                         "type": "string"
  2415.                     }
  2416.                 ],
  2417.                 "responses": {
  2418.                     "200": {
  2419.                         "description": "successful operation",
  2420.                         "schema": {
  2421.                             "$ref": "#/definitions/AbstractPolicyTO"
  2422.                         },
  2423.                         "headers": { }
  2424.                     }
  2425.                 }
  2426.             },
  2427.             "put": {
  2428.                 "operationId": "update",
  2429.                 "consumes": [
  2430.                     "application/json",
  2431.                     "application/xml"
  2432.                 ],
  2433.                 "parameters": [
  2434.                     {
  2435.                         "in": "body",
  2436.                         "name": "body",
  2437.                         "required": false,
  2438.                         "schema": {
  2439.                             "$ref": "#/definitions/AbstractPolicyTO"
  2440.                         }
  2441.                     }
  2442.                 ],
  2443.                 "responses": {
  2444.                     "default": {
  2445.                         "description": "successful operation"
  2446.                     }
  2447.                 }
  2448.             },
  2449.             "delete": {
  2450.                 "operationId": "delete",
  2451.                 "parameters": [
  2452.                     {
  2453.                         "name": "key",
  2454.                         "in": "path",
  2455.                         "required": true,
  2456.                         "type": "string"
  2457.                     }
  2458.                 ],
  2459.                 "responses": {
  2460.                     "default": {
  2461.                         "description": "successful operation"
  2462.                     }
  2463.                 }
  2464.             }
  2465.         },
  2466.         "/policies": {
  2467.             "get": {
  2468.                 "operationId": "list",
  2469.                 "produces": [
  2470.                     "application/json",
  2471.                     "application/xml"
  2472.                 ],
  2473.                 "parameters": [
  2474.                     {
  2475.                         "name": "type",
  2476.                         "in": "matrix",
  2477.                         "required": true,
  2478.                         "type": "string",
  2479.                         "enum": [
  2480.                             "ACCOUNT",
  2481.                             "PASSWORD",
  2482.                             "PULL",
  2483.                             "PUSH"
  2484.                         ]
  2485.                     }
  2486.                 ],
  2487.                 "responses": {
  2488.                     "200": {
  2489.                         "description": "successful operation",
  2490.                         "schema": {
  2491.                             "type": "array",
  2492.                             "items": {
  2493.                                 "$ref": "#/definitions/AbstractPolicyTO"
  2494.                             }
  2495.                         },
  2496.                         "headers": { }
  2497.                     }
  2498.                 }
  2499.             },
  2500.             "post": {
  2501.                 "operationId": "create",
  2502.                 "consumes": [
  2503.                     "application/json",
  2504.                     "application/xml"
  2505.                 ],
  2506.                 "parameters": [
  2507.                     {
  2508.                         "in": "body",
  2509.                         "name": "body",
  2510.                         "required": false,
  2511.                         "schema": {
  2512.                             "$ref": "#/definitions/AbstractPolicyTO"
  2513.                         }
  2514.                     }
  2515.                 ],
  2516.                 "responses": {
  2517.                     "default": {
  2518.                         "description": "successful operation"
  2519.                     }
  2520.                 }
  2521.             }
  2522.         },
  2523.         "/realms/{fullPath}": {
  2524.             "get": {
  2525.                 "operationId": "list",
  2526.                 "produces": [
  2527.                     "application/json",
  2528.                     "application/xml"
  2529.                 ],
  2530.                 "parameters": [
  2531.                     {
  2532.                         "name": "fullPath",
  2533.                         "in": "path",
  2534.                         "required": true,
  2535.                         "type": "string",
  2536.                         "pattern": ".*"
  2537.                     }
  2538.                 ],
  2539.                 "responses": {
  2540.                     "200": {
  2541.                         "description": "successful operation",
  2542.                         "schema": {
  2543.                             "type": "array",
  2544.                             "items": {
  2545.                                 "$ref": "#/definitions/RealmTO"
  2546.                             }
  2547.                         },
  2548.                         "headers": { }
  2549.                     }
  2550.                 }
  2551.             },
  2552.             "put": {
  2553.                 "operationId": "update",
  2554.                 "consumes": [
  2555.                     "application/json",
  2556.                     "application/xml"
  2557.                 ],
  2558.                 "parameters": [
  2559.                     {
  2560.                         "in": "body",
  2561.                         "name": "body",
  2562.                         "required": false,
  2563.                         "schema": {
  2564.                             "$ref": "#/definitions/RealmTO"
  2565.                         }
  2566.                     }
  2567.                 ],
  2568.                 "responses": {
  2569.                     "default": {
  2570.                         "description": "successful operation"
  2571.                     }
  2572.                 }
  2573.             },
  2574.             "delete": {
  2575.                 "operationId": "delete",
  2576.                 "parameters": [
  2577.                     {
  2578.                         "name": "fullPath",
  2579.                         "in": "path",
  2580.                         "required": true,
  2581.                         "type": "string",
  2582.                         "pattern": ".*"
  2583.                     }
  2584.                 ],
  2585.                 "responses": {
  2586.                     "default": {
  2587.                         "description": "successful operation"
  2588.                     }
  2589.                 }
  2590.             }
  2591.         },
  2592.         "/realms/{parentPath}": {
  2593.             "post": {
  2594.                 "operationId": "create",
  2595.                 "consumes": [
  2596.                     "application/json",
  2597.                     "application/xml"
  2598.                 ],
  2599.                 "parameters": [
  2600.                     {
  2601.                         "name": "parentPath",
  2602.                         "in": "path",
  2603.                         "required": true,
  2604.                         "type": "string",
  2605.                         "pattern": ".*"
  2606.                     },
  2607.                     {
  2608.                         "in": "body",
  2609.                         "name": "body",
  2610.                         "required": false,
  2611.                         "schema": {
  2612.                             "$ref": "#/definitions/RealmTO"
  2613.                         }
  2614.                     }
  2615.                 ],
  2616.                 "responses": {
  2617.                     "default": {
  2618.                         "description": "successful operation"
  2619.                     }
  2620.                 }
  2621.             }
  2622.         },
  2623.         "/realms": {
  2624.             "get": {
  2625.                 "operationId": "list",
  2626.                 "produces": [
  2627.                     "application/json",
  2628.                     "application/xml"
  2629.                 ],
  2630.                 "parameters": [ ],
  2631.                 "responses": {
  2632.                     "200": {
  2633.                         "description": "successful operation",
  2634.                         "schema": {
  2635.                             "type": "array",
  2636.                             "items": {
  2637.                                 "$ref": "#/definitions/RealmTO"
  2638.                             }
  2639.                         },
  2640.                         "headers": { }
  2641.                     }
  2642.                 }
  2643.             }
  2644.         },
  2645.         "/relationshipTypes/{key}": {
  2646.             "get": {
  2647.                 "operationId": "read",
  2648.                 "produces": [
  2649.                     "application/json",
  2650.                     "application/xml"
  2651.                 ],
  2652.                 "parameters": [
  2653.                     {
  2654.                         "name": "key",
  2655.                         "in": "path",
  2656.                         "required": true,
  2657.                         "type": "string"
  2658.                     }
  2659.                 ],
  2660.                 "responses": {
  2661.                     "200": {
  2662.                         "description": "successful operation",
  2663.                         "schema": {
  2664.                             "$ref": "#/definitions/RelationshipTypeTO"
  2665.                         },
  2666.                         "headers": { }
  2667.                     }
  2668.                 }
  2669.             },
  2670.             "put": {
  2671.                 "operationId": "update",
  2672.                 "consumes": [
  2673.                     "application/json",
  2674.                     "application/xml"
  2675.                 ],
  2676.                 "parameters": [
  2677.                     {
  2678.                         "in": "body",
  2679.                         "name": "body",
  2680.                         "required": false,
  2681.                         "schema": {
  2682.                             "$ref": "#/definitions/RelationshipTypeTO"
  2683.                         }
  2684.                     }
  2685.                 ],
  2686.                 "responses": {
  2687.                     "default": {
  2688.                         "description": "successful operation"
  2689.                     }
  2690.                 }
  2691.             },
  2692.             "delete": {
  2693.                 "operationId": "delete",
  2694.                 "parameters": [
  2695.                     {
  2696.                         "name": "key",
  2697.                         "in": "path",
  2698.                         "required": true,
  2699.                         "type": "string"
  2700.                     }
  2701.                 ],
  2702.                 "responses": {
  2703.                     "default": {
  2704.                         "description": "successful operation"
  2705.                     }
  2706.                 }
  2707.             }
  2708.         },
  2709.         "/relationshipTypes": {
  2710.             "get": {
  2711.                 "operationId": "list",
  2712.                 "produces": [
  2713.                     "application/json",
  2714.                     "application/xml"
  2715.                 ],
  2716.                 "parameters": [ ],
  2717.                 "responses": {
  2718.                     "200": {
  2719.                         "description": "successful operation",
  2720.                         "schema": {
  2721.                             "type": "array",
  2722.                             "items": {
  2723.                                 "$ref": "#/definitions/RelationshipTypeTO"
  2724.                             }
  2725.                         },
  2726.                         "headers": { }
  2727.                     }
  2728.                 }
  2729.             },
  2730.             "post": {
  2731.                 "operationId": "create",
  2732.                 "consumes": [
  2733.                     "application/json",
  2734.                     "application/xml"
  2735.                 ],
  2736.                 "parameters": [
  2737.                     {
  2738.                         "in": "body",
  2739.                         "name": "body",
  2740.                         "required": false,
  2741.                         "schema": {
  2742.                             "$ref": "#/definitions/RelationshipTypeTO"
  2743.                         }
  2744.                     }
  2745.                 ],
  2746.                 "responses": {
  2747.                     "default": {
  2748.                         "description": "successful operation"
  2749.                     }
  2750.                 }
  2751.             }
  2752.         },
  2753.         "/reports/executions/{executionKey}/stream": {
  2754.             "get": {
  2755.                 "operationId": "exportExecutionResult",
  2756.                 "consumes": [
  2757.                     "application/json",
  2758.                     "application/xml"
  2759.                 ],
  2760.                 "parameters": [
  2761.                     {
  2762.                         "name": "executionKey",
  2763.                         "in": "path",
  2764.                         "required": true,
  2765.                         "type": "string"
  2766.                     },
  2767.                     {
  2768.                         "name": "format",
  2769.                         "in": "query",
  2770.                         "required": false,
  2771.                         "type": "string",
  2772.                         "enum": [
  2773.                             "XML",
  2774.                             "HTML",
  2775.                             "PDF",
  2776.                             "RTF",
  2777.                             "CSV"
  2778.                         ]
  2779.                     }
  2780.                 ],
  2781.                 "responses": {
  2782.                     "default": {
  2783.                         "description": "successful operation"
  2784.                     }
  2785.                 }
  2786.             }
  2787.         },
  2788.         "/reports/{key}": {
  2789.             "get": {
  2790.                 "operationId": "read",
  2791.                 "produces": [
  2792.                     "application/json",
  2793.                     "application/xml"
  2794.                 ],
  2795.                 "parameters": [
  2796.                     {
  2797.                         "name": "key",
  2798.                         "in": "path",
  2799.                         "required": true,
  2800.                         "type": "string"
  2801.                     }
  2802.                 ],
  2803.                 "responses": {
  2804.                     "200": {
  2805.                         "description": "successful operation",
  2806.                         "schema": {
  2807.                             "$ref": "#/definitions/ReportTO"
  2808.                         },
  2809.                         "headers": { }
  2810.                     }
  2811.                 }
  2812.             },
  2813.             "put": {
  2814.                 "operationId": "update",
  2815.                 "consumes": [
  2816.                     "application/json",
  2817.                     "application/xml"
  2818.                 ],
  2819.                 "parameters": [
  2820.                     {
  2821.                         "in": "body",
  2822.                         "name": "body",
  2823.                         "required": false,
  2824.                         "schema": {
  2825.                             "$ref": "#/definitions/ReportTO"
  2826.                         }
  2827.                     }
  2828.                 ],
  2829.                 "responses": {
  2830.                     "default": {
  2831.                         "description": "successful operation"
  2832.                     }
  2833.                 }
  2834.             },
  2835.             "delete": {
  2836.                 "operationId": "delete",
  2837.                 "parameters": [
  2838.                     {
  2839.                         "name": "key",
  2840.                         "in": "path",
  2841.                         "required": true,
  2842.                         "type": "string"
  2843.                     }
  2844.                 ],
  2845.                 "responses": {
  2846.                     "default": {
  2847.                         "description": "successful operation"
  2848.                     }
  2849.                 }
  2850.             }
  2851.         },
  2852.         "/reports": {
  2853.             "get": {
  2854.                 "operationId": "list",
  2855.                 "produces": [
  2856.                     "application/json",
  2857.                     "application/xml"
  2858.                 ],
  2859.                 "parameters": [ ],
  2860.                 "responses": {
  2861.                     "200": {
  2862.                         "description": "successful operation",
  2863.                         "schema": {
  2864.                             "type": "array",
  2865.                             "items": {
  2866.                                 "$ref": "#/definitions/ReportTO"
  2867.                             }
  2868.                         },
  2869.                         "headers": { }
  2870.                     }
  2871.                 }
  2872.             },
  2873.             "post": {
  2874.                 "operationId": "create",
  2875.                 "consumes": [
  2876.                     "application/json",
  2877.                     "application/xml"
  2878.                 ],
  2879.                 "parameters": [
  2880.                     {
  2881.                         "in": "body",
  2882.                         "name": "body",
  2883.                         "required": false,
  2884.                         "schema": {
  2885.                             "$ref": "#/definitions/ReportTO"
  2886.                         }
  2887.                     }
  2888.                 ],
  2889.                 "responses": {
  2890.                     "default": {
  2891.                         "description": "successful operation"
  2892.                     }
  2893.                 }
  2894.             }
  2895.         },
  2896.         "/reports/{key}/executions": {
  2897.             "get": {
  2898.                 "operationId": "listExecutions",
  2899.                 "produces": [
  2900.                     "application/json",
  2901.                     "application/xml"
  2902.                 ],
  2903.                 "parameters": [
  2904.                     {
  2905.                         "name": "page",
  2906.                         "in": "query",
  2907.                         "required": false,
  2908.                         "type": "integer",
  2909.                         "default": 1,
  2910.                         "minimum": 1,
  2911.                         "format": "int32"
  2912.                     },
  2913.                     {
  2914.                         "name": "size",
  2915.                         "in": "query",
  2916.                         "required": false,
  2917.                         "type": "integer",
  2918.                         "default": 25,
  2919.                         "minimum": 1,
  2920.                         "format": "int32"
  2921.                     },
  2922.                     {
  2923.                         "name": "orderby",
  2924.                         "in": "query",
  2925.                         "required": false,
  2926.                         "type": "string"
  2927.                     },
  2928.                     {
  2929.                         "name": "key",
  2930.                         "in": "path",
  2931.                         "required": true,
  2932.                         "type": "string"
  2933.                     }
  2934.                 ],
  2935.                 "responses": {
  2936.                     "200": {
  2937.                         "description": "successful operation",
  2938.                         "schema": {
  2939.                             "$ref": "#/definitions/PagedResultExecTO"
  2940.                         },
  2941.                         "headers": { }
  2942.                     }
  2943.                 }
  2944.             },
  2945.             "delete": {
  2946.                 "operationId": "deleteExecutions",
  2947.                 "produces": [
  2948.                     "application/xml",
  2949.                     "application/json"
  2950.                 ],
  2951.                 "parameters": [
  2952.                     {
  2953.                         "name": "key",
  2954.                         "in": "path",
  2955.                         "required": true,
  2956.                         "type": "string"
  2957.                     },
  2958.                     {
  2959.                         "name": "startedBefore",
  2960.                         "in": "query",
  2961.                         "required": false,
  2962.                         "type": "string",
  2963.                         "format": "date-time"
  2964.                     },
  2965.                     {
  2966.                         "name": "startedAfter",
  2967.                         "in": "query",
  2968.                         "required": false,
  2969.                         "type": "string",
  2970.                         "format": "date-time"
  2971.                     },
  2972.                     {
  2973.                         "name": "endedBefore",
  2974.                         "in": "query",
  2975.                         "required": false,
  2976.                         "type": "string",
  2977.                         "format": "date-time"
  2978.                     },
  2979.                     {
  2980.                         "name": "endedAfter",
  2981.                         "in": "query",
  2982.                         "required": false,
  2983.                         "type": "string",
  2984.                         "format": "date-time"
  2985.                     }
  2986.                 ],
  2987.                 "responses": {
  2988.                     "200": {
  2989.                         "description": "successful operation",
  2990.                         "schema": {
  2991.                             "$ref": "#/definitions/BulkActionResult"
  2992.                         },
  2993.                         "headers": { }
  2994.                     }
  2995.                 }
  2996.             }
  2997.         },
  2998.         "/reports/executions/recent": {
  2999.             "get": {
  3000.                 "operationId": "listRecentExecutions",
  3001.                 "produces": [
  3002.                     "application/json",
  3003.                     "application/xml"
  3004.                 ],
  3005.                 "parameters": [
  3006.                     {
  3007.                         "name": "max",
  3008.                         "in": "query",
  3009.                         "required": false,
  3010.                         "type": "integer",
  3011.                         "default": 25,
  3012.                         "minimum": 1,
  3013.                         "format": "int32"
  3014.                     }
  3015.                 ],
  3016.                 "responses": {
  3017.                     "200": {
  3018.                         "description": "successful operation",
  3019.                         "schema": {
  3020.                             "type": "array",
  3021.                             "items": {
  3022.                                 "$ref": "#/definitions/ExecTO"
  3023.                             }
  3024.                         },
  3025.                         "headers": { }
  3026.                     }
  3027.                 }
  3028.             }
  3029.         },
  3030.         "/reports/executions/{executionKey}": {
  3031.             "delete": {
  3032.                 "operationId": "deleteExecution",
  3033.                 "parameters": [
  3034.                     {
  3035.                         "name": "executionKey",
  3036.                         "in": "path",
  3037.                         "required": true,
  3038.                         "type": "string"
  3039.                     }
  3040.                 ],
  3041.                 "responses": {
  3042.                     "default": {
  3043.                         "description": "successful operation"
  3044.                     }
  3045.                 }
  3046.             }
  3047.         },
  3048.         "/reports/jobs": {
  3049.             "get": {
  3050.                 "operationId": "listJobs",
  3051.                 "produces": [
  3052.                     "application/json",
  3053.                     "application/xml"
  3054.                 ],
  3055.                 "parameters": [ ],
  3056.                 "responses": {
  3057.                     "200": {
  3058.                         "description": "successful operation",
  3059.                         "schema": {
  3060.                             "type": "array",
  3061.                             "items": {
  3062.                                 "$ref": "#/definitions/JobTO"
  3063.                             }
  3064.                         },
  3065.                         "headers": { }
  3066.                     }
  3067.                 }
  3068.             }
  3069.         },
  3070.         "/reports/jobs/{key}": {
  3071.             "post": {
  3072.                 "operationId": "actionJob_1",
  3073.                 "parameters": [
  3074.                     {
  3075.                         "name": "key",
  3076.                         "in": "path",
  3077.                         "required": true,
  3078.                         "type": "string"
  3079.                     },
  3080.                     {
  3081.                         "name": "action",
  3082.                         "in": "query",
  3083.                         "required": false,
  3084.                         "type": "string",
  3085.                         "enum": [
  3086.                             "START",
  3087.                             "STOP"
  3088.                         ]
  3089.                     }
  3090.                 ],
  3091.                 "responses": {
  3092.                     "default": {
  3093.                         "description": "successful operation"
  3094.                     }
  3095.                 }
  3096.             }
  3097.         },
  3098.         "/reports/{key}/execute": {
  3099.             "post": {
  3100.                 "operationId": "execute",
  3101.                 "produces": [
  3102.                     "application/json",
  3103.                     "application/xml"
  3104.                 ],
  3105.                 "parameters": [
  3106.                     {
  3107.                         "name": "key",
  3108.                         "in": "path",
  3109.                         "required": true,
  3110.                         "type": "string"
  3111.                     },
  3112.                     {
  3113.                         "name": "startAt",
  3114.                         "in": "query",
  3115.                         "required": false,
  3116.                         "type": "string",
  3117.                         "format": "date-time"
  3118.                     },
  3119.                     {
  3120.                         "name": "dryRun",
  3121.                         "in": "query",
  3122.                         "required": false,
  3123.                         "type": "boolean",
  3124.                         "default": false
  3125.                     }
  3126.                 ],
  3127.                 "responses": {
  3128.                     "200": {
  3129.                         "description": "successful operation",
  3130.                         "schema": {
  3131.                             "$ref": "#/definitions/ExecTO"
  3132.                         },
  3133.                         "headers": { }
  3134.                     }
  3135.                 }
  3136.             }
  3137.         },
  3138.         "/reportTemplates/{key}/{format}": {
  3139.             "get": {
  3140.                 "operationId": "getFormat",
  3141.                 "parameters": [
  3142.                     {
  3143.                         "name": "key",
  3144.                         "in": "path",
  3145.                         "required": true,
  3146.                         "type": "string"
  3147.                     },
  3148.                     {
  3149.                         "name": "format",
  3150.                         "in": "path",
  3151.                         "required": true,
  3152.                         "type": "string",
  3153.                         "enum": [
  3154.                             "FO",
  3155.                             "HTML",
  3156.                             "CSV"
  3157.                         ]
  3158.                     }
  3159.                 ],
  3160.                 "responses": {
  3161.                     "default": {
  3162.                         "description": "successful operation"
  3163.                     }
  3164.                 }
  3165.             },
  3166.             "put": {
  3167.                 "operationId": "setFormat",
  3168.                 "parameters": [
  3169.                     {
  3170.                         "name": "key",
  3171.                         "in": "path",
  3172.                         "required": true,
  3173.                         "type": "string"
  3174.                     },
  3175.                     {
  3176.                         "name": "format",
  3177.                         "in": "path",
  3178.                         "required": true,
  3179.                         "type": "string",
  3180.                         "enum": [
  3181.                             "FO",
  3182.                             "HTML",
  3183.                             "CSV"
  3184.                         ]
  3185.                     },
  3186.                     {
  3187.                         "in": "body",
  3188.                         "name": "body",
  3189.                         "required": false,
  3190.                         "schema": {
  3191.                             "$ref": "#/definitions/InputStream"
  3192.                         }
  3193.                     }
  3194.                 ],
  3195.                 "responses": {
  3196.                     "default": {
  3197.                         "description": "successful operation"
  3198.                     }
  3199.                 }
  3200.             },
  3201.             "delete": {
  3202.                 "operationId": "removeFormat",
  3203.                 "parameters": [
  3204.                     {
  3205.                         "name": "key",
  3206.                         "in": "path",
  3207.                         "required": true,
  3208.                         "type": "string"
  3209.                     },
  3210.                     {
  3211.                         "name": "format",
  3212.                         "in": "path",
  3213.                         "required": true,
  3214.                         "type": "string",
  3215.                         "enum": [
  3216.                             "FO",
  3217.                             "HTML",
  3218.                             "CSV"
  3219.                         ]
  3220.                     }
  3221.                 ],
  3222.                 "responses": {
  3223.                     "default": {
  3224.                         "description": "successful operation"
  3225.                     }
  3226.                 }
  3227.             }
  3228.         },
  3229.         "/reportTemplates/{key}": {
  3230.             "get": {
  3231.                 "operationId": "read",
  3232.                 "produces": [
  3233.                     "application/json",
  3234.                     "application/xml"
  3235.                 ],
  3236.                 "parameters": [
  3237.                     {
  3238.                         "name": "key",
  3239.                         "in": "path",
  3240.                         "required": true,
  3241.                         "type": "string"
  3242.                     }
  3243.                 ],
  3244.                 "responses": {
  3245.                     "200": {
  3246.                         "description": "successful operation",
  3247.                         "schema": {
  3248.                             "$ref": "#/definitions/ReportTemplateTO"
  3249.                         },
  3250.                         "headers": { }
  3251.                     }
  3252.                 }
  3253.             },
  3254.             "delete": {
  3255.                 "operationId": "delete",
  3256.                 "parameters": [
  3257.                     {
  3258.                         "name": "key",
  3259.                         "in": "path",
  3260.                         "required": true,
  3261.                         "type": "string"
  3262.                     }
  3263.                 ],
  3264.                 "responses": {
  3265.                     "default": {
  3266.                         "description": "successful operation"
  3267.                     }
  3268.                 }
  3269.             }
  3270.         },
  3271.         "/reportTemplates": {
  3272.             "get": {
  3273.                 "operationId": "list",
  3274.                 "produces": [
  3275.                     "application/json",
  3276.                     "application/xml"
  3277.                 ],
  3278.                 "parameters": [ ],
  3279.                 "responses": {
  3280.                     "200": {
  3281.                         "description": "successful operation",
  3282.                         "schema": {
  3283.                             "type": "array",
  3284.                             "items": {
  3285.                                 "$ref": "#/definitions/ReportTemplateTO"
  3286.                             }
  3287.                         },
  3288.                         "headers": { }
  3289.                     }
  3290.                 }
  3291.             },
  3292.             "post": {
  3293.                 "operationId": "create",
  3294.                 "consumes": [
  3295.                     "application/json",
  3296.                     "application/xml"
  3297.                 ],
  3298.                 "parameters": [
  3299.                     {
  3300.                         "in": "body",
  3301.                         "name": "body",
  3302.                         "required": false,
  3303.                         "schema": {
  3304.                             "$ref": "#/definitions/ReportTemplateTO"
  3305.                         }
  3306.                     }
  3307.                 ],
  3308.                 "responses": {
  3309.                     "default": {
  3310.                         "description": "successful operation"
  3311.                     }
  3312.                 }
  3313.             }
  3314.         },
  3315.         "/resources/{key}/bulkDeassociation/{anyTypeKey}/{action}": {
  3316.             "post": {
  3317.                 "operationId": "bulkDeassociation",
  3318.                 "consumes": [
  3319.                     "application/json",
  3320.                     "application/xml"
  3321.                 ],
  3322.                 "produces": [
  3323.                     "application/json",
  3324.                     "application/xml"
  3325.                 ],
  3326.                 "parameters": [
  3327.                     {
  3328.                         "in": "body",
  3329.                         "name": "body",
  3330.                         "required": false,
  3331.                         "schema": {
  3332.                             "$ref": "#/definitions/ResourceDeassociationPatch"
  3333.                         }
  3334.                     }
  3335.                 ],
  3336.                 "responses": {
  3337.                     "200": {
  3338.                         "description": "successful operation",
  3339.                         "schema": {
  3340.                             "$ref": "#/definitions/BulkActionResult"
  3341.                         },
  3342.                         "headers": { }
  3343.                     }
  3344.                 }
  3345.             }
  3346.         },
  3347.         "/resources/{key}/{anyTypeKey}/{anyKey}": {
  3348.             "get": {
  3349.                 "operationId": "readConnObject",
  3350.                 "produces": [
  3351.                     "application/json",
  3352.                     "application/xml"
  3353.                 ],
  3354.                 "parameters": [
  3355.                     {
  3356.                         "name": "key",
  3357.                         "in": "path",
  3358.                         "required": true,
  3359.                         "type": "string"
  3360.                     },
  3361.                     {
  3362.                         "name": "anyTypeKey",
  3363.                         "in": "path",
  3364.                         "required": true,
  3365.                         "type": "string"
  3366.                     },
  3367.                     {
  3368.                         "name": "anyKey",
  3369.                         "in": "path",
  3370.                         "required": true,
  3371.                         "type": "string"
  3372.                     }
  3373.                 ],
  3374.                 "responses": {
  3375.                     "200": {
  3376.                         "description": "successful operation",
  3377.                         "schema": {
  3378.                             "$ref": "#/definitions/ConnObjectTO"
  3379.                         },
  3380.                         "headers": { }
  3381.                     }
  3382.                 }
  3383.             }
  3384.         },
  3385.         "/resources/{key}/{anyTypeKey}": {
  3386.             "get": {
  3387.                 "operationId": "listConnObjects",
  3388.                 "produces": [
  3389.                     "application/json",
  3390.                     "application/xml"
  3391.                 ],
  3392.                 "parameters": [
  3393.                     {
  3394.                         "name": "key",
  3395.                         "in": "path",
  3396.                         "required": true,
  3397.                         "type": "string"
  3398.                     },
  3399.                     {
  3400.                         "name": "anyTypeKey",
  3401.                         "in": "path",
  3402.                         "required": true,
  3403.                         "type": "string"
  3404.                     },
  3405.                     {
  3406.                         "name": "size",
  3407.                         "in": "query",
  3408.                         "required": false,
  3409.                         "type": "integer",
  3410.                         "default": 25,
  3411.                         "maximum": 100,
  3412.                         "minimum": 1,
  3413.                         "format": "int32"
  3414.                     },
  3415.                     {
  3416.                         "name": "connIdPagedResultsCookie",
  3417.                         "in": "query",
  3418.                         "required": false,
  3419.                         "type": "string"
  3420.                     }
  3421.                 ],
  3422.                 "responses": {
  3423.                     "200": {
  3424.                         "description": "successful operation",
  3425.                         "schema": {
  3426.                             "$ref": "#/definitions/PagedConnObjectTOResult"
  3427.                         },
  3428.                         "headers": { }
  3429.                     }
  3430.                 }
  3431.             },
  3432.             "post": {
  3433.                 "operationId": "setLatestSyncToken",
  3434.                 "parameters": [
  3435.                     {
  3436.                         "name": "key",
  3437.                         "in": "path",
  3438.                         "required": true,
  3439.                         "type": "string"
  3440.                     },
  3441.                     {
  3442.                         "name": "anyTypeKey",
  3443.                         "in": "path",
  3444.                         "required": true,
  3445.                         "type": "string"
  3446.                     }
  3447.                 ],
  3448.                 "responses": {
  3449.                     "default": {
  3450.                         "description": "successful operation"
  3451.                     }
  3452.                 }
  3453.             },
  3454.             "delete": {
  3455.                 "operationId": "removeSyncToken",
  3456.                 "parameters": [
  3457.                     {
  3458.                         "name": "key",
  3459.                         "in": "path",
  3460.                         "required": true,
  3461.                         "type": "string"
  3462.                     },
  3463.                     {
  3464.                         "name": "anyTypeKey",
  3465.                         "in": "path",
  3466.                         "required": true,
  3467.                         "type": "string"
  3468.                     }
  3469.                 ],
  3470.                 "responses": {
  3471.                     "default": {
  3472.                         "description": "successful operation"
  3473.                     }
  3474.                 }
  3475.             }
  3476.         },
  3477.         "/resources/{key}": {
  3478.             "get": {
  3479.                 "operationId": "read",
  3480.                 "produces": [
  3481.                     "application/json",
  3482.                     "application/xml"
  3483.                 ],
  3484.                 "parameters": [
  3485.                     {
  3486.                         "name": "key",
  3487.                         "in": "path",
  3488.                         "required": true,
  3489.                         "type": "string"
  3490.                     }
  3491.                 ],
  3492.                 "responses": {
  3493.                     "200": {
  3494.                         "description": "successful operation",
  3495.                         "schema": {
  3496.                             "$ref": "#/definitions/ResourceTO"
  3497.                         },
  3498.                         "headers": { }
  3499.                     }
  3500.                 }
  3501.             },
  3502.             "put": {
  3503.                 "operationId": "update",
  3504.                 "consumes": [
  3505.                     "application/json",
  3506.                     "application/xml"
  3507.                 ],
  3508.                 "parameters": [
  3509.                     {
  3510.                         "in": "body",
  3511.                         "name": "body",
  3512.                         "required": false,
  3513.                         "schema": {
  3514.                             "$ref": "#/definitions/ResourceTO"
  3515.                         }
  3516.                     }
  3517.                 ],
  3518.                 "responses": {
  3519.                     "default": {
  3520.                         "description": "successful operation"
  3521.                     }
  3522.                 }
  3523.             },
  3524.             "delete": {
  3525.                 "operationId": "delete",
  3526.                 "consumes": [
  3527.                     "application/json",
  3528.                     "application/xml"
  3529.                 ],
  3530.                 "parameters": [
  3531.                     {
  3532.                         "name": "key",
  3533.                         "in": "path",
  3534.                         "required": true,
  3535.                         "type": "string"
  3536.                     }
  3537.                 ],
  3538.                 "responses": {
  3539.                     "default": {
  3540.                         "description": "successful operation"
  3541.                     }
  3542.                 }
  3543.             }
  3544.         },
  3545.         "/resources/check": {
  3546.             "post": {
  3547.                 "operationId": "check",
  3548.                 "consumes": [
  3549.                     "application/json",
  3550.                     "application/xml"
  3551.                 ],
  3552.                 "produces": [
  3553.                     "application/json",
  3554.                     "application/xml"
  3555.                 ],
  3556.                 "parameters": [
  3557.                     {
  3558.                         "in": "body",
  3559.                         "name": "body",
  3560.                         "required": false,
  3561.                         "schema": {
  3562.                             "$ref": "#/definitions/ResourceTO"
  3563.                         }
  3564.                     }
  3565.                 ],
  3566.                 "responses": {
  3567.                     "default": {
  3568.                         "description": "successful operation"
  3569.                     }
  3570.                 }
  3571.             }
  3572.         },
  3573.         "/resources": {
  3574.             "get": {
  3575.                 "operationId": "list",
  3576.                 "produces": [
  3577.                     "application/json",
  3578.                     "application/xml"
  3579.                 ],
  3580.                 "parameters": [ ],
  3581.                 "responses": {
  3582.                     "200": {
  3583.                         "description": "successful operation",
  3584.                         "schema": {
  3585.                             "type": "array",
  3586.                             "items": {
  3587.                                 "$ref": "#/definitions/ResourceTO"
  3588.                             }
  3589.                         },
  3590.                         "headers": { }
  3591.                     }
  3592.                 }
  3593.             },
  3594.             "post": {
  3595.                 "operationId": "create",
  3596.                 "consumes": [
  3597.                     "application/json",
  3598.                     "application/xml"
  3599.                 ],
  3600.                 "parameters": [
  3601.                     {
  3602.                         "in": "body",
  3603.                         "name": "body",
  3604.                         "required": false,
  3605.                         "schema": {
  3606.                             "$ref": "#/definitions/ResourceTO"
  3607.                         }
  3608.                     }
  3609.                 ],
  3610.                 "responses": {
  3611.                     "default": {
  3612.                         "description": "successful operation"
  3613.                     }
  3614.                 }
  3615.             }
  3616.         },
  3617.         "/roles/{key}/consoleLayout": {
  3618.             "get": {
  3619.                 "operationId": "getConsoleLayoutInfo",
  3620.                 "produces": [
  3621.                     "application/json"
  3622.                 ],
  3623.                 "parameters": [
  3624.                     {
  3625.                         "name": "key",
  3626.                         "in": "path",
  3627.                         "required": true,
  3628.                         "type": "string"
  3629.                     }
  3630.                 ],
  3631.                 "responses": {
  3632.                     "default": {
  3633.                         "description": "successful operation"
  3634.                     }
  3635.                 }
  3636.             },
  3637.             "put": {
  3638.                 "operationId": "setConsoleLayoutInfo",
  3639.                 "consumes": [
  3640.                     "application/json"
  3641.                 ],
  3642.                 "parameters": [
  3643.                     {
  3644.                         "name": "key",
  3645.                         "in": "path",
  3646.                         "required": true,
  3647.                         "type": "string"
  3648.                     },
  3649.                     {
  3650.                         "in": "body",
  3651.                         "name": "body",
  3652.                         "required": false,
  3653.                         "schema": {
  3654.                             "$ref": "#/definitions/InputStream"
  3655.                         }
  3656.                     }
  3657.                 ],
  3658.                 "responses": {
  3659.                     "default": {
  3660.                         "description": "successful operation"
  3661.                     }
  3662.                 }
  3663.             },
  3664.             "delete": {
  3665.                 "operationId": "removeConsoleLayoutInfo",
  3666.                 "parameters": [
  3667.                     {
  3668.                         "name": "key",
  3669.                         "in": "path",
  3670.                         "required": true,
  3671.                         "type": "string"
  3672.                     }
  3673.                 ],
  3674.                 "responses": {
  3675.                     "default": {
  3676.                         "description": "successful operation"
  3677.                     }
  3678.                 }
  3679.             }
  3680.         },
  3681.         "/roles/{key}": {
  3682.             "get": {
  3683.                 "operationId": "read",
  3684.                 "produces": [
  3685.                     "application/json",
  3686.                     "application/xml"
  3687.                 ],
  3688.                 "parameters": [
  3689.                     {
  3690.                         "name": "key",
  3691.                         "in": "path",
  3692.                         "required": true,
  3693.                         "type": "string"
  3694.                     }
  3695.                 ],
  3696.                 "responses": {
  3697.                     "200": {
  3698.                         "description": "successful operation",
  3699.                         "schema": {
  3700.                             "$ref": "#/definitions/RoleTO"
  3701.                         },
  3702.                         "headers": { }
  3703.                     }
  3704.                 }
  3705.             },
  3706.             "put": {
  3707.                 "operationId": "update",
  3708.                 "consumes": [
  3709.                     "application/json",
  3710.                     "application/xml"
  3711.                 ],
  3712.                 "parameters": [
  3713.                     {
  3714.                         "in": "body",
  3715.                         "name": "body",
  3716.                         "required": false,
  3717.                         "schema": {
  3718.                             "$ref": "#/definitions/RoleTO"
  3719.                         }
  3720.                     }
  3721.                 ],
  3722.                 "responses": {
  3723.                     "default": {
  3724.                         "description": "successful operation"
  3725.                     }
  3726.                 }
  3727.             },
  3728.             "delete": {
  3729.                 "operationId": "delete",
  3730.                 "parameters": [
  3731.                     {
  3732.                         "name": "key",
  3733.                         "in": "path",
  3734.                         "required": true,
  3735.                         "type": "string"
  3736.                     }
  3737.                 ],
  3738.                 "responses": {
  3739.                     "default": {
  3740.                         "description": "successful operation"
  3741.                     }
  3742.                 }
  3743.             }
  3744.         },
  3745.         "/roles": {
  3746.             "get": {
  3747.                 "operationId": "list",
  3748.                 "produces": [
  3749.                     "application/json",
  3750.                     "application/xml"
  3751.                 ],
  3752.                 "parameters": [ ],
  3753.                 "responses": {
  3754.                     "200": {
  3755.                         "description": "successful operation",
  3756.                         "schema": {
  3757.                             "type": "array",
  3758.                             "items": {
  3759.                                 "$ref": "#/definitions/RoleTO"
  3760.                             }
  3761.                         },
  3762.                         "headers": { }
  3763.                     }
  3764.                 }
  3765.             },
  3766.             "post": {
  3767.                 "operationId": "create",
  3768.                 "consumes": [
  3769.                     "application/json",
  3770.                     "application/xml"
  3771.                 ],
  3772.                 "parameters": [
  3773.                     {
  3774.                         "in": "body",
  3775.                         "name": "body",
  3776.                         "required": false,
  3777.                         "schema": {
  3778.                             "$ref": "#/definitions/RoleTO"
  3779.                         }
  3780.                     }
  3781.                 ],
  3782.                 "responses": {
  3783.                     "default": {
  3784.                         "description": "successful operation"
  3785.                     }
  3786.                 }
  3787.             }
  3788.         },
  3789.         "/saml2sp/identityProviders": {
  3790.             "get": {
  3791.                 "operationId": "list",
  3792.                 "produces": [
  3793.                     "application/json",
  3794.                     "application/xml"
  3795.                 ],
  3796.                 "parameters": [ ],
  3797.                 "responses": {
  3798.                     "200": {
  3799.                         "description": "successful operation",
  3800.                         "schema": {
  3801.                             "type": "array",
  3802.                             "items": {
  3803.                                 "$ref": "#/definitions/SAML2IdPTO"
  3804.                             }
  3805.                         },
  3806.                         "headers": { }
  3807.                     }
  3808.                 }
  3809.             },
  3810.             "post": {
  3811.                 "operationId": "importFromMetadata",
  3812.                 "consumes": [
  3813.                     "application/xml"
  3814.                 ],
  3815.                 "parameters": [
  3816.                     {
  3817.                         "in": "body",
  3818.                         "name": "body",
  3819.                         "required": false,
  3820.                         "schema": {
  3821.                             "$ref": "#/definitions/InputStream"
  3822.                         }
  3823.                     }
  3824.                 ],
  3825.                 "responses": {
  3826.                     "default": {
  3827.                         "description": "successful operation"
  3828.                     }
  3829.                 }
  3830.             }
  3831.         },
  3832.         "/saml2sp/identityProviders/{key}": {
  3833.             "get": {
  3834.                 "operationId": "read",
  3835.                 "produces": [
  3836.                     "application/json",
  3837.                     "application/xml"
  3838.                 ],
  3839.                 "parameters": [
  3840.                     {
  3841.                         "name": "key",
  3842.                         "in": "path",
  3843.                         "required": true,
  3844.                         "type": "string"
  3845.                     }
  3846.                 ],
  3847.                 "responses": {
  3848.                     "200": {
  3849.                         "description": "successful operation",
  3850.                         "schema": {
  3851.                             "$ref": "#/definitions/SAML2IdPTO"
  3852.                         },
  3853.                         "headers": { }
  3854.                     }
  3855.                 }
  3856.             },
  3857.             "put": {
  3858.                 "operationId": "update",
  3859.                 "consumes": [
  3860.                     "application/json",
  3861.                     "application/xml"
  3862.                 ],
  3863.                 "parameters": [
  3864.                     {
  3865.                         "in": "body",
  3866.                         "name": "body",
  3867.                         "required": false,
  3868.                         "schema": {
  3869.                             "$ref": "#/definitions/SAML2IdPTO"
  3870.                         }
  3871.                     }
  3872.                 ],
  3873.                 "responses": {
  3874.                     "default": {
  3875.                         "description": "successful operation"
  3876.                     }
  3877.                 }
  3878.             },
  3879.             "delete": {
  3880.                 "operationId": "delete",
  3881.                 "parameters": [
  3882.                     {
  3883.                         "name": "key",
  3884.                         "in": "path",
  3885.                         "required": true,
  3886.                         "type": "string"
  3887.                     }
  3888.                 ],
  3889.                 "responses": {
  3890.                     "default": {
  3891.                         "description": "successful operation"
  3892.                     }
  3893.                 }
  3894.             }
  3895.         },
  3896.         "/saml2sp/serviceProvider": {
  3897.             "get": {
  3898.                 "operationId": "getMetadata",
  3899.                 "produces": [
  3900.                     "application/xml"
  3901.                 ],
  3902.                 "parameters": [
  3903.                     {
  3904.                         "name": "spEntityID",
  3905.                         "in": "query",
  3906.                         "required": false,
  3907.                         "type": "string"
  3908.                     },
  3909.                     {
  3910.                         "name": "urlContext",
  3911.                         "in": "query",
  3912.                         "required": false,
  3913.                         "type": "string"
  3914.                     }
  3915.                 ],
  3916.                 "responses": {
  3917.                     "default": {
  3918.                         "description": "successful operation"
  3919.                     }
  3920.                 }
  3921.             }
  3922.         },
  3923.         "/saml2sp/serviceProvider/loginRequest": {
  3924.             "post": {
  3925.                 "operationId": "createLoginRequest",
  3926.                 "produces": [
  3927.                     "application/json",
  3928.                     "application/xml"
  3929.                 ],
  3930.                 "parameters": [
  3931.                     {
  3932.                         "name": "spEntityID",
  3933.                         "in": "query",
  3934.                         "required": false,
  3935.                         "type": "string"
  3936.                     },
  3937.                     {
  3938.                         "name": "idpEntityID",
  3939.                         "in": "query",
  3940.                         "required": false,
  3941.                         "type": "string"
  3942.                     }
  3943.                 ],
  3944.                 "responses": {
  3945.                     "200": {
  3946.                         "description": "successful operation",
  3947.                         "schema": {
  3948.                             "$ref": "#/definitions/SAML2RequestTO"
  3949.                         },
  3950.                         "headers": { }
  3951.                     }
  3952.                 }
  3953.             }
  3954.         },
  3955.         "/saml2sp/serviceProvider/loginResponse": {
  3956.             "post": {
  3957.                 "operationId": "validateLoginResponse",
  3958.                 "consumes": [
  3959.                     "application/json",
  3960.                     "application/xml"
  3961.                 ],
  3962.                 "produces": [
  3963.                     "application/json",
  3964.                     "application/xml"
  3965.                 ],
  3966.                 "parameters": [
  3967.                     {
  3968.                         "in": "body",
  3969.                         "name": "body",
  3970.                         "required": false,
  3971.                         "schema": {
  3972.                             "$ref": "#/definitions/SAML2ReceivedResponseTO"
  3973.                         }
  3974.                     }
  3975.                 ],
  3976.                 "responses": {
  3977.                     "200": {
  3978.                         "description": "successful operation",
  3979.                         "schema": {
  3980.                             "$ref": "#/definitions/SAML2LoginResponseTO"
  3981.                         },
  3982.                         "headers": { }
  3983.                     }
  3984.                 }
  3985.             }
  3986.         },
  3987.         "/saml2sp/serviceProvider/logoutRequest": {
  3988.             "post": {
  3989.                 "operationId": "createLogoutRequest",
  3990.                 "produces": [
  3991.                     "application/json",
  3992.                     "application/xml"
  3993.                 ],
  3994.                 "parameters": [
  3995.                     {
  3996.                         "name": "spEntityID",
  3997.                         "in": "query",
  3998.                         "required": false,
  3999.                         "type": "string"
  4000.                     }
  4001.                 ],
  4002.                 "responses": {
  4003.                     "200": {
  4004.                         "description": "successful operation",
  4005.                         "schema": {
  4006.                             "$ref": "#/definitions/SAML2RequestTO"
  4007.                         },
  4008.                         "headers": { }
  4009.                     }
  4010.                 }
  4011.             }
  4012.         },
  4013.         "/saml2sp/serviceProvider/logoutResponse": {
  4014.             "post": {
  4015.                 "operationId": "validateLogoutResponse",
  4016.                 "consumes": [
  4017.                     "application/json",
  4018.                     "application/xml"
  4019.                 ],
  4020.                 "produces": [
  4021.                     "application/json",
  4022.                     "application/xml"
  4023.                 ],
  4024.                 "parameters": [
  4025.                     {
  4026.                         "in": "body",
  4027.                         "name": "body",
  4028.                         "required": false,
  4029.                         "schema": {
  4030.                             "$ref": "#/definitions/SAML2ReceivedResponseTO"
  4031.                         }
  4032.                     }
  4033.                 ],
  4034.                 "responses": {
  4035.                     "default": {
  4036.                         "description": "successful operation"
  4037.                     }
  4038.                 }
  4039.             }
  4040.         },
  4041.         "/schemas/{type}/{key}": {
  4042.             "get": {
  4043.                 "operationId": "read",
  4044.                 "produces": [
  4045.                     "application/json",
  4046.                     "application/xml"
  4047.                 ],
  4048.                 "parameters": [
  4049.                     {
  4050.                         "name": "type",
  4051.                         "in": "path",
  4052.                         "required": true,
  4053.                         "type": "string",
  4054.                         "enum": [
  4055.                             "PLAIN",
  4056.                             "DERIVED",
  4057.                             "VIRTUAL"
  4058.                         ]
  4059.                     },
  4060.                     {
  4061.                         "name": "key",
  4062.                         "in": "path",
  4063.                         "required": true,
  4064.                         "type": "string"
  4065.                     }
  4066.                 ],
  4067.                 "responses": {
  4068.                     "200": {
  4069.                         "description": "successful operation",
  4070.                         "schema": {
  4071.                             "$ref": "#/definitions/AbstractSchemaTO"
  4072.                         },
  4073.                         "headers": { }
  4074.                     }
  4075.                 }
  4076.             },
  4077.             "put": {
  4078.                 "operationId": "update",
  4079.                 "consumes": [
  4080.                     "application/json",
  4081.                     "application/xml"
  4082.                 ],
  4083.                 "parameters": [
  4084.                     {
  4085.                         "name": "type",
  4086.                         "in": "path",
  4087.                         "required": true,
  4088.                         "type": "string",
  4089.                         "enum": [
  4090.                             "PLAIN",
  4091.                             "DERIVED",
  4092.                             "VIRTUAL"
  4093.                         ]
  4094.                     },
  4095.                     {
  4096.                         "in": "body",
  4097.                         "name": "body",
  4098.                         "required": false,
  4099.                         "schema": {
  4100.                             "$ref": "#/definitions/AbstractSchemaTO"
  4101.                         }
  4102.                     }
  4103.                 ],
  4104.                 "responses": {
  4105.                     "default": {
  4106.                         "description": "successful operation"
  4107.                     }
  4108.                 }
  4109.             },
  4110.             "delete": {
  4111.                 "operationId": "delete",
  4112.                 "parameters": [
  4113.                     {
  4114.                         "name": "type",
  4115.                         "in": "path",
  4116.                         "required": true,
  4117.                         "type": "string",
  4118.                         "enum": [
  4119.                             "PLAIN",
  4120.                             "DERIVED",
  4121.                             "VIRTUAL"
  4122.                         ]
  4123.                     },
  4124.                     {
  4125.                         "name": "key",
  4126.                         "in": "path",
  4127.                         "required": true,
  4128.                         "type": "string"
  4129.                     }
  4130.                 ],
  4131.                 "responses": {
  4132.                     "default": {
  4133.                         "description": "successful operation"
  4134.                     }
  4135.                 }
  4136.             }
  4137.         },
  4138.         "/schemas/{type}": {
  4139.             "get": {
  4140.                 "operationId": "list",
  4141.                 "produces": [
  4142.                     "application/json",
  4143.                     "application/xml"
  4144.                 ],
  4145.                 "parameters": [
  4146.                     {
  4147.                         "name": "type",
  4148.                         "in": "path",
  4149.                         "required": true,
  4150.                         "type": "string",
  4151.                         "enum": [
  4152.                             "PLAIN",
  4153.                             "DERIVED",
  4154.                             "VIRTUAL"
  4155.                         ]
  4156.                     },
  4157.                     {
  4158.                         "name": "anyTypeClass",
  4159.                         "in": "query",
  4160.                         "required": false,
  4161.                         "type": "array",
  4162.                         "items": {
  4163.                             "type": "string"
  4164.                         },
  4165.                         "collectionFormat": "multi"
  4166.                     }
  4167.                 ],
  4168.                 "responses": {
  4169.                     "200": {
  4170.                         "description": "successful operation",
  4171.                         "schema": {
  4172.                             "type": "array",
  4173.                             "items": {
  4174.                                 "$ref": "#/definitions/AbstractSchemaTO"
  4175.                             }
  4176.                         },
  4177.                         "headers": { }
  4178.                     }
  4179.                 }
  4180.             },
  4181.             "post": {
  4182.                 "operationId": "create",
  4183.                 "consumes": [
  4184.                     "application/json",
  4185.                     "application/xml"
  4186.                 ],
  4187.                 "parameters": [
  4188.                     {
  4189.                         "name": "type",
  4190.                         "in": "path",
  4191.                         "required": true,
  4192.                         "type": "string",
  4193.                         "enum": [
  4194.                             "PLAIN",
  4195.                             "DERIVED",
  4196.                             "VIRTUAL"
  4197.                         ]
  4198.                     },
  4199.                     {
  4200.                         "in": "body",
  4201.                         "name": "body",
  4202.                         "required": false,
  4203.                         "schema": {
  4204.                             "$ref": "#/definitions/AbstractSchemaTO"
  4205.                         }
  4206.                     }
  4207.                 ],
  4208.                 "responses": {
  4209.                     "default": {
  4210.                         "description": "successful operation"
  4211.                     }
  4212.                 }
  4213.             }
  4214.         },
  4215.         "/securityQuestions/byUser/{username}": {
  4216.             "get": {
  4217.                 "operationId": "readByUser",
  4218.                 "consumes": [
  4219.                     "application/json",
  4220.                     "application/xml"
  4221.                 ],
  4222.                 "produces": [
  4223.                     "application/json",
  4224.                     "application/xml"
  4225.                 ],
  4226.                 "parameters": [
  4227.                     {
  4228.                         "name": "username",
  4229.                         "in": "path",
  4230.                         "required": true,
  4231.                         "type": "string"
  4232.                     }
  4233.                 ],
  4234.                 "responses": {
  4235.                     "200": {
  4236.                         "description": "successful operation",
  4237.                         "schema": {
  4238.                             "$ref": "#/definitions/SecurityQuestionTO"
  4239.                         },
  4240.                         "headers": { }
  4241.                     }
  4242.                 }
  4243.             }
  4244.         },
  4245.         "/securityQuestions/{key}": {
  4246.             "get": {
  4247.                 "operationId": "read",
  4248.                 "produces": [
  4249.                     "application/json",
  4250.                     "application/xml"
  4251.                 ],
  4252.                 "parameters": [
  4253.                     {
  4254.                         "name": "key",
  4255.                         "in": "path",
  4256.                         "required": true,
  4257.                         "type": "string"
  4258.                     }
  4259.                 ],
  4260.                 "responses": {
  4261.                     "200": {
  4262.                         "description": "successful operation",
  4263.                         "schema": {
  4264.                             "$ref": "#/definitions/SecurityQuestionTO"
  4265.                         },
  4266.                         "headers": { }
  4267.                     }
  4268.                 }
  4269.             },
  4270.             "put": {
  4271.                 "operationId": "update",
  4272.                 "consumes": [
  4273.                     "application/json",
  4274.                     "application/xml"
  4275.                 ],
  4276.                 "parameters": [
  4277.                     {
  4278.                         "in": "body",
  4279.                         "name": "body",
  4280.                         "required": false,
  4281.                         "schema": {
  4282.                             "$ref": "#/definitions/SecurityQuestionTO"
  4283.                         }
  4284.                     }
  4285.                 ],
  4286.                 "responses": {
  4287.                     "default": {
  4288.                         "description": "successful operation"
  4289.                     }
  4290.                 }
  4291.             },
  4292.             "delete": {
  4293.                 "operationId": "delete",
  4294.                 "parameters": [
  4295.                     {
  4296.                         "name": "key",
  4297.                         "in": "path",
  4298.                         "required": true,
  4299.                         "type": "string"
  4300.                     }
  4301.                 ],
  4302.                 "responses": {
  4303.                     "default": {
  4304.                         "description": "successful operation"
  4305.                     }
  4306.                 }
  4307.             }
  4308.         },
  4309.         "/securityQuestions": {
  4310.             "get": {
  4311.                 "operationId": "list",
  4312.                 "produces": [
  4313.                     "application/json",
  4314.                     "application/xml"
  4315.                 ],
  4316.                 "parameters": [ ],
  4317.                 "responses": {
  4318.                     "200": {
  4319.                         "description": "successful operation",
  4320.                         "schema": {
  4321.                             "type": "array",
  4322.                             "items": {
  4323.                                 "$ref": "#/definitions/SecurityQuestionTO"
  4324.                             }
  4325.                         },
  4326.                         "headers": { }
  4327.                     }
  4328.                 }
  4329.             },
  4330.             "post": {
  4331.                 "operationId": "create",
  4332.                 "consumes": [
  4333.                     "application/json",
  4334.                     "application/xml"
  4335.                 ],
  4336.                 "parameters": [
  4337.                     {
  4338.                         "in": "body",
  4339.                         "name": "body",
  4340.                         "required": false,
  4341.                         "schema": {
  4342.                             "$ref": "#/definitions/SecurityQuestionTO"
  4343.                         }
  4344.                     }
  4345.                 ],
  4346.                 "responses": {
  4347.                     "default": {
  4348.                         "description": "successful operation"
  4349.                     }
  4350.                 }
  4351.             }
  4352.         },
  4353.         "/platform": {
  4354.             "get": {
  4355.                 "operationId": "platform",
  4356.                 "produces": [
  4357.                     "application/json",
  4358.                     "application/xml"
  4359.                 ],
  4360.                 "parameters": [ ],
  4361.                 "responses": {
  4362.                     "200": {
  4363.                         "description": "successful operation",
  4364.                         "schema": {
  4365.                             "$ref": "#/definitions/PlatformInfo"
  4366.                         },
  4367.                         "headers": { }
  4368.                     }
  4369.                 }
  4370.             }
  4371.         },
  4372.         "/numbers": {
  4373.             "get": {
  4374.                 "operationId": "numbers",
  4375.                 "produces": [
  4376.                     "application/json",
  4377.                     "application/xml"
  4378.                 ],
  4379.                 "parameters": [ ],
  4380.                 "responses": {
  4381.                     "200": {
  4382.                         "description": "successful operation",
  4383.                         "schema": {
  4384.                             "$ref": "#/definitions/NumbersInfo"
  4385.                         },
  4386.                         "headers": { }
  4387.                     }
  4388.                 }
  4389.             }
  4390.         },
  4391.         "/system": {
  4392.             "get": {
  4393.                 "operationId": "system",
  4394.                 "produces": [
  4395.                     "application/json",
  4396.                     "application/xml"
  4397.                 ],
  4398.                 "parameters": [ ],
  4399.                 "responses": {
  4400.                     "200": {
  4401.                         "description": "successful operation",
  4402.                         "schema": {
  4403.                             "$ref": "#/definitions/SystemInfo"
  4404.                         },
  4405.                         "headers": { }
  4406.                     }
  4407.                 }
  4408.             }
  4409.         },
  4410.         "/tasks/bulk": {
  4411.             "post": {
  4412.                 "operationId": "bulk",
  4413.                 "consumes": [
  4414.                     "application/json",
  4415.                     "application/xml"
  4416.                 ],
  4417.                 "produces": [
  4418.                     "application/json",
  4419.                     "application/xml"
  4420.                 ],
  4421.                 "parameters": [
  4422.                     {
  4423.                         "in": "body",
  4424.                         "name": "body",
  4425.                         "required": false,
  4426.                         "schema": {
  4427.                             "$ref": "#/definitions/BulkAction"
  4428.                         }
  4429.                     }
  4430.                 ],
  4431.                 "responses": {
  4432.                     "200": {
  4433.                         "description": "successful operation",
  4434.                         "schema": {
  4435.                             "$ref": "#/definitions/BulkActionResult"
  4436.                         },
  4437.                         "headers": { }
  4438.                     }
  4439.                 }
  4440.             }
  4441.         },
  4442.         "/tasks/{key}": {
  4443.             "get": {
  4444.                 "operationId": "read",
  4445.                 "produces": [
  4446.                     "application/json",
  4447.                     "application/xml"
  4448.                 ],
  4449.                 "parameters": [
  4450.                     {
  4451.                         "name": "key",
  4452.                         "in": "path",
  4453.                         "required": true,
  4454.                         "type": "string"
  4455.                     },
  4456.                     {
  4457.                         "name": "details",
  4458.                         "in": "query",
  4459.                         "required": false,
  4460.                         "type": "boolean",
  4461.                         "default": true
  4462.                     }
  4463.                 ],
  4464.                 "responses": {
  4465.                     "200": {
  4466.                         "description": "successful operation",
  4467.                         "schema": {
  4468.                             "$ref": "#/definitions/AbstractTaskTO"
  4469.                         },
  4470.                         "headers": { }
  4471.                     }
  4472.                 }
  4473.             },
  4474.             "put": {
  4475.                 "operationId": "update",
  4476.                 "consumes": [
  4477.                     "application/json",
  4478.                     "application/xml"
  4479.                 ],
  4480.                 "parameters": [
  4481.                     {
  4482.                         "in": "body",
  4483.                         "name": "body",
  4484.                         "required": false,
  4485.                         "schema": {
  4486.                             "$ref": "#/definitions/AbstractTaskTO"
  4487.                         }
  4488.                     }
  4489.                 ],
  4490.                 "responses": {
  4491.                     "default": {
  4492.                         "description": "successful operation"
  4493.                     }
  4494.                 }
  4495.             },
  4496.             "delete": {
  4497.                 "operationId": "delete",
  4498.                 "parameters": [
  4499.                     {
  4500.                         "name": "key",
  4501.                         "in": "path",
  4502.                         "required": true,
  4503.                         "type": "string"
  4504.                     }
  4505.                 ],
  4506.                 "responses": {
  4507.                     "default": {
  4508.                         "description": "successful operation"
  4509.                     }
  4510.                 }
  4511.             }
  4512.         },
  4513.         "/tasks": {
  4514.             "get": {
  4515.                 "operationId": "list",
  4516.                 "produces": [
  4517.                     "application/json",
  4518.                     "application/xml"
  4519.                 ],
  4520.                 "parameters": [
  4521.                     {
  4522.                         "name": "page",
  4523.                         "in": "query",
  4524.                         "required": false,
  4525.                         "type": "integer",
  4526.                         "default": 1,
  4527.                         "minimum": 1,
  4528.                         "format": "int32"
  4529.                     },
  4530.                     {
  4531.                         "name": "size",
  4532.                         "in": "query",
  4533.                         "required": false,
  4534.                         "type": "integer",
  4535.                         "default": 25,
  4536.                         "minimum": 1,
  4537.                         "format": "int32"
  4538.                     },
  4539.                     {
  4540.                         "name": "orderby",
  4541.                         "in": "query",
  4542.                         "required": false,
  4543.                         "type": "string"
  4544.                     },
  4545.                     {
  4546.                         "name": "type",
  4547.                         "in": "matrix",
  4548.                         "required": true,
  4549.                         "type": "string",
  4550.                         "enum": [
  4551.                             "PROPAGATION",
  4552.                             "NOTIFICATION",
  4553.                             "SCHEDULED",
  4554.                             "PULL",
  4555.                             "PUSH"
  4556.                         ]
  4557.                     },
  4558.                     {
  4559.                         "name": "resource",
  4560.                         "in": "query",
  4561.                         "required": false,
  4562.                         "type": "string"
  4563.                     },
  4564.                     {
  4565.                         "name": "notification",
  4566.                         "in": "query",
  4567.                         "required": false,
  4568.                         "type": "string"
  4569.                     },
  4570.                     {
  4571.                         "name": "anyTypeKind",
  4572.                         "in": "query",
  4573.                         "required": false,
  4574.                         "type": "string",
  4575.                         "enum": [
  4576.                             "USER",
  4577.                             "GROUP",
  4578.                             "ANY_OBJECT"
  4579.                         ]
  4580.                     },
  4581.                     {
  4582.                         "name": "entityKey",
  4583.                         "in": "query",
  4584.                         "required": false,
  4585.                         "type": "string",
  4586.                         "minimum": 1
  4587.                     },
  4588.                     {
  4589.                         "name": "details",
  4590.                         "in": "query",
  4591.                         "required": false,
  4592.                         "type": "boolean",
  4593.                         "default": true
  4594.                     }
  4595.                 ],
  4596.                 "responses": {
  4597.                     "200": {
  4598.                         "description": "successful operation",
  4599.                         "schema": {
  4600.                             "$ref": "#/definitions/PagedResultAbstractTaskTO"
  4601.                         },
  4602.                         "headers": { }
  4603.                     }
  4604.                 }
  4605.             },
  4606.             "post": {
  4607.                 "operationId": "create",
  4608.                 "consumes": [
  4609.                     "application/json",
  4610.                     "application/xml"
  4611.                 ],
  4612.                 "parameters": [
  4613.                     {
  4614.                         "in": "body",
  4615.                         "name": "body",
  4616.                         "required": false,
  4617.                         "schema": {
  4618.                             "$ref": "#/definitions/SchedTaskTO"
  4619.                         }
  4620.                     }
  4621.                 ],
  4622.                 "responses": {
  4623.                     "default": {
  4624.                         "description": "successful operation"
  4625.                     }
  4626.                 }
  4627.             }
  4628.         },
  4629.         "/tasks/{key}/executions": {
  4630.             "get": {
  4631.                 "operationId": "listExecutions_1",
  4632.                 "produces": [
  4633.                     "application/json",
  4634.                     "application/xml"
  4635.                 ],
  4636.                 "parameters": [
  4637.                     {
  4638.                         "name": "page",
  4639.                         "in": "query",
  4640.                         "required": false,
  4641.                         "type": "integer",
  4642.                         "default": 1,
  4643.                         "minimum": 1,
  4644.                         "format": "int32"
  4645.                     },
  4646.                     {
  4647.                         "name": "size",
  4648.                         "in": "query",
  4649.                         "required": false,
  4650.                         "type": "integer",
  4651.                         "default": 25,
  4652.                         "minimum": 1,
  4653.                         "format": "int32"
  4654.                     },
  4655.                     {
  4656.                         "name": "orderby",
  4657.                         "in": "query",
  4658.                         "required": false,
  4659.                         "type": "string"
  4660.                     },
  4661.                     {
  4662.                         "name": "key",
  4663.                         "in": "path",
  4664.                         "required": true,
  4665.                         "type": "string"
  4666.                     }
  4667.                 ],
  4668.                 "responses": {
  4669.                     "200": {
  4670.                         "description": "successful operation",
  4671.                         "schema": {
  4672.                             "$ref": "#/definitions/PagedResultExecTO"
  4673.                         },
  4674.                         "headers": { }
  4675.                     }
  4676.                 }
  4677.             },
  4678.             "delete": {
  4679.                 "operationId": "deleteExecutions_1",
  4680.                 "produces": [
  4681.                     "application/xml",
  4682.                     "application/json"
  4683.                 ],
  4684.                 "parameters": [
  4685.                     {
  4686.                         "name": "key",
  4687.                         "in": "path",
  4688.                         "required": true,
  4689.                         "type": "string"
  4690.                     },
  4691.                     {
  4692.                         "name": "startedBefore",
  4693.                         "in": "query",
  4694.                         "required": false,
  4695.                         "type": "string",
  4696.                         "format": "date-time"
  4697.                     },
  4698.                     {
  4699.                         "name": "startedAfter",
  4700.                         "in": "query",
  4701.                         "required": false,
  4702.                         "type": "string",
  4703.                         "format": "date-time"
  4704.                     },
  4705.                     {
  4706.                         "name": "endedBefore",
  4707.                         "in": "query",
  4708.                         "required": false,
  4709.                         "type": "string",
  4710.                         "format": "date-time"
  4711.                     },
  4712.                     {
  4713.                         "name": "endedAfter",
  4714.                         "in": "query",
  4715.                         "required": false,
  4716.                         "type": "string",
  4717.                         "format": "date-time"
  4718.                     }
  4719.                 ],
  4720.                 "responses": {
  4721.                     "200": {
  4722.                         "description": "successful operation",
  4723.                         "schema": {
  4724.                             "$ref": "#/definitions/BulkActionResult"
  4725.                         },
  4726.                         "headers": { }
  4727.                     }
  4728.                 }
  4729.             }
  4730.         },
  4731.         "/tasks/executions/recent": {
  4732.             "get": {
  4733.                 "operationId": "listRecentExecutions_1",
  4734.                 "produces": [
  4735.                     "application/json",
  4736.                     "application/xml"
  4737.                 ],
  4738.                 "parameters": [
  4739.                     {
  4740.                         "name": "max",
  4741.                         "in": "query",
  4742.                         "required": false,
  4743.                         "type": "integer",
  4744.                         "default": 25,
  4745.                         "minimum": 1,
  4746.                         "format": "int32"
  4747.                     }
  4748.                 ],
  4749.                 "responses": {
  4750.                     "200": {
  4751.                         "description": "successful operation",
  4752.                         "schema": {
  4753.                             "type": "array",
  4754.                             "items": {
  4755.                                 "$ref": "#/definitions/ExecTO"
  4756.                             }
  4757.                         },
  4758.                         "headers": { }
  4759.                     }
  4760.                 }
  4761.             }
  4762.         },
  4763.         "/tasks/executions/{executionKey}": {
  4764.             "delete": {
  4765.                 "operationId": "deleteExecution_1",
  4766.                 "parameters": [
  4767.                     {
  4768.                         "name": "executionKey",
  4769.                         "in": "path",
  4770.                         "required": true,
  4771.                         "type": "string"
  4772.                     }
  4773.                 ],
  4774.                 "responses": {
  4775.                     "default": {
  4776.                         "description": "successful operation"
  4777.                     }
  4778.                 }
  4779.             }
  4780.         },
  4781.         "/tasks/jobs": {
  4782.             "get": {
  4783.                 "operationId": "listJobs_1",
  4784.                 "produces": [
  4785.                     "application/json",
  4786.                     "application/xml"
  4787.                 ],
  4788.                 "parameters": [ ],
  4789.                 "responses": {
  4790.                     "200": {
  4791.                         "description": "successful operation",
  4792.                         "schema": {
  4793.                             "type": "array",
  4794.                             "items": {
  4795.                                 "$ref": "#/definitions/JobTO"
  4796.                             }
  4797.                         },
  4798.                         "headers": { }
  4799.                     }
  4800.                 }
  4801.             }
  4802.         },
  4803.         "/tasks/jobs/{key}": {
  4804.             "post": {
  4805.                 "operationId": "actionJob_2",
  4806.                 "parameters": [
  4807.                     {
  4808.                         "name": "key",
  4809.                         "in": "path",
  4810.                         "required": true,
  4811.                         "type": "string"
  4812.                     },
  4813.                     {
  4814.                         "name": "action",
  4815.                         "in": "query",
  4816.                         "required": false,
  4817.                         "type": "string",
  4818.                         "enum": [
  4819.                             "START",
  4820.                             "STOP"
  4821.                         ]
  4822.                     }
  4823.                 ],
  4824.                 "responses": {
  4825.                     "default": {
  4826.                         "description": "successful operation"
  4827.                     }
  4828.                 }
  4829.             }
  4830.         },
  4831.         "/tasks/{key}/execute": {
  4832.             "post": {
  4833.                 "operationId": "execute_1",
  4834.                 "produces": [
  4835.                     "application/json",
  4836.                     "application/xml"
  4837.                 ],
  4838.                 "parameters": [
  4839.                     {
  4840.                         "name": "key",
  4841.                         "in": "path",
  4842.                         "required": true,
  4843.                         "type": "string"
  4844.                     },
  4845.                     {
  4846.                         "name": "startAt",
  4847.                         "in": "query",
  4848.                         "required": false,
  4849.                         "type": "string",
  4850.                         "format": "date-time"
  4851.                     },
  4852.                     {
  4853.                         "name": "dryRun",
  4854.                         "in": "query",
  4855.                         "required": false,
  4856.                         "type": "boolean",
  4857.                         "default": false
  4858.                     }
  4859.                 ],
  4860.                 "responses": {
  4861.                     "200": {
  4862.                         "description": "successful operation",
  4863.                         "schema": {
  4864.                             "$ref": "#/definitions/ExecTO"
  4865.                         },
  4866.                         "headers": { }
  4867.                     }
  4868.                 }
  4869.             }
  4870.         },
  4871.         "/users/self/changePassword": {
  4872.             "post": {
  4873.                 "operationId": "changePassword",
  4874.                 "produces": [
  4875.                     "application/json",
  4876.                     "application/xml"
  4877.                 ],
  4878.                 "parameters": [
  4879.                     {
  4880.                         "name": "password",
  4881.                         "in": "query",
  4882.                         "required": true,
  4883.                         "type": "string"
  4884.                     }
  4885.                 ],
  4886.                 "responses": {
  4887.                     "default": {
  4888.                         "description": "successful operation"
  4889.                     }
  4890.                 }
  4891.             }
  4892.         },
  4893.         "/users/self/requestPasswordReset": {
  4894.             "post": {
  4895.                 "operationId": "requestPasswordReset",
  4896.                 "parameters": [
  4897.                     {
  4898.                         "name": "username",
  4899.                         "in": "query",
  4900.                         "required": true,
  4901.                         "type": "string"
  4902.                     },
  4903.                     {
  4904.                         "in": "body",
  4905.                         "name": "body",
  4906.                         "required": false,
  4907.                         "schema": {
  4908.                             "type": "string"
  4909.                         }
  4910.                     }
  4911.                 ],
  4912.                 "responses": {
  4913.                     "default": {
  4914.                         "description": "successful operation"
  4915.                     }
  4916.                 }
  4917.             }
  4918.         },
  4919.         "/users/self/confirmPasswordReset": {
  4920.             "post": {
  4921.                 "operationId": "confirmPasswordReset",
  4922.                 "parameters": [
  4923.                     {
  4924.                         "name": "token",
  4925.                         "in": "query",
  4926.                         "required": true,
  4927.                         "type": "string"
  4928.                     },
  4929.                     {
  4930.                         "in": "body",
  4931.                         "name": "body",
  4932.                         "required": false,
  4933.                         "schema": {
  4934.                             "type": "string"
  4935.                         }
  4936.                     }
  4937.                 ],
  4938.                 "responses": {
  4939.                     "default": {
  4940.                         "description": "successful operation"
  4941.                     }
  4942.                 }
  4943.             }
  4944.         },
  4945.         "/users/self/{key}": {
  4946.             "put": {
  4947.                 "operationId": "update",
  4948.                 "consumes": [
  4949.                     "application/json",
  4950.                     "application/xml"
  4951.                 ],
  4952.                 "produces": [
  4953.                     "application/json",
  4954.                     "application/xml"
  4955.                 ],
  4956.                 "parameters": [
  4957.                     {
  4958.                         "in": "body",
  4959.                         "name": "body",
  4960.                         "required": false,
  4961.                         "schema": {
  4962.                             "$ref": "#/definitions/UserTO"
  4963.                         }
  4964.                     }
  4965.                 ],
  4966.                 "responses": {
  4967.                     "default": {
  4968.                         "description": "successful operation"
  4969.                     }
  4970.                 }
  4971.             },
  4972.             "patch": {
  4973.                 "operationId": "update",
  4974.                 "consumes": [
  4975.                     "application/json",
  4976.                     "application/xml"
  4977.                 ],
  4978.                 "produces": [
  4979.                     "application/json",
  4980.                     "application/xml"
  4981.                 ],
  4982.                 "parameters": [
  4983.                     {
  4984.                         "in": "body",
  4985.                         "name": "body",
  4986.                         "required": false,
  4987.                         "schema": {
  4988.                             "$ref": "#/definitions/UserPatch"
  4989.                         }
  4990.                     }
  4991.                 ],
  4992.                 "responses": {
  4993.                     "default": {
  4994.                         "description": "successful operation"
  4995.                     }
  4996.                 }
  4997.             }
  4998.         },
  4999.         "/users/self": {
  5000.             "get": {
  5001.                 "operationId": "read",
  5002.                 "produces": [
  5003.                     "application/json",
  5004.                     "application/xml"
  5005.                 ],
  5006.                 "parameters": [ ],
  5007.                 "responses": {
  5008.                     "default": {
  5009.                         "description": "successful operation"
  5010.                     }
  5011.                 }
  5012.             },
  5013.             "post": {
  5014.                 "operationId": "create",
  5015.                 "consumes": [
  5016.                     "application/json",
  5017.                     "application/xml"
  5018.                 ],
  5019.                 "produces": [
  5020.                     "application/json",
  5021.                     "application/xml"
  5022.                 ],
  5023.                 "parameters": [
  5024.                     {
  5025.                         "in": "body",
  5026.                         "name": "body",
  5027.                         "required": false,
  5028.                         "schema": {
  5029.                             "$ref": "#/definitions/UserTO"
  5030.                         }
  5031.                     },
  5032.                     {
  5033.                         "name": "storePassword",
  5034.                         "in": "query",
  5035.                         "required": false,
  5036.                         "type": "boolean",
  5037.                         "default": true
  5038.                     }
  5039.                 ],
  5040.                 "responses": {
  5041.                     "default": {
  5042.                         "description": "successful operation"
  5043.                     }
  5044.                 }
  5045.             },
  5046.             "delete": {
  5047.                 "operationId": "delete",
  5048.                 "produces": [
  5049.                     "application/json",
  5050.                     "application/xml"
  5051.                 ],
  5052.                 "parameters": [ ],
  5053.                 "responses": {
  5054.                     "default": {
  5055.                         "description": "successful operation"
  5056.                     }
  5057.                 }
  5058.             }
  5059.         },
  5060.         "/users": {
  5061.             "get": {
  5062.                 "operationId": "search_2",
  5063.                 "produces": [
  5064.                     "application/json",
  5065.                     "application/xml"
  5066.                 ],
  5067.                 "parameters": [
  5068.                     {
  5069.                         "name": "page",
  5070.                         "in": "query",
  5071.                         "required": false,
  5072.                         "type": "integer",
  5073.                         "default": 1,
  5074.                         "minimum": 1,
  5075.                         "format": "int32"
  5076.                     },
  5077.                     {
  5078.                         "name": "size",
  5079.                         "in": "query",
  5080.                         "required": false,
  5081.                         "type": "integer",
  5082.                         "default": 25,
  5083.                         "minimum": 1,
  5084.                         "format": "int32"
  5085.                     },
  5086.                     {
  5087.                         "name": "orderby",
  5088.                         "in": "query",
  5089.                         "required": false,
  5090.                         "type": "string"
  5091.                     },
  5092.                     {
  5093.                         "name": "realm",
  5094.                         "in": "matrix",
  5095.                         "required": false,
  5096.                         "type": "string",
  5097.                         "default": "/"
  5098.                     },
  5099.                     {
  5100.                         "name": "details",
  5101.                         "in": "query",
  5102.                         "required": false,
  5103.                         "type": "boolean",
  5104.                         "default": true
  5105.                     },
  5106.                     {
  5107.                         "name": "fiql",
  5108.                         "in": "query",
  5109.                         "required": false,
  5110.                         "type": "string"
  5111.                     }
  5112.                 ],
  5113.                 "responses": {
  5114.                     "200": {
  5115.                         "description": "successful operation",
  5116.                         "schema": {
  5117.                             "$ref": "#/definitions/PagedResultAnyTO"
  5118.                         },
  5119.                         "headers": { }
  5120.                     }
  5121.                 }
  5122.             },
  5123.             "post": {
  5124.                 "operationId": "create_2",
  5125.                 "consumes": [
  5126.                     "application/json",
  5127.                     "application/xml"
  5128.                 ],
  5129.                 "produces": [
  5130.                     "application/json",
  5131.                     "application/xml"
  5132.                 ],
  5133.                 "parameters": [
  5134.                     {
  5135.                         "in": "body",
  5136.                         "name": "body",
  5137.                         "required": false,
  5138.                         "schema": {
  5139.                             "$ref": "#/definitions/UserTO"
  5140.                         }
  5141.                     }
  5142.                 ],
  5143.                 "responses": {
  5144.                     "default": {
  5145.                         "description": "successful operation"
  5146.                     }
  5147.                 }
  5148.             }
  5149.         },
  5150.         "/users/{key}/status": {
  5151.             "post": {
  5152.                 "operationId": "status",
  5153.                 "consumes": [
  5154.                     "application/json",
  5155.                     "application/xml"
  5156.                 ],
  5157.                 "produces": [
  5158.                     "application/json",
  5159.                     "application/xml"
  5160.                 ],
  5161.                 "parameters": [
  5162.                     {
  5163.                         "in": "body",
  5164.                         "name": "body",
  5165.                         "required": false,
  5166.                         "schema": {
  5167.                             "$ref": "#/definitions/StatusPatch"
  5168.                         }
  5169.                     }
  5170.                 ],
  5171.                 "responses": {
  5172.                     "default": {
  5173.                         "description": "successful operation"
  5174.                     }
  5175.                 }
  5176.             }
  5177.         },
  5178.         "/users/{key}/associate/{action}": {
  5179.             "post": {
  5180.                 "operationId": "associate_2",
  5181.                 "consumes": [
  5182.                     "application/json",
  5183.                     "application/xml"
  5184.                 ],
  5185.                 "produces": [
  5186.                     "application/json",
  5187.                     "application/xml"
  5188.                 ],
  5189.                 "parameters": [
  5190.                     {
  5191.                         "in": "body",
  5192.                         "name": "body",
  5193.                         "required": false,
  5194.                         "schema": {
  5195.                             "$ref": "#/definitions/AssociationPatch"
  5196.                         }
  5197.                     }
  5198.                 ],
  5199.                 "responses": {
  5200.                     "default": {
  5201.                         "description": "successful operation"
  5202.                     }
  5203.                 }
  5204.             }
  5205.         },
  5206.         "/users/bulk": {
  5207.             "post": {
  5208.                 "operationId": "bulk_2",
  5209.                 "consumes": [
  5210.                     "application/json",
  5211.                     "application/xml"
  5212.                 ],
  5213.                 "produces": [
  5214.                     "application/json",
  5215.                     "application/xml"
  5216.                 ],
  5217.                 "parameters": [
  5218.                     {
  5219.                         "in": "body",
  5220.                         "name": "body",
  5221.                         "required": false,
  5222.                         "schema": {
  5223.                             "$ref": "#/definitions/BulkAction"
  5224.                         }
  5225.                     }
  5226.                 ],
  5227.                 "responses": {
  5228.                     "default": {
  5229.                         "description": "successful operation"
  5230.                     }
  5231.                 }
  5232.             }
  5233.         },
  5234.         "/users/{key}/deassociate/{action}": {
  5235.             "post": {
  5236.                 "operationId": "deassociate_2",
  5237.                 "consumes": [
  5238.                     "application/json",
  5239.                     "application/xml"
  5240.                 ],
  5241.                 "produces": [
  5242.                     "application/json",
  5243.                     "application/xml"
  5244.                 ],
  5245.                 "parameters": [
  5246.                     {
  5247.                         "in": "body",
  5248.                         "name": "body",
  5249.                         "required": false,
  5250.                         "schema": {
  5251.                             "$ref": "#/definitions/DeassociationPatch"
  5252.                         }
  5253.                     }
  5254.                 ],
  5255.                 "responses": {
  5256.                     "default": {
  5257.                         "description": "successful operation"
  5258.                     }
  5259.                 }
  5260.             }
  5261.         },
  5262.         "/users/{key}": {
  5263.             "get": {
  5264.                 "operationId": "read_6",
  5265.                 "produces": [
  5266.                     "application/json",
  5267.                     "application/xml"
  5268.                 ],
  5269.                 "parameters": [
  5270.                     {
  5271.                         "name": "key",
  5272.                         "in": "path",
  5273.                         "required": true,
  5274.                         "type": "string"
  5275.                     }
  5276.                 ],
  5277.                 "responses": {
  5278.                     "200": {
  5279.                         "description": "successful operation",
  5280.                         "schema": {
  5281.                             "$ref": "#/definitions/AnyTO"
  5282.                         },
  5283.                         "headers": { }
  5284.                     }
  5285.                 }
  5286.             },
  5287.             "put": {
  5288.                 "operationId": "update_8",
  5289.                 "consumes": [
  5290.                     "application/json",
  5291.                     "application/xml"
  5292.                 ],
  5293.                 "produces": [
  5294.                     "application/json",
  5295.                     "application/xml"
  5296.                 ],
  5297.                 "parameters": [
  5298.                     {
  5299.                         "in": "body",
  5300.                         "name": "body",
  5301.                         "required": false,
  5302.                         "schema": {
  5303.                             "$ref": "#/definitions/UserTO"
  5304.                         }
  5305.                     }
  5306.                 ],
  5307.                 "responses": {
  5308.                     "default": {
  5309.                         "description": "successful operation"
  5310.                     }
  5311.                 }
  5312.             },
  5313.             "delete": {
  5314.                 "operationId": "delete_5",
  5315.                 "consumes": [
  5316.                     "application/json",
  5317.                     "application/xml"
  5318.                 ],
  5319.                 "produces": [
  5320.                     "application/json",
  5321.                     "application/xml"
  5322.                 ],
  5323.                 "parameters": [
  5324.                     {
  5325.                         "name": "key",
  5326.                         "in": "path",
  5327.                         "required": true,
  5328.                         "type": "string"
  5329.                     }
  5330.                 ],
  5331.                 "responses": {
  5332.                     "default": {
  5333.                         "description": "successful operation"
  5334.                     }
  5335.                 }
  5336.             },
  5337.             "patch": {
  5338.                 "operationId": "update_6",
  5339.                 "consumes": [
  5340.                     "application/json",
  5341.                     "application/xml"
  5342.                 ],
  5343.                 "produces": [
  5344.                     "application/json",
  5345.                     "application/xml"
  5346.                 ],
  5347.                 "parameters": [
  5348.                     {
  5349.                         "in": "body",
  5350.                         "name": "body",
  5351.                         "required": false,
  5352.                         "schema": {
  5353.                             "$ref": "#/definitions/UserPatch"
  5354.                         }
  5355.                     }
  5356.                 ],
  5357.                 "responses": {
  5358.                     "default": {
  5359.                         "description": "successful operation"
  5360.                     }
  5361.                 }
  5362.             }
  5363.         },
  5364.         "/users/{key}/{schemaType}/{schema}": {
  5365.             "get": {
  5366.                 "operationId": "read_7",
  5367.                 "produces": [
  5368.                     "application/json",
  5369.                     "application/xml"
  5370.                 ],
  5371.                 "parameters": [
  5372.                     {
  5373.                         "name": "key",
  5374.                         "in": "path",
  5375.                         "required": true,
  5376.                         "type": "string"
  5377.                     },
  5378.                     {
  5379.                         "name": "schemaType",
  5380.                         "in": "path",
  5381.                         "required": true,
  5382.                         "type": "string",
  5383.                         "enum": [
  5384.                             "PLAIN",
  5385.                             "DERIVED",
  5386.                             "VIRTUAL"
  5387.                         ]
  5388.                     },
  5389.                     {
  5390.                         "name": "schema",
  5391.                         "in": "path",
  5392.                         "required": true,
  5393.                         "type": "string"
  5394.                     }
  5395.                 ],
  5396.                 "responses": {
  5397.                     "200": {
  5398.                         "description": "successful operation",
  5399.                         "schema": {
  5400.                             "$ref": "#/definitions/AttrTO"
  5401.                         },
  5402.                         "headers": { }
  5403.                     }
  5404.                 }
  5405.             },
  5406.             "put": {
  5407.                 "operationId": "update_7",
  5408.                 "consumes": [
  5409.                     "application/json",
  5410.                     "application/xml"
  5411.                 ],
  5412.                 "produces": [
  5413.                     "application/json",
  5414.                     "application/xml"
  5415.                 ],
  5416.                 "parameters": [
  5417.                     {
  5418.                         "name": "key",
  5419.                         "in": "path",
  5420.                         "required": true,
  5421.                         "type": "string"
  5422.                     },
  5423.                     {
  5424.                         "name": "schemaType",
  5425.                         "in": "path",
  5426.                         "required": true,
  5427.                         "type": "string",
  5428.                         "enum": [
  5429.                             "PLAIN",
  5430.                             "DERIVED",
  5431.                             "VIRTUAL"
  5432.                         ]
  5433.                     },
  5434.                     {
  5435.                         "in": "body",
  5436.                         "name": "body",
  5437.                         "required": false,
  5438.                         "schema": {
  5439.                             "$ref": "#/definitions/AttrTO"
  5440.                         }
  5441.                     }
  5442.                 ],
  5443.                 "responses": {
  5444.                     "default": {
  5445.                         "description": "successful operation"
  5446.                     }
  5447.                 }
  5448.             },
  5449.             "delete": {
  5450.                 "operationId": "delete_6",
  5451.                 "consumes": [
  5452.                     "application/json",
  5453.                     "application/xml"
  5454.                 ],
  5455.                 "produces": [
  5456.                     "application/json",
  5457.                     "application/xml"
  5458.                 ],
  5459.                 "parameters": [
  5460.                     {
  5461.                         "name": "key",
  5462.                         "in": "path",
  5463.                         "required": true,
  5464.                         "type": "string"
  5465.                     },
  5466.                     {
  5467.                         "name": "schemaType",
  5468.                         "in": "path",
  5469.                         "required": true,
  5470.                         "type": "string",
  5471.                         "enum": [
  5472.                             "PLAIN",
  5473.                             "DERIVED",
  5474.                             "VIRTUAL"
  5475.                         ]
  5476.                     },
  5477.                     {
  5478.                         "name": "schema",
  5479.                         "in": "path",
  5480.                         "required": true,
  5481.                         "type": "string"
  5482.                     }
  5483.                 ],
  5484.                 "responses": {
  5485.                     "default": {
  5486.                         "description": "successful operation"
  5487.                     }
  5488.                 }
  5489.             }
  5490.         },
  5491.         "/users/{key}/{schemaType}": {
  5492.             "get": {
  5493.                 "operationId": "read_8",
  5494.                 "produces": [
  5495.                     "application/json",
  5496.                     "application/xml"
  5497.                 ],
  5498.                 "parameters": [
  5499.                     {
  5500.                         "name": "key",
  5501.                         "in": "path",
  5502.                         "required": true,
  5503.                         "type": "string"
  5504.                     },
  5505.                     {
  5506.                         "name": "schemaType",
  5507.                         "in": "path",
  5508.                         "required": true,
  5509.                         "type": "string",
  5510.                         "enum": [
  5511.                             "PLAIN",
  5512.                             "DERIVED",
  5513.                             "VIRTUAL"
  5514.                         ]
  5515.                     }
  5516.                 ],
  5517.                 "responses": {
  5518.                     "200": {
  5519.                         "description": "successful operation",
  5520.                         "schema": {
  5521.                             "type": "array",
  5522.                             "uniqueItems": true,
  5523.                             "items": {
  5524.                                 "$ref": "#/definitions/AttrTO"
  5525.                             }
  5526.                         },
  5527.                         "headers": { }
  5528.                     }
  5529.                 }
  5530.             }
  5531.         },
  5532.         "/userworkflow/tasks/{taskId}/execute": {
  5533.             "post": {
  5534.                 "operationId": "executeTask",
  5535.                 "consumes": [
  5536.                     "application/json",
  5537.                     "application/xml"
  5538.                 ],
  5539.                 "produces": [
  5540.                     "application/json",
  5541.                     "application/xml"
  5542.                 ],
  5543.                 "parameters": [
  5544.                     {
  5545.                         "name": "taskId",
  5546.                         "in": "path",
  5547.                         "required": true,
  5548.                         "type": "string"
  5549.                     },
  5550.                     {
  5551.                         "in": "body",
  5552.                         "name": "body",
  5553.                         "required": false,
  5554.                         "schema": {
  5555.                             "$ref": "#/definitions/UserTO"
  5556.                         }
  5557.                     }
  5558.                 ],
  5559.                 "responses": {
  5560.                     "200": {
  5561.                         "description": "successful operation",
  5562.                         "schema": {
  5563.                             "$ref": "#/definitions/UserTO"
  5564.                         },
  5565.                         "headers": { }
  5566.                     }
  5567.                 }
  5568.             }
  5569.         },
  5570.         "/userworkflow/forms/{taskId}/claim": {
  5571.             "post": {
  5572.                 "operationId": "claimForm",
  5573.                 "produces": [
  5574.                     "application/json",
  5575.                     "application/xml"
  5576.                 ],
  5577.                 "parameters": [
  5578.                     {
  5579.                         "name": "taskId",
  5580.                         "in": "path",
  5581.                         "required": true,
  5582.                         "type": "string"
  5583.                     }
  5584.                 ],
  5585.                 "responses": {
  5586.                     "200": {
  5587.                         "description": "successful operation",
  5588.                         "schema": {
  5589.                             "$ref": "#/definitions/WorkflowFormTO"
  5590.                         },
  5591.                         "headers": { }
  5592.                     }
  5593.                 }
  5594.             }
  5595.         },
  5596.         "/userworkflow/forms/{userKey}": {
  5597.             "get": {
  5598.                 "operationId": "getFormForUser",
  5599.                 "produces": [
  5600.                     "application/json",
  5601.                     "application/xml"
  5602.                 ],
  5603.                 "parameters": [
  5604.                     {
  5605.                         "name": "userKey",
  5606.                         "in": "path",
  5607.                         "required": true,
  5608.                         "type": "string"
  5609.                     }
  5610.                 ],
  5611.                 "responses": {
  5612.                     "200": {
  5613.                         "description": "successful operation",
  5614.                         "schema": {
  5615.                             "$ref": "#/definitions/WorkflowFormTO"
  5616.                         },
  5617.                         "headers": { }
  5618.                     }
  5619.                 }
  5620.             }
  5621.         },
  5622.         "/userworkflow/forms": {
  5623.             "get": {
  5624.                 "operationId": "getForms",
  5625.                 "produces": [
  5626.                     "application/json",
  5627.                     "application/xml"
  5628.                 ],
  5629.                 "parameters": [ ],
  5630.                 "responses": {
  5631.                     "200": {
  5632.                         "description": "successful operation",
  5633.                         "schema": {
  5634.                             "type": "array",
  5635.                             "items": {
  5636.                                 "$ref": "#/definitions/WorkflowFormTO"
  5637.                             }
  5638.                         },
  5639.                         "headers": { }
  5640.                     }
  5641.                 }
  5642.             },
  5643.             "post": {
  5644.                 "operationId": "submitForm",
  5645.                 "consumes": [
  5646.                     "application/json",
  5647.                     "application/xml"
  5648.                 ],
  5649.                 "produces": [
  5650.                     "application/json",
  5651.                     "application/xml"
  5652.                 ],
  5653.                 "parameters": [
  5654.                     {
  5655.                         "in": "body",
  5656.                         "name": "body",
  5657.                         "required": false,
  5658.                         "schema": {
  5659.                             "$ref": "#/definitions/WorkflowFormTO"
  5660.                         }
  5661.                     }
  5662.                 ],
  5663.                 "responses": {
  5664.                     "200": {
  5665.                         "description": "successful operation",
  5666.                         "schema": {
  5667.                             "$ref": "#/definitions/UserTO"
  5668.                         },
  5669.                         "headers": { }
  5670.                     }
  5671.                 }
  5672.             }
  5673.         },
  5674.         "/workflows/{anyType}/{key}/diagram.png": {
  5675.             "get": {
  5676.                 "operationId": "exportDiagram",
  5677.                 "produces": [
  5678.                     "image/png"
  5679.                 ],
  5680.                 "parameters": [
  5681.                     {
  5682.                         "name": "anyType",
  5683.                         "in": "path",
  5684.                         "required": true,
  5685.                         "type": "string"
  5686.                     },
  5687.                     {
  5688.                         "name": "key",
  5689.                         "in": "path",
  5690.                         "required": true,
  5691.                         "type": "string"
  5692.                     }
  5693.                 ],
  5694.                 "responses": {
  5695.                     "default": {
  5696.                         "description": "successful operation"
  5697.                     }
  5698.                 }
  5699.             }
  5700.         },
  5701.         "/workflows/{anyType}/{key}": {
  5702.             "get": {
  5703.                 "operationId": "get",
  5704.                 "produces": [
  5705.                     "application/json",
  5706.                     "application/xml"
  5707.                 ],
  5708.                 "parameters": [
  5709.                     {
  5710.                         "name": "anyType",
  5711.                         "in": "path",
  5712.                         "required": true,
  5713.                         "type": "string"
  5714.                     },
  5715.                     {
  5716.                         "name": "key",
  5717.                         "in": "path",
  5718.                         "required": true,
  5719.                         "type": "string"
  5720.                     }
  5721.                 ],
  5722.                 "responses": {
  5723.                     "default": {
  5724.                         "description": "successful operation"
  5725.                     }
  5726.                 }
  5727.             },
  5728.             "put": {
  5729.                 "operationId": "set",
  5730.                 "consumes": [
  5731.                     "application/json",
  5732.                     "application/xml"
  5733.                 ],
  5734.                 "parameters": [
  5735.                     {
  5736.                         "name": "anyType",
  5737.                         "in": "path",
  5738.                         "required": true,
  5739.                         "type": "string"
  5740.                     },
  5741.                     {
  5742.                         "name": "key",
  5743.                         "in": "path",
  5744.                         "required": true,
  5745.                         "type": "string"
  5746.                     },
  5747.                     {
  5748.                         "in": "body",
  5749.                         "name": "body",
  5750.                         "required": false,
  5751.                         "schema": {
  5752.                             "type": "string"
  5753.                         }
  5754.                     }
  5755.                 ],
  5756.                 "responses": {
  5757.                     "default": {
  5758.                         "description": "successful operation"
  5759.                     }
  5760.                 }
  5761.             },
  5762.             "delete": {
  5763.                 "operationId": "delete",
  5764.                 "parameters": [
  5765.                     {
  5766.                         "name": "anyType",
  5767.                         "in": "path",
  5768.                         "required": true,
  5769.                         "type": "string"
  5770.                     },
  5771.                     {
  5772.                         "name": "key",
  5773.                         "in": "path",
  5774.                         "required": true,
  5775.                         "type": "string"
  5776.                     }
  5777.                 ],
  5778.                 "responses": {
  5779.                     "default": {
  5780.                         "description": "successful operation"
  5781.                     }
  5782.                 }
  5783.             }
  5784.         },
  5785.         "/workflows/{anyType}": {
  5786.             "get": {
  5787.                 "operationId": "list",
  5788.                 "produces": [
  5789.                     "application/json",
  5790.                     "application/xml"
  5791.                 ],
  5792.                 "parameters": [
  5793.                     {
  5794.                         "name": "anyType",
  5795.                         "in": "path",
  5796.                         "required": true,
  5797.                         "type": "string"
  5798.                     }
  5799.                 ],
  5800.                 "responses": {
  5801.                     "200": {
  5802.                         "description": "successful operation",
  5803.                         "schema": {
  5804.                             "type": "array",
  5805.                             "items": {
  5806.                                 "$ref": "#/definitions/WorkflowDefinitionTO"
  5807.                             }
  5808.                         },
  5809.                         "headers": { }
  5810.                     }
  5811.                 }
  5812.             }
  5813.         }
  5814.     },
  5815.     "definitions": {
  5816.         "AbstractBaseBean": {
  5817.             "type": "object"
  5818.         },
  5819.         "AccessTokenTO": {
  5820.             "type": "object",
  5821.             "properties": {
  5822.                 "key": {
  5823.                     "type": "string"
  5824.                 },
  5825.                 "body": {
  5826.                     "type": "string"
  5827.                 },
  5828.                 "expiryTime": {
  5829.                     "type": "string",
  5830.                     "format": "date-time"
  5831.                 },
  5832.                 "owner": {
  5833.                     "type": "string"
  5834.                 }
  5835.             },
  5836.             "xml": {
  5837.                 "name": "accessToken"
  5838.             }
  5839.         },
  5840.         "PagedResult": {
  5841.             "type": "object",
  5842.             "properties": {
  5843.                 "prev": {
  5844.                     "type": "string",
  5845.                     "format": "uri"
  5846.                 },
  5847.                 "next": {
  5848.                     "type": "string",
  5849.                     "format": "uri"
  5850.                 },
  5851.                 "page": {
  5852.                     "type": "integer",
  5853.                     "format": "int32"
  5854.                 },
  5855.                 "size": {
  5856.                     "type": "integer",
  5857.                     "format": "int32"
  5858.                 },
  5859.                 "totalCount": {
  5860.                     "type": "integer",
  5861.                     "format": "int32"
  5862.                 },
  5863.                 "result": {
  5864.                     "type": "array",
  5865.                     "xml": {
  5866.                         "wrapped": true
  5867.                     },
  5868.                     "readOnly": true,
  5869.                     "items": {
  5870.                         "xml": {
  5871.                             "name": "item"
  5872.                         },
  5873.                         "$ref": "#/definitions/AbstractBaseBean"
  5874.                     }
  5875.                 }
  5876.             },
  5877.             "xml": {
  5878.                 "name": "pagedResult"
  5879.             }
  5880.         },
  5881.         "PagedResultAccessTokenTO": {
  5882.             "type": "object",
  5883.             "properties": {
  5884.                 "prev": {
  5885.                     "type": "string",
  5886.                     "format": "uri"
  5887.                 },
  5888.                 "next": {
  5889.                     "type": "string",
  5890.                     "format": "uri"
  5891.                 },
  5892.                 "page": {
  5893.                     "type": "integer",
  5894.                     "format": "int32"
  5895.                 },
  5896.                 "size": {
  5897.                     "type": "integer",
  5898.                     "format": "int32"
  5899.                 },
  5900.                 "totalCount": {
  5901.                     "type": "integer",
  5902.                     "format": "int32"
  5903.                 },
  5904.                 "result": {
  5905.                     "type": "array",
  5906.                     "xml": {
  5907.                         "wrapped": true
  5908.                     },
  5909.                     "readOnly": true,
  5910.                     "items": {
  5911.                         "xml": {
  5912.                             "name": "item"
  5913.                         },
  5914.                         "$ref": "#/definitions/AccessTokenTO"
  5915.                     }
  5916.                 }
  5917.             },
  5918.             "xml": {
  5919.                 "name": "pagedResult"
  5920.             }
  5921.         },
  5922.         "AssociationPatch": {
  5923.             "type": "object",
  5924.             "properties": {
  5925.                 "operation": {
  5926.                     "type": "string",
  5927.                     "enum": [
  5928.                         "ADD_REPLACE",
  5929.                         "DELETE"
  5930.                     ]
  5931.                 },
  5932.                 "value": {
  5933.                     "type": "string"
  5934.                 },
  5935.                 "onSyncope": {
  5936.                     "type": "boolean"
  5937.                 },
  5938.                 "key": {
  5939.                     "type": "string"
  5940.                 },
  5941.                 "action": {
  5942.                     "type": "string",
  5943.                     "enum": [
  5944.                         "LINK",
  5945.                         "PROVISION",
  5946.                         "ASSIGN"
  5947.                     ]
  5948.                 },
  5949.                 "resources": {
  5950.                     "type": "array",
  5951.                     "xml": {
  5952.                         "wrapped": true
  5953.                     },
  5954.                     "readOnly": true,
  5955.                     "items": {
  5956.                         "type": "string",
  5957.                         "xml": {
  5958.                             "name": "resource"
  5959.                         }
  5960.                     }
  5961.                 }
  5962.             },
  5963.             "xml": {
  5964.                 "name": "associationPatch"
  5965.             }
  5966.         },
  5967.         "BulkAction": {
  5968.             "type": "object",
  5969.             "properties": {
  5970.                 "type": {
  5971.                     "type": "string",
  5972.                     "enum": [
  5973.                         "MUSTCHANGEPASSWORD",
  5974.                         "DELETE",
  5975.                         "REACTIVATE",
  5976.                         "SUSPEND",
  5977.                         "DRYRUN",
  5978.                         "EXECUTE"
  5979.                     ]
  5980.                 },
  5981.                 "targets": {
  5982.                     "type": "array",
  5983.                     "xml": {
  5984.                         "wrapped": true
  5985.                     },
  5986.                     "readOnly": true,
  5987.                     "items": {
  5988.                         "type": "string",
  5989.                         "xml": {
  5990.                             "name": "target"
  5991.                         }
  5992.                     }
  5993.                 }
  5994.             },
  5995.             "xml": {
  5996.                 "name": "bulkAction"
  5997.             }
  5998.         },
  5999.         "DeassociationPatch": {
  6000.             "type": "object",
  6001.             "properties": {
  6002.                 "key": {
  6003.                     "type": "string"
  6004.                 },
  6005.                 "action": {
  6006.                     "type": "string",
  6007.                     "enum": [
  6008.                         "UNLINK",
  6009.                         "DEPROVISION",
  6010.                         "UNASSIGN"
  6011.                     ]
  6012.                 },
  6013.                 "resources": {
  6014.                     "type": "array",
  6015.                     "xml": {
  6016.                         "wrapped": true
  6017.                     },
  6018.                     "readOnly": true,
  6019.                     "items": {
  6020.                         "type": "string",
  6021.                         "xml": {
  6022.                             "name": "resource"
  6023.                         }
  6024.                     }
  6025.                 }
  6026.             },
  6027.             "xml": {
  6028.                 "name": "deassociationPatch"
  6029.             }
  6030.         },
  6031.         "AbstractSchemaTO": {
  6032.             "type": "object",
  6033.             "properties": {
  6034.                 "key": {
  6035.                     "type": "string"
  6036.                 },
  6037.                 "anyTypeClass": {
  6038.                     "type": "string"
  6039.                 }
  6040.             },
  6041.             "xml": {
  6042.                 "name": "abstractSchema"
  6043.             }
  6044.         },
  6045.         "AnyObjectPatch": {
  6046.             "type": "object",
  6047.             "properties": {
  6048.                 "key": {
  6049.                     "type": "string"
  6050.                 },
  6051.                 "realm": {
  6052.                     "$ref": "#/definitions/StringReplacePatchItem"
  6053.                 },
  6054.                 "name": {
  6055.                     "$ref": "#/definitions/StringReplacePatchItem"
  6056.                 },
  6057.                 "auxClasses": {
  6058.                     "type": "array",
  6059.                     "xml": {
  6060.                         "wrapped": true
  6061.                     },
  6062.                     "readOnly": true,
  6063.                     "uniqueItems": true,
  6064.                     "items": {
  6065.                         "xml": {
  6066.                             "name": "auxClass"
  6067.                         },
  6068.                         "$ref": "#/definitions/StringPatchItem"
  6069.                     }
  6070.                 },
  6071.                 "plainAttrs": {
  6072.                     "type": "array",
  6073.                     "xml": {
  6074.                         "wrapped": true
  6075.                     },
  6076.                     "readOnly": true,
  6077.                     "uniqueItems": true,
  6078.                     "items": {
  6079.                         "xml": {
  6080.                             "name": "attribute"
  6081.                         },
  6082.                         "$ref": "#/definitions/AttrPatch"
  6083.                     }
  6084.                 },
  6085.                 "virAttrs": {
  6086.                     "type": "array",
  6087.                     "xml": {
  6088.                         "wrapped": true
  6089.                     },
  6090.                     "readOnly": true,
  6091.                     "uniqueItems": true,
  6092.                     "items": {
  6093.                         "xml": {
  6094.                             "name": "attribute"
  6095.                         },
  6096.                         "$ref": "#/definitions/AttrTO"
  6097.                     }
  6098.                 },
  6099.                 "resources": {
  6100.                     "type": "array",
  6101.                     "xml": {
  6102.                         "wrapped": true
  6103.                     },
  6104.                     "readOnly": true,
  6105.                     "uniqueItems": true,
  6106.                     "items": {
  6107.                         "xml": {
  6108.                             "name": "resource"
  6109.                         },
  6110.                         "$ref": "#/definitions/StringPatchItem"
  6111.                     }
  6112.                 },
  6113.                 "relationships": {
  6114.                     "type": "array",
  6115.                     "xml": {
  6116.                         "wrapped": true
  6117.                     },
  6118.                     "readOnly": true,
  6119.                     "uniqueItems": true,
  6120.                     "items": {
  6121.                         "xml": {
  6122.                             "name": "relationship"
  6123.                         },
  6124.                         "$ref": "#/definitions/RelationshipPatch"
  6125.                     }
  6126.                 },
  6127.                 "memberships": {
  6128.                     "type": "array",
  6129.                     "xml": {
  6130.                         "wrapped": true
  6131.                     },
  6132.                     "readOnly": true,
  6133.                     "uniqueItems": true,
  6134.                     "items": {
  6135.                         "xml": {
  6136.                             "name": "membership"
  6137.                         },
  6138.                         "$ref": "#/definitions/MembershipPatch"
  6139.                     }
  6140.                 }
  6141.             },
  6142.             "xml": {
  6143.                 "name": "anyObjectPatch"
  6144.             }
  6145.         },
  6146.         "AttrPatch": {
  6147.             "type": "object",
  6148.             "properties": {
  6149.                 "operation": {
  6150.                     "type": "string",
  6151.                     "enum": [
  6152.                         "ADD_REPLACE",
  6153.                         "DELETE"
  6154.                     ]
  6155.                 },
  6156.                 "attrTO": {
  6157.                     "$ref": "#/definitions/AttrTO"
  6158.                 }
  6159.             },
  6160.             "xml": {
  6161.                 "name": "attrPatch"
  6162.             }
  6163.         },
  6164.         "AttrTO": {
  6165.             "type": "object",
  6166.             "properties": {
  6167.                 "schemaInfo": {
  6168.                     "$ref": "#/definitions/AbstractSchemaTO"
  6169.                 },
  6170.                 "schema": {
  6171.                     "type": "string"
  6172.                 },
  6173.                 "values": {
  6174.                     "type": "array",
  6175.                     "xml": {
  6176.                         "wrapped": true
  6177.                     },
  6178.                     "readOnly": true,
  6179.                     "items": {
  6180.                         "type": "string",
  6181.                         "xml": {
  6182.                             "name": "value"
  6183.                         }
  6184.                     }
  6185.                 }
  6186.             },
  6187.             "xml": {
  6188.                 "name": "attribute"
  6189.             }
  6190.         },
  6191.         "MembershipPatch": {
  6192.             "type": "object",
  6193.             "properties": {
  6194.                 "operation": {
  6195.                     "type": "string",
  6196.                     "enum": [
  6197.                         "ADD_REPLACE",
  6198.                         "DELETE"
  6199.                     ]
  6200.                 },
  6201.                 "group": {
  6202.                     "type": "string"
  6203.                 },
  6204.                 "plainAttrs": {
  6205.                     "type": "array",
  6206.                     "xml": {
  6207.                         "wrapped": true
  6208.                     },
  6209.                     "readOnly": true,
  6210.                     "uniqueItems": true,
  6211.                     "items": {
  6212.                         "xml": {
  6213.                             "name": "attribute"
  6214.                         },
  6215.                         "$ref": "#/definitions/AttrPatch"
  6216.                     }
  6217.                 },
  6218.                 "virAttrs": {
  6219.                     "type": "array",
  6220.                     "xml": {
  6221.                         "wrapped": true
  6222.                     },
  6223.                     "readOnly": true,
  6224.                     "uniqueItems": true,
  6225.                     "items": {
  6226.                         "xml": {
  6227.                             "name": "attribute"
  6228.                         },
  6229.                         "$ref": "#/definitions/AttrTO"
  6230.                     }
  6231.                 }
  6232.             },
  6233.             "xml": {
  6234.                 "name": "membershipPatch"
  6235.             }
  6236.         },
  6237.         "RelationshipPatch": {
  6238.             "type": "object",
  6239.             "properties": {
  6240.                 "operation": {
  6241.                     "type": "string",
  6242.                     "enum": [
  6243.                         "ADD_REPLACE",
  6244.                         "DELETE"
  6245.                     ]
  6246.                 },
  6247.                 "relationshipTO": {
  6248.                     "$ref": "#/definitions/RelationshipTO"
  6249.                 }
  6250.             },
  6251.             "xml": {
  6252.                 "name": "relationshipPatch"
  6253.             }
  6254.         },
  6255.         "RelationshipTO": {
  6256.             "type": "object",
  6257.             "properties": {
  6258.                 "type": {
  6259.                     "type": "string"
  6260.                 },
  6261.                 "rightType": {
  6262.                     "type": "string"
  6263.                 },
  6264.                 "rightKey": {
  6265.                     "type": "string"
  6266.                 }
  6267.             },
  6268.             "xml": {
  6269.                 "name": "relationship"
  6270.             }
  6271.         },
  6272.         "StringPatchItem": {
  6273.             "type": "object",
  6274.             "properties": {
  6275.                 "operation": {
  6276.                     "type": "string",
  6277.                     "enum": [
  6278.                         "ADD_REPLACE",
  6279.                         "DELETE"
  6280.                     ]
  6281.                 },
  6282.                 "value": {
  6283.                     "type": "string"
  6284.                 }
  6285.             },
  6286.             "xml": {
  6287.                 "name": "stringPatchItem"
  6288.             }
  6289.         },
  6290.         "StringReplacePatchItem": {
  6291.             "type": "object",
  6292.             "properties": {
  6293.                 "operation": {
  6294.                     "type": "string",
  6295.                     "enum": [
  6296.                         "ADD_REPLACE",
  6297.                         "DELETE"
  6298.                     ]
  6299.                 },
  6300.                 "value": {
  6301.                     "type": "string"
  6302.                 }
  6303.             },
  6304.             "xml": {
  6305.                 "name": "stringReplacePatchItem"
  6306.             }
  6307.         },
  6308.         "AnyObjectTO": {
  6309.             "type": "object",
  6310.             "properties": {
  6311.                 "creator": {
  6312.                     "type": "string"
  6313.                 },
  6314.                 "creationDate": {
  6315.                     "type": "string",
  6316.                     "format": "date-time"
  6317.                 },
  6318.                 "lastModifier": {
  6319.                     "type": "string"
  6320.                 },
  6321.                 "lastChangeDate": {
  6322.                     "type": "string",
  6323.                     "format": "date-time"
  6324.                 },
  6325.                 "key": {
  6326.                     "type": "string"
  6327.                 },
  6328.                 "type": {
  6329.                     "type": "string"
  6330.                 },
  6331.                 "realm": {
  6332.                     "type": "string"
  6333.                 },
  6334.                 "status": {
  6335.                     "type": "string"
  6336.                 },
  6337.                 "name": {
  6338.                     "type": "string"
  6339.                 },
  6340.                 "auxClasses": {
  6341.                     "type": "array",
  6342.                     "xml": {
  6343.                         "wrapped": true
  6344.                     },
  6345.                     "readOnly": true,
  6346.                     "items": {
  6347.                         "type": "string",
  6348.                         "xml": {
  6349.                             "name": "class"
  6350.                         }
  6351.                     }
  6352.                 },
  6353.                 "plainAttrs": {
  6354.                     "type": "array",
  6355.                     "xml": {
  6356.                         "wrapped": true
  6357.                     },
  6358.                     "readOnly": true,
  6359.                     "uniqueItems": true,
  6360.                     "items": {
  6361.                         "xml": {
  6362.                             "name": "attribute"
  6363.                         },
  6364.                         "$ref": "#/definitions/AttrTO"
  6365.                     }
  6366.                 },
  6367.                 "derAttrs": {
  6368.                     "type": "array",
  6369.                     "xml": {
  6370.                         "wrapped": true
  6371.                     },
  6372.                     "readOnly": true,
  6373.                     "uniqueItems": true,
  6374.                     "items": {
  6375.                         "xml": {
  6376.                             "name": "attribute"
  6377.                         },
  6378.                         "$ref": "#/definitions/AttrTO"
  6379.                     }
  6380.                 },
  6381.                 "virAttrs": {
  6382.                     "type": "array",
  6383.                     "xml": {
  6384.                         "wrapped": true
  6385.                     },
  6386.                     "readOnly": true,
  6387.                     "uniqueItems": true,
  6388.                     "items": {
  6389.                         "xml": {
  6390.                             "name": "attribute"
  6391.                         },
  6392.                         "$ref": "#/definitions/AttrTO"
  6393.                     }
  6394.                 },
  6395.                 "resources": {
  6396.                     "type": "array",
  6397.                     "xml": {
  6398.                         "wrapped": true
  6399.                     },
  6400.                     "readOnly": true,
  6401.                     "uniqueItems": true,
  6402.                     "items": {
  6403.                         "type": "string",
  6404.                         "xml": {
  6405.                             "name": "resource"
  6406.                         }
  6407.                     }
  6408.                 },
  6409.                 "relationships": {
  6410.                     "type": "array",
  6411.                     "xml": {
  6412.                         "wrapped": true
  6413.                     },
  6414.                     "readOnly": true,
  6415.                     "items": {
  6416.                         "xml": {
  6417.                             "name": "relationship"
  6418.                         },
  6419.                         "$ref": "#/definitions/RelationshipTO"
  6420.                     }
  6421.                 },
  6422.                 "memberships": {
  6423.                     "type": "array",
  6424.                     "xml": {
  6425.                         "wrapped": true
  6426.                     },
  6427.                     "readOnly": true,
  6428.                     "items": {
  6429.                         "xml": {
  6430.                             "name": "membership"
  6431.                         },
  6432.                         "$ref": "#/definitions/MembershipTO"
  6433.                     }
  6434.                 },
  6435.                 "dynGroups": {
  6436.                     "type": "array",
  6437.                     "xml": {
  6438.                         "wrapped": true
  6439.                     },
  6440.                     "readOnly": true,
  6441.                     "items": {
  6442.                         "type": "string",
  6443.                         "xml": {
  6444.                             "name": "role"
  6445.                         }
  6446.                     }
  6447.                 }
  6448.             },
  6449.             "xml": {
  6450.                 "name": "anyObject"
  6451.             }
  6452.         },
  6453.         "MembershipTO": {
  6454.             "type": "object",
  6455.             "properties": {
  6456.                 "type": {
  6457.                     "type": "string"
  6458.                 },
  6459.                 "rightType": {
  6460.                     "type": "string"
  6461.                 },
  6462.                 "rightKey": {
  6463.                     "type": "string"
  6464.                 },
  6465.                 "groupName": {
  6466.                     "type": "string"
  6467.                 },
  6468.                 "plainAttrs": {
  6469.                     "type": "array",
  6470.                     "xml": {
  6471.                         "wrapped": true
  6472.                     },
  6473.                     "readOnly": true,
  6474.                     "uniqueItems": true,
  6475.                     "items": {
  6476.                         "xml": {
  6477.                             "name": "attribute"
  6478.                         },
  6479.                         "$ref": "#/definitions/AttrTO"
  6480.                     }
  6481.                 },
  6482.                 "derAttrs": {
  6483.                     "type": "array",
  6484.                     "xml": {
  6485.                         "wrapped": true
  6486.                     },
  6487.                     "readOnly": true,
  6488.                     "uniqueItems": true,
  6489.                     "items": {
  6490.                         "xml": {
  6491.                             "name": "attribute"
  6492.                         },
  6493.                         "$ref": "#/definitions/AttrTO"
  6494.                     }
  6495.                 },
  6496.                 "virAttrs": {
  6497.                     "type": "array",
  6498.                     "xml": {
  6499.                         "wrapped": true
  6500.                     },
  6501.                     "readOnly": true,
  6502.                     "uniqueItems": true,
  6503.                     "items": {
  6504.                         "xml": {
  6505.                             "name": "attribute"
  6506.                         },
  6507.                         "$ref": "#/definitions/AttrTO"
  6508.                     }
  6509.                 }
  6510.             },
  6511.             "xml": {
  6512.                 "name": "membership"
  6513.             }
  6514.         },
  6515.         "AnyTO": {
  6516.             "type": "object",
  6517.             "properties": {
  6518.                 "creator": {
  6519.                     "type": "string"
  6520.                 },
  6521.                 "creationDate": {
  6522.                     "type": "string",
  6523.                     "format": "date-time"
  6524.                 },
  6525.                 "lastModifier": {
  6526.                     "type": "string"
  6527.                 },
  6528.                 "lastChangeDate": {
  6529.                     "type": "string",
  6530.                     "format": "date-time"
  6531.                 },
  6532.                 "key": {
  6533.                     "type": "string"
  6534.                 },
  6535.                 "type": {
  6536.                     "type": "string"
  6537.                 },
  6538.                 "realm": {
  6539.                     "type": "string"
  6540.                 },
  6541.                 "status": {
  6542.                     "type": "string"
  6543.                 },
  6544.                 "auxClasses": {
  6545.                     "type": "array",
  6546.                     "xml": {
  6547.                         "wrapped": true
  6548.                     },
  6549.                     "readOnly": true,
  6550.                     "items": {
  6551.                         "type": "string",
  6552.                         "xml": {
  6553.                             "name": "class"
  6554.                         }
  6555.                     }
  6556.                 },
  6557.                 "plainAttrs": {
  6558.                     "type": "array",
  6559.                     "xml": {
  6560.                         "wrapped": true
  6561.                     },
  6562.                     "readOnly": true,
  6563.                     "uniqueItems": true,
  6564.                     "items": {
  6565.                         "xml": {
  6566.                             "name": "attribute"
  6567.                         },
  6568.                         "$ref": "#/definitions/AttrTO"
  6569.                     }
  6570.                 },
  6571.                 "derAttrs": {
  6572.                     "type": "array",
  6573.                     "xml": {
  6574.                         "wrapped": true
  6575.                     },
  6576.                     "readOnly": true,
  6577.                     "uniqueItems": true,
  6578.                     "items": {
  6579.                         "xml": {
  6580.                             "name": "attribute"
  6581.                         },
  6582.                         "$ref": "#/definitions/AttrTO"
  6583.                     }
  6584.                 },
  6585.                 "virAttrs": {
  6586.                     "type": "array",
  6587.                     "xml": {
  6588.                         "wrapped": true
  6589.                     },
  6590.                     "readOnly": true,
  6591.                     "uniqueItems": true,
  6592.                     "items": {
  6593.                         "xml": {
  6594.                             "name": "attribute"
  6595.                         },
  6596.                         "$ref": "#/definitions/AttrTO"
  6597.                     }
  6598.                 },
  6599.                 "resources": {
  6600.                     "type": "array",
  6601.                     "xml": {
  6602.                         "wrapped": true
  6603.                     },
  6604.                     "readOnly": true,
  6605.                     "uniqueItems": true,
  6606.                     "items": {
  6607.                         "type": "string",
  6608.                         "xml": {
  6609.                             "name": "resource"
  6610.                         }
  6611.                     }
  6612.                 }
  6613.             }
  6614.         },
  6615.         "PagedResultAnyTO": {
  6616.             "type": "object",
  6617.             "properties": {
  6618.                 "prev": {
  6619.                     "type": "string",
  6620.                     "format": "uri"
  6621.                 },
  6622.                 "next": {
  6623.                     "type": "string",
  6624.                     "format": "uri"
  6625.                 },
  6626.                 "page": {
  6627.                     "type": "integer",
  6628.                     "format": "int32"
  6629.                 },
  6630.                 "size": {
  6631.                     "type": "integer",
  6632.                     "format": "int32"
  6633.                 },
  6634.                 "totalCount": {
  6635.                     "type": "integer",
  6636.                     "format": "int32"
  6637.                 },
  6638.                 "result": {
  6639.                     "type": "array",
  6640.                     "xml": {
  6641.                         "wrapped": true
  6642.                     },
  6643.                     "readOnly": true,
  6644.                     "items": {
  6645.                         "xml": {
  6646.                             "name": "item"
  6647.                         },
  6648.                         "$ref": "#/definitions/AnyTO"
  6649.                     }
  6650.                 }
  6651.             },
  6652.             "xml": {
  6653.                 "name": "pagedResult"
  6654.             }
  6655.         },
  6656.         "AnyTypeClassTO": {
  6657.             "type": "object",
  6658.             "properties": {
  6659.                 "key": {
  6660.                     "type": "string"
  6661.                 },
  6662.                 "plainSchemas": {
  6663.                     "type": "array",
  6664.                     "xml": {
  6665.                         "wrapped": true
  6666.                     },
  6667.                     "readOnly": true,
  6668.                     "items": {
  6669.                         "type": "string",
  6670.                         "xml": {
  6671.                             "name": "schema"
  6672.                         }
  6673.                     }
  6674.                 },
  6675.                 "derSchemas": {
  6676.                     "type": "array",
  6677.                     "xml": {
  6678.                         "wrapped": true
  6679.                     },
  6680.                     "readOnly": true,
  6681.                     "items": {
  6682.                         "type": "string",
  6683.                         "xml": {
  6684.                             "name": "schema"
  6685.                         }
  6686.                     }
  6687.                 },
  6688.                 "virSchemas": {
  6689.                     "type": "array",
  6690.                     "xml": {
  6691.                         "wrapped": true
  6692.                     },
  6693.                     "readOnly": true,
  6694.                     "items": {
  6695.                         "type": "string",
  6696.                         "xml": {
  6697.                             "name": "schema"
  6698.                         }
  6699.                     }
  6700.                 },
  6701.                 "inUseByTypes": {
  6702.                     "type": "array",
  6703.                     "xml": {
  6704.                         "wrapped": true
  6705.                     },
  6706.                     "readOnly": true,
  6707.                     "items": {
  6708.                         "type": "string",
  6709.                         "xml": {
  6710.                             "name": "anyTypeClass"
  6711.                         }
  6712.                     }
  6713.                 }
  6714.             },
  6715.             "xml": {
  6716.                 "name": "anyTypeClass"
  6717.             }
  6718.         },
  6719.         "AnyTypeTO": {
  6720.             "type": "object",
  6721.             "properties": {
  6722.                 "key": {
  6723.                     "type": "string"
  6724.                 },
  6725.                 "kind": {
  6726.                     "type": "string",
  6727.                     "enum": [
  6728.                         "USER",
  6729.                         "GROUP",
  6730.                         "ANY_OBJECT"
  6731.                     ]
  6732.                 },
  6733.                 "classes": {
  6734.                     "type": "array",
  6735.                     "xml": {
  6736.                         "wrapped": true
  6737.                     },
  6738.                     "readOnly": true,
  6739.                     "items": {
  6740.                         "type": "string",
  6741.                         "xml": {
  6742.                             "name": "class"
  6743.                         }
  6744.                     }
  6745.                 }
  6746.             },
  6747.             "xml": {
  6748.                 "name": "anyType"
  6749.             }
  6750.         },
  6751.         "CamelMetrics": {
  6752.             "type": "object",
  6753.             "properties": {
  6754.                 "responseMeanRates": {
  6755.                     "type": "array",
  6756.                     "xml": {
  6757.                         "wrapped": true
  6758.                     },
  6759.                     "readOnly": true,
  6760.                     "items": {
  6761.                         "xml": {
  6762.                             "name": "meanRate"
  6763.                         },
  6764.                         "$ref": "#/definitions/MeanRate"
  6765.                     }
  6766.                 }
  6767.             },
  6768.             "xml": {
  6769.                 "name": "camelMetrics"
  6770.             }
  6771.         },
  6772.         "MeanRate": {
  6773.             "type": "object",
  6774.             "properties": {
  6775.                 "routeId": {
  6776.                     "type": "string"
  6777.                 },
  6778.                 "value": {
  6779.                     "type": "number",
  6780.                     "format": "double"
  6781.                 }
  6782.             },
  6783.             "xml": {
  6784.                 "name": "meanRate"
  6785.             }
  6786.         },
  6787.         "CamelRouteTO": {
  6788.             "type": "object",
  6789.             "properties": {
  6790.                 "key": {
  6791.                     "type": "string"
  6792.                 },
  6793.                 "anyTypeKind": {
  6794.                     "type": "string",
  6795.                     "enum": [
  6796.                         "USER",
  6797.                         "GROUP",
  6798.                         "ANY_OBJECT"
  6799.                     ]
  6800.                 },
  6801.                 "content": {
  6802.                     "type": "string"
  6803.                 }
  6804.             },
  6805.             "xml": {
  6806.                 "name": "camelRoute"
  6807.             }
  6808.         },
  6809.         "ConnBundleTO": {
  6810.             "type": "object",
  6811.             "properties": {
  6812.                 "displayName": {
  6813.                     "type": "string"
  6814.                 },
  6815.                 "location": {
  6816.                     "type": "string"
  6817.                 },
  6818.                 "bundleName": {
  6819.                     "type": "string"
  6820.                 },
  6821.                 "connectorName": {
  6822.                     "type": "string"
  6823.                 },
  6824.                 "version": {
  6825.                     "type": "string"
  6826.                 },
  6827.                 "properties": {
  6828.                     "type": "array",
  6829.                     "xml": {
  6830.                         "wrapped": true
  6831.                     },
  6832.                     "readOnly": true,
  6833.                     "items": {
  6834.                         "xml": {
  6835.                             "name": "connConfPropSchema"
  6836.                         },
  6837.                         "$ref": "#/definitions/ConnConfPropSchema"
  6838.                     }
  6839.                 }
  6840.             },
  6841.             "xml": {
  6842.                 "name": "connectorBundle"
  6843.             }
  6844.         },
  6845.         "ConnConfPropSchema": {
  6846.             "type": "object",
  6847.             "properties": {
  6848.                 "name": {
  6849.                     "type": "string"
  6850.                 },
  6851.                 "displayName": {
  6852.                     "type": "string"
  6853.                 },
  6854.                 "helpMessage": {
  6855.                     "type": "string"
  6856.                 },
  6857.                 "type": {
  6858.                     "type": "string"
  6859.                 },
  6860.                 "required": {
  6861.                     "type": "boolean"
  6862.                 },
  6863.                 "order": {
  6864.                     "type": "integer",
  6865.                     "format": "int32"
  6866.                 },
  6867.                 "confidential": {
  6868.                     "type": "boolean"
  6869.                 },
  6870.                 "defaultValues": {
  6871.                     "type": "array",
  6872.                     "xml": {
  6873.                         "wrapped": true
  6874.                     },
  6875.                     "readOnly": true,
  6876.                     "items": {
  6877.                         "type": "object",
  6878.                         "xml": {
  6879.                             "name": "defaultValue"
  6880.                         }
  6881.                     }
  6882.                 }
  6883.             }
  6884.         },
  6885.         "ConnIdObjectClassTO": {
  6886.             "type": "object",
  6887.             "properties": {
  6888.                 "type": {
  6889.                     "type": "string"
  6890.                 },
  6891.                 "container": {
  6892.                     "type": "boolean"
  6893.                 },
  6894.                 "auxiliary": {
  6895.                     "type": "boolean"
  6896.                 },
  6897.                 "attributes": {
  6898.                     "type": "array",
  6899.                     "xml": {
  6900.                         "wrapped": true
  6901.                     },
  6902.                     "readOnly": true,
  6903.                     "items": {
  6904.                         "type": "string",
  6905.                         "xml": {
  6906.                             "name": "attribute"
  6907.                         }
  6908.                     }
  6909.                 }
  6910.             },
  6911.             "xml": {
  6912.                 "name": "connIdObjectClass"
  6913.             }
  6914.         },
  6915.         "ConnConfProperty": {
  6916.             "type": "object",
  6917.             "properties": {
  6918.                 "schema": {
  6919.                     "$ref": "#/definitions/ConnConfPropSchema"
  6920.                 },
  6921.                 "overridable": {
  6922.                     "type": "boolean"
  6923.                 },
  6924.                 "values": {
  6925.                     "type": "array",
  6926.                     "xml": {
  6927.                         "wrapped": true
  6928.                     },
  6929.                     "readOnly": true,
  6930.                     "items": {
  6931.                         "type": "object",
  6932.                         "xml": {
  6933.                             "name": "value"
  6934.                         }
  6935.                     }
  6936.                 }
  6937.             }
  6938.         },
  6939.         "ConnInstanceTO": {
  6940.             "type": "object",
  6941.             "properties": {
  6942.                 "key": {
  6943.                     "type": "string"
  6944.                 },
  6945.                 "location": {
  6946.                     "type": "string"
  6947.                 },
  6948.                 "connectorName": {
  6949.                     "type": "string"
  6950.                 },
  6951.                 "bundleName": {
  6952.                     "type": "string"
  6953.                 },
  6954.                 "version": {
  6955.                     "type": "string"
  6956.                 },
  6957.                 "displayName": {
  6958.                     "type": "string"
  6959.                 },
  6960.                 "connRequestTimeout": {
  6961.                     "type": "integer",
  6962.                     "format": "int32"
  6963.                 },
  6964.                 "poolConf": {
  6965.                     "$ref": "#/definitions/ConnPoolConfTO"
  6966.                 },
  6967.                 "conf": {
  6968.                     "type": "array",
  6969.                     "xml": {
  6970.                         "wrapped": true
  6971.                     },
  6972.                     "readOnly": true,
  6973.                     "uniqueItems": true,
  6974.                     "items": {
  6975.                         "xml": {
  6976.                             "name": "property"
  6977.                         },
  6978.                         "$ref": "#/definitions/ConnConfProperty"
  6979.                     }
  6980.                 },
  6981.                 "capabilities": {
  6982.                     "type": "array",
  6983.                     "xml": {
  6984.                         "wrapped": true
  6985.                     },
  6986.                     "readOnly": true,
  6987.                     "uniqueItems": true,
  6988.                     "items": {
  6989.                         "type": "string",
  6990.                         "xml": {
  6991.                             "name": "capability"
  6992.                         },
  6993.                         "enum": [
  6994.                             "AUTHENTICATE",
  6995.                             "CREATE",
  6996.                             "UPDATE",
  6997.                             "DELETE",
  6998.                             "SEARCH",
  6999.                             "SYNC"
  7000.                         ]
  7001.                     }
  7002.                 }
  7003.             },
  7004.             "xml": {
  7005.                 "name": "connInstance"
  7006.             }
  7007.         },
  7008.         "ConnPoolConfTO": {
  7009.             "type": "object",
  7010.             "properties": {
  7011.                 "maxObjects": {
  7012.                     "type": "integer",
  7013.                     "format": "int32"
  7014.                 },
  7015.                 "minIdle": {
  7016.                     "type": "integer",
  7017.                     "format": "int32"
  7018.                 },
  7019.                 "maxIdle": {
  7020.                     "type": "integer",
  7021.                     "format": "int32"
  7022.                 },
  7023.                 "maxWait": {
  7024.                     "type": "integer",
  7025.                     "format": "int64"
  7026.                 },
  7027.                 "minEvictableIdleTimeMillis": {
  7028.                     "type": "integer",
  7029.                     "format": "int64"
  7030.                 }
  7031.             },
  7032.             "xml": {
  7033.                 "name": "connPoolConf"
  7034.             }
  7035.         },
  7036.         "DomainTO": {
  7037.             "type": "object",
  7038.             "properties": {
  7039.                 "key": {
  7040.                     "type": "string"
  7041.                 },
  7042.                 "adminPwd": {
  7043.                     "type": "string"
  7044.                 },
  7045.                 "adminCipherAlgorithm": {
  7046.                     "type": "string",
  7047.                     "enum": [
  7048.                         "SHA",
  7049.                         "SHA1",
  7050.                         "SHA256",
  7051.                         "SHA512",
  7052.                         "AES",
  7053.                         "SMD5",
  7054.                         "SSHA",
  7055.                         "SSHA1",
  7056.                         "SSHA256",
  7057.                         "SSHA512",
  7058.                         "BCRYPT"
  7059.                     ]
  7060.                 }
  7061.             },
  7062.             "xml": {
  7063.                 "name": "domain"
  7064.             }
  7065.         },
  7066.         "GroupTO": {
  7067.             "type": "object",
  7068.             "properties": {
  7069.                 "creator": {
  7070.                     "type": "string"
  7071.                 },
  7072.                 "creationDate": {
  7073.                     "type": "string",
  7074.                     "format": "date-time"
  7075.                 },
  7076.                 "lastModifier": {
  7077.                     "type": "string"
  7078.                 },
  7079.                 "lastChangeDate": {
  7080.                     "type": "string",
  7081.                     "format": "date-time"
  7082.                 },
  7083.                 "key": {
  7084.                     "type": "string"
  7085.                 },
  7086.                 "type": {
  7087.                     "type": "string"
  7088.                 },
  7089.                 "realm": {
  7090.                     "type": "string"
  7091.                 },
  7092.                 "status": {
  7093.                     "type": "string"
  7094.                 },
  7095.                 "name": {
  7096.                     "type": "string"
  7097.                 },
  7098.                 "userOwner": {
  7099.                     "type": "string"
  7100.                 },
  7101.                 "groupOwner": {
  7102.                     "type": "string"
  7103.                 },
  7104.                 "udynMembershipCond": {
  7105.                     "type": "string"
  7106.                 },
  7107.                 "adynMembershipConds": {
  7108.                     "type": "object",
  7109.                     "readOnly": true,
  7110.                     "additionalProperties": {
  7111.                         "type": "string"
  7112.                     }
  7113.                 },
  7114.                 "auxClasses": {
  7115.                     "type": "array",
  7116.                     "xml": {
  7117.                         "wrapped": true
  7118.                     },
  7119.                     "readOnly": true,
  7120.                     "items": {
  7121.                         "type": "string",
  7122.                         "xml": {
  7123.                             "name": "class"
  7124.                         }
  7125.                     }
  7126.                 },
  7127.                 "plainAttrs": {
  7128.                     "type": "array",
  7129.                     "xml": {
  7130.                         "wrapped": true
  7131.                     },
  7132.                     "readOnly": true,
  7133.                     "uniqueItems": true,
  7134.                     "items": {
  7135.                         "xml": {
  7136.                             "name": "attribute"
  7137.                         },
  7138.                         "$ref": "#/definitions/AttrTO"
  7139.                     }
  7140.                 },
  7141.                 "derAttrs": {
  7142.                     "type": "array",
  7143.                     "xml": {
  7144.                         "wrapped": true
  7145.                     },
  7146.                     "readOnly": true,
  7147.                     "uniqueItems": true,
  7148.                     "items": {
  7149.                         "xml": {
  7150.                             "name": "attribute"
  7151.                         },
  7152.                         "$ref": "#/definitions/AttrTO"
  7153.                     }
  7154.                 },
  7155.                 "virAttrs": {
  7156.                     "type": "array",
  7157.                     "xml": {
  7158.                         "wrapped": true
  7159.                     },
  7160.                     "readOnly": true,
  7161.                     "uniqueItems": true,
  7162.                     "items": {
  7163.                         "xml": {
  7164.                             "name": "attribute"
  7165.                         },
  7166.                         "$ref": "#/definitions/AttrTO"
  7167.                     }
  7168.                 },
  7169.                 "resources": {
  7170.                     "type": "array",
  7171.                     "xml": {
  7172.                         "wrapped": true
  7173.                     },
  7174.                     "readOnly": true,
  7175.                     "uniqueItems": true,
  7176.                     "items": {
  7177.                         "type": "string",
  7178.                         "xml": {
  7179.                             "name": "resource"
  7180.                         }
  7181.                     }
  7182.                 },
  7183.                 "typeExtensions": {
  7184.                     "type": "array",
  7185.                     "xml": {
  7186.                         "wrapped": true
  7187.                     },
  7188.                     "readOnly": true,
  7189.                     "items": {
  7190.                         "xml": {
  7191.                             "name": "typeExtension"
  7192.                         },
  7193.                         "$ref": "#/definitions/TypeExtensionTO"
  7194.                     }
  7195.                 }
  7196.             },
  7197.             "xml": {
  7198.                 "name": "group"
  7199.             }
  7200.         },
  7201.         "TypeExtensionTO": {
  7202.             "type": "object",
  7203.             "properties": {
  7204.                 "anyType": {
  7205.                     "type": "string"
  7206.                 },
  7207.                 "auxClasses": {
  7208.                     "type": "array",
  7209.                     "xml": {
  7210.                         "wrapped": true
  7211.                     },
  7212.                     "readOnly": true,
  7213.                     "items": {
  7214.                         "type": "string",
  7215.                         "xml": {
  7216.                             "name": "class"
  7217.                         }
  7218.                     }
  7219.                 }
  7220.             },
  7221.             "xml": {
  7222.                 "name": "typeExtension"
  7223.             }
  7224.         },
  7225.         "ExecTO": {
  7226.             "type": "object",
  7227.             "properties": {
  7228.                 "start": {
  7229.                     "type": "string",
  7230.                     "format": "date-time"
  7231.                 },
  7232.                 "end": {
  7233.                     "type": "string",
  7234.                     "format": "date-time"
  7235.                 },
  7236.                 "key": {
  7237.                     "type": "string"
  7238.                 },
  7239.                 "jobType": {
  7240.                     "type": "string",
  7241.                     "enum": [
  7242.                         "NOTIFICATION",
  7243.                         "REPORT",
  7244.                         "TASK"
  7245.                     ]
  7246.                 },
  7247.                 "refKey": {
  7248.                     "type": "string"
  7249.                 },
  7250.                 "refDesc": {
  7251.                     "type": "string"
  7252.                 },
  7253.                 "status": {
  7254.                     "type": "string"
  7255.                 },
  7256.                 "message": {
  7257.                     "type": "string"
  7258.                 }
  7259.             },
  7260.             "xml": {
  7261.                 "name": "exec"
  7262.             }
  7263.         },
  7264.         "GroupPatch": {
  7265.             "type": "object",
  7266.             "properties": {
  7267.                 "key": {
  7268.                     "type": "string"
  7269.                 },
  7270.                 "realm": {
  7271.                     "$ref": "#/definitions/StringReplacePatchItem"
  7272.                 },
  7273.                 "name": {
  7274.                     "$ref": "#/definitions/StringReplacePatchItem"
  7275.                 },
  7276.                 "userOwner": {
  7277.                     "$ref": "#/definitions/StringReplacePatchItem"
  7278.                 },
  7279.                 "groupOwner": {
  7280.                     "$ref": "#/definitions/StringReplacePatchItem"
  7281.                 },
  7282.                 "udynMembershipCond": {
  7283.                     "type": "string"
  7284.                 },
  7285.                 "adynMembershipConds": {
  7286.                     "type": "object",
  7287.                     "readOnly": true,
  7288.                     "additionalProperties": {
  7289.                         "type": "string"
  7290.                     }
  7291.                 },
  7292.                 "auxClasses": {
  7293.                     "type": "array",
  7294.                     "xml": {
  7295.                         "wrapped": true
  7296.                     },
  7297.                     "readOnly": true,
  7298.                     "uniqueItems": true,
  7299.                     "items": {
  7300.                         "xml": {
  7301.                             "name": "auxClass"
  7302.                         },
  7303.                         "$ref": "#/definitions/StringPatchItem"
  7304.                     }
  7305.                 },
  7306.                 "plainAttrs": {
  7307.                     "type": "array",
  7308.                     "xml": {
  7309.                         "wrapped": true
  7310.                     },
  7311.                     "readOnly": true,
  7312.                     "uniqueItems": true,
  7313.                     "items": {
  7314.                         "xml": {
  7315.                             "name": "attribute"
  7316.                         },
  7317.                         "$ref": "#/definitions/AttrPatch"
  7318.                     }
  7319.                 },
  7320.                 "virAttrs": {
  7321.                     "type": "array",
  7322.                     "xml": {
  7323.                         "wrapped": true
  7324.                     },
  7325.                     "readOnly": true,
  7326.                     "uniqueItems": true,
  7327.                     "items": {
  7328.                         "xml": {
  7329.                             "name": "attribute"
  7330.                         },
  7331.                         "$ref": "#/definitions/AttrTO"
  7332.                     }
  7333.                 },
  7334.                 "resources": {
  7335.                     "type": "array",
  7336.                     "xml": {
  7337.                         "wrapped": true
  7338.                     },
  7339.                     "readOnly": true,
  7340.                     "uniqueItems": true,
  7341.                     "items": {
  7342.                         "xml": {
  7343.                             "name": "resource"
  7344.                         },
  7345.                         "$ref": "#/definitions/StringPatchItem"
  7346.                     }
  7347.                 },
  7348.                 "typeExtensions": {
  7349.                     "type": "array",
  7350.                     "xml": {
  7351.                         "wrapped": true
  7352.                     },
  7353.                     "readOnly": true,
  7354.                     "items": {
  7355.                         "xml": {
  7356.                             "name": "typeExtension"
  7357.                         },
  7358.                         "$ref": "#/definitions/TypeExtensionTO"
  7359.                     }
  7360.                 }
  7361.             },
  7362.             "xml": {
  7363.                 "name": "groupPatch"
  7364.             }
  7365.         },
  7366.         "LogAppender": {
  7367.             "type": "object",
  7368.             "properties": {
  7369.                 "name": {
  7370.                     "type": "string"
  7371.                 }
  7372.             }
  7373.         },
  7374.         "LogStatementTO": {
  7375.             "type": "object",
  7376.             "properties": {
  7377.                 "level": {
  7378.                     "type": "string",
  7379.                     "enum": [
  7380.                         "OFF",
  7381.                         "FATAL",
  7382.                         "ERROR",
  7383.                         "WARN",
  7384.                         "INFO",
  7385.                         "DEBUG",
  7386.                         "TRACE",
  7387.                         "ALL"
  7388.                     ]
  7389.                 },
  7390.                 "loggerName": {
  7391.                     "type": "string"
  7392.                 },
  7393.                 "message": {
  7394.                     "type": "string"
  7395.                 },
  7396.                 "stackTrace": {
  7397.                     "type": "string"
  7398.                 },
  7399.                 "timeMillis": {
  7400.                     "type": "integer",
  7401.                     "format": "int64"
  7402.                 },
  7403.                 "threadId": {
  7404.                     "type": "integer",
  7405.                     "format": "int64"
  7406.                 },
  7407.                 "threadName": {
  7408.                     "type": "string"
  7409.                 },
  7410.                 "threadPriority": {
  7411.                     "type": "integer",
  7412.                     "format": "int32"
  7413.                 }
  7414.             },
  7415.             "xml": {
  7416.                 "name": "logStatement"
  7417.             }
  7418.         },
  7419.         "LoggerTO": {
  7420.             "type": "object",
  7421.             "properties": {
  7422.                 "key": {
  7423.                     "type": "string"
  7424.                 },
  7425.                 "level": {
  7426.                     "type": "string",
  7427.                     "enum": [
  7428.                         "OFF",
  7429.                         "FATAL",
  7430.                         "ERROR",
  7431.                         "WARN",
  7432.                         "INFO",
  7433.                         "DEBUG",
  7434.                         "TRACE",
  7435.                         "ALL"
  7436.                     ]
  7437.                 }
  7438.             },
  7439.             "xml": {
  7440.                 "name": "logger"
  7441.             }
  7442.         },
  7443.         "EventCategoryTO": {
  7444.             "type": "object",
  7445.             "properties": {
  7446.                 "type": {
  7447.                     "type": "string",
  7448.                     "enum": [
  7449.                         "LOGIC",
  7450.                         "TASK",
  7451.                         "PROPAGATION",
  7452.                         "PULL",
  7453.                         "PUSH",
  7454.                         "CUSTOM"
  7455.                     ]
  7456.                 },
  7457.                 "category": {
  7458.                     "type": "string"
  7459.                 },
  7460.                 "subcategory": {
  7461.                     "type": "string"
  7462.                 },
  7463.                 "events": {
  7464.                     "type": "array",
  7465.                     "xml": {
  7466.                         "wrapped": true
  7467.                     },
  7468.                     "readOnly": true,
  7469.                     "items": {
  7470.                         "type": "string",
  7471.                         "xml": {
  7472.                             "name": "event"
  7473.                         }
  7474.                     }
  7475.                 }
  7476.             },
  7477.             "xml": {
  7478.                 "name": "eventCategory"
  7479.             }
  7480.         },
  7481.         "InputStream": {
  7482.             "type": "object"
  7483.         },
  7484.         "MailTemplateTO": {
  7485.             "type": "object",
  7486.             "properties": {
  7487.                 "key": {
  7488.                     "type": "string"
  7489.                 }
  7490.             },
  7491.             "xml": {
  7492.                 "name": "mailTemplate"
  7493.             }
  7494.         },
  7495.         "JobTO": {
  7496.             "type": "object",
  7497.             "properties": {
  7498.                 "type": {
  7499.                     "type": "string",
  7500.                     "enum": [
  7501.                         "NOTIFICATION",
  7502.                         "REPORT",
  7503.                         "TASK"
  7504.                     ]
  7505.                 },
  7506.                 "refKey": {
  7507.                     "type": "string"
  7508.                 },
  7509.                 "refDesc": {
  7510.                     "type": "string"
  7511.                 },
  7512.                 "running": {
  7513.                     "type": "boolean"
  7514.                 },
  7515.                 "scheduled": {
  7516.                     "type": "boolean"
  7517.                 },
  7518.                 "start": {
  7519.                     "type": "string",
  7520.                     "format": "date-time"
  7521.                 }
  7522.             },
  7523.             "xml": {
  7524.                 "name": "job"
  7525.             }
  7526.         },
  7527.         "NotificationTO": {
  7528.             "type": "object",
  7529.             "properties": {
  7530.                 "key": {
  7531.                     "type": "string"
  7532.                 },
  7533.                 "abouts": {
  7534.                     "type": "object",
  7535.                     "readOnly": true,
  7536.                     "additionalProperties": {
  7537.                         "type": "string"
  7538.                     }
  7539.                 },
  7540.                 "recipientsFIQL": {
  7541.                     "type": "string"
  7542.                 },
  7543.                 "recipientAttrName": {
  7544.                     "type": "string"
  7545.                 },
  7546.                 "selfAsRecipient": {
  7547.                     "type": "boolean"
  7548.                 },
  7549.                 "recipientsProviderClassName": {
  7550.                     "type": "string"
  7551.                 },
  7552.                 "sender": {
  7553.                     "type": "string"
  7554.                 },
  7555.                 "subject": {
  7556.                     "type": "string"
  7557.                 },
  7558.                 "template": {
  7559.                     "type": "string"
  7560.                 },
  7561.                 "traceLevel": {
  7562.                     "type": "string",
  7563.                     "enum": [
  7564.                         "NONE",
  7565.                         "FAILURES",
  7566.                         "SUMMARY",
  7567.                         "ALL"
  7568.                     ]
  7569.                 },
  7570.                 "active": {
  7571.                     "type": "boolean"
  7572.                 },
  7573.                 "events": {
  7574.                     "type": "array",
  7575.                     "xml": {
  7576.                         "wrapped": true
  7577.                     },
  7578.                     "readOnly": true,
  7579.                     "items": {
  7580.                         "type": "string",
  7581.                         "xml": {
  7582.                             "name": "event"
  7583.                         }
  7584.                     }
  7585.                 },
  7586.                 "staticRecipients": {
  7587.                     "type": "array",
  7588.                     "xml": {
  7589.                         "wrapped": true
  7590.                     },
  7591.                     "readOnly": true,
  7592.                     "items": {
  7593.                         "type": "string",
  7594.                         "xml": {
  7595.                             "name": "staticRecipient"
  7596.                         }
  7597.                     }
  7598.                 }
  7599.             },
  7600.             "xml": {
  7601.                 "name": "notification"
  7602.             }
  7603.         },
  7604.         "AbstractPolicyTO": {
  7605.             "type": "object",
  7606.             "properties": {
  7607.                 "key": {
  7608.                     "type": "string"
  7609.                 },
  7610.                 "description": {
  7611.                     "type": "string"
  7612.                 },
  7613.                 "usedByResources": {
  7614.                     "type": "array",
  7615.                     "xml": {
  7616.                         "wrapped": true
  7617.                     },
  7618.                     "readOnly": true,
  7619.                     "items": {
  7620.                         "type": "string",
  7621.                         "xml": {
  7622.                             "name": "resource"
  7623.                         }
  7624.                     }
  7625.                 },
  7626.                 "usedByRealms": {
  7627.                     "type": "array",
  7628.                     "xml": {
  7629.                         "wrapped": true
  7630.                     },
  7631.                     "readOnly": true,
  7632.                     "items": {
  7633.                         "type": "string",
  7634.                         "xml": {
  7635.                             "name": "group"
  7636.                         }
  7637.                     }
  7638.                 }
  7639.             },
  7640.             "xml": {
  7641.                 "name": "abstractPolicy"
  7642.             }
  7643.         },
  7644.         "RealmTO": {
  7645.             "type": "object",
  7646.             "properties": {
  7647.                 "key": {
  7648.                     "type": "string"
  7649.                 },
  7650.                 "name": {
  7651.                     "type": "string"
  7652.                 },
  7653.                 "parent": {
  7654.                     "type": "string"
  7655.                 },
  7656.                 "fullPath": {
  7657.                     "type": "string"
  7658.                 },
  7659.                 "accountPolicy": {
  7660.                     "type": "string"
  7661.                 },
  7662.                 "passwordPolicy": {
  7663.                     "type": "string"
  7664.                 },
  7665.                 "templates": {
  7666.                     "type": "object",
  7667.                     "readOnly": true,
  7668.                     "additionalProperties": {
  7669.                         "$ref": "#/definitions/AnyTO"
  7670.                     }
  7671.                 },
  7672.                 "actionsClassNames": {
  7673.                     "type": "array",
  7674.                     "xml": {
  7675.                         "wrapped": true
  7676.                     },
  7677.                     "readOnly": true,
  7678.                     "uniqueItems": true,
  7679.                     "items": {
  7680.                         "type": "string",
  7681.                         "xml": {
  7682.                             "name": "actionsClassName"
  7683.                         }
  7684.                     }
  7685.                 },
  7686.                 "resources": {
  7687.                     "type": "array",
  7688.                     "xml": {
  7689.                         "wrapped": true
  7690.                     },
  7691.                     "readOnly": true,
  7692.                     "uniqueItems": true,
  7693.                     "items": {
  7694.                         "type": "string",
  7695.                         "xml": {
  7696.                             "name": "resource"
  7697.                         }
  7698.                     }
  7699.                 }
  7700.             },
  7701.             "xml": {
  7702.                 "name": "realm"
  7703.             }
  7704.         },
  7705.         "RelationshipTypeTO": {
  7706.             "type": "object",
  7707.             "properties": {
  7708.                 "key": {
  7709.                     "type": "string"
  7710.                 },
  7711.                 "description": {
  7712.                     "type": "string"
  7713.                 }
  7714.             },
  7715.             "xml": {
  7716.                 "name": "relationshipType"
  7717.             }
  7718.         },
  7719.         "AbstractReportletConf": {
  7720.             "type": "object",
  7721.             "properties": {
  7722.                 "name": {
  7723.                     "type": "string"
  7724.                 }
  7725.             }
  7726.         },
  7727.         "ReportTO": {
  7728.             "type": "object",
  7729.             "properties": {
  7730.                 "start": {
  7731.                     "type": "string",
  7732.                     "format": "date-time"
  7733.                 },
  7734.                 "end": {
  7735.                     "type": "string",
  7736.                     "format": "date-time"
  7737.                 },
  7738.                 "key": {
  7739.                     "type": "string"
  7740.                 },
  7741.                 "name": {
  7742.                     "type": "string"
  7743.                 },
  7744.                 "cronExpression": {
  7745.                     "type": "string"
  7746.                 },
  7747.                 "latestExecStatus": {
  7748.                     "type": "string"
  7749.                 },
  7750.                 "lastExec": {
  7751.                     "type": "string",
  7752.                     "format": "date-time"
  7753.                 },
  7754.                 "nextExec": {
  7755.                     "type": "string",
  7756.                     "format": "date-time"
  7757.                 },
  7758.                 "active": {
  7759.                     "type": "boolean"
  7760.                 },
  7761.                 "template": {
  7762.                     "type": "string"
  7763.                 },
  7764.                 "reportletConfs": {
  7765.                     "type": "array",
  7766.                     "xml": {
  7767.                         "wrapped": true
  7768.                     },
  7769.                     "readOnly": true,
  7770.                     "items": {
  7771.                         "xml": {
  7772.                             "name": "reportletConf"
  7773.                         },
  7774.                         "$ref": "#/definitions/AbstractReportletConf"
  7775.                     }
  7776.                 },
  7777.                 "executions": {
  7778.                     "type": "array",
  7779.                     "xml": {
  7780.                         "wrapped": true
  7781.                     },
  7782.                     "readOnly": true,
  7783.                     "items": {
  7784.                         "xml": {
  7785.                             "name": "execution"
  7786.                         },
  7787.                         "$ref": "#/definitions/ExecTO"
  7788.                     }
  7789.                 }
  7790.             },
  7791.             "xml": {
  7792.                 "name": "report"
  7793.             }
  7794.         },
  7795.         "PagedResultExecTO": {
  7796.             "type": "object",
  7797.             "properties": {
  7798.                 "prev": {
  7799.                     "type": "string",
  7800.                     "format": "uri"
  7801.                 },
  7802.                 "next": {
  7803.                     "type": "string",
  7804.                     "format": "uri"
  7805.                 },
  7806.                 "page": {
  7807.                     "type": "integer",
  7808.                     "format": "int32"
  7809.                 },
  7810.                 "size": {
  7811.                     "type": "integer",
  7812.                     "format": "int32"
  7813.                 },
  7814.                 "totalCount": {
  7815.                     "type": "integer",
  7816.                     "format": "int32"
  7817.                 },
  7818.                 "result": {
  7819.                     "type": "array",
  7820.                     "xml": {
  7821.                         "wrapped": true
  7822.                     },
  7823.                     "readOnly": true,
  7824.                     "items": {
  7825.                         "xml": {
  7826.                             "name": "item"
  7827.                         },
  7828.                         "$ref": "#/definitions/ExecTO"
  7829.                     }
  7830.                 }
  7831.             },
  7832.             "xml": {
  7833.                 "name": "pagedResult"
  7834.             }
  7835.         },
  7836.         "BulkActionResult": {
  7837.             "type": "object",
  7838.             "properties": {
  7839.                 "results": {
  7840.                     "type": "object",
  7841.                     "readOnly": true,
  7842.                     "additionalProperties": {
  7843.                         "type": "string",
  7844.                         "enum": [
  7845.                             "SUCCESS",
  7846.                             "FAILURE",
  7847.                             "CREATED",
  7848.                             "NOT_ATTEMPTED"
  7849.                         ]
  7850.                     }
  7851.                 }
  7852.             },
  7853.             "xml": {
  7854.                 "name": "bulkActionResult"
  7855.             }
  7856.         },
  7857.         "ReportTemplateTO": {
  7858.             "type": "object",
  7859.             "properties": {
  7860.                 "key": {
  7861.                     "type": "string"
  7862.                 }
  7863.             },
  7864.             "xml": {
  7865.                 "name": "reportTemplate"
  7866.             }
  7867.         },
  7868.         "ResourceDeassociationPatch": {
  7869.             "type": "object",
  7870.             "properties": {
  7871.                 "key": {
  7872.                     "type": "string"
  7873.                 },
  7874.                 "anyTypeKey": {
  7875.                     "type": "string"
  7876.                 },
  7877.                 "action": {
  7878.                     "type": "string",
  7879.                     "enum": [
  7880.                         "UNLINK",
  7881.                         "DEPROVISION",
  7882.                         "UNASSIGN"
  7883.                     ]
  7884.                 },
  7885.                 "anyKyes": {
  7886.                     "type": "array",
  7887.                     "xml": {
  7888.                         "wrapped": true
  7889.                     },
  7890.                     "readOnly": true,
  7891.                     "items": {
  7892.                         "type": "string",
  7893.                         "xml": {
  7894.                             "name": "key"
  7895.                         }
  7896.                     }
  7897.                 }
  7898.             },
  7899.             "xml": {
  7900.                 "name": "resourceDeassociationPatch"
  7901.             }
  7902.         },
  7903.         "ConnObjectTO": {
  7904.             "type": "object",
  7905.             "properties": {
  7906.                 "attrs": {
  7907.                     "type": "array",
  7908.                     "xml": {
  7909.                         "wrapped": true
  7910.                     },
  7911.                     "readOnly": true,
  7912.                     "uniqueItems": true,
  7913.                     "items": {
  7914.                         "xml": {
  7915.                             "name": "attribute"
  7916.                         },
  7917.                         "$ref": "#/definitions/AttrTO"
  7918.                     }
  7919.                 }
  7920.             },
  7921.             "xml": {
  7922.                 "name": "connObject"
  7923.             }
  7924.         },
  7925.         "PagedConnObjectTOResult": {
  7926.             "type": "object",
  7927.             "properties": {
  7928.                 "next": {
  7929.                     "type": "string",
  7930.                     "format": "uri"
  7931.                 },
  7932.                 "pagedResultsCookie": {
  7933.                     "type": "string"
  7934.                 },
  7935.                 "remainingPagedResults": {
  7936.                     "type": "integer",
  7937.                     "format": "int32"
  7938.                 },
  7939.                 "allResultsReturned": {
  7940.                     "type": "boolean"
  7941.                 },
  7942.                 "result": {
  7943.                     "type": "array",
  7944.                     "xml": {
  7945.                         "wrapped": true
  7946.                     },
  7947.                     "readOnly": true,
  7948.                     "items": {
  7949.                         "xml": {
  7950.                             "name": "item"
  7951.                         },
  7952.                         "$ref": "#/definitions/ConnObjectTO"
  7953.                     }
  7954.                 }
  7955.             },
  7956.             "xml": {
  7957.                 "name": "pagedConnObjectResult"
  7958.             }
  7959.         },
  7960.         "MappingItemTO": {
  7961.             "type": "object",
  7962.             "properties": {
  7963.                 "key": {
  7964.                     "type": "string"
  7965.                 },
  7966.                 "intAttrName": {
  7967.                     "type": "string"
  7968.                 },
  7969.                 "extAttrName": {
  7970.                     "type": "string"
  7971.                 },
  7972.                 "connObjectKey": {
  7973.                     "type": "boolean"
  7974.                 },
  7975.                 "password": {
  7976.                     "type": "boolean"
  7977.                 },
  7978.                 "mandatoryCondition": {
  7979.                     "type": "string"
  7980.                 },
  7981.                 "purpose": {
  7982.                     "type": "string",
  7983.                     "enum": [
  7984.                         "BOTH",
  7985.                         "PULL",
  7986.                         "PROPAGATION",
  7987.                         "NONE"
  7988.                     ]
  7989.                 },
  7990.                 "propagationJEXLTransformer": {
  7991.                     "type": "string"
  7992.                 },
  7993.                 "pullJEXLTransformer": {
  7994.                     "type": "string"
  7995.                 },
  7996.                 "mappingItemTransformerClassNames": {
  7997.                     "type": "array",
  7998.                     "xml": {
  7999.                         "wrapped": true
  8000.                     },
  8001.                     "readOnly": true,
  8002.                     "items": {
  8003.                         "type": "string",
  8004.                         "xml": {
  8005.                             "name": "className"
  8006.                         }
  8007.                     }
  8008.                 }
  8009.             },
  8010.             "xml": {
  8011.                 "name": "mappingItem"
  8012.             }
  8013.         },
  8014.         "MappingTO": {
  8015.             "type": "object",
  8016.             "properties": {
  8017.                 "connObjectLink": {
  8018.                     "type": "string"
  8019.                 },
  8020.                 "connObjectKeyItem": {
  8021.                     "$ref": "#/definitions/MappingItemTO"
  8022.                 },
  8023.                 "items": {
  8024.                     "type": "array",
  8025.                     "xml": {
  8026.                         "wrapped": true
  8027.                     },
  8028.                     "readOnly": true,
  8029.                     "items": {
  8030.                         "xml": {
  8031.                             "name": "item"
  8032.                         },
  8033.                         "$ref": "#/definitions/MappingItemTO"
  8034.                     }
  8035.                 },
  8036.                 "linkingItems": {
  8037.                     "type": "array",
  8038.                     "xml": {
  8039.                         "wrapped": true
  8040.                     },
  8041.                     "readOnly": true,
  8042.                     "items": {
  8043.                         "xml": {
  8044.                             "name": "item"
  8045.                         },
  8046.                         "$ref": "#/definitions/MappingItemTO"
  8047.                     }
  8048.                 }
  8049.             },
  8050.             "xml": {
  8051.                 "name": "mapping"
  8052.             }
  8053.         },
  8054.         "OrgUnitTO": {
  8055.             "type": "object",
  8056.             "properties": {
  8057.                 "key": {
  8058.                     "type": "string"
  8059.                 },
  8060.                 "objectClass": {
  8061.                     "type": "string"
  8062.                 },
  8063.                 "syncToken": {
  8064.                     "type": "string"
  8065.                 },
  8066.                 "extAttrName": {
  8067.                     "type": "string"
  8068.                 },
  8069.                 "connObjectLink": {
  8070.                     "type": "string"
  8071.                 }
  8072.             },
  8073.             "xml": {
  8074.                 "name": "orgUnit"
  8075.             }
  8076.         },
  8077.         "ProvisionTO": {
  8078.             "type": "object",
  8079.             "properties": {
  8080.                 "key": {
  8081.                     "type": "string"
  8082.                 },
  8083.                 "anyType": {
  8084.                     "type": "string"
  8085.                 },
  8086.                 "objectClass": {
  8087.                     "type": "string"
  8088.                 },
  8089.                 "syncToken": {
  8090.                     "type": "string"
  8091.                 },
  8092.                 "mapping": {
  8093.                     "$ref": "#/definitions/MappingTO"
  8094.                 },
  8095.                 "auxClasses": {
  8096.                     "type": "array",
  8097.                     "xml": {
  8098.                         "wrapped": true
  8099.                     },
  8100.                     "readOnly": true,
  8101.                     "items": {
  8102.                         "type": "string",
  8103.                         "xml": {
  8104.                             "name": "class"
  8105.                         }
  8106.                     }
  8107.                 },
  8108.                 "virSchemas": {
  8109.                     "type": "array",
  8110.                     "xml": {
  8111.                         "wrapped": true
  8112.                     },
  8113.                     "readOnly": true,
  8114.                     "items": {
  8115.                         "type": "string",
  8116.                         "xml": {
  8117.                             "name": "virSchema"
  8118.                         }
  8119.                     }
  8120.                 }
  8121.             },
  8122.             "xml": {
  8123.                 "name": "provision"
  8124.             }
  8125.         },
  8126.         "ResourceTO": {
  8127.             "type": "object",
  8128.             "properties": {
  8129.                 "key": {
  8130.                     "type": "string"
  8131.                 },
  8132.                 "connector": {
  8133.                     "type": "string"
  8134.                 },
  8135.                 "connectorDisplayName": {
  8136.                     "type": "string"
  8137.                 },
  8138.                 "orgUnit": {
  8139.                     "$ref": "#/definitions/OrgUnitTO"
  8140.                 },
  8141.                 "propagationPriority": {
  8142.                     "type": "integer",
  8143.                     "format": "int32"
  8144.                 },
  8145.                 "randomPwdIfNotProvided": {
  8146.                     "type": "boolean"
  8147.                 },
  8148.                 "enforceMandatoryCondition": {
  8149.                     "type": "boolean"
  8150.                 },
  8151.                 "createTraceLevel": {
  8152.                     "type": "string",
  8153.                     "enum": [
  8154.                         "NONE",
  8155.                         "FAILURES",
  8156.                         "SUMMARY",
  8157.                         "ALL"
  8158.                     ]
  8159.                 },
  8160.                 "updateTraceLevel": {
  8161.                     "type": "string",
  8162.                     "enum": [
  8163.                         "NONE",
  8164.                         "FAILURES",
  8165.                         "SUMMARY",
  8166.                         "ALL"
  8167.                     ]
  8168.                 },
  8169.                 "deleteTraceLevel": {
  8170.                     "type": "string",
  8171.                     "enum": [
  8172.                         "NONE",
  8173.                         "FAILURES",
  8174.                         "SUMMARY",
  8175.                         "ALL"
  8176.                     ]
  8177.                 },
  8178.                 "provisioningTraceLevel": {
  8179.                     "type": "string",
  8180.                     "enum": [
  8181.                         "NONE",
  8182.                         "FAILURES",
  8183.                         "SUMMARY",
  8184.                         "ALL"
  8185.                     ]
  8186.                 },
  8187.                 "passwordPolicy": {
  8188.                     "type": "string"
  8189.                 },
  8190.                 "accountPolicy": {
  8191.                     "type": "string"
  8192.                 },
  8193.                 "pullPolicy": {
  8194.                     "type": "string"
  8195.                 },
  8196.                 "overrideCapabilities": {
  8197.                     "type": "boolean"
  8198.                 },
  8199.                 "provisions": {
  8200.                     "type": "array",
  8201.                     "xml": {
  8202.                         "wrapped": true
  8203.                     },
  8204.                     "readOnly": true,
  8205.                     "items": {
  8206.                         "xml": {
  8207.                             "name": "provision"
  8208.                         },
  8209.                         "$ref": "#/definitions/ProvisionTO"
  8210.                     }
  8211.                 },
  8212.                 "confOverride": {
  8213.                     "type": "array",
  8214.                     "xml": {
  8215.                         "wrapped": true
  8216.                     },
  8217.                     "readOnly": true,
  8218.                     "uniqueItems": true,
  8219.                     "items": {
  8220.                         "xml": {
  8221.                             "name": "property"
  8222.                         },
  8223.                         "$ref": "#/definitions/ConnConfProperty"
  8224.                     }
  8225.                 },
  8226.                 "capabilitiesOverride": {
  8227.                     "type": "array",
  8228.                     "xml": {
  8229.                         "wrapped": true
  8230.                     },
  8231.                     "readOnly": true,
  8232.                     "uniqueItems": true,
  8233.                     "items": {
  8234.                         "type": "string",
  8235.                         "xml": {
  8236.                             "name": "capability"
  8237.                         },
  8238.                         "enum": [
  8239.                             "AUTHENTICATE",
  8240.                             "CREATE",
  8241.                             "UPDATE",
  8242.                             "DELETE",
  8243.                             "SEARCH",
  8244.                             "SYNC"
  8245.                         ]
  8246.                     }
  8247.                 },
  8248.                 "propagationActionsClassNames": {
  8249.                     "type": "array",
  8250.                     "xml": {
  8251.                         "wrapped": true
  8252.                     },
  8253.                     "readOnly": true,
  8254.                     "items": {
  8255.                         "type": "string",
  8256.                         "xml": {
  8257.                             "name": "propagationActionsClassName"
  8258.                         }
  8259.                     }
  8260.                 }
  8261.             },
  8262.             "xml": {
  8263.                 "name": "resource"
  8264.             }
  8265.         },
  8266.         "RoleTO": {
  8267.             "type": "object",
  8268.             "properties": {
  8269.                 "key": {
  8270.                     "type": "string"
  8271.                 },
  8272.                 "dynMembershipCond": {
  8273.                     "type": "string"
  8274.                 },
  8275.                 "entitlements": {
  8276.                     "type": "array",
  8277.                     "xml": {
  8278.                         "wrapped": true
  8279.                     },
  8280.                     "readOnly": true,
  8281.                     "uniqueItems": true,
  8282.                     "items": {
  8283.                         "type": "string",
  8284.                         "xml": {
  8285.                             "name": "entitlement"
  8286.                         }
  8287.                     }
  8288.                 },
  8289.                 "realms": {
  8290.                     "type": "array",
  8291.                     "xml": {
  8292.                         "wrapped": true
  8293.                     },
  8294.                     "readOnly": true,
  8295.                     "items": {
  8296.                         "type": "string",
  8297.                         "xml": {
  8298.                             "name": "realm"
  8299.                         }
  8300.                     }
  8301.                 }
  8302.             },
  8303.             "xml": {
  8304.                 "name": "role"
  8305.             }
  8306.         },
  8307.         "SAML2IdPTO": {
  8308.             "type": "object",
  8309.             "properties": {
  8310.                 "key": {
  8311.                     "type": "string"
  8312.                 },
  8313.                 "entityID": {
  8314.                     "type": "string"
  8315.                 },
  8316.                 "name": {
  8317.                     "type": "string"
  8318.                 },
  8319.                 "metadata": {
  8320.                     "type": "string"
  8321.                 },
  8322.                 "useDeflateEncoding": {
  8323.                     "type": "boolean"
  8324.                 },
  8325.                 "bindingType": {
  8326.                     "type": "string",
  8327.                     "enum": [
  8328.                         "POST",
  8329.                         "REDIRECT"
  8330.                     ]
  8331.                 },
  8332.                 "logoutSupported": {
  8333.                     "type": "boolean"
  8334.                 },
  8335.                 "connObjectKeyItem": {
  8336.                     "$ref": "#/definitions/MappingItemTO"
  8337.                 },
  8338.                 "mappingItems": {
  8339.                     "type": "array",
  8340.                     "xml": {
  8341.                         "wrapped": true
  8342.                     },
  8343.                     "readOnly": true,
  8344.                     "items": {
  8345.                         "xml": {
  8346.                             "name": "mappingItem"
  8347.                         },
  8348.                         "$ref": "#/definitions/MappingItemTO"
  8349.                     }
  8350.                 }
  8351.             },
  8352.             "xml": {
  8353.                 "name": "saml2idp"
  8354.             }
  8355.         },
  8356.         "SAML2RequestTO": {
  8357.             "type": "object",
  8358.             "properties": {
  8359.                 "idpServiceAddress": {
  8360.                     "type": "string"
  8361.                 },
  8362.                 "bindingType": {
  8363.                     "type": "string",
  8364.                     "enum": [
  8365.                         "POST",
  8366.                         "REDIRECT"
  8367.                     ]
  8368.                 },
  8369.                 "content": {
  8370.                     "type": "string"
  8371.                 },
  8372.                 "relayState": {
  8373.                     "type": "string"
  8374.                 },
  8375.                 "signAlg": {
  8376.                     "type": "string"
  8377.                 },
  8378.                 "signature": {
  8379.                     "type": "string"
  8380.                 }
  8381.             },
  8382.             "xml": {
  8383.                 "name": "saml2request"
  8384.             }
  8385.         },
  8386.         "SAML2LoginResponseTO": {
  8387.             "type": "object",
  8388.             "properties": {
  8389.                 "nameID": {
  8390.                     "type": "string"
  8391.                 },
  8392.                 "sessionIndex": {
  8393.                     "type": "string"
  8394.                 },
  8395.                 "authInstant": {
  8396.                     "type": "string",
  8397.                     "format": "date-time"
  8398.                 },
  8399.                 "notOnOrAfter": {
  8400.                     "type": "string",
  8401.                     "format": "date-time"
  8402.                 },
  8403.                 "accessToken": {
  8404.                     "type": "string"
  8405.                 },
  8406.                 "username": {
  8407.                     "type": "string"
  8408.                 },
  8409.                 "idp": {
  8410.                     "type": "string"
  8411.                 },
  8412.                 "sloSupported": {
  8413.                     "type": "boolean"
  8414.                 },
  8415.                 "attrs": {
  8416.                     "type": "array",
  8417.                     "xml": {
  8418.                         "wrapped": true
  8419.                     },
  8420.                     "readOnly": true,
  8421.                     "uniqueItems": true,
  8422.                     "items": {
  8423.                         "xml": {
  8424.                             "name": "attr"
  8425.                         },
  8426.                         "$ref": "#/definitions/AttrTO"
  8427.                     }
  8428.                 }
  8429.             },
  8430.             "xml": {
  8431.                 "name": "saml2LoginResponse"
  8432.             }
  8433.         },
  8434.         "SAML2ReceivedResponseTO": {
  8435.             "type": "object",
  8436.             "properties": {
  8437.                 "samlResponse": {
  8438.                     "type": "string"
  8439.                 },
  8440.                 "relayState": {
  8441.                     "type": "string"
  8442.                 }
  8443.             },
  8444.             "xml": {
  8445.                 "name": "saml2ReceivedResponse"
  8446.             }
  8447.         },
  8448.         "SecurityQuestionTO": {
  8449.             "type": "object",
  8450.             "properties": {
  8451.                 "key": {
  8452.                     "type": "string"
  8453.                 },
  8454.                 "content": {
  8455.                     "type": "string"
  8456.                 }
  8457.             },
  8458.             "xml": {
  8459.                 "name": "securityQuestion"
  8460.             }
  8461.         },
  8462.         "PlatformInfo": {
  8463.             "type": "object",
  8464.             "properties": {
  8465.                 "version": {
  8466.                     "type": "string"
  8467.                 },
  8468.                 "selfRegAllowed": {
  8469.                     "type": "boolean"
  8470.                 },
  8471.                 "pwdResetAllowed": {
  8472.                     "type": "boolean"
  8473.                 },
  8474.                 "pwdResetRequiringSecurityQuestions": {
  8475.                     "type": "boolean"
  8476.                 },
  8477.                 "anyObjectWorkflowAdapter": {
  8478.                     "type": "string"
  8479.                 },
  8480.                 "anyObjectWorkflowAdapterSupportEdit": {
  8481.                     "type": "boolean"
  8482.                 },
  8483.                 "userWorkflowAdapter": {
  8484.                     "type": "string"
  8485.                 },
  8486.                 "userWorkflowAdapterSupportEdit": {
  8487.                     "type": "boolean"
  8488.                 },
  8489.                 "groupWorkflowAdapter": {
  8490.                     "type": "string"
  8491.                 },
  8492.                 "groupWorkflowAdapterSupportEdit": {
  8493.                     "type": "boolean"
  8494.                 },
  8495.                 "anyObjectProvisioningManager": {
  8496.                     "type": "string"
  8497.                 },
  8498.                 "userProvisioningManager": {
  8499.                     "type": "string"
  8500.                 },
  8501.                 "groupProvisioningManager": {
  8502.                     "type": "string"
  8503.                 },
  8504.                 "virAttrCache": {
  8505.                     "type": "string"
  8506.                 },
  8507.                 "passwordGenerator": {
  8508.                     "type": "string"
  8509.                 },
  8510.                 "anySearchDAO": {
  8511.                     "type": "string"
  8512.                 },
  8513.                 "connIdLocations": {
  8514.                     "type": "array",
  8515.                     "xml": {
  8516.                         "wrapped": true
  8517.                     },
  8518.                     "readOnly": true,
  8519.                     "uniqueItems": true,
  8520.                     "items": {
  8521.                         "type": "string",
  8522.                         "xml": {
  8523.                             "name": "connIdLocation"
  8524.                         }
  8525.                     }
  8526.                 },
  8527.                 "entitlements": {
  8528.                     "type": "array",
  8529.                     "xml": {
  8530.                         "wrapped": true
  8531.                     },
  8532.                     "readOnly": true,
  8533.                     "uniqueItems": true,
  8534.                     "items": {
  8535.                         "type": "string",
  8536.                         "xml": {
  8537.                             "name": "entitlement"
  8538.                         }
  8539.                     }
  8540.                 },
  8541.                 "reportletConfs": {
  8542.                     "type": "array",
  8543.                     "xml": {
  8544.                         "wrapped": true
  8545.                     },
  8546.                     "readOnly": true,
  8547.                     "uniqueItems": true,
  8548.                     "items": {
  8549.                         "type": "string",
  8550.                         "xml": {
  8551.                             "name": "reportletConf"
  8552.                         }
  8553.                     }
  8554.                 },
  8555.                 "accountRules": {
  8556.                     "type": "array",
  8557.                     "xml": {
  8558.                         "wrapped": true
  8559.                     },
  8560.                     "readOnly": true,
  8561.                     "uniqueItems": true,
  8562.                     "items": {
  8563.                         "type": "string",
  8564.                         "xml": {
  8565.                             "name": "accountRule"
  8566.                         }
  8567.                     }
  8568.                 },
  8569.                 "passwordRules": {
  8570.                     "type": "array",
  8571.                     "xml": {
  8572.                         "wrapped": true
  8573.                     },
  8574.                     "readOnly": true,
  8575.                     "uniqueItems": true,
  8576.                     "items": {
  8577.                         "type": "string",
  8578.                         "xml": {
  8579.                             "name": "passwordRule"
  8580.                         }
  8581.                     }
  8582.                 },
  8583.                 "mappingItemTransformers": {
  8584.                     "type": "array",
  8585.                     "xml": {
  8586.                         "wrapped": true
  8587.                     },
  8588.                     "readOnly": true,
  8589.                     "uniqueItems": true,
  8590.                     "items": {
  8591.                         "type": "string",
  8592.                         "xml": {
  8593.                             "name": "mappingItemTransformer"
  8594.                         }
  8595.                     }
  8596.                 },
  8597.                 "taskJobs": {
  8598.                     "type": "array",
  8599.                     "xml": {
  8600.                         "wrapped": true
  8601.                     },
  8602.                     "readOnly": true,
  8603.                     "uniqueItems": true,
  8604.                     "items": {
  8605.                         "type": "string",
  8606.                         "xml": {
  8607.                             "name": "taskJob"
  8608.                         }
  8609.                     }
  8610.                 },
  8611.                 "reconciliationFilterBuilders": {
  8612.                     "type": "array",
  8613.                     "xml": {
  8614.                         "wrapped": true
  8615.                     },
  8616.                     "readOnly": true,
  8617.                     "uniqueItems": true,
  8618.                     "items": {
  8619.                         "type": "string",
  8620.                         "xml": {
  8621.                             "name": "reconciliationFilterBuilder"
  8622.                         }
  8623.                     }
  8624.                 },
  8625.                 "logicActions": {
  8626.                     "type": "array",
  8627.                     "xml": {
  8628.                         "wrapped": true
  8629.                     },
  8630.                     "readOnly": true,
  8631.                     "uniqueItems": true,
  8632.                     "items": {
  8633.                         "type": "string",
  8634.                         "xml": {
  8635.                             "name": "logicAction"
  8636.                         }
  8637.                     }
  8638.                 },
  8639.                 "propagationActions": {
  8640.                     "type": "array",
  8641.                     "xml": {
  8642.                         "wrapped": true
  8643.                     },
  8644.                     "readOnly": true,
  8645.                     "uniqueItems": true,
  8646.                     "items": {
  8647.                         "type": "string",
  8648.                         "xml": {
  8649.                             "name": "propagationAction"
  8650.                         }
  8651.                     }
  8652.                 },
  8653.                 "pullActions": {
  8654.                     "type": "array",
  8655.                     "xml": {
  8656.                         "wrapped": true
  8657.                     },
  8658.                     "readOnly": true,
  8659.                     "uniqueItems": true,
  8660.                     "items": {
  8661.                         "type": "string",
  8662.                         "xml": {
  8663.                             "name": "pullAction"
  8664.                         }
  8665.                     }
  8666.                 },
  8667.                 "pushActions": {
  8668.                     "type": "array",
  8669.                     "xml": {
  8670.                         "wrapped": true
  8671.                     },
  8672.                     "readOnly": true,
  8673.                     "uniqueItems": true,
  8674.                     "items": {
  8675.                         "type": "string",
  8676.                         "xml": {
  8677.                             "name": "pushAction"
  8678.                         }
  8679.                     }
  8680.                 },
  8681.                 "pullCorrelationRules": {
  8682.                     "type": "array",
  8683.                     "xml": {
  8684.                         "wrapped": true
  8685.                     },
  8686.                     "readOnly": true,
  8687.                     "uniqueItems": true,
  8688.                     "items": {
  8689.                         "type": "string",
  8690.                         "xml": {
  8691.                             "name": "pullCorrelationRule"
  8692.                         }
  8693.                     }
  8694.                 },
  8695.                 "pushCorrelationRules": {
  8696.                     "type": "array",
  8697.                     "xml": {
  8698.                         "wrapped": true
  8699.                     },
  8700.                     "readOnly": true,
  8701.                     "uniqueItems": true,
  8702.                     "items": {
  8703.                         "type": "string",
  8704.                         "xml": {
  8705.                             "name": "pushCorrelationRule"
  8706.                         }
  8707.                     }
  8708.                 },
  8709.                 "validators": {
  8710.                     "type": "array",
  8711.                     "xml": {
  8712.                         "wrapped": true
  8713.                     },
  8714.                     "readOnly": true,
  8715.                     "uniqueItems": true,
  8716.                     "items": {
  8717.                         "type": "string",
  8718.                         "xml": {
  8719.                             "name": "validator"
  8720.                         }
  8721.                     }
  8722.                 },
  8723.                 "notificationRecipientsProviders": {
  8724.                     "type": "array",
  8725.                     "xml": {
  8726.                         "wrapped": true
  8727.                     },
  8728.                     "readOnly": true,
  8729.                     "uniqueItems": true,
  8730.                     "items": {
  8731.                         "type": "string",
  8732.                         "xml": {
  8733.                             "name": "notificationRecipientsProvider"
  8734.                         }
  8735.                     }
  8736.                 }
  8737.             },
  8738.             "xml": {
  8739.                 "name": "platformInfo"
  8740.             }
  8741.         },
  8742.         "NumbersInfo": {
  8743.             "type": "object",
  8744.             "properties": {
  8745.                 "totalUsers": {
  8746.                     "type": "integer",
  8747.                     "format": "int32"
  8748.                 },
  8749.                 "usersByRealm": {
  8750.                     "type": "object",
  8751.                     "readOnly": true,
  8752.                     "additionalProperties": {
  8753.                         "type": "integer",
  8754.                         "format": "int32"
  8755.                     }
  8756.                 },
  8757.                 "usersByStatus": {
  8758.                     "type": "object",
  8759.                     "readOnly": true,
  8760.                     "additionalProperties": {
  8761.                         "type": "integer",
  8762.                         "format": "int32"
  8763.                     }
  8764.                 },
  8765.                 "totalGroups": {
  8766.                     "type": "integer",
  8767.                     "format": "int32"
  8768.                 },
  8769.                 "groupsByRealm": {
  8770.                     "type": "object",
  8771.                     "readOnly": true,
  8772.                     "additionalProperties": {
  8773.                         "type": "integer",
  8774.                         "format": "int32"
  8775.                     }
  8776.                 },
  8777.                 "anyType1": {
  8778.                     "type": "string"
  8779.                 },
  8780.                 "totalAny1": {
  8781.                     "type": "integer",
  8782.                     "format": "int32"
  8783.                 },
  8784.                 "any1ByRealm": {
  8785.                     "type": "object",
  8786.                     "readOnly": true,
  8787.                     "additionalProperties": {
  8788.                         "type": "integer",
  8789.                         "format": "int32"
  8790.                     }
  8791.                 },
  8792.                 "anyType2": {
  8793.                     "type": "string"
  8794.                 },
  8795.                 "totalAny2": {
  8796.                     "type": "integer",
  8797.                     "format": "int32"
  8798.                 },
  8799.                 "any2ByRealm": {
  8800.                     "type": "object",
  8801.                     "readOnly": true,
  8802.                     "additionalProperties": {
  8803.                         "type": "integer",
  8804.                         "format": "int32"
  8805.                     }
  8806.                 },
  8807.                 "totalResources": {
  8808.                     "type": "integer",
  8809.                     "format": "int32"
  8810.                 },
  8811.                 "totalRoles": {
  8812.                     "type": "integer",
  8813.                     "format": "int32"
  8814.                 },
  8815.                 "confCompleteness": {
  8816.                     "type": "object",
  8817.                     "readOnly": true,
  8818.                     "additionalProperties": {
  8819.                         "type": "boolean"
  8820.                     }
  8821.                 }
  8822.             },
  8823.             "xml": {
  8824.                 "name": "numbersInfo"
  8825.             }
  8826.         },
  8827.         "LoadInstant": {
  8828.             "type": "object",
  8829.             "properties": {
  8830.                 "uptime": {
  8831.                     "type": "integer",
  8832.                     "format": "int64"
  8833.                 },
  8834.                 "systemLoadAverage": {
  8835.                     "type": "number",
  8836.                     "format": "double"
  8837.                 },
  8838.                 "totalMemory": {
  8839.                     "type": "integer",
  8840.                     "format": "int64"
  8841.                 },
  8842.                 "freeMemory": {
  8843.                     "type": "integer",
  8844.                     "format": "int64"
  8845.                 },
  8846.                 "maxMemory": {
  8847.                     "type": "integer",
  8848.                     "format": "int64"
  8849.                 }
  8850.             },
  8851.             "xml": {
  8852.                 "name": "loadInstant"
  8853.             }
  8854.         },
  8855.         "SystemInfo": {
  8856.             "type": "object",
  8857.             "properties": {
  8858.                 "hostname": {
  8859.                     "type": "string"
  8860.                 },
  8861.                 "os": {
  8862.                     "type": "string"
  8863.                 },
  8864.                 "jvm": {
  8865.                     "type": "string"
  8866.                 },
  8867.                 "availableProcessors": {
  8868.                     "type": "integer",
  8869.                     "format": "int32"
  8870.                 },
  8871.                 "startTime": {
  8872.                     "type": "integer",
  8873.                     "format": "int64"
  8874.                 },
  8875.                 "load": {
  8876.                     "type": "array",
  8877.                     "xml": {
  8878.                         "wrapped": true
  8879.                     },
  8880.                     "readOnly": true,
  8881.                     "items": {
  8882.                         "xml": {
  8883.                             "name": "instant"
  8884.                         },
  8885.                         "$ref": "#/definitions/LoadInstant"
  8886.                     }
  8887.                 }
  8888.             },
  8889.             "xml": {
  8890.                 "name": "systemInfo"
  8891.             }
  8892.         },
  8893.         "AbstractTaskTO": {
  8894.             "type": "object",
  8895.             "properties": {
  8896.                 "start": {
  8897.                     "type": "string",
  8898.                     "format": "date-time"
  8899.                 },
  8900.                 "end": {
  8901.                     "type": "string",
  8902.                     "format": "date-time"
  8903.                 },
  8904.                 "key": {
  8905.                     "type": "string"
  8906.                 },
  8907.                 "latestExecStatus": {
  8908.                     "type": "string"
  8909.                 },
  8910.                 "executions": {
  8911.                     "type": "array",
  8912.                     "xml": {
  8913.                         "wrapped": true
  8914.                     },
  8915.                     "readOnly": true,
  8916.                     "items": {
  8917.                         "xml": {
  8918.                             "name": "execution"
  8919.                         },
  8920.                         "$ref": "#/definitions/ExecTO"
  8921.                     }
  8922.                 }
  8923.             },
  8924.             "xml": {
  8925.                 "name": "abstractTask"
  8926.             }
  8927.         },
  8928.         "SchedTaskTO": {
  8929.             "type": "object",
  8930.             "properties": {
  8931.                 "start": {
  8932.                     "type": "string",
  8933.                     "format": "date-time"
  8934.                 },
  8935.                 "end": {
  8936.                     "type": "string",
  8937.                     "format": "date-time"
  8938.                 },
  8939.                 "key": {
  8940.                     "type": "string"
  8941.                 },
  8942.                 "latestExecStatus": {
  8943.                     "type": "string"
  8944.                 },
  8945.                 "startAt": {
  8946.                     "type": "string",
  8947.                     "format": "date-time"
  8948.                 },
  8949.                 "cronExpression": {
  8950.                     "type": "string"
  8951.                 },
  8952.                 "jobDelegateClassName": {
  8953.                     "type": "string"
  8954.                 },
  8955.                 "name": {
  8956.                     "type": "string"
  8957.                 },
  8958.                 "description": {
  8959.                     "type": "string"
  8960.                 },
  8961.                 "lastExec": {
  8962.                     "type": "string",
  8963.                     "format": "date-time"
  8964.                 },
  8965.                 "nextExec": {
  8966.                     "type": "string",
  8967.                     "format": "date-time"
  8968.                 },
  8969.                 "active": {
  8970.                     "type": "boolean"
  8971.                 },
  8972.                 "executions": {
  8973.                     "type": "array",
  8974.                     "xml": {
  8975.                         "wrapped": true
  8976.                     },
  8977.                     "readOnly": true,
  8978.                     "items": {
  8979.                         "xml": {
  8980.                             "name": "execution"
  8981.                         },
  8982.                         "$ref": "#/definitions/ExecTO"
  8983.                     }
  8984.                 }
  8985.             },
  8986.             "xml": {
  8987.                 "name": "schedTask"
  8988.             }
  8989.         },
  8990.         "PagedResultAbstractTaskTO": {
  8991.             "type": "object",
  8992.             "properties": {
  8993.                 "prev": {
  8994.                     "type": "string",
  8995.                     "format": "uri"
  8996.                 },
  8997.                 "next": {
  8998.                     "type": "string",
  8999.                     "format": "uri"
  9000.                 },
  9001.                 "page": {
  9002.                     "type": "integer",
  9003.                     "format": "int32"
  9004.                 },
  9005.                 "size": {
  9006.                     "type": "integer",
  9007.                     "format": "int32"
  9008.                 },
  9009.                 "totalCount": {
  9010.                     "type": "integer",
  9011.                     "format": "int32"
  9012.                 },
  9013.                 "result": {
  9014.                     "type": "array",
  9015.                     "xml": {
  9016.                         "wrapped": true
  9017.                     },
  9018.                     "readOnly": true,
  9019.                     "items": {
  9020.                         "xml": {
  9021.                             "name": "item"
  9022.                         },
  9023.                         "$ref": "#/definitions/AbstractTaskTO"
  9024.                     }
  9025.                 }
  9026.             },
  9027.             "xml": {
  9028.                 "name": "pagedResult"
  9029.             }
  9030.         },
  9031.         "UserTO": {
  9032.             "type": "object",
  9033.             "properties": {
  9034.                 "creator": {
  9035.                     "type": "string"
  9036.                 },
  9037.                 "creationDate": {
  9038.                     "type": "string",
  9039.                     "format": "date-time"
  9040.                 },
  9041.                 "lastModifier": {
  9042.                     "type": "string"
  9043.                 },
  9044.                 "lastChangeDate": {
  9045.                     "type": "string",
  9046.                     "format": "date-time"
  9047.                 },
  9048.                 "key": {
  9049.                     "type": "string"
  9050.                 },
  9051.                 "type": {
  9052.                     "type": "string"
  9053.                 },
  9054.                 "realm": {
  9055.                     "type": "string"
  9056.                 },
  9057.                 "status": {
  9058.                     "type": "string"
  9059.                 },
  9060.                 "password": {
  9061.                     "type": "string"
  9062.                 },
  9063.                 "token": {
  9064.                     "type": "string"
  9065.                 },
  9066.                 "tokenExpireTime": {
  9067.                     "type": "string",
  9068.                     "format": "date-time"
  9069.                 },
  9070.                 "username": {
  9071.                     "type": "string"
  9072.                 },
  9073.                 "lastLoginDate": {
  9074.                     "type": "string",
  9075.                     "format": "date-time"
  9076.                 },
  9077.                 "changePwdDate": {
  9078.                     "type": "string",
  9079.                     "format": "date-time"
  9080.                 },
  9081.                 "failedLogins": {
  9082.                     "type": "integer",
  9083.                     "format": "int32"
  9084.                 },
  9085.                 "securityQuestion": {
  9086.                     "type": "string"
  9087.                 },
  9088.                 "securityAnswer": {
  9089.                     "type": "string"
  9090.                 },
  9091.                 "mustChangePassword": {
  9092.                     "type": "boolean"
  9093.                 },
  9094.                 "auxClasses": {
  9095.                     "type": "array",
  9096.                     "xml": {
  9097.                         "wrapped": true
  9098.                     },
  9099.                     "readOnly": true,
  9100.                     "items": {
  9101.                         "type": "string",
  9102.                         "xml": {
  9103.                             "name": "class"
  9104.                         }
  9105.                     }
  9106.                 },
  9107.                 "plainAttrs": {
  9108.                     "type": "array",
  9109.                     "xml": {
  9110.                         "wrapped": true
  9111.                     },
  9112.                     "readOnly": true,
  9113.                     "uniqueItems": true,
  9114.                     "items": {
  9115.                         "xml": {
  9116.                             "name": "attribute"
  9117.                         },
  9118.                         "$ref": "#/definitions/AttrTO"
  9119.                     }
  9120.                 },
  9121.                 "derAttrs": {
  9122.                     "type": "array",
  9123.                     "xml": {
  9124.                         "wrapped": true
  9125.                     },
  9126.                     "readOnly": true,
  9127.                     "uniqueItems": true,
  9128.                     "items": {
  9129.                         "xml": {
  9130.                             "name": "attribute"
  9131.                         },
  9132.                         "$ref": "#/definitions/AttrTO"
  9133.                     }
  9134.                 },
  9135.                 "virAttrs": {
  9136.                     "type": "array",
  9137.                     "xml": {
  9138.                         "wrapped": true
  9139.                     },
  9140.                     "readOnly": true,
  9141.                     "uniqueItems": true,
  9142.                     "items": {
  9143.                         "xml": {
  9144.                             "name": "attribute"
  9145.                         },
  9146.                         "$ref": "#/definitions/AttrTO"
  9147.                     }
  9148.                 },
  9149.                 "resources": {
  9150.                     "type": "array",
  9151.                     "xml": {
  9152.                         "wrapped": true
  9153.                     },
  9154.                     "readOnly": true,
  9155.                     "uniqueItems": true,
  9156.                     "items": {
  9157.                         "type": "string",
  9158.                         "xml": {
  9159.                             "name": "resource"
  9160.                         }
  9161.                     }
  9162.                 },
  9163.                 "roles": {
  9164.                     "type": "array",
  9165.                     "xml": {
  9166.                         "wrapped": true
  9167.                     },
  9168.                     "readOnly": true,
  9169.                     "items": {
  9170.                         "type": "string",
  9171.                         "xml": {
  9172.                             "name": "role"
  9173.                         }
  9174.                     }
  9175.                 },
  9176.                 "dynRoles": {
  9177.                     "type": "array",
  9178.                     "xml": {
  9179.                         "wrapped": true
  9180.                     },
  9181.                     "readOnly": true,
  9182.                     "items": {
  9183.                         "type": "string",
  9184.                         "xml": {
  9185.                             "name": "role"
  9186.                         }
  9187.                     }
  9188.                 },
  9189.                 "relationships": {
  9190.                     "type": "array",
  9191.                     "xml": {
  9192.                         "wrapped": true
  9193.                     },
  9194.                     "readOnly": true,
  9195.                     "items": {
  9196.                         "xml": {
  9197.                             "name": "relationship"
  9198.                         },
  9199.                         "$ref": "#/definitions/RelationshipTO"
  9200.                     }
  9201.                 },
  9202.                 "memberships": {
  9203.                     "type": "array",
  9204.                     "xml": {
  9205.                         "wrapped": true
  9206.                     },
  9207.                     "readOnly": true,
  9208.                     "items": {
  9209.                         "xml": {
  9210.                             "name": "membership"
  9211.                         },
  9212.                         "$ref": "#/definitions/MembershipTO"
  9213.                     }
  9214.                 },
  9215.                 "dynGroups": {
  9216.                     "type": "array",
  9217.                     "xml": {
  9218.                         "wrapped": true
  9219.                     },
  9220.                     "readOnly": true,
  9221.                     "items": {
  9222.                         "type": "string",
  9223.                         "xml": {
  9224.                             "name": "role"
  9225.                         }
  9226.                     }
  9227.                 }
  9228.             },
  9229.             "xml": {
  9230.                 "name": "user"
  9231.             }
  9232.         },
  9233.         "BooleanReplacePatchItem": {
  9234.             "type": "object",
  9235.             "properties": {
  9236.                 "operation": {
  9237.                     "type": "string",
  9238.                     "enum": [
  9239.                         "ADD_REPLACE",
  9240.                         "DELETE"
  9241.                     ]
  9242.                 },
  9243.                 "value": {
  9244.                     "type": "boolean"
  9245.                 }
  9246.             },
  9247.             "xml": {
  9248.                 "name": "booleanReplacePatchItem"
  9249.             }
  9250.         },
  9251.         "PasswordPatch": {
  9252.             "type": "object",
  9253.             "properties": {
  9254.                 "operation": {
  9255.                     "type": "string",
  9256.                     "enum": [
  9257.                         "ADD_REPLACE",
  9258.                         "DELETE"
  9259.                     ]
  9260.                 },
  9261.                 "value": {
  9262.                     "type": "string"
  9263.                 },
  9264.                 "onSyncope": {
  9265.                     "type": "boolean"
  9266.                 },
  9267.                 "resources": {
  9268.                     "type": "array",
  9269.                     "xml": {
  9270.                         "wrapped": true
  9271.                     },
  9272.                     "readOnly": true,
  9273.                     "items": {
  9274.                         "type": "string",
  9275.                         "xml": {
  9276.                             "name": "resource"
  9277.                         }
  9278.                     }
  9279.                 }
  9280.             },
  9281.             "xml": {
  9282.                 "name": "passwordPatch"
  9283.             }
  9284.         },
  9285.         "UserPatch": {
  9286.             "type": "object",
  9287.             "properties": {
  9288.                 "key": {
  9289.                     "type": "string"
  9290.                 },
  9291.                 "realm": {
  9292.                     "$ref": "#/definitions/StringReplacePatchItem"
  9293.                 },
  9294.                 "username": {
  9295.                     "$ref": "#/definitions/StringReplacePatchItem"
  9296.                 },
  9297.                 "password": {
  9298.                     "$ref": "#/definitions/PasswordPatch"
  9299.                 },
  9300.                 "securityQuestion": {
  9301.                     "$ref": "#/definitions/StringReplacePatchItem"
  9302.                 },
  9303.                 "securityAnswer": {
  9304.                     "$ref": "#/definitions/StringReplacePatchItem"
  9305.                 },
  9306.                 "mustChangePassword": {
  9307.                     "$ref": "#/definitions/BooleanReplacePatchItem"
  9308.                 },
  9309.                 "auxClasses": {
  9310.                     "type": "array",
  9311.                     "xml": {
  9312.                         "wrapped": true
  9313.                     },
  9314.                     "readOnly": true,
  9315.                     "uniqueItems": true,
  9316.                     "items": {
  9317.                         "xml": {
  9318.                             "name": "auxClass"
  9319.                         },
  9320.                         "$ref": "#/definitions/StringPatchItem"
  9321.                     }
  9322.                 },
  9323.                 "plainAttrs": {
  9324.                     "type": "array",
  9325.                     "xml": {
  9326.                         "wrapped": true
  9327.                     },
  9328.                     "readOnly": true,
  9329.                     "uniqueItems": true,
  9330.                     "items": {
  9331.                         "xml": {
  9332.                             "name": "attribute"
  9333.                         },
  9334.                         "$ref": "#/definitions/AttrPatch"
  9335.                     }
  9336.                 },
  9337.                 "virAttrs": {
  9338.                     "type": "array",
  9339.                     "xml": {
  9340.                         "wrapped": true
  9341.                     },
  9342.                     "readOnly": true,
  9343.                     "uniqueItems": true,
  9344.                     "items": {
  9345.                         "xml": {
  9346.                             "name": "attribute"
  9347.                         },
  9348.                         "$ref": "#/definitions/AttrTO"
  9349.                     }
  9350.                 },
  9351.                 "resources": {
  9352.                     "type": "array",
  9353.                     "xml": {
  9354.                         "wrapped": true
  9355.                     },
  9356.                     "readOnly": true,
  9357.                     "uniqueItems": true,
  9358.                     "items": {
  9359.                         "xml": {
  9360.                             "name": "resource"
  9361.                         },
  9362.                         "$ref": "#/definitions/StringPatchItem"
  9363.                     }
  9364.                 },
  9365.                 "relationships": {
  9366.                     "type": "array",
  9367.                     "xml": {
  9368.                         "wrapped": true
  9369.                     },
  9370.                     "readOnly": true,
  9371.                     "uniqueItems": true,
  9372.                     "items": {
  9373.                         "xml": {
  9374.                             "name": "relationship"
  9375.                         },
  9376.                         "$ref": "#/definitions/RelationshipPatch"
  9377.                     }
  9378.                 },
  9379.                 "memberships": {
  9380.                     "type": "array",
  9381.                     "xml": {
  9382.                         "wrapped": true
  9383.                     },
  9384.                     "readOnly": true,
  9385.                     "uniqueItems": true,
  9386.                     "items": {
  9387.                         "xml": {
  9388.                             "name": "membership"
  9389.                         },
  9390.                         "$ref": "#/definitions/MembershipPatch"
  9391.                     }
  9392.                 },
  9393.                 "roles": {
  9394.                     "type": "array",
  9395.                     "xml": {
  9396.                         "wrapped": true
  9397.                     },
  9398.                     "readOnly": true,
  9399.                     "uniqueItems": true,
  9400.                     "items": {
  9401.                         "xml": {
  9402.                             "name": "role"
  9403.                         },
  9404.                         "$ref": "#/definitions/StringPatchItem"
  9405.                     }
  9406.                 }
  9407.             },
  9408.             "xml": {
  9409.                 "name": "userPatch"
  9410.             }
  9411.         },
  9412.         "StatusPatch": {
  9413.             "type": "object",
  9414.             "properties": {
  9415.                 "operation": {
  9416.                     "type": "string",
  9417.                     "enum": [
  9418.                         "ADD_REPLACE",
  9419.                         "DELETE"
  9420.                     ]
  9421.                 },
  9422.                 "value": {
  9423.                     "type": "string"
  9424.                 },
  9425.                 "onSyncope": {
  9426.                     "type": "boolean"
  9427.                 },
  9428.                 "key": {
  9429.                     "type": "string"
  9430.                 },
  9431.                 "type": {
  9432.                     "type": "string",
  9433.                     "enum": [
  9434.                         "ACTIVATE",
  9435.                         "SUSPEND",
  9436.                         "REACTIVATE"
  9437.                     ]
  9438.                 },
  9439.                 "token": {
  9440.                     "type": "string"
  9441.                 },
  9442.                 "resources": {
  9443.                     "type": "array",
  9444.                     "xml": {
  9445.                         "wrapped": true
  9446.                     },
  9447.                     "readOnly": true,
  9448.                     "items": {
  9449.                         "type": "string",
  9450.                         "xml": {
  9451.                             "name": "resource"
  9452.                         }
  9453.                     }
  9454.                 }
  9455.             },
  9456.             "xml": {
  9457.                 "name": "statusPatch"
  9458.             }
  9459.         },
  9460.         "WorkflowFormPropertyTO": {
  9461.             "type": "object",
  9462.             "properties": {
  9463.                 "id": {
  9464.                     "type": "string"
  9465.                 },
  9466.                 "name": {
  9467.                     "type": "string"
  9468.                 },
  9469.                 "type": {
  9470.                     "type": "string",
  9471.                     "enum": [
  9472.                         "String",
  9473.                         "Long",
  9474.                         "Enum",
  9475.                         "Date",
  9476.                         "Boolean"
  9477.                     ]
  9478.                 },
  9479.                 "value": {
  9480.                     "type": "string"
  9481.                 },
  9482.                 "readable": {
  9483.                     "type": "boolean"
  9484.                 },
  9485.                 "writable": {
  9486.                     "type": "boolean"
  9487.                 },
  9488.                 "required": {
  9489.                     "type": "boolean"
  9490.                 },
  9491.                 "datePattern": {
  9492.                     "type": "string"
  9493.                 },
  9494.                 "enumValues": {
  9495.                     "type": "object",
  9496.                     "readOnly": true,
  9497.                     "additionalProperties": {
  9498.                         "type": "string"
  9499.                     }
  9500.                 }
  9501.             },
  9502.             "xml": {
  9503.                 "name": "workflowFormProperty"
  9504.             }
  9505.         },
  9506.         "WorkflowFormTO": {
  9507.             "type": "object",
  9508.             "properties": {
  9509.                 "username": {
  9510.                     "type": "string"
  9511.                 },
  9512.                 "taskId": {
  9513.                     "type": "string"
  9514.                 },
  9515.                 "key": {
  9516.                     "type": "string"
  9517.                 },
  9518.                 "createTime": {
  9519.                     "type": "string",
  9520.                     "format": "date-time"
  9521.                 },
  9522.                 "dueDate": {
  9523.                     "type": "string",
  9524.                     "format": "date-time"
  9525.                 },
  9526.                 "owner": {
  9527.                     "type": "string"
  9528.                 },
  9529.                 "workflowFormProperties": {
  9530.                     "type": "array",
  9531.                     "xml": {
  9532.                         "wrapped": true
  9533.                     },
  9534.                     "readOnly": true,
  9535.                     "items": {
  9536.                         "xml": {
  9537.                             "name": "workflowFormProperty"
  9538.                         },
  9539.                         "$ref": "#/definitions/WorkflowFormPropertyTO"
  9540.                     }
  9541.                 }
  9542.             },
  9543.             "xml": {
  9544.                 "name": "workflowForm"
  9545.             }
  9546.         },
  9547.         "WorkflowDefinitionTO": {
  9548.             "type": "object",
  9549.             "properties": {
  9550.                 "key": {
  9551.                     "type": "string"
  9552.                 },
  9553.                 "modelId": {
  9554.                     "type": "string"
  9555.                 },
  9556.                 "name": {
  9557.                     "type": "string"
  9558.                 },
  9559.                 "main": {
  9560.                     "type": "boolean"
  9561.                 }
  9562.             },
  9563.             "xml": {
  9564.                 "name": "workflowDefinition"
  9565.             }
  9566.         }
  9567.     }
  9568.  
  9569. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement