summaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/typings/angular-ui-bootstrap/angular-ui-bootstrap.d.ts
blob: 61bccd0425978af9d4cc0a06288e4daef903d731 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
/*-
 * ============LICENSE_START=======================================================
 * SDC
 * ================================================================================
 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 */
// Type definitions for Angular UI Bootstrap 0.11.0
// Project: https://github.com/angular-ui/bootstrap
// Definitions by: Brian Surowiec <https://github.com/xt0rted>
// Definitions: https://github.com/borisyankov/DefinitelyTyped

/// <reference path="../angularjs/angular.d.ts" />

declare module angular.ui.bootstrap {

    interface IAccordionConfig {
        /**
         * Controls whether expanding an item will cause the other items to close.
         *
         * @default true
         */
        closeOthers?: boolean;
    }


    interface IButtonConfig {
        /**
         * @default: 'active'
         */
        activeClass?: string;

        /**
         * @default: 'Click'
         */
        toggleEvent?: string;
    }


    interface IDatepickerConfig {
        /**
         * Format of day in month.
         *
         * @default 'dd'
         */
        dayFormat?: string;

        /**
         * Format of month in year.
         *
         * @default 'MMM'
         */
        monthFormat?: string;

        /**
         * Format of year in year range.
         *
         * @default 'yyyy'
         */
        yearFormat?: string;

        /**
         * Format of day in week header.
         *
         * @default 'EEE'
         */
        dayHeaderFormat?: string;

        /**
         * Format of title when selecting day.
         *
         * @default 'MMM yyyy'
         */
        dayTitleFormat?: string;

        /**
         * Format of title when selecting month.
         *
         * @default 'yyyy'
         */
        monthTitleFormat?: string;

        /**
         * Whether to display week numbers.
         *
         * @default true
         */
        showWeeks?: boolean;

        /**
         * Starting day of the week from 0-6 where 0=Sunday and 6=Saturday.
         *
         * @default 0
         */
        startingDay?: number;

        /**
         * Number of years displayed in year selection.
         *
         * @default 20
         */
        yearRange?: number;

        /**
         * Defines the minimum available date.
         *
         * @default null
         */
        minDate?: any;

        /**
         * Defines the maximum available date.
         *
         * @default null
         */
        maxDate?: any;
    }

    interface IDatepickerPopupConfig {
        /**
         * The format for displayed dates.
         *
         * @default 'yyyy-MM-dd'
         */
        dateFormat?: string;

        /**
         * The text to display for the current day button.
         *
         * @default 'Today'
         */
        currentText?: string;

        /**
         * The text to display for the toggling week numbers button.
         *
         * @default 'Weeks'
         */
        toggleWeeksText?: string;

        /**
         * The text to display for the clear button.
         *
         * @default 'Clear'
         */
        clearText?: string;

        /**
         * The text to display for the close button.
         *
         * @default 'Done'
         */
        closeText?: string;

        /**
         * Whether to close calendar when a date is chosen.
         *
         * @default true
         */
        closeOnDateSelection?: boolean;

        /**
         * Append the datepicker popup element to `body`, rather than inserting after `datepicker-popup`.
         *
         * @default false
         */
        appendToBody?: boolean;

        /**
         * Whether to display a button bar underneath the datepicker.
         *
         * @default true
         */
        showButtonBar?: boolean;
    }


    interface IModalService {
        /**
         * @param {IModalSettings} options
         * @returns {IModalServiceInstance}
         */
        open(options: IModalSettings): IModalServiceInstance;
    }

    interface IModalServiceInstance {
        /**
         * a method that can be used to close a modal, passing a result
         */
        close(result?: any): void;

        /**
         * a method that can be used to dismiss a modal, passing a reason
         */
        dismiss(reason?: any): void;

        /**
         * a promise that is resolved when a modal is closed and rejected when a modal is dismissed
         */
        result: angular.IPromise<any>;

        /**
         * a promise that is resolved when a modal gets opened after downloading content's template and resolving all variables
         */
        opened: angular.IPromise<any>;
    }

    interface IModalScope extends angular.IScope {
        /**
         * Those methods make it easy to close a modal window without a need to create a dedicated controller
         */

        /**
         * Dismiss the dialog without assigning a value to the promise output
         */
        $dismiss(reason?: any): void;

        /**
         * Close the dialog resolving the promise to the given value
         */
        $close(result?: any): void;
    }

    interface IModalSettings {
        /**
         * a path to a template representing modal's content
         */
        templateUrl?: string;

        /**
         * inline template representing the modal's content
         */
        template?: string;

        /**
         * a scope instance to be used for the modal's content (actually the $modal service is going to create a child scope of a provided scope).
         * Defaults to `$rootScope`.
         */
        scope?: angular.IScope|IModalScope;

        /**
         * a controller for a modal instance - it can initialize scope used by modal.
         * A controller can be injected with `$uibModalInstance`
         */
        controller?: any;

        /**
         *  an alternative to the controller-as syntax, matching the API of directive definitions.
         *  Requires the controller option to be provided as well
         */
        controllerAs?: string;

        /**
         * members that will be resolved and passed to the controller as locals; it is equivalent of the `resolve` property for AngularJS routes
         */
        resolve?: any;

        /**
         * controls the presence of a backdrop
         * Allowed values:
         *   - true (default)
         *   - false (no backdrop)
         *   - 'static' backdrop is present but modal window is not closed when clicking outside of the modal window
         *
         * @default true
         */
        backdrop?: any;

        /**
         * indicates whether the dialog should be closable by hitting the ESC key, defaults to true
         */
        keyboard?: boolean;

        /**
         * additional CSS class(es) to be added to a modal window template
         */
        windowClass?: string;

        /**
         * optional size of modal window. Allowed values: 'sm' (small) or 'lg' (large). Requires Bootstrap 3.1.0 or later
         */
        size?: string;

        /**
         * a path to a template overriding modal's window template
         */
        windowTemplateUrl?: string;
    }

    interface IModalStackService {
        /**
         * Opens a new modal instance.
         */
        open(modalInstance: IModalServiceInstance, modal: any): void;

        /**
         * Closes a modal instance with an optional result.
         */
        close(modalInstance: IModalServiceInstance, result?: any): void;

        /**
         * Dismisses a modal instance with an optional reason.
         */
        dismiss(modalInstance: IModalServiceInstance, reason?: any): void;

        /**
         * Dismiss all open modal instances with an optional reason that will be passed to each instance.
         */
        dismissAll(reason?: any): void;

        /**
         * Gets the topmost modal instance that is open.
         */
        getTop(): IModalStackedMapKeyValuePair;
    }

    interface IModalStackedMapKeyValuePair {
        key: IModalServiceInstance;
        value: any;
    }


    interface IPaginationConfig {
        /**
         * Current page number. First page is 1.
         */
        page?: number;

        /**
         * Total number of items in all pages.
         */
        totalItems?: number;

        /**
         * Maximum number of items per page. A value less than one indicates all items on one page.
         *
         * @default 10
         */
        itemsPerPage?: number;

        /**
         * Limit number for pagination size.
         *
         * @default: null
         */
        maxSize?: number;

        /**
         * An optional expression assigned the total number of pages to display.
         *
         * @default angular.noop
         */
        numPages?: number;

        /**
         * Whether to keep current page in the middle of the visible ones.
         *
         * @default true
         */
        rotate?: boolean;

        /**
         * An optional expression called when a page is selected having the page number as argument.
         *
         * @default null
         */
        onSelectPage?(page: number): void;

        /**
         * Whether to display Previous / Next buttons.
         *
         * @default true
         */
        directionLinks?: boolean;

        /**
         * Text for Previous button.
         *
         * @default 'Previous'
         */
        previousText?: string;

        /**
         * Text for Next button.
         *
         * @default 'Next'
         */
        nextText?: string;

        /**
         * Whether to display First / Last buttons.
         *
         * @default false
         */
        boundaryLinks?: boolean;

        /**
         * Text for First button.
         *
         * @default 'First'
         */
        firstText?: string;

        /**
         * Text for Last button.
         *
         * @default 'Last'
         */
        lastText?: string;
    }

    interface IPagerConfig {
        /**
         * Whether to align each link to the sides.
         *
         * @default true
         */
        align?: boolean;

        /**
         * Current page number. First page is 1.
         */
        page?: number;

        /**
         * Total number of items in all pages.
         */
        totalItems?: number;

        /**
         * Maximum number of items per page. A value less than one indicates all items on one page.
         *
         * @default 10
         */
        itemsPerPage?: number;

        /**
         * An optional expression assigned the total number of pages to display.
         *
         * @default angular.noop
         */
        numPages?: number;

        /**
         * An optional expression called when a page is selected having the page number as argument.
         *
         * @default null
         */
        onSelectPage?(page: number): void;

        /**
         * Text for Previous button.
         *
         * @default '« Previous'
         */
        previousText?: string;

        /**
         * Text for Next button.
         *
         * @default 'Next »'
         */
        nextText?: string;
    }


    interface IPositionCoordinates {
        width?: number;
        height?: number;
        top?: number;
        left?: number;
    }

    interface IPositionService {
        /**
         * Provides a read-only equivalent of jQuery's position function.
         */
        position(element: JQuery): IPositionCoordinates;

        /**
         * Provides a read-only equivalent of jQuery's offset function.
         */
        offset(element: JQuery): IPositionCoordinates;
    }


    interface IProgressConfig {
        /**
         * Whether bars use transitions to achieve the width change.
         *
         * @default: true
         */
        animate?: boolean;

        /**
         * A number that specifies the total value of bars that is required.
         *
         * @default: 100
         */
        max?: number;
    }


    interface IRatingConfig {
        /**
         * Changes the number of icons.
         *
         * @default: 5
         */
        max?: number;

        /**
         * A variable used in the template to specify the state for selected icons.
         *
         * @default: null
         */
        stateOn?: string;

        /**
         * A variable used in the template to specify the state for unselected icons.
         *
         * @default: null
         */
        stateOff?: string;
    }


    interface ITimepickerConfig {
        /**
         * Number of hours to increase or decrease when using a button.
         *
         * @default 1
         */
        hourStep?: number;

        /**
         * Number of minutes to increase or decrease when using a button.
         *
         * @default 1
         */
        minuteStep?: number;

        /**
         * Whether to display 12H or 24H mode.
         *
         * @default true
         */
        showMeridian?: boolean;

        /**
         * Meridian labels based on locale. To override you must supply an array like ['AM', 'PM'].
         *
         * @default null
         */
        meridians?: Array<string>;

        /**
         * Whether the user can type inside the hours & minutes input.
         *
         * @default false
         */
        readonlyInput?: boolean;

        /**
         * Whether the user can scroll inside the hours & minutes input to increase or decrease it's values.
         *
         * @default true
         */
        mousewheel?: boolean;
    }


    interface ITooltipOptions {
        /**
         * Where to place it? Defaults to 'top', but also accepts 'right', 'bottom', or 'left'.
         *
         * @default 'top'
         */
        placement?: string;

        /**
         * Should it fade in and out?
         *
         * @default true
         */
        animation?: boolean;

        /**
         * For how long should the user have to have the mouse over the element before the tooltip shows (in milliseconds)?
         *
         * @default 0
         */
        popupDelay?: number;

        /**
         * Should the tooltip be appended to `$body` instead of the parent element?
         *
         * @default false
         */
        appendtoBody?: boolean;
    }

    interface ITooltipProvider {
        /**
         * Provide a set of defaults for certain tooltip and popover attributes.
         */
        options(value: ITooltipOptions): void;

        /**
         * Extends the default trigger mappings with mappings of your own. E.g. `{ 'openTrigger': 'closeTrigger' }`.
         */
        setTriggers(triggers: Object): void;
    }


    interface ITransitionService {
        /**
         * The browser specific animation event name.
         */
        animationEndEventName: string;

        /**
         * The browser specific transition event name.
         */
        transitionEndEventName: string;

        /**
         * Provides a consistent interface to trigger CSS 3 transitions and to be informed when they complete.
         *
         * @param element The DOMElement that will be animated
         * @param trigger The thing that will cause the transition to start:
         *   - As a string, it represents the css class to be added to the element.
         *   - As an object, it represents a hash of style attributes to be applied to the element.
         *   - As a function, it represents a function to be called that will cause the transition to occur.
         * @param options Optional settings for the transition.
         *
         * @return A promise that is resolved when the transition finishes.
         */
        (element: angular.IAugmentedJQuery, trigger: any, options?: ITransitionServiceOptions): angular.IPromise<angular.IAugmentedJQuery>;
    }

    interface ITransitionServiceOptions {
        animation?: boolean;
    }

}
02' href='#n2002'>2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915
{
    "resources": [
        {
            "uniqueId": "res_hgdgg.0.1",
            "resourceName": "hgdgg",
            "resourceVersion": "0.1",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "creationDate": 1435825652946,
            "lastUpdateDate": 1435825652946,
            "description": "hfhdgfdgfh",
            "icon": "icon-red2",
            "tags": [
                "hgdgg"
            ],
            "category": "Call Control",
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT",
            "derivedFrom": [
                "tosca.nodes.WebApplication"
            ],
            "artifacts": {

            },
            "interfaces": {

            },
            "capabilities": {
                "app_endpoint": {
                    "uniqueId": "capability.res_tosca.nodes.webapplication.1.0.app_endpoint",
                    "type": "tosca.capabilities.Endpoint"
                },
                "feature": {
                    "uniqueId": "capability.res_tosca.nodes.root.1.0.feature",
                    "type": "tosca.capabilities.Node"
                }
            },
            "requirements": {
                "dependency": {
                    "uniqueId": "res_tosca.nodes.root.1.0.dependency",
                    "capability": "tosca.capabilities.Node",
                    "node": "tosca.nodes.Root",
                    "relationship": "tosca.relationships.DependsOn"
                },
                "host": {
                    "uniqueId": "res_tosca.nodes.webapplication.1.0.host",
                    "capability": "tosca.capabilities.Container",
                    "node": "tosca.nodes.WebServer",
                    "relationship": "tosca.relationships.HostedOn"
                }
            },
            "vendorName": "fhgghf",
            "vendorRelease": "fggf",
            "contactId": "hg1234",
            "abstract": false,
            "highestVersion": true
        },
        {
            "uniqueId": "res_martin223.0.1",
            "resourceName": "martin223",
            "resourceVersion": "0.1",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "creationDate": 1435842460057,
            "lastUpdateDate": 1435842460057,
            "description": "desc",
            "icon": "icon-red2",
            "tags": [
                "martin223",
                "tag"
            ],
            "category": "Databases",
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT",
            "derivedFrom": [
                "tosca.nodes.Root"
            ],
            "artifacts": {

            },
            "interfaces": {

            },
            "capabilities": {
                "feature": {
                    "uniqueId": "capability.res_tosca.nodes.root.1.0.feature",
                    "type": "tosca.capabilities.Node"
                }
            },
            "requirements": {
                "dependency": {
                    "uniqueId": "res_tosca.nodes.root.1.0.dependency",
                    "capability": "tosca.capabilities.Node",
                    "node": "tosca.nodes.Root",
                    "relationship": "tosca.relationships.DependsOn"
                }
            },
            "vendorName": "Oracle",
            "vendorRelease": "1.2.5",
            "contactId": "Al1234",
            "abstract": false,
            "highestVersion": true
        },
        {
            "uniqueId": "res_mlrlv.0.1",
            "resourceName": "mlrlv",
            "resourceVersion": "0.1",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "creationDate": 1436079916172,
            "lastUpdateDate": 1436079916172,
            "description": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬-®¯°±²³´µ¶•¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ",
            "icon": "icon-red2",
            "tags": [
                "mlrlvtag"
            ],
            "category": "Databases",
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT",
            "derivedFrom": [
                "tosca.nodes.Root"
            ],
            "artifacts": {

            },
            "interfaces": {

            },
            "capabilities": {
                "feature": {
                    "uniqueId": "capability.res_tosca.nodes.root.1.0.feature",
                    "type": "tosca.capabilities.Node"
                }
            },
            "requirements": {
                "dependency": {
                    "uniqueId": "res_tosca.nodes.root.1.0.dependency",
                    "capability": "tosca.capabilities.Node",
                    "node": "tosca.nodes.Root",
                    "relationship": "tosca.relationships.DependsOn"
                }
            },
            "vendorName": "Oracle",
            "vendorRelease": "1.2.4",
            "contactId": "Al1234",
            "abstract": false,
            "highestVersion": true
        },
        {
            "uniqueId": "res_%&+-.0.1",
            "resourceName": "%&+-",
            "resourceVersion": "0.1",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "creationDate": 1436079975445,
            "lastUpdateDate": 1436079975445,
            "description": "%&+-%&+-%&+-%&+-%&+-%&+-",
            "icon": "icon-red2",
            "tags": [
                "%&+-%&+-"
            ],
            "category": "Databases",
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT",
            "derivedFrom": [
                "tosca.nodes.Root"
            ],
            "artifacts": {

            },
            "interfaces": {

            },
            "capabilities": {
                "feature": {
                    "uniqueId": "capability.res_tosca.nodes.root.1.0.feature",
                    "type": "tosca.capabilities.Node"
                }
            },
            "requirements": {
                "dependency": {
                    "uniqueId": "res_tosca.nodes.root.1.0.dependency",
                    "capability": "tosca.capabilities.Node",
                    "node": "tosca.nodes.Root",
                    "relationship": "tosca.relationships.DependsOn"
                }
            },
            "vendorName": "%&+-",
            "vendorRelease": "%&+-",
            "contactId": "Al1234",
            "abstract": false,
            "highestVersion": true
        },
        {
            "uniqueId": "res_1.0.1",
            "resourceName": "1",
            "resourceVersion": "0.1",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "creationDate": 1436080002091,
            "lastUpdateDate": 1436080002091,
            "description": "1",
            "icon": "icon-red2",
            "tags": [
                "11"
            ],
            "category": "Databases",
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT",
            "derivedFrom": [
                "tosca.nodes.Root"
            ],
            "artifacts": {

            },
            "interfaces": {

            },
            "capabilities": {
                "feature": {
                    "uniqueId": "capability.res_tosca.nodes.root.1.0.feature",
                    "type": "tosca.capabilities.Node"
                }
            },
            "requirements": {
                "dependency": {
                    "uniqueId": "res_tosca.nodes.root.1.0.dependency",
                    "capability": "tosca.capabilities.Node",
                    "node": "tosca.nodes.Root",
                    "relationship": "tosca.relationships.DependsOn"
                }
            },
            "vendorName": "1",
            "vendorRelease": "1",
            "contactId": "Al1234",
            "abstract": false,
            "highestVersion": true
        },
        {
            "uniqueId": "res_jjjjjj.0.1",
            "resourceName": "jjjjjj",
            "resourceVersion": "0.1",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "creationDate": 1436080425475,
            "lastUpdateDate": 1436080425475,
            "description": "h",
            "icon": "icon-red2",
            "tags": [
                "jjjjjj"
            ],
            "category": "Collaboration",
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT",
            "derivedFrom": [
                "tosca.nodes.WebServer"
            ],
            "artifacts": {
                "10 numbers limit reached": {
                    "uniqueId": "res_jjjjjj.0.1.10 numbers limit reached",
                    "artifactType": "CHEF",
                    "artifactName": "10 numbers limit reached.png",
                    "userIdLastUpdater": "cs0008",
                    "creatorFullName": "Carlos  Santana",
                    "updaterFullName": "Carlos  Santana",
                    "creationDate": 1436081038417,
                    "lastUpdateDate": 1436081038417,
                    "esId": "res_jjjjjj.0.1:10 numbers limit reached.png",
                    "logicalName": "10 numbers limit reached",
                    "description": "dsfsdfs"
                }
            },
            "interfaces": {

            },
            "capabilities": {
                "host": {
                    "uniqueId": "capability.res_tosca.nodes.webserver.1.0.host",
                    "type": "tosca.capabilities.Container",
                    "validSourceTypes": [
                        "tosca.nodes.WebApplication"
                    ]
                },
                "admin_endpoint": {
                    "uniqueId": "capability.res_tosca.nodes.webserver.1.0.admin_endpoint",
                    "type": "tosca.capabilities.Endpoint.Admin"
                },
                "feature": {
                    "uniqueId": "capability.res_tosca.nodes.root.1.0.feature",
                    "type": "tosca.capabilities.Node"
                },
                "data_endpoint": {
                    "uniqueId": "capability.res_tosca.nodes.webserver.1.0.data_endpoint",
                    "type": "tosca.capabilities.Endpoint"
                }
            },
            "requirements": {
                "dependency": {
                    "uniqueId": "res_tosca.nodes.root.1.0.dependency",
                    "capability": "tosca.capabilities.Node",
                    "node": "tosca.nodes.Root",
                    "relationship": "tosca.relationships.DependsOn"
                },
                "host": {
                    "uniqueId": "res_tosca.nodes.softwarecomponent.1.0.host",
                    "capability": "tosca.capabilities.Container",
                    "node": "tosca.nodes.Compute",
                    "relationship": "tosca.relationships.HostedOn"
                }
            },
            "vendorName": "g",
            "vendorRelease": "f",
            "contactId": "aa1234",
            "abstract": false,
            "highestVersion": true
        },
        {
            "uniqueId": "res_qfdsy.0.1",
            "resourceName": "qfdsy",
            "resourceVersion": "0.1",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "creationDate": 1436084743821,
            "lastUpdateDate": 1436084743821,
            "description": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬-®¯°±²³´µ¶•¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ",
            "icon": "icon-red2",
            "tags": [
                "qfdsytag"
            ],
            "category": "Messaging",
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT",
            "derivedFrom": [
                "tosca.nodes.Root"
            ],
            "artifacts": {

            },
            "interfaces": {

            },
            "capabilities": {
                "feature": {
                    "uniqueId": "capability.res_tosca.nodes.root.1.0.feature",
                    "type": "tosca.capabilities.Node"
                }
            },
            "requirements": {
                "dependency": {
                    "uniqueId": "res_tosca.nodes.root.1.0.dependency",
                    "capability": "tosca.capabilities.Node",
                    "node": "tosca.nodes.Root",
                    "relationship": "tosca.relationships.DependsOn"
                }
            },
            "vendorName": "Oracle",
            "vendorRelease": "1.2.4",
            "contactId": "Al1234",
            "abstract": false,
            "highestVersion": true
        },
        {
            "uniqueId": "res_nqstw.0.1",
            "resourceName": "nqstw",
            "resourceVersion": "0.1",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "creationDate": 1436084798999,
            "lastUpdateDate": 1436084798999,
            "description": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬-®¯°±²³´µ¶•¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ",
            "icon": "icon-red2",
            "tags": [
                "nqstwtag"
            ],
            "category": "WAN Connectivity",
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT",
            "derivedFrom": [
                "tosca.nodes.Root"
            ],
            "artifacts": {

            },
            "interfaces": {

            },
            "capabilities": {
                "feature": {
                    "uniqueId": "capability.res_tosca.nodes.root.1.0.feature",
                    "type": "tosca.capabilities.Node"
                }
            },
            "requirements": {
                "dependency": {
                    "uniqueId": "res_tosca.nodes.root.1.0.dependency",
                    "capability": "tosca.capabilities.Node",
                    "node": "tosca.nodes.Root",
                    "relationship": "tosca.relationships.DependsOn"
                }
            },
            "vendorName": "Oracle",
            "vendorRelease": "1.2.4",
            "contactId": "Al1234",
            "abstract": false,
            "highestVersion": true
        },
        {
            "uniqueId": "res_rfpjx.0.1",
            "resourceName": "rfpjx",
            "resourceVersion": "0.1",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "creationDate": 1436084844179,
            "lastUpdateDate": 1436084844179,
            "description": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬-®¯°±²³´µ¶•¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ",
            "icon": "icon-red2",
            "tags": [
                "rfpjxtag"
            ],
            "category": "Messaging",
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT",
            "derivedFrom": [
                "tosca.nodes.Root"
            ],
            "artifacts": {

            },
            "interfaces": {

            },
            "capabilities": {
                "feature": {
                    "uniqueId": "capability.res_tosca.nodes.root.1.0.feature",
                    "type": "tosca.capabilities.Node"
                }
            },
            "requirements": {
                "dependency": {
                    "uniqueId": "res_tosca.nodes.root.1.0.dependency",
                    "capability": "tosca.capabilities.Node",
                    "node": "tosca.nodes.Root",
                    "relationship": "tosca.relationships.DependsOn"
                }
            },
            "vendorName": "Oracle",
            "vendorRelease": "1.2.4",
            "contactId": "Al1234",
            "abstract": false,
            "highestVersion": true
        },
        {
            "uniqueId": "res_martin22.0.1",
            "resourceName": "martin22",
            "resourceVersion": "0.1",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "creationDate": 1436093847314,
            "lastUpdateDate": 1436093847314,
            "description": "desc",
            "icon": "icon-red2",
            "tags": [
                "martin22",
                "martin22tag"
            ],
            "category": "Security",
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT",
            "derivedFrom": [
                "tosca.nodes.Root"
            ],
            "artifacts": {
                "gizmorambo": {
                    "uniqueId": "res_martin22.0.1.gizmorambo",
                    "artifactType": "YANG",
                    "artifactName": "gizmorambo.jpg",
                    "userIdLastUpdater": "cs0008",
                    "creatorFullName": "Carlos  Santana",
                    "updaterFullName": "Carlos  Santana",
                    "creationDate": 1436093856933,
                    "lastUpdateDate": 1436093856933,
                    "esId": "res_martin22.0.1:gizmorambo.jpg",
                    "logicalName": "gizmorambo",
                    "description": "BlaBla"
                }
            },
            "properties": {
                "Test1": {
                    "uniqueId": "res_martin22.0.1.Test1",
                    "type": "string",
                    "required": false,
                    "defaultValue": "10",
                    "description": "BlaBla",
                    "constraints": [
                        {
                            "rangeMinValue": "100",
                            "rangeMaxValue": "990"
                        }
                    ],
                    "definition": true,
                    "password": false
                }
            },
            "interfaces": {

            },
            "capabilities": {
                "feature": {
                    "uniqueId": "capability.res_tosca.nodes.root.1.0.feature",
                    "type": "tosca.capabilities.Node"
                }
            },
            "requirements": {
                "dependency": {
                    "uniqueId": "res_tosca.nodes.root.1.0.dependency",
                    "capability": "tosca.capabilities.Node",
                    "node": "tosca.nodes.Root",
                    "relationship": "tosca.relationships.DependsOn"
                }
            },
            "vendorName": "Oracle",
            "vendorRelease": "1.2.5",
            "contactId": "Al1234",
            "abstract": false,
            "highestVersion": true
        },
        {
            "uniqueId": "res_jkjk.0.1",
            "resourceName": "jkjk",
            "resourceVersion": "0.1",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "creationDate": 1436095288548,
            "lastUpdateDate": 1436095288548,
            "description": "jkjkj",
            "icon": "icon-red2",
            "tags": [
                "jkjk"
            ],
            "category": "Big Data",
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT",
            "derivedFrom": [
                "tosca.nodes.Container.Runtime"
            ],
            "artifacts": {

            },
            "interfaces": {

            },
            "capabilities": {
                "host": {
                    "uniqueId": "capability.res_tosca.nodes.container.runtime.1.0.host",
                    "type": "tosca.capabilities.Container"
                },
                "scalable": {
                    "uniqueId": "capability.res_tosca.nodes.container.runtime.1.0.scalable",
                    "type": "tosca.capabilities.Scalable"
                },
                "feature": {
                    "uniqueId": "capability.res_tosca.nodes.root.1.0.feature",
                    "type": "tosca.capabilities.Node"
                }
            },
            "requirements": {
                "dependency": {
                    "uniqueId": "res_tosca.nodes.root.1.0.dependency",
                    "capability": "tosca.capabilities.Node",
                    "node": "tosca.nodes.Root",
                    "relationship": "tosca.relationships.DependsOn"
                },
                "host": {
                    "uniqueId": "res_tosca.nodes.softwarecomponent.1.0.host",
                    "capability": "tosca.capabilities.Container",
                    "node": "tosca.nodes.Compute",
                    "relationship": "tosca.relationships.HostedOn"
                }
            },
            "vendorName": "gggg",
            "vendorRelease": "fffff",
            "contactId": "ff1234",
            "abstract": false,
            "highestVersion": true
        },
        {
            "uniqueId": "res_bvbvcxb.0.1",
            "resourceName": "bvbvcxb",
            "resourceVersion": "0.1",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "creationDate": 1436164182890,
            "lastUpdateDate": 1436164182890,
            "description": "vcbcv",
            "icon": "icon-red2",
            "tags": [
                "bvbvcxb"
            ],
            "category": "Call Control",
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT",
            "derivedFrom": [
                "tosca.nodes.WebServer"
            ],
            "artifacts": {

            },
            "interfaces": {

            },
            "capabilities": {
                "host": {
                    "uniqueId": "capability.res_tosca.nodes.webserver.1.0.host",
                    "type": "tosca.capabilities.Container",
                    "validSourceTypes": [
                        "tosca.nodes.WebApplication"
                    ]
                },
                "admin_endpoint": {
                    "uniqueId": "capability.res_tosca.nodes.webserver.1.0.admin_endpoint",
                    "type": "tosca.capabilities.Endpoint.Admin"
                },
                "feature": {
                    "uniqueId": "capability.res_tosca.nodes.root.1.0.feature",
                    "type": "tosca.capabilities.Node"
                },
                "data_endpoint": {
                    "uniqueId": "capability.res_tosca.nodes.webserver.1.0.data_endpoint",
                    "type": "tosca.capabilities.Endpoint"
                }
            },
            "requirements": {
                "dependency": {
                    "uniqueId": "res_tosca.nodes.root.1.0.dependency",
                    "capability": "tosca.capabilities.Node",
                    "node": "tosca.nodes.Root",
                    "relationship": "tosca.relationships.DependsOn"
                },
                "host": {
                    "uniqueId": "res_tosca.nodes.softwarecomponent.1.0.host",
                    "capability": "tosca.capabilities.Container",
                    "node": "tosca.nodes.Compute",
                    "relationship": "tosca.relationships.HostedOn"
                }
            },
            "vendorName": "vcbxcvb",
            "vendorRelease": "cvbvc",
            "contactId": "qw1234",
            "abstract": false,
            "highestVersion": true
        },
        {
            "uniqueId": "res_sd.0.1",
            "resourceName": "sd",
            "resourceVersion": "0.1",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "creationDate": 1436255440040,
            "lastUpdateDate": 1436255440040,
            "description": "de",
            "icon": "icon-red3",
            "tags": [
                "sdde"
            ],
            "category": "Call Control",
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT",
            "derivedFrom": [
                "tosca.nodes.Root"
            ],
            "artifacts": {

            },
            "interfaces": {

            },
            "capabilities": {
                "feature": {
                    "uniqueId": "capability.res_tosca.nodes.root.1.0.feature",
                    "type": "tosca.capabilities.Node"
                }
            },
            "requirements": {
                "dependency": {
                    "uniqueId": "res_tosca.nodes.root.1.0.dependency",
                    "capability": "tosca.capabilities.Node",
                    "node": "tosca.nodes.Root",
                    "relationship": "tosca.relationships.DependsOn"
                }
            },
            "vendorName": "ded",
            "vendorRelease": "ede",
            "contactId": "dd2222",
            "abstract": false,
            "highestVersion": true
        },
        {
            "uniqueId": "res_martin221.0.1",
            "resourceName": "martin221",
            "resourceVersion": "0.1",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "creationDate": 1436275310912,
            "lastUpdateDate": 1436275310912,
            "description": "desc",
            "icon": "icon-red2",
            "tags": [
                "martin221",
                "martin221tag"
            ],
            "category": "Security",
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT",
            "derivedFrom": [
                "tosca.nodes.WebServer"
            ],
            "artifacts": {

            },
            "interfaces": {

            },
            "capabilities": {
                "host": {
                    "uniqueId": "capability.res_tosca.nodes.webserver.1.0.host",
                    "type": "tosca.capabilities.Container",
                    "validSourceTypes": [
                        "tosca.nodes.WebApplication"
                    ]
                },
                "admin_endpoint": {
                    "uniqueId": "capability.res_tosca.nodes.webserver.1.0.admin_endpoint",
                    "type": "tosca.capabilities.Endpoint.Admin"
                },
                "feature": {
                    "uniqueId": "capability.res_tosca.nodes.root.1.0.feature",
                    "type": "tosca.capabilities.Node"
                },
                "data_endpoint": {
                    "uniqueId": "capability.res_tosca.nodes.webserver.1.0.data_endpoint",
                    "type": "tosca.capabilities.Endpoint"
                }
            },
            "requirements": {
                "dependency": {
                    "uniqueId": "res_tosca.nodes.root.1.0.dependency",
                    "capability": "tosca.capabilities.Node",
                    "node": "tosca.nodes.Root",
                    "relationship": "tosca.relationships.DependsOn"
                },
                "host": {
                    "uniqueId": "res_tosca.nodes.softwarecomponent.1.0.host",
                    "capability": "tosca.capabilities.Container",
                    "node": "tosca.nodes.Compute",
                    "relationship": "tosca.relationships.HostedOn"
                }
            },
            "vendorName": "Oracle",
            "vendorRelease": "1.2.5",
            "contactId": "Al1234",
            "abstract": false,
            "highestVersion": true
        },
        {
            "uniqueId": "res_gfnfgf.0.1",
            "resourceName": "gfnfgf",
            "resourceVersion": "0.1",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "creationDate": 1436275654252,
            "lastUpdateDate": 1436275654252,
            "description": "hfghfgh",
            "icon": "icon-red2",
            "tags": [
                "gfnfgf"
            ],
            "category": "Call Control",
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT",
            "derivedFrom": [
                "tosca.nodes.WebServer"
            ],
            "artifacts": {

            },
            "interfaces": {

            },
            "capabilities": {
                "host": {
                    "uniqueId": "capability.res_tosca.nodes.webserver.1.0.host",
                    "type": "tosca.capabilities.Container",
                    "validSourceTypes": [
                        "tosca.nodes.WebApplication"
                    ]
                },
                "admin_endpoint": {
                    "uniqueId": "capability.res_tosca.nodes.webserver.1.0.admin_endpoint",
                    "type": "tosca.capabilities.Endpoint.Admin"
                },
                "feature": {
                    "uniqueId": "capability.res_tosca.nodes.root.1.0.feature",
                    "type": "tosca.capabilities.Node"
                },
                "data_endpoint": {
                    "uniqueId": "capability.res_tosca.nodes.webserver.1.0.data_endpoint",
                    "type": "tosca.capabilities.Endpoint"
                }
            },
            "requirements": {
                "dependency": {
                    "uniqueId": "res_tosca.nodes.root.1.0.dependency",
                    "capability": "tosca.capabilities.Node",
                    "node": "tosca.nodes.Root",
                    "relationship": "tosca.relationships.DependsOn"
                },
                "host": {
                    "uniqueId": "res_tosca.nodes.softwarecomponent.1.0.host",
                    "capability": "tosca.capabilities.Container",
                    "node": "tosca.nodes.Compute",
                    "relationship": "tosca.relationships.HostedOn"
                }
            },
            "vendorName": "gfhgf",
            "vendorRelease": "gfhgf",
            "contactId": "gg1234",
            "abstract": false,
            "highestVersion": true
        },
        {
            "uniqueId": "res_ddd.0.1",
            "resourceName": "ddd",
            "resourceVersion": "0.1",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "creationDate": 1436338105711,
            "lastUpdateDate": 1436338105711,
            "description": "dsff",
            "icon": "icon-red1",
            "tags": [
                "sddd"
            ],
            "category": "Big Data",
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT",
            "derivedFrom": [
                "tosca.nodes.SoftwareComponent"
            ],
            "artifacts": {

            },
            "interfaces": {

            },
            "capabilities": {
                "feature": {
                    "uniqueId": "capability.res_tosca.nodes.root.1.0.feature",
                    "type": "tosca.capabilities.Node"
                }
            },
            "requirements": {
                "dependency": {
                    "uniqueId": "res_tosca.nodes.root.1.0.dependency",
                    "capability": "tosca.capabilities.Node",
                    "node": "tosca.nodes.Root",
                    "relationship": "tosca.relationships.DependsOn"
                },
                "host": {
                    "uniqueId": "res_tosca.nodes.softwarecomponent.1.0.host",
                    "capability": "tosca.capabilities.Container",
                    "node": "tosca.nodes.Compute",
                    "relationship": "tosca.relationships.HostedOn"
                }
            },
            "vendorName": "sadfasdf",
            "vendorRelease": "adsfadsf",
            "contactId": "ds200p",
            "abstract": false,
            "highestVersion": true
        },
        {
            "uniqueId": "res_hhdfd.0.1",
            "resourceName": "hhdfd",
            "resourceVersion": "0.1",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "creationDate": 1436342424025,
            "lastUpdateDate": 1436342424025,
            "description": "fdhdffh",
            "icon": "icon-red2",
            "tags": [
                "hhdfd"
            ],
            "category": "Big Data",
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT",
            "derivedFrom": [
                "tosca.nodes.Root"
            ],
            "artifacts": {

            },
            "interfaces": {

            },
            "capabilities": {
                "feature": {
                    "uniqueId": "capability.res_tosca.nodes.root.1.0.feature",
                    "type": "tosca.capabilities.Node"
                }
            },
            "requirements": {
                "dependency": {
                    "uniqueId": "res_tosca.nodes.root.1.0.dependency",
                    "capability": "tosca.capabilities.Node",
                    "node": "tosca.nodes.Root",
                    "relationship": "tosca.relationships.DependsOn"
                }
            },
            "vendorName": "fdhfddfh",
            "vendorRelease": "fdhdf",
            "contactId": "fg1234",
            "abstract": false,
            "highestVersion": true
        },
        {
            "uniqueId": "res_infobae.0.1",
            "resourceName": "infobae",
            "resourceVersion": "0.1",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "creationDate": 1436346185743,
            "lastUpdateDate": 1436346185743,
            "description": "es el",
            "icon": "icon-red2",
            "tags": [
                "infobae"
            ],
            "category": "Big Data",
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT",
            "derivedFrom": [
                "tosca.nodes.WebApplication"
            ],
            "artifacts": {

            },
            "interfaces": {

            },
            "capabilities": {
                "app_endpoint": {
                    "uniqueId": "capability.res_tosca.nodes.webapplication.1.0.app_endpoint",
                    "type": "tosca.capabilities.Endpoint"
                },
                "feature": {
                    "uniqueId": "capability.res_tosca.nodes.root.1.0.feature",
                    "type": "tosca.capabilities.Node"
                }
            },
            "requirements": {
                "dependency": {
                    "uniqueId": "res_tosca.nodes.root.1.0.dependency",
                    "capability": "tosca.capabilities.Node",
                    "node": "tosca.nodes.Root",
                    "relationship": "tosca.relationships.DependsOn"
                },
                "host": {
                    "uniqueId": "res_tosca.nodes.webapplication.1.0.host",
                    "capability": "tosca.capabilities.Container",
                    "node": "tosca.nodes.WebServer",
                    "relationship": "tosca.relationships.HostedOn"
                }
            },
            "vendorName": "ffff",
            "vendorRelease": "ffff",
            "contactId": "ss1234",
            "abstract": false,
            "highestVersion": true
        },
        {
            "uniqueId": "res_df.0.1",
            "resourceName": "df",
            "resourceVersion": "0.1",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "creationDate": 1436352980564,
            "lastUpdateDate": 1436352980564,
            "description": "sdf",
            "icon": "icon-red2",
            "tags": [
                "dfsdf"
            ],
            "category": "Messaging",
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT",
            "derivedFrom": [
                "tosca.nodes.WebServer"
            ],
            "artifacts": {

            },
            "interfaces": {

            },
            "capabilities": {
                "host": {
                    "uniqueId": "capability.res_tosca.nodes.webserver.1.0.host",
                    "type": "tosca.capabilities.Container",
                    "validSourceTypes": [
                        "tosca.nodes.WebApplication"
                    ]
                },
                "admin_endpoint": {
                    "uniqueId": "capability.res_tosca.nodes.webserver.1.0.admin_endpoint",
                    "type": "tosca.capabilities.Endpoint.Admin"
                },
                "feature": {
                    "uniqueId": "capability.res_tosca.nodes.root.1.0.feature",
                    "type": "tosca.capabilities.Node"
                },
                "data_endpoint": {
                    "uniqueId": "capability.res_tosca.nodes.webserver.1.0.data_endpoint",
                    "type": "tosca.capabilities.Endpoint"
                }
            },
            "requirements": {
                "dependency": {
                    "uniqueId": "res_tosca.nodes.root.1.0.dependency",
                    "capability": "tosca.capabilities.Node",
                    "node": "tosca.nodes.Root",
                    "relationship": "tosca.relationships.DependsOn"
                },
                "host": {
                    "uniqueId": "res_tosca.nodes.softwarecomponent.1.0.host",
                    "capability": "tosca.capabilities.Container",
                    "node": "tosca.nodes.Compute",
                    "relationship": "tosca.relationships.HostedOn"
                }
            },
            "vendorName": "sdf",
            "vendorRelease": "sdf",
            "contactId": "jh7654",
            "abstract": false,
            "highestVersion": true
        },
        {
            "uniqueId": "res_ddddd.0.1",
            "resourceName": "ddddd",
            "resourceVersion": "0.1",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "creationDate": 1436353021637,
            "lastUpdateDate": 1436353021637,
            "description": "ddsd",
            "icon": "icon-red2",
            "tags": [
                "ddddd"
            ],
            "category": "Compute as a Service",
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT",
            "derivedFrom": [
                "tosca.nodes.Root"
            ],
            "artifacts": {
                "misdevices": {
                    "uniqueId": "res_ddddd.0.1.misdevices",
                    "artifactType": "PUPPET",
                    "artifactName": "misdevices.docx",
                    "userIdLastUpdater": "cs0008",
                    "creatorFullName": "Carlos  Santana",
                    "updaterFullName": "Carlos  Santana",
                    "creationDate": 1436353036161,
                    "lastUpdateDate": 1436353036161,
                    "esId": "res_ddddd.0.1:misdevices.docx",
                    "logicalName": "misdevices",
                    "description": "eeeeee"
                }
            },
            "interfaces": {

            },
            "capabilities": {
                "feature": {
                    "uniqueId": "capability.res_tosca.nodes.root.1.0.feature",
                    "type": "tosca.capabilities.Node"
                }
            },
            "requirements": {
                "dependency": {
                    "uniqueId": "res_tosca.nodes.root.1.0.dependency",
                    "capability": "tosca.capabilities.Node",
                    "node": "tosca.nodes.Root",
                    "relationship": "tosca.relationships.DependsOn"
                }
            },
            "vendorName": "dfsd",
            "vendorRelease": "ddddd",
            "contactId": "ss1234",
            "abstract": false,
            "highestVersion": true
        },
        {
            "uniqueId": "res_yo.0.1",
            "resourceName": "yo",
            "resourceVersion": "0.1",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "creationDate": 1436369145382,
            "lastUpdateDate": 1436369145382,
            "description": "dddd",
            "icon": "icon-red2",
            "tags": [
                "yo"
            ],
            "category": "Collaboration",
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT",
            "derivedFrom": [
                "tosca.nodes.WebServer"
            ],
            "artifacts": {

            },
            "interfaces": {

            },
            "capabilities": {
                "host": {
                    "uniqueId": "capability.res_tosca.nodes.webserver.1.0.host",
                    "type": "tosca.capabilities.Container",
                    "validSourceTypes": [
                        "tosca.nodes.WebApplication"
                    ]
                },
                "admin_endpoint": {
                    "uniqueId": "capability.res_tosca.nodes.webserver.1.0.admin_endpoint",
                    "type": "tosca.capabilities.Endpoint.Admin"
                },
                "feature": {
                    "uniqueId": "capability.res_tosca.nodes.root.1.0.feature",
                    "type": "tosca.capabilities.Node"
                },
                "data_endpoint": {
                    "uniqueId": "capability.res_tosca.nodes.webserver.1.0.data_endpoint",
                    "type": "tosca.capabilities.Endpoint"
                }
            },
            "requirements": {
                "dependency": {
                    "uniqueId": "res_tosca.nodes.root.1.0.dependency",
                    "capability": "tosca.capabilities.Node",
                    "node": "tosca.nodes.Root",
                    "relationship": "tosca.relationships.DependsOn"
                },
                "host": {
                    "uniqueId": "res_tosca.nodes.softwarecomponent.1.0.host",
                    "capability": "tosca.capabilities.Container",
                    "node": "tosca.nodes.Compute",
                    "relationship": "tosca.relationships.HostedOn"
                }
            },
            "vendorName": "dds",
            "vendorRelease": "ssss",
            "contactId": "ss1234",
            "abstract": false,
            "highestVersion": true
        },
        {
            "uniqueId": "res_martin2213.0.1",
            "resourceName": "martin2213",
            "resourceVersion": "0.1",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "creationDate": 1436369231581,
            "lastUpdateDate": 1436369231581,
            "description": "desc",
            "icon": "icon-red2",
            "tags": [
                "martin2213",
                "martin2213tag"
            ],
            "category": "Messaging",
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT",
            "derivedFrom": [
                "tosca.nodes.DBMS"
            ],
            "artifacts": {

            },
            "interfaces": {

            },
            "capabilities": {
                "host": {
                    "uniqueId": "capability.res_tosca.nodes.dbms.1.0.host",
                    "type": "tosca.capabilities.Container",
                    "validSourceTypes": [
                        "tosca.nodes.Database"
                    ]
                },
                "feature": {
                    "uniqueId": "capability.res_tosca.nodes.root.1.0.feature",
                    "type": "tosca.capabilities.Node"
                }
            },
            "requirements": {
                "dependency": {
                    "uniqueId": "res_tosca.nodes.root.1.0.dependency",
                    "capability": "tosca.capabilities.Node",
                    "node": "tosca.nodes.Root",
                    "relationship": "tosca.relationships.DependsOn"
                },
                "host": {
                    "uniqueId": "res_tosca.nodes.softwarecomponent.1.0.host",
                    "capability": "tosca.capabilities.Container",
                    "node": "tosca.nodes.Compute",
                    "relationship": "tosca.relationships.HostedOn"
                }
            },
            "vendorName": "Oracle",
            "vendorRelease": "1.2.5",
            "contactId": "Al1234",
            "abstract": false,
            "highestVersion": true
        }
    ],
    "services": [
        {
            "componentMetadataDefinition": {
                "uniqueId": "svc_wduma.0.1",
                "name": "wduma",
                "version": "0.1",
                "creationDate": 1436081587500,
                "lastUpdateDate": 1436081587500,
                "description": "BLa BLa",
                "state": "NOT_CERTIFIED_CHECKOUT",
                "tags": [
                    "wduma",
                    "wdumatag"
                ],
                "icon": "network_l_4",
                "highestVersion": true
            },
            "artifacts": {

            },
            "category": "Databases",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "serviceName": "wduma",
            "creationDate": 1436081587500,
            "icon": "network_l_4",
            "version": "0.1",
            "description": "BLa BLa",
            "tags": [
                "wduma",
                "wdumatag"
            ],
            "uniqueId": "svc_wduma.0.1",
            "lastUpdateDate": 1436081587500,
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT"
        },
        {
            "componentMetadataDefinition": {
                "uniqueId": "svc_r.0.1",
                "name": "r",
                "version": "0.1",
                "creationDate": 1436083434172,
                "lastUpdateDate": 1436083434172,
                "description": "r",
                "state": "NOT_CERTIFIED_CHECKOUT",
                "tags": [
                    "rrrr"
                ],
                "icon": "network_l_4",
                "highestVersion": true
            },
            "artifacts": {

            },
            "category": "IoT",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "serviceName": "r",
            "creationDate": 1436083434172,
            "icon": "network_l_4",
            "version": "0.1",
            "description": "r",
            "tags": [
                "rrrr"
            ],
            "uniqueId": "svc_r.0.1",
            "lastUpdateDate": 1436083434172,
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT"
        },
        {
            "componentMetadataDefinition": {
                "uniqueId": "svc_otdiz.0.1",
                "name": "otdiz",
                "version": "0.1",
                "creationDate": 1436094819610,
                "lastUpdateDate": 1436094819610,
                "description": "BLa BLa",
                "state": "NOT_CERTIFIED_CHECKOUT",
                "tags": [
                    "otdiz",
                    "otdiztag"
                ],
                "icon": "network_l_4",
                "highestVersion": true
            },
            "artifacts": {

            },
            "category": "Platform as a Service",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "serviceName": "otdiz",
            "creationDate": 1436094819610,
            "icon": "network_l_4",
            "version": "0.1",
            "description": "BLa BLa",
            "tags": [
                "otdiz",
                "otdiztag"
            ],
            "uniqueId": "svc_otdiz.0.1",
            "lastUpdateDate": 1436094819610,
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT"
        },
        {
            "componentMetadataDefinition": {
                "uniqueId": "svc_gxkvl.0.1",
                "name": "gxkvl",
                "version": "0.1",
                "creationDate": 1436094992972,
                "lastUpdateDate": 1436094992972,
                "description": "BLa BLa",
                "state": "NOT_CERTIFIED_CHECKOUT",
                "tags": [
                    "gxkvl",
                    "gxkvltag"
                ],
                "icon": "network_l_4",
                "highestVersion": true
            },
            "artifacts": {

            },
            "category": "Security",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "serviceName": "gxkvl",
            "creationDate": 1436094992972,
            "icon": "network_l_4",
            "version": "0.1",
            "description": "BLa BLa",
            "tags": [
                "gxkvl",
                "gxkvltag"
            ],
            "uniqueId": "svc_gxkvl.0.1",
            "lastUpdateDate": 1436094992972,
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT"
        },
        {
            "componentMetadataDefinition": {
                "uniqueId": "svc_testservice.0.1",
                "name": "testService",
                "version": "0.1",
                "creationDate": 1436098158942,
                "lastUpdateDate": 1436098158942,
                "description": "description",
                "state": "NOT_CERTIFIED_CHECKOUT",
                "tags": [
                    "tag1"
                ],
                "icon": "myICON.jpg",
                "highestVersion": true
            },
            "artifacts": {
                "install_apache": {
                    "uniqueId": "svc_testservice.0.1.install_apache",
                    "artifactType": "SHELL",
                    "artifactName": "install_apache.sh",
                    "userIdLastUpdater": "cs0008",
                    "creatorFullName": "Carlos  Santana",
                    "updaterFullName": "Carlos  Santana",
                    "creationDate": 1436098195328,
                    "lastUpdateDate": 1436098195328,
                    "esId": "svc_testservice.0.1:install_apache.sh",
                    "logicalName": "install_apache"
                }
            },
            "category": "Databases",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "serviceName": "testService",
            "creationDate": 1436098158942,
            "icon": "myICON.jpg",
            "version": "0.1",
            "description": "description",
            "tags": [
                "tag1"
            ],
            "uniqueId": "svc_testservice.0.1",
            "lastUpdateDate": 1436098158942,
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT"
        },
        {
            "componentMetadataDefinition": {
                "uniqueId": "svc_newtestservice5.0.1",
                "name": "newTestService5",
                "version": "0.1",
                "creationDate": 1436111412660,
                "lastUpdateDate": 1436111412660,
                "description": "service Description",
                "state": "NOT_CERTIFIED_CHECKOUT",
                "tags": [
                    "newTestService5",
                    "serviceTag"
                ],
                "icon": "network_l_4",
                "highestVersion": true
            },
            "artifacts": {

            },
            "category": "Big Data",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "serviceName": "newTestService5",
            "creationDate": 1436111412660,
            "icon": "network_l_4",
            "version": "0.1",
            "description": "service Description",
            "tags": [
                "newTestService5",
                "serviceTag"
            ],
            "uniqueId": "svc_newtestservice5.0.1",
            "lastUpdateDate": 1436111412660,
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT"
        },
        {
            "componentMetadataDefinition": {
                "uniqueId": "svc_newtestservice.0.1",
                "name": "newTestService",
                "version": "0.1",
                "creationDate": 1436114463660,
                "lastUpdateDate": 1436114463660,
                "description": "service Description",
                "state": "NOT_CERTIFIED_CHECKOUT",
                "tags": [
                    "serviceTag"
                ],
                "icon": "myIcon.jpg",
                "vendorName": "Oracle",
                "vendorRelease": "0.1",
                "contactId": "al1976",
                "highestVersion": true
            },
            "artifacts": {

            },
            "category": "Big Data",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "serviceName": "newTestService",
            "creationDate": 1436114463660,
            "icon": "myIcon.jpg",
            "version": "0.1",
            "description": "service Description",
            "tags": [
                "serviceTag"
            ],
            "uniqueId": "svc_newtestservice.0.1",
            "lastUpdateDate": 1436114463660,
            "contactId": "al1976",
            "vendorName": "Oracle",
            "vendorRelease": "0.1",
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT"
        },
        {
            "componentMetadataDefinition": {
                "uniqueId": "svc_éø⦹.0.1",
                "name": "éø¦¹",
                "version": "0.1",
                "creationDate": 1436168481712,
                "lastUpdateDate": 1436168481712,
                "description": "service Description",
                "state": "NOT_CERTIFIED_CHECKOUT",
                "tags": [
                    "éø¦¹",
                    "éø¦¹serviceTag"
                ],
                "icon": "network_l_4",
                "highestVersion": true
            },
            "artifacts": {

            },
            "category": "Big Data",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "serviceName": "éø¦¹",
            "creationDate": 1436168481712,
            "icon": "network_l_4",
            "version": "0.1",
            "description": "service Description",
            "tags": [
                "éø¦¹",
                "éø¦¹serviceTag"
            ],
            "uniqueId": "svc_éø⦹.0.1",
            "lastUpdateDate": 1436168481712,
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT"
        },
        {
            "componentMetadataDefinition": {
                "uniqueId": "svc_mmmm.0.1",
                "name": "mmmm",
                "version": "0.1",
                "creationDate": 1436175721980,
                "lastUpdateDate": 1436175721980,
                "description": "jjjj",
                "state": "NOT_CERTIFIED_CHECKOUT",
                "tags": [
                    "mmmm"
                ],
                "icon": "network_l_4",
                "highestVersion": true
            },
            "artifacts": {
                "Subtitle": {
                    "uniqueId": "svc_mmmm.0.1.Subtitle",
                    "artifactType": "SHELL",
                    "artifactName": "Subtitle.png",
                    "userIdLastUpdater": "cs0008",
                    "creatorFullName": "Carlos  Santana",
                    "updaterFullName": "Carlos  Santana",
                    "creationDate": 1436180446882,
                    "lastUpdateDate": 1436180446882,
                    "esId": "svc_mmmm.0.1:Subtitle.png",
                    "logicalName": "Subtitle",
                    "description": "dfdssfsd"
                },
                "10 numbers limit reached": {
                    "uniqueId": "svc_mmmm.0.1.10 numbers limit reached",
                    "artifactType": "SHELL",
                    "artifactName": "10 numbers limit reached.png",
                    "userIdLastUpdater": "cs0008",
                    "creatorFullName": "Carlos  Santana",
                    "updaterFullName": "Carlos  Santana",
                    "creationDate": 1436178322094,
                    "lastUpdateDate": 1436178322094,
                    "esId": "svc_mmmm.0.1:10 numbers limit reached.png",
                    "logicalName": "10 numbers limit reached",
                    "description": "hdfhdfhddf"
                },
                "Screenshot_2014-09-08-13-07-49": {
                    "uniqueId": "svc_mmmm.0.1.Screenshot_2014-09-08-13-07-49",
                    "artifactType": "SHELL",
                    "artifactName": "Screenshot_2014-09-08-13-07-49.png",
                    "userIdLastUpdater": "cs0008",
                    "creatorFullName": "Carlos  Santana",
                    "updaterFullName": "Carlos  Santana",
                    "creationDate": 1436180394486,
                    "lastUpdateDate": 1436180394486,
                    "esId": "svc_mmmm.0.1:Screenshot_2014-09-08-13-07-49.png",
                    "logicalName": "Screenshot_2014-09-08-13-07-49",
                    "description": "fdgfdgfdg"
                },
                "Slow upload ": {
                    "uniqueId": "svc_mmmm.0.1.Slow upload ",
                    "artifactType": "SHELL",
                    "artifactName": "Slow upload .png",
                    "userIdLastUpdater": "cs0008",
                    "creatorFullName": "Carlos  Santana",
                    "updaterFullName": "Carlos  Santana",
                    "creationDate": 1436180490467,
                    "lastUpdateDate": 1436180490467,
                    "esId": "svc_mmmm.0.1:Slow upload .png",
                    "logicalName": "Slow upload ",
                    "description": "sdffdsfds"
                },
                "img009": {
                    "uniqueId": "svc_mmmm.0.1.img009",
                    "artifactType": "PUPPET",
                    "artifactName": "img009.jpg",
                    "userIdLastUpdater": "cs0008",
                    "creatorFullName": "Carlos  Santana",
                    "updaterFullName": "Carlos  Santana",
                    "creationDate": 1436178135843,
                    "lastUpdateDate": 1436178135843,
                    "esId": "svc_mmmm.0.1:img009.jpg",
                    "logicalName": "img009",
                    "description": "hhhhh"
                },
                "casa1": {
                    "uniqueId": "svc_mmmm.0.1.casa1",
                    "artifactType": "HEAT",
                    "artifactName": "casa1.JPG",
                    "userIdLastUpdater": "cs0008",
                    "creatorFullName": "Carlos  Santana",
                    "updaterFullName": "Carlos  Santana",
                    "creationDate": 1436180424159,
                    "lastUpdateDate": 1436180424159,
                    "esId": "svc_mmmm.0.1:casa1.JPG",
                    "logicalName": "casa1",
                    "description": "fgsdfsdsdf"
                }
            },
            "category": "Call Control",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "serviceName": "mmmm",
            "creationDate": 1436175721980,
            "icon": "network_l_4",
            "version": "0.1",
            "description": "jjjj",
            "tags": [
                "mmmm"
            ],
            "uniqueId": "svc_mmmm.0.1",
            "lastUpdateDate": 1436175721980,
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT"
        },
        {
            "componentMetadataDefinition": {
                "uniqueId": "svc_fgfdgdfg.0.1",
                "name": "fgfdgdfg",
                "version": "0.1",
                "creationDate": 1436189750913,
                "lastUpdateDate": 1436189750913,
                "description": "fgdfgdf",
                "state": "NOT_CERTIFIED_CHECKOUT",
                "tags": [
                    "fgfdgdfg"
                ],
                "icon": "network_l_4",
                "highestVersion": true
            },
            "artifacts": {

            },
            "category": "Databases",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "serviceName": "fgfdgdfg",
            "creationDate": 1436189750913,
            "icon": "network_l_4",
            "version": "0.1",
            "description": "fgdfgdf",
            "tags": [
                "fgfdgdfg"
            ],
            "uniqueId": "svc_fgfdgdfg.0.1",
            "lastUpdateDate": 1436189750913,
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT"
        },
        {
            "componentMetadataDefinition": {
                "uniqueId": "svc_jujuy.0.1",
                "name": "jujuy",
                "version": "0.1",
                "creationDate": 1436190515151,
                "lastUpdateDate": 1436190515151,
                "description": "gfhdf",
                "state": "NOT_CERTIFIED_CHECKOUT",
                "tags": [
                    "jujuyggg"
                ],
                "icon": "network_l_1-3",
                "highestVersion": true
            },
            "artifacts": {
                "ServicePanel": {
                    "uniqueId": "svc_jujuy.0.1.ServicePanel",
                    "artifactType": "SHELL",
                    "artifactName": "ServicePanel.JPG",
                    "userIdLastUpdater": "cs0008",
                    "creatorFullName": "Carlos  Santana",
                    "updaterFullName": "Carlos  Santana",
                    "creationDate": 1436191109314,
                    "lastUpdateDate": 1436191109314,
                    "esId": "svc_jujuy.0.1:ServicePanel.JPG",
                    "logicalName": "ServicePanel",
                    "description": "ddddddddddddddddddd"
                },
                "IconEnd": {
                    "uniqueId": "svc_jujuy.0.1.IconEnd",
                    "artifactType": "PUPPET",
                    "artifactName": "IconEnd.JPG",
                    "userIdLastUpdater": "cs0008",
                    "creatorFullName": "Carlos  Santana",
                    "updaterFullName": "Carlos  Santana",
                    "creationDate": 1436190528852,
                    "lastUpdateDate": 1436190528852,
                    "esId": "svc_jujuy.0.1:IconEnd.JPG",
                    "logicalName": "IconEnd",
                    "description": "fffffff"
                },
                "IconCenter": {
                    "uniqueId": "svc_jujuy.0.1.IconCenter",
                    "artifactType": "SHELL",
                    "artifactName": "IconCenter.JPG",
                    "userIdLastUpdater": "cs0008",
                    "creatorFullName": "Carlos  Santana",
                    "updaterFullName": "Carlos  Santana",
                    "creationDate": 1436190584441,
                    "lastUpdateDate": 1436190584441,
                    "esId": "svc_jujuy.0.1:IconCenter.JPG",
                    "logicalName": "IconCenter",
                    "description": "fffff"
                },
                "udateresource": {
                    "uniqueId": "svc_jujuy.0.1.udateresource",
                    "artifactType": "YANG",
                    "artifactName": "udateresource.JPG",
                    "userIdLastUpdater": "cs0008",
                    "creatorFullName": "Carlos  Santana",
                    "updaterFullName": "Carlos  Santana",
                    "creationDate": 1436191131313,
                    "lastUpdateDate": 1436191131313,
                    "esId": "svc_jujuy.0.1:udateresource.JPG",
                    "logicalName": "udateresource",
                    "description": "dddd"
                },
                "toobolar": {
                    "uniqueId": "svc_jujuy.0.1.toobolar",
                    "artifactType": "SHELL",
                    "artifactName": "toobolar.JPG",
                    "userIdLastUpdater": "cs0008",
                    "creatorFullName": "Carlos  Santana",
                    "updaterFullName": "Carlos  Santana",
                    "creationDate": 1436191146471,
                    "lastUpdateDate": 1436191146471,
                    "esId": "svc_jujuy.0.1:toobolar.JPG",
                    "logicalName": "toobolar",
                    "description": "sssssssssssssss"
                }
            },
            "category": "Collaboration",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "serviceName": "jujuy",
            "creationDate": 1436190515151,
            "icon": "network_l_1-3",
            "version": "0.1",
            "description": "gfhdf",
            "tags": [
                "jujuyggg"
            ],
            "uniqueId": "svc_jujuy.0.1",
            "lastUpdateDate": 1436190515151,
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT"
        },
        {
            "componentMetadataDefinition": {
                "uniqueId": "svc_martin39.0.1",
                "name": "martin39",
                "version": "0.1",
                "creationDate": 1436252371041,
                "lastUpdateDate": 1436252371041,
                "description": "fffffff",
                "state": "NOT_CERTIFIED_CHECKOUT",
                "tags": [
                    "martin39"
                ],
                "icon": "network_l_4",
                "highestVersion": true
            },
            "artifacts": {
                "toobolar": {
                    "uniqueId": "svc_martin39.0.1.toobolar",
                    "artifactType": "SHELL",
                    "artifactName": "toobolar.JPG",
                    "userIdLastUpdater": "cs0008",
                    "creatorFullName": "Carlos  Santana",
                    "updaterFullName": "Carlos  Santana",
                    "creationDate": 1436252434415,
                    "lastUpdateDate": 1436252434415,
                    "esId": "svc_martin39.0.1:toobolar.JPG",
                    "logicalName": "toobolar",
                    "description": "ffff"
                }
            },
            "category": "Compute as a Service",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "serviceName": "martin39",
            "creationDate": 1436252371041,
            "icon": "network_l_4",
            "version": "0.1",
            "description": "fffffff",
            "tags": [
                "martin39"
            ],
            "uniqueId": "svc_martin39.0.1",
            "lastUpdateDate": 1436252371041,
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT"
        },
        {
            "componentMetadataDefinition": {
                "uniqueId": "svc_asdasd.0.1",
                "name": "asdasd",
                "version": "0.1",
                "creationDate": 1436253177668,
                "lastUpdateDate": 1436253177668,
                "description": "asdasd",
                "state": "NOT_CERTIFIED_CHECKOUT",
                "tags": [
                    "asdasd"
                ],
                "icon": "network_l_4",
                "highestVersion": true
            },
            "artifacts": {

            },
            "category": "Collaboration",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "serviceName": "asdasd",
            "creationDate": 1436253177668,
            "icon": "network_l_4",
            "version": "0.1",
            "description": "asdasd",
            "tags": [
                "asdasd"
            ],
            "uniqueId": "svc_asdasd.0.1",
            "lastUpdateDate": 1436253177668,
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT"
        },
        {
            "componentMetadataDefinition": {
                "uniqueId": "svc_fgdfgfd.0.1",
                "name": "fgdfgfd",
                "version": "0.1",
                "creationDate": 1436255258481,
                "lastUpdateDate": 1436255258481,
                "description": "dfgdfg",
                "state": "NOT_CERTIFIED_CHECKOUT",
                "tags": [
                    "fgdfgfd"
                ],
                "icon": "network_l_4",
                "highestVersion": true
            },
            "artifacts": {

            },
            "category": "Compute as a Service",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "serviceName": "fgdfgfd",
            "creationDate": 1436255258481,
            "icon": "network_l_4",
            "version": "0.1",
            "description": "dfgdfg",
            "tags": [
                "fgdfgfd"
            ],
            "uniqueId": "svc_fgdfgfd.0.1",
            "lastUpdateDate": 1436255258481,
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT"
        },
        {
            "componentMetadataDefinition": {
                "uniqueId": "svc_fdgd.0.1",
                "name": "fdgd",
                "version": "0.1",
                "creationDate": 1436257427821,
                "lastUpdateDate": 1436257427821,
                "description": "fdg",
                "state": "NOT_CERTIFIED_CHECKOUT",
                "tags": [
                    "fdgd"
                ],
                "icon": "call_controll",
                "highestVersion": true
            },
            "artifacts": {
                "toobolar": {
                    "uniqueId": "svc_fdgd.0.1.toobolar",
                    "artifactType": "SHELL",
                    "artifactName": "toobolar.JPG",
                    "userIdLastUpdater": "cs0008",
                    "creatorFullName": "Carlos  Santana",
                    "updaterFullName": "Carlos  Santana",
                    "creationDate": 1436257614747,
                    "lastUpdateDate": 1436257614747,
                    "esId": "svc_fdgd.0.1:toobolar.JPG",
                    "logicalName": "toobolar",
                    "description": "dfsdfsd"
                }
            },
            "category": "Compute as a Service",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "serviceName": "fdgd",
            "creationDate": 1436257427821,
            "icon": "call_controll",
            "version": "0.1",
            "description": "fdg",
            "tags": [
                "fdgd"
            ],
            "uniqueId": "svc_fdgd.0.1",
            "lastUpdateDate": 1436257427821,
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT"
        },
        {
            "componentMetadataDefinition": {
                "uniqueId": "svc_fdgdfgfd.0.1",
                "name": "fdgdfgfd",
                "version": "0.1",
                "creationDate": 1436266653797,
                "lastUpdateDate": 1436266653797,
                "description": "fdfdgf",
                "state": "NOT_CERTIFIED_CHECKOUT",
                "tags": [
                    "fdgdfgfd"
                ],
                "icon": "network_l_4",
                "highestVersion": true
            },
            "artifacts": {
                "IMG_20141222_072027": {
                    "uniqueId": "svc_fdgdfgfd.0.1.IMG_20141222_072027",
                    "artifactType": "SHELL",
                    "artifactName": "IMG_20141222_072027.jpg",
                    "userIdLastUpdater": "cs0008",
                    "creatorFullName": "Carlos  Santana",
                    "updaterFullName": "Carlos  Santana",
                    "creationDate": 1436267970999,
                    "lastUpdateDate": 1436267970999,
                    "esId": "svc_fdgdfgfd.0.1:IMG_20141222_072027.jpg",
                    "logicalName": "IMG_20141222_072027",
                    "description": "FEDF"
                }
            },
            "category": "Call Control",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "serviceName": "fdgdfgfd",
            "creationDate": 1436266653797,
            "icon": "network_l_4",
            "version": "0.1",
            "description": "fdfdgf",
            "tags": [
                "fdgdfgfd"
            ],
            "uniqueId": "svc_fdgdfgfd.0.1",
            "lastUpdateDate": 1436266653797,
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT"
        },
        {
            "componentMetadataDefinition": {
                "uniqueId": "svc_fbgvdfb.0.1",
                "name": "fbgvdfb",
                "version": "0.1",
                "creationDate": 1436267394596,
                "lastUpdateDate": 1436267394596,
                "description": "sdbdbs",
                "state": "NOT_CERTIFIED_CHECKOUT",
                "tags": [
                    "fbgvdfb"
                ],
                "icon": "network_l_4",
                "highestVersion": true
            },
            "artifacts": {
                "IMG_20140413_185621": {
                    "uniqueId": "svc_fbgvdfb.0.1.IMG_20140413_185621",
                    "artifactType": "YANG",
                    "artifactName": "IMG_20140413_185621.jpg",
                    "userIdLastUpdater": "cs0008",
                    "creatorFullName": "Carlos  Santana",
                    "updaterFullName": "Carlos  Santana",
                    "creationDate": 1436267701461,
                    "lastUpdateDate": 1436267701461,
                    "esId": "svc_fbgvdfb.0.1:IMG_20140413_185621.jpg",
                    "logicalName": "IMG_20140413_185621",
                    "description": "ACSCA"
                },
                "IMG_20140413_185643": {
                    "uniqueId": "svc_fbgvdfb.0.1.IMG_20140413_185643",
                    "artifactType": "CHEF",
                    "artifactName": "IMG_20140413_185643.jpg",
                    "userIdLastUpdater": "cs0008",
                    "creatorFullName": "Carlos  Santana",
                    "updaterFullName": "Carlos  Santana",
                    "creationDate": 1436267871628,
                    "lastUpdateDate": 1436267871628,
                    "esId": "svc_fbgvdfb.0.1:IMG_20140413_185643.jpg",
                    "logicalName": "IMG_20140413_185643",
                    "description": "ASDFAWSE"
                }
            },
            "category": "Call Control",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "serviceName": "fbgvdfb",
            "creationDate": 1436267394596,
            "icon": "network_l_4",
            "version": "0.1",
            "description": "sdbdbs",
            "tags": [
                "fbgvdfb"
            ],
            "uniqueId": "svc_fbgvdfb.0.1",
            "lastUpdateDate": 1436267394596,
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT"
        },
        {
            "componentMetadataDefinition": {
                "uniqueId": "svc_asdasds.0.1",
                "name": "asdasds",
                "version": "0.1",
                "creationDate": 1436268972057,
                "lastUpdateDate": 1436268972057,
                "description": "asdasdasd",
                "state": "NOT_CERTIFIED_CHECKOUT",
                "tags": [
                    "asdasds"
                ],
                "icon": "network_l_4",
                "highestVersion": true
            },
            "artifacts": {

            },
            "category": "Collaboration",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "serviceName": "asdasds",
            "creationDate": 1436268972057,
            "icon": "network_l_4",
            "version": "0.1",
            "description": "asdasdasd",
            "tags": [
                "asdasds"
            ],
            "uniqueId": "svc_asdasds.0.1",
            "lastUpdateDate": 1436268972057,
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT"
        },
        {
            "componentMetadataDefinition": {
                "uniqueId": "svc_kkkkk.0.1",
                "name": "kkkkk",
                "version": "0.1",
                "creationDate": 1436271848416,
                "lastUpdateDate": 1436271848416,
                "description": "hggh",
                "state": "NOT_CERTIFIED_CHECKOUT",
                "tags": [
                    "kkkkk"
                ],
                "icon": "network_l_4",
                "highestVersion": true
            },
            "artifacts": {
                "dessaper": {
                    "uniqueId": "svc_kkkkk.0.1.dessaper",
                    "artifactType": "SHELL",
                    "artifactName": "dessaper.JPG",
                    "userIdLastUpdater": "cs0008",
                    "creatorFullName": "Carlos  Santana",
                    "updaterFullName": "Carlos  Santana",
                    "creationDate": 1436271866025,
                    "lastUpdateDate": 1436271866025,
                    "esId": "svc_kkkkk.0.1:dessaper.JPG",
                    "logicalName": "dessaper",
                    "description": "fgdf"
                }
            },
            "category": "Call Control",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "serviceName": "kkkkk",
            "creationDate": 1436271848416,
            "icon": "network_l_4",
            "version": "0.1",
            "description": "hggh",
            "tags": [
                "kkkkk"
            ],
            "uniqueId": "svc_kkkkk.0.1",
            "lastUpdateDate": 1436271848416,
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT"
        },
        {
            "componentMetadataDefinition": {
                "uniqueId": "svc_alex.0.1",
                "name": "alex",
                "version": "0.1",
                "creationDate": 1436276482974,
                "lastUpdateDate": 1436276482974,
                "description": "Bla Bla",
                "state": "NOT_CERTIFIED_CHECKOUT",
                "tags": [
                    "alex",
                    "ddd"
                ],
                "icon": "network_l_4",
                "highestVersion": true
            },
            "artifacts": {
                "pencil": {
                    "uniqueId": "svc_alex.0.1.pencil",
                    "artifactType": "CHEF",
                    "artifactName": "pencil.JPG",
                    "userIdLastUpdater": "cs0008",
                    "creatorFullName": "Carlos  Santana",
                    "updaterFullName": "Carlos  Santana",
                    "creationDate": 1436276810898,
                    "lastUpdateDate": 1436276810898,
                    "esId": "svc_alex.0.1:pencil.JPG",
                    "logicalName": "pencil",
                    "description": "nk"
                },
                "Web Accessibility": {
                    "uniqueId": "svc_alex.0.1.Web Accessibility",
                    "artifactType": "HEAT",
                    "artifactName": "Web Accessibility.pptx",
                    "userIdLastUpdater": "cs0008",
                    "creatorFullName": "Carlos  Santana",
                    "updaterFullName": "Carlos  Santana",
                    "creationDate": 1436276689984,
                    "lastUpdateDate": 1436276689984,
                    "esId": "svc_alex.0.1:Web Accessibility.pptx",
                    "logicalName": "Web Accessibility",
                    "description": "dfhgf"
                },
                "toobolar": {
                    "uniqueId": "svc_alex.0.1.toobolar",
                    "artifactType": "CHEF",
                    "artifactName": "toobolar.JPG",
                    "userIdLastUpdater": "cs0008",
                    "creatorFullName": "Carlos  Santana",
                    "updaterFullName": "Carlos  Santana",
                    "creationDate": 1436276821186,
                    "lastUpdateDate": 1436276821186,
                    "esId": "svc_alex.0.1:toobolar.JPG",
                    "logicalName": "toobolar",
                    "description": "dgrt"
                }
            },
            "category": "IoT",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "serviceName": "alex",
            "creationDate": 1436276482974,
            "icon": "network_l_4",
            "version": "0.1",
            "description": "Bla Bla",
            "tags": [
                "alex",
                "ddd"
            ],
            "uniqueId": "svc_alex.0.1",
            "lastUpdateDate": 1436276482974,
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT"
        },
        {
            "componentMetadataDefinition": {
                "uniqueId": "svc_martin392.0.1",
                "name": "martin392",
                "version": "0.1",
                "creationDate": 1436276986104,
                "lastUpdateDate": 1436276986104,
                "description": "ddddd",
                "state": "NOT_CERTIFIED_CHECKOUT",
                "tags": [
                    "martin392"
                ],
                "icon": "network_l_4",
                "highestVersion": true
            },
            "artifacts": {

            },
            "category": "Collaboration",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "serviceName": "martin392",
            "creationDate": 1436276986104,
            "icon": "network_l_4",
            "version": "0.1",
            "description": "ddddd",
            "tags": [
                "martin392"
            ],
            "uniqueId": "svc_martin392.0.1",
            "lastUpdateDate": 1436276986104,
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT"
        },
        {
            "componentMetadataDefinition": {
                "uniqueId": "svc_alex1.0.1",
                "name": "Alex1",
                "version": "0.1",
                "creationDate": 1436277034499,
                "lastUpdateDate": 1436277034499,
                "description": "vvg",
                "state": "NOT_CERTIFIED_CHECKOUT",
                "tags": [
                    "Alex1"
                ],
                "icon": "network_l_1-3",
                "highestVersion": true
            },
            "artifacts": {

            },
            "category": "IoT",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "serviceName": "Alex1",
            "creationDate": 1436277034499,
            "icon": "network_l_1-3",
            "version": "0.1",
            "description": "vvg",
            "tags": [
                "Alex1"
            ],
            "uniqueId": "svc_alex1.0.1",
            "lastUpdateDate": 1436277034499,
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT"
        },
        {
            "componentMetadataDefinition": {
                "uniqueId": "svc_alex2.0.1",
                "name": "Alex2",
                "version": "0.1",
                "creationDate": 1436277071235,
                "lastUpdateDate": 1436277071235,
                "description": "sas",
                "state": "NOT_CERTIFIED_CHECKOUT",
                "tags": [
                    "Alex2"
                ],
                "icon": "network_l_4",
                "highestVersion": true
            },
            "artifacts": {

            },
            "category": "Big Data",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "serviceName": "Alex2",
            "creationDate": 1436277071235,
            "icon": "network_l_4",
            "version": "0.1",
            "description": "sas",
            "tags": [
                "Alex2"
            ],
            "uniqueId": "svc_alex2.0.1",
            "lastUpdateDate": 1436277071235,
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT"
        },
        {
            "componentMetadataDefinition": {
                "uniqueId": "svc_gfhgfhfg.0.1",
                "name": "gfhgfhfg",
                "version": "0.1",
                "creationDate": 1436337425800,
                "lastUpdateDate": 1436337425800,
                "description": "fghg",
                "state": "NOT_CERTIFIED_CHECKOUT",
                "tags": [
                    "gfhgfhgfgfhfg"
                ],
                "icon": "network_l_1-3",
                "highestVersion": true
            },
            "artifacts": {
                "Footer_menu": {
                    "uniqueId": "svc_gfhgfhfg.0.1.Footer_menu",
                    "artifactType": "SHELL",
                    "artifactName": "Footer_menu.JPG",
                    "userIdLastUpdater": "cs0008",
                    "creatorFullName": "Carlos  Santana",
                    "updaterFullName": "Carlos  Santana",
                    "creationDate": 1436337460108,
                    "lastUpdateDate": 1436337460108,
                    "esId": "svc_gfhgfhfg.0.1:Footer_menu.JPG",
                    "logicalName": "Footer_menu",
                    "description": "gfhgfh"
                }
            },
            "category": "Call Control",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "serviceName": "gfhgfhfg",
            "creationDate": 1436337425800,
            "icon": "network_l_1-3",
            "version": "0.1",
            "description": "fghg",
            "tags": [
                "gfhgfhgfgfhfg"
            ],
            "uniqueId": "svc_gfhgfhfg.0.1",
            "lastUpdateDate": 1436337425800,
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT"
        },
        {
            "componentMetadataDefinition": {
                "uniqueId": "svc_fffffdd.0.1",
                "name": "fffffdd",
                "version": "0.1",
                "creationDate": 1436342516321,
                "lastUpdateDate": 1436342516321,
                "description": "fdgg",
                "state": "NOT_CERTIFIED_CHECKOUT",
                "tags": [
                    "fffffdd"
                ],
                "icon": "network_l_4",
                "highestVersion": true
            },
            "artifacts": {

            },
            "category": "Call Control",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "serviceName": "fffffdd",
            "creationDate": 1436342516321,
            "icon": "network_l_4",
            "version": "0.1",
            "description": "fdgg",
            "tags": [
                "fffffdd"
            ],
            "uniqueId": "svc_fffffdd.0.1",
            "lastUpdateDate": 1436342516321,
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT"
        },
        {
            "componentMetadataDefinition": {
                "uniqueId": "svc_martin.0.1",
                "name": "martin",
                "version": "0.1",
                "creationDate": 1436342857036,
                "lastUpdateDate": 1436342857036,
                "description": "gggg",
                "state": "NOT_CERTIFIED_CHECKOUT",
                "tags": [
                    "martin"
                ],
                "icon": "network_l_4",
                "highestVersion": true
            },
            "artifacts": {

            },
            "category": "Call Control",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "serviceName": "martin",
            "creationDate": 1436342857036,
            "icon": "network_l_4",
            "version": "0.1",
            "description": "gggg",
            "tags": [
                "martin"
            ],
            "uniqueId": "svc_martin.0.1",
            "lastUpdateDate": 1436342857036,
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT"
        },
        {
            "componentMetadataDefinition": {
                "uniqueId": "svc_fghj.0.1",
                "name": "fghj",
                "version": "0.1",
                "creationDate": 1436343201655,
                "lastUpdateDate": 1436343201655,
                "description": "fghjfhj",
                "state": "NOT_CERTIFIED_CHECKOUT",
                "tags": [
                    "fghj"
                ],
                "icon": "network_l_4",
                "highestVersion": true
            },
            "artifacts": {

            },
            "category": "Big Data",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "serviceName": "fghj",
            "creationDate": 1436343201655,
            "icon": "network_l_4",
            "version": "0.1",
            "description": "fghjfhj",
            "tags": [
                "fghj"
            ],
            "uniqueId": "svc_fghj.0.1",
            "lastUpdateDate": 1436343201655,
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT"
        },
        {
            "componentMetadataDefinition": {
                "uniqueId": "svc_lol.0.1",
                "name": "lol",
                "version": "0.1",
                "creationDate": 1436343380208,
                "lastUpdateDate": 1436343380208,
                "description": "ggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggddddddddddddddddddddddddddddddssssssssssssssssswwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwpopopoddddssssssssssssssssswwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwpopopoddddssssssssssssssssswwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwpopopoddddssssssssssssssssswwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwpopopoddddssssssssssssssssswwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwpopopoddddssssssssssssssssswwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwpopopoddddssssssssssssssssswwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwpopopoddddssssssssssssssssswwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwpopopoddddssssssssssssssssswwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwpopopoddddssssssssssssssssswwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwpopopoddddssssssssssssssssswwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwpopopoddddssssssssss",
                "state": "NOT_CERTIFIED_CHECKOUT",
                "tags": [
                    "lol"
                ],
                "icon": "network_l_4",
                "highestVersion": true
            },
            "artifacts": {
                "10 numbers limit reached": {
                    "uniqueId": "svc_lol.0.1.10 numbers limit reached",
                    "artifactType": "SHELL",
                    "artifactName": "10 numbers limit reached.png",
                    "userIdLastUpdater": "cs0008",
                    "creatorFullName": "Carlos  Santana",
                    "updaterFullName": "Carlos  Santana",
                    "creationDate": 1436344950166,
                    "lastUpdateDate": 1436344950166,
                    "esId": "svc_lol.0.1:10 numbers limit reached.png",
                    "logicalName": "10 numbers limit reached",
                    "description": "yyyyyyy"
                },
                "Addproperty": {
                    "uniqueId": "svc_lol.0.1.Addproperty",
                    "artifactType": "PUPPET",
                    "artifactName": "Addproperty.JPG",
                    "userIdLastUpdater": "cs0008",
                    "creatorFullName": "Carlos  Santana",
                    "updaterFullName": "Carlos  Santana",
                    "creationDate": 1436344939800,
                    "lastUpdateDate": 1436344939800,
                    "esId": "svc_lol.0.1:Addproperty.JPG",
                    "logicalName": "Addproperty",
                    "description": "hhhhhhh"
                },
                "IMG_20140418_142614": {
                    "uniqueId": "svc_lol.0.1.IMG_20140418_142614",
                    "artifactType": "SHELL",
                    "artifactName": "IMG_20140418_142614.jpg",
                    "userIdLastUpdater": "cs0008",
                    "creatorFullName": "Carlos  Santana",
                    "updaterFullName": "Carlos  Santana",
                    "creationDate": 1436344895625,
                    "lastUpdateDate": 1436344895625,
                    "esId": "svc_lol.0.1:IMG_20140418_142614.jpg",
                    "logicalName": "IMG_20140418_142614",
                    "description": "bbbbbb"
                },
                "IMG_20140618_195014": {
                    "uniqueId": "svc_lol.0.1.IMG_20140618_195014",
                    "artifactType": "CHEF",
                    "artifactName": "IMG_20140618_195014.jpg",
                    "userIdLastUpdater": "cs0008",
                    "creatorFullName": "Carlos  Santana",
                    "updaterFullName": "Carlos  Santana",
                    "creationDate": 1436344912378,
                    "lastUpdateDate": 1436344912378,
                    "esId": "svc_lol.0.1:IMG_20140618_195014.jpg",
                    "logicalName": "IMG_20140618_195014",
                    "description": "bbbbb"
                },
                "IMG_20161213_222041": {
                    "uniqueId": "svc_lol.0.1.IMG_20161213_222041",
                    "artifactType": "HEAT",
                    "artifactName": "IMG_20161213_222041.jpg",
                    "userIdLastUpdater": "cs0008",
                    "creatorFullName": "Carlos  Santana",
                    "updaterFullName": "Carlos  Santana",
                    "creationDate": 1436343693049,
                    "lastUpdateDate": 1436343693049,
                    "esId": "svc_lol.0.1:IMG_20161213_222041.jpg",
                    "logicalName": "IMG_20161213_222041",
                    "description": "jjjjjjjjjjjjjjjjjjjjjjjdfjjjjjjjjjjjjjjjjjjjjjjjdfjjjjjjjjjjjjjjjjjjjjjjjdfjjjjjjjjjjjjjjjjjjjjjjjdfjjjjjjjjjjjjjjjjjjjjjjjdfjjjjjjjjjjjjjjjjjjjjjjjdfjjjjjjjjjjjjjjjjjjjjjjjdfjjjjjjjjjjjjjjjjjjjjjjjdfjjjjjjjjjjjjjjjjjjjjjjjdfjjjjjjjjjjjjjjjjjjjjjjjdfjjjjjjjjjjjjjjjjjjjjjjjdfjjjjjjjjjjjjjjjjjjjjjjjdfjjjjjjjjjjjjjjjjjjjjjjjdfjjjjjjjjjjjjjjjjjjjjjjjdfjjjjjjjjjjjjjjjjjjjjjjjdfjjjjjjjjjjjjjjjjjjjjjjjdfjjjjjjjjjjjjjjjjjjjjjjjdfjjjjjjjjjjjjjjjjjjjjjjjdfjjjjjjjjjjjjjjjjjjjjjjjdfjjjjjjjjjjjjjjjjjjjjjjjdfjjjjjjjjjjjjjjjjjjjjjjjdfjjjjjjjjjjjjjjjjjjjjjjjdfjjjjjjjjjjjjjjjjjjjjjjjdfjjjjjjjjjjjjjjjjjjjjjjjdfjjjjjjjjjjjjjjjjjjjjjjjdfjjjjjjjjjjjjjjjjjjjjjjjdfjjjjjjjjjjjjjjjjjjjjjjjdfjjjjjjjjjjjjjjjjjjjjjjjdfjjjjjjjjjjjjjjjjjjjjjjjdfjjjjjjjjjjjjjjjjjjjjjjjdfjjjjjjjjjjjjjjjjjjjjjjjdfjjjjjjjjjjjjjjjjjjjjjjjdfjjjjjjjjjjjjjjjjjjjjjjjdfjjjjjjjjjjjjjjjjjjjjjjjdfjjjjjjjjjjjjjjjjjjjjjjjdfjjjjjjjjjjjjjjjjjjjjjjjdfjjjjjjjjjjjjjjjjjjjjjjjdfjjjjjjjjjjjjjjjjjjjjjjjdfjjjjjjj4444444444444444444444444444444444444444444444444444444444444444444"
                },
                "IMG_20140418_142634": {
                    "uniqueId": "svc_lol.0.1.IMG_20140418_142634",
                    "artifactType": "PUPPET",
                    "artifactName": "IMG_20140418_142634.jpg",
                    "userIdLastUpdater": "cs0008",
                    "creatorFullName": "Carlos  Santana",
                    "updaterFullName": "Carlos  Santana",
                    "creationDate": 1436344878280,
                    "lastUpdateDate": 1436344878280,
                    "esId": "svc_lol.0.1:IMG_20140418_142634.jpg",
                    "logicalName": "IMG_20140418_142634",
                    "description": "bbbbbb"
                }
            },
            "category": "Web Servers",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "serviceName": "lol",
            "creationDate": 1436343380208,
            "icon": "network_l_4",
            "version": "0.1",
            "description": "ggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggddddddddddddddddddddddddddddddssssssssssssssssswwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwpopopoddddssssssssssssssssswwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwpopopoddddssssssssssssssssswwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwpopopoddddssssssssssssssssswwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwpopopoddddssssssssssssssssswwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwpopopoddddssssssssssssssssswwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwpopopoddddssssssssssssssssswwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwpopopoddddssssssssssssssssswwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwpopopoddddssssssssssssssssswwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwpopopoddddssssssssssssssssswwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwpopopoddddssssssssssssssssswwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwpopopoddddssssssssss",
            "tags": [
                "lol"
            ],
            "uniqueId": "svc_lol.0.1",
            "lastUpdateDate": 1436343380208,
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT"
        },
        {
            "componentMetadataDefinition": {
                "uniqueId": "svc_clarin.0.1",
                "name": "clarin",
                "version": "0.1",
                "creationDate": 1436346144421,
                "lastUpdateDate": 1436346144421,
                "description": "soy yo",
                "state": "NOT_CERTIFIED_CHECKOUT",
                "tags": [
                    "clarin"
                ],
                "icon": "network_l_4",
                "highestVersion": true
            },
            "artifacts": {

            },
            "category": "Infrastructure",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "serviceName": "clarin",
            "creationDate": 1436346144421,
            "icon": "network_l_4",
            "version": "0.1",
            "description": "soy yo",
            "tags": [
                "clarin"
            ],
            "uniqueId": "svc_clarin.0.1",
            "lastUpdateDate": 1436346144421,
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT"
        },
        {
            "componentMetadataDefinition": {
                "uniqueId": "svc_jkhkjh.0.1",
                "name": "jkhkjh",
                "version": "0.1",
                "creationDate": 1436356292329,
                "lastUpdateDate": 1436356292329,
                "description": "kjhlk",
                "state": "NOT_CERTIFIED_CHECKOUT",
                "tags": [
                    "jkhkjh"
                ],
                "icon": "network_l_4",
                "highestVersion": true
            },
            "artifacts": {
                "Screenshot_1": {
                    "uniqueId": "svc_jkhkjh.0.1.Screenshot_1",
                    "artifactType": "PUPPET",
                    "artifactName": "Screenshot_1.png",
                    "userIdLastUpdater": "cs0008",
                    "creatorFullName": "Carlos  Santana",
                    "updaterFullName": "Carlos  Santana",
                    "creationDate": 1436356484212,
                    "lastUpdateDate": 1436356484212,
                    "esId": "svc_jkhkjh.0.1:Screenshot_1.png",
                    "logicalName": "Screenshot_1",
                    "description": "zfvbgsadfgsdhsdghsdhdsghsdhzfvbgsadfgsdhsdghsdhdsghsdhzfvbgsadfgsdhsdghsdhdsghsdhzfvbgsadfgsdhsdghsdhdsghsdhzfvbgsadfgsdhsdghsdhdsghsdhzfvbgsadfgsdhsdghsdhdsghsdhzfvbgsadfgsdhsdghsdhdsghsdhzfvbgsadfgsdhsdghsdhdsghsdhzfvbgsadfgsdhsdghsdhdsghsdhzfvbgsadfgsdhsdghsdhdsghsdhzfvbgsadfgsdhsdghsdhdsghsdhzfvbgsadfgsdhsdghsdhdsghsdhzfvbgsadfgsdhsdghsdhdsghsdhzfvbgsadfgsdhsdghsdhdsghsdh"
                }
            },
            "category": "Call Control",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "resourceInstances": [
                {
                    "uniqueId": "svc_jkhkjh.0.1.res_tosca.nodes.compute.1.0.compute_1",
                    "name": "compute_1",
                    "resourceUid": "res_tosca.nodes.compute.1.0",
                    "creationTime": 1436356602608,
                    "modificationTime": 1436356602608,
                    "description": "Represents a real or virtual machine or server. Information specified on the Compute\r\t      node will be used to find the machine that fits the given requirements in the cloud\r\t      available machines. If no sizing information are specified the cloud provider default\r\t      machine will be used. It is strongly recommended to specify the required  CPUs and memory\r\t      at least.",
                    "posX": "781",
                    "posY": "241",
                    "icon": "defaulticon"
                },
                {
                    "uniqueId": "svc_jkhkjh.0.1.res_tosca.nodes.compute.1.0.compute_2",
                    "name": "compute_2",
                    "resourceUid": "res_tosca.nodes.compute.1.0",
                    "creationTime": 1436356789445,
                    "modificationTime": 1436356789445,
                    "description": "Represents a real or virtual machine or server. Information specified on the Compute\r\t      node will be used to find the machine that fits the given requirements in the cloud\r\t      available machines. If no sizing information are specified the cloud provider default\r\t      machine will be used. It is strongly recommended to specify the required  CPUs and memory\r\t      at least.",
                    "posX": "695",
                    "posY": "204",
                    "icon": "defaulticon"
                },
                {
                    "uniqueId": "svc_jkhkjh.0.1.res_tosca.nodes.network.network.1.0.network_3",
                    "name": "network_3",
                    "resourceUid": "res_tosca.nodes.network.network.1.0",
                    "creationTime": 1436356792215,
                    "modificationTime": 1436356792215,
                    "description": "Represents a simple , logical network service.",
                    "posX": "706",
                    "posY": "381",
                    "icon": "defaulticon"
                },
                {
                    "uniqueId": "svc_jkhkjh.0.1.res_tosca.nodes.network.port.1.0.port_4",
                    "name": "port_4",
                    "resourceUid": "res_tosca.nodes.network.port.1.0",
                    "creationTime": 1436356793840,
                    "modificationTime": 1436356793840,
                    "description": "Represents a logical entity that associates between Compute and Network normative types.",
                    "posX": "662",
                    "posY": "552",
                    "icon": "defaulticon"
                }
            ],
            "resourceInstancesRelations": [

            ],
            "serviceName": "jkhkjh",
            "creationDate": 1436356292329,
            "icon": "network_l_4",
            "version": "0.1",
            "description": "kjhlk",
            "tags": [
                "jkhkjh"
            ],
            "uniqueId": "svc_jkhkjh.0.1",
            "lastUpdateDate": 1436356292329,
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT"
        },
        {
            "componentMetadataDefinition": {
                "uniqueId": "svc_resrw.0.1",
                "name": "resrw",
                "version": "0.1",
                "creationDate": 1436358721893,
                "lastUpdateDate": 1436358721893,
                "description": "rer",
                "state": "NOT_CERTIFIED_CHECKOUT",
                "tags": [
                    "resrwrer",
                    "lklkl"
                ],
                "icon": "network_l_1-3",
                "highestVersion": true
            },
            "artifacts": {

            },
            "category": "Call Control",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "resourceInstances": [
                {
                    "uniqueId": "svc_resrw.0.1.res_tosca.nodes.compute.1.0.compute_1",
                    "name": "compute_1",
                    "resourceUid": "res_tosca.nodes.compute.1.0",
                    "creationTime": 1436358725759,
                    "modificationTime": 1436358725759,
                    "description": "Represents a real or virtual machine or server. Information specified on the Compute\r\t      node will be used to find the machine that fits the given requirements in the cloud\r\t      available machines. If no sizing information are specified the cloud provider default\r\t      machine will be used. It is strongly recommended to specify the required  CPUs and memory\r\t      at least.",
                    "posX": "221",
                    "posY": "251",
                    "icon": "defaulticon"
                },
                {
                    "uniqueId": "svc_resrw.0.1.res_tosca.nodes.network.network.1.0.network_2",
                    "name": "network_2",
                    "resourceUid": "res_tosca.nodes.network.network.1.0",
                    "creationTime": 1436358727329,
                    "modificationTime": 1436358727329,
                    "description": "Represents a simple , logical network service.",
                    "posX": "626",
                    "posY": "340",
                    "icon": "defaulticon"
                },
                {
                    "uniqueId": "svc_resrw.0.1.res_tosca.nodes.network.port.1.0.port_3",
                    "name": "port_3",
                    "resourceUid": "res_tosca.nodes.network.port.1.0",
                    "creationTime": 1436358729466,
                    "modificationTime": 1436358729466,
                    "description": "Represents a logical entity that associates between Compute and Network normative types.",
                    "posX": "558",
                    "posY": "275",
                    "icon": "defaulticon"
                }
            ],
            "resourceInstancesRelations": [

            ],
            "serviceName": "resrw",
            "creationDate": 1436358721893,
            "icon": "network_l_1-3",
            "version": "0.1",
            "description": "rer",
            "tags": [
                "resrwrer",
                "lklkl"
            ],
            "uniqueId": "svc_resrw.0.1",
            "lastUpdateDate": 1436358721893,
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT"
        },
        {
            "componentMetadataDefinition": {
                "uniqueId": "svc_coco.0.1",
                "name": "coco",
                "version": "0.1",
                "creationDate": 1436362653722,
                "lastUpdateDate": 1436362653722,
                "description": "hhh",
                "state": "NOT_CERTIFIED_CHECKOUT",
                "tags": [
                    "coco"
                ],
                "icon": "network_l_4",
                "highestVersion": true
            },
            "artifacts": {

            },
            "category": "Call Control",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "serviceName": "coco",
            "creationDate": 1436362653722,
            "icon": "network_l_4",
            "version": "0.1",
            "description": "hhh",
            "tags": [
                "coco"
            ],
            "uniqueId": "svc_coco.0.1",
            "lastUpdateDate": 1436362653722,
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT"
        },
        {
            "componentMetadataDefinition": {
                "uniqueId": "svc_nermartin.0.1",
                "name": "nerMartin",
                "version": "0.1",
                "creationDate": 1436366670488,
                "lastUpdateDate": 1436366670488,
                "description": "gggggggggg",
                "state": "NOT_CERTIFIED_CHECKOUT",
                "tags": [
                    "nerMartin"
                ],
                "icon": "network_l_4",
                "highestVersion": true
            },
            "artifacts": {

            },
            "category": "IMS",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "serviceName": "nerMartin",
            "creationDate": 1436366670488,
            "icon": "network_l_4",
            "version": "0.1",
            "description": "gggggggggg",
            "tags": [
                "nerMartin"
            ],
            "uniqueId": "svc_nermartin.0.1",
            "lastUpdateDate": 1436366670488,
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT"
        },
        {
            "componentMetadataDefinition": {
                "uniqueId": "svc_susana.0.1",
                "name": "susana",
                "version": "0.1",
                "creationDate": 1436367239625,
                "lastUpdateDate": 1436367239625,
                "description": "fff",
                "state": "NOT_CERTIFIED_CHECKOUT",
                "tags": [
                    "susana"
                ],
                "icon": "network_l_4",
                "highestVersion": true
            },
            "artifacts": {

            },
            "category": "Call Control",
            "creatorUserId": "cs0008",
            "creatorFullName": "Carlos Santana",
            "lastUpdaterUserId": "cs0008",
            "lastUpdaterFullName": "Carlos Santana",
            "serviceName": "susana",
            "creationDate": 1436367239625,
            "icon": "network_l_4",
            "version": "0.1",
            "description": "fff",
            "tags": [
                "susana"
            ],
            "uniqueId": "svc_susana.0.1",
            "lastUpdateDate": 1436367239625,
            "lifecycleState": "NOT_CERTIFIED_CHECKOUT"
        }
    ]
}