Skip to content
gst.json 103 KiB
Newer Older
tranoris's avatar
tranoris committed
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 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000
{
	"name": "GST External",
	"description": "GST external example",
	"version": "5.0.0",
	"isBundle": false,
	"attachment": [
	],
	"relatedParty": [
	],
	"resourceSpecification": [
	],
	"serviceLevelSpecification": [
	],
	"serviceSpecCharacteristic": [
	  {
			"name": "Availability",
			"configurable": false,
			"description": "(Communication service) availability: percentage value of the amount of time the end-to-end communication service is delivered according to an agreed QoS, divided by the amount of time the system is expected to deliver the end-to-end service according to the specification in a specific area, see also 3GPP TS 22.261",
			"extensible": null,
			"isUnique": true,
			"maxCardinality": 1,
			"minCardinality": 0,
			"regex": null,
			"valueType": "FLOAT",
			"serviceSpecCharRelationship": [
				{ "name": "Character Attribute", "role": "tag", "relationshipType": "tag" },
				{ "name": "Functional", "role": "tag", "relationshipType": "tag" }
			],
			"serviceSpecCharacteristicValue": [
				{
					"isDefault": true,
					"rangeInterval": null,
					"regex": null,
					"unitOfMeasure": "percent",
					"valueFrom": null,
					"valueTo": null,
					"valueType": "FLOAT",
					"validFor": null,
					"value": {
						"value": "95",
						"alias": "High availability"
					}
				}
				
			]
		},
		{
			"name": "Area of Service",
			"configurable": false,
			"description": "This attribute specifies the area where the UEs can access a particular network slice. Therefore, the attribute specifies the list of the countries where the service will be provided. The list is specific to NSPs and their roaming agreements. In case the list comprises more than one entry, roaming agreements between the HPMN and the VPMNs are required.",
			"extensible": null,
			"isUnique": true,
			"maxCardinality": 1,
			"minCardinality": 0,
			"regex": null,
			"valueType": "SET",
			"serviceSpecCharRelationship": [
				{ "name": "Character Attribute", "role": "tag", "relationshipType": "tag" },
				{ "name": "Operational", "role": "tag", "relationshipType": "tag" },
				{ "name": "Scalability Attribute", "role": "tag", "relationshipType": "tag" },
				{ "name": "KPI", "role": "tag", "relationshipType": "tag" }	,
				{
					"role": "Region specification",
					"name": "Area of Service: Region specification",
					"relationshipType": "dependency"
				}
			],
			"serviceSpecCharacteristicValue": [
				{
					"isDefault": true,
					"rangeInterval": null,
					"regex": null,
					"unitOfMeasure": "N/A",
					"valueFrom": null,
					"valueTo": null,
					"valueType": "TEXT",
					"validFor": null,
					"value": {
						"value": "Country",
						"alias": "ISO 3166-1 Alpha-2 country codes"
					}
				}
				
			]
		},
		{
			"name": "Area of Service: Region specification",
			"configurable": false,
			"description": "For every single country listed in the area of service attribute it needs to be indicated if the service will be provided in the whole country or just in part of the country. If the NSC requires a specific location, this attribute can be used to specify the regions of the country where the service will be provided. It needs to be completed for every country listed in the Area of service attribute. The list of regions is specific for each country and the way to define these regions is the decision of the NSC and NSP.",
			"extensible": null,
			"isUnique": true,
			"maxCardinality": 1,
			"minCardinality": 0,
			"regex": null,
			"valueType": "SET",
			"serviceSpecCharRelationship": [
				{ "name": "Character Attribute", "role": "tag", "relationshipType": "tag" },
				{ "name": "Operational", "role": "tag", "relationshipType": "tag" },
				{ "name": "Scalability Attribute", "role": "tag", "relationshipType": "tag" },
				{ "name": "KPI", "role": "tag", "relationshipType": "tag" }	
			],
			"serviceSpecCharacteristicValue": [
				{
					"isDefault": true,
					"rangeInterval": null,
					"regex": null,
					"unitOfMeasure": "N/A",
					"valueFrom": null,
					"valueTo": null,
					"valueType": "INTEGER",
					"validFor": null,
					"value": {
						"value": "0",
						"alias": "Full Country"
					}
				},
				{
					"isDefault": false,
					"rangeInterval": null,
					"regex": null,
					"unitOfMeasure": "N/A",
					"valueFrom": null,
					"valueTo": null,
					"valueType": "INTEGER",
					"validFor": null,
					"value": {
						"value": "1",
						"alias": "Local Region A"
					}
				},
				{
					"isDefault": false,
					"rangeInterval": null,
					"regex": null,
					"unitOfMeasure": "N/A",
					"valueFrom": null,
					"valueTo": null,
					"valueType": "INTEGER",
					"validFor": null,
					"value": {
						"value": "2",
						"alias": "Local Region B"
					}
				}
				
			]
		},
		{
			"name": "Delay tolerance",
			"configurable": false,
			"description": "Provide the NSC with service delivery flexibility, especially for the vertical services that are not chasing a high system performance. For instance, the service will be delivered once the mobile system has sufficient resources or during the off-peak hours. For this type of traffic, it is not too critical how long it takes to deliver the amount of data, e.g. within hours, days, weeks, etc.",
			"extensible": null,
			"isUnique": true,
			"maxCardinality": 1,
			"minCardinality": 0,
			"regex": null,
			"valueType": "BINARY",
			
			"serviceSpecCharRelationship": [
				{ "name": "Character Attribute", "role": "tag", "relationshipType": "tag" },
				{ "name": "Functional", "role": "tag", "relationshipType": "tag" },
				{ "name": "KPI", "role": "tag", "relationshipType": "tag" }	
			],
			"serviceSpecCharacteristicValue": [
				{
					"isDefault": true,
					"rangeInterval": null,
					"regex": null,
					"unitOfMeasure": "N/A",
					"valueFrom": null,
					"valueTo": null,
					"valueType": "BINARY",
					"validFor": null,
					"value": {
						"value": "0",
						"alias": "Not supported"
					}
				},
				{
					"isDefault": false,
					"rangeInterval": null,
					"regex": null,
					"unitOfMeasure": "N/A",
					"valueFrom": null,
					"valueTo": null,
					"valueType": "BINARY",
					"validFor": null,
					"value": {
						"value": "1",
						"alias": "Supported"
					}
				}
			]
		},
		{
			"name": "Deterministic communication",
			"description": "This attribute defines if the network slice supports deterministic communication for.",
			"serviceSpecCharRelationship": [
				{ "name": "Character Attribute", "role": "tag", "relationshipType": "tag" },
				{ "name": "Performance", "role": "tag", "relationshipType": "tag" },
				{ "name": "KPI", "role": "tag", "relationshipType": "tag" },
				{
					"role": "Availabilty",
					"name": "Deterministic communication: Availabilty",
					"relationshipType": "dependency"
				},
				{
					"role": "Periodicity",
					"name": "Deterministic communication: Periodicity",
					"relationshipType": "dependency"
				}
			]
		},
		{
			"name": "Deterministic communication: Availabilty",
			"configurable": false,
			"description": "Availability describes if the network slice supports deterministic communication.",
			"extensible": null,
			"isUnique": true,
			"maxCardinality": 1,
			"minCardinality": 0,
			"regex": null,
			"valueType": "BINARY",
			"serviceSpecCharRelationship": [
				{ "name": "Character Attribute", "role": "tag", "relationshipType": "tag" },
				{ "name": "Performance", "role": "tag", "relationshipType": "tag" },
				{ "name": "KPI", "role": "tag", "relationshipType": "tag" }
			],
			"serviceSpecCharacteristicValue": [
				{
					"isDefault": true,
					"rangeInterval": null,
					"regex": null,
					"unitOfMeasure": "N/A",
					"valueFrom": null,
					"valueTo": null,
					"valueType": "BINARY",
					"validFor": null,
					"value": {
						"value": "0",
						"alias": "Not supported"
					}
				},
				{
					"isDefault": false,
					"rangeInterval": null,
					"regex": null,
					"unitOfMeasure": "N/A",
					"valueFrom": null,
					"valueTo": null,
					"valueType": "BINARY",
					"validFor": null,
					"value": {
						"value": "1",
						"alias": "Supported"
					}
				}
			]
		},
		{
			"name": "Deterministic communication: Periodicity",
			"configurable": false,
			"description": "Periodicity provides a list of periodicities supported by the network slice.",
			"extensible": null,
			"isUnique": true,
			"maxCardinality": 1,
			"minCardinality": 0,
			"regex": "Conditional: This parameter is present when the “Availability” is set to 1.",
			"valueType": "ARRAY",
			"serviceSpecCharRelationship": [
				{ "name": "Character Attribute", "role": "tag", "relationshipType": "tag" },
				{ "name": "Performance", "role": "tag", "relationshipType": "tag" },
				{ "name": "KPI", "role": "tag", "relationshipType": "tag" }
			],
			"serviceSpecCharacteristicValue": [
				{
					"isDefault": false,
					"rangeInterval": null,
					"regex": null,
					"unitOfMeasure": "Seconds",
					"valueFrom": null,
					"valueTo": null,
					"valueType": "FLOAT",
					"validFor": null,
					"value": {
						"value": "0"
					}
				}
			]
		},
		{
			"name": "Downlink throughput per network slice",
			"description": "This attribute relates to the aggregated data rate in downlink for all UEs together in the network slice (this is not per UE).",
			"serviceSpecCharRelationship": [
				{
					"role": "Guaranteed downlink throughput",
					"name": "Downlink throughput per network slice: Guaranteed downlink throughput",
					"relationshipType": "dependency"
				},
				{
					"role": "Additional downlink GBR QoS flows",
					"name": "Downlink throughput per network slice: Additional downlink GBR QoS flows",
					"relationshipType": "dependency"
				},
				{
					"role": "Maximum downlink throughput",
					"name": "Downlink throughput per network slice: Maximum downlink throughput",
					"relationshipType": "dependency"
				}
			]
		},
		{
			"name": "Downlink throughput per network slice: Guaranteed downlink throughput quota",
			"configurable": false,
			"description": "This parameter describes the guaranteed throughput/data rate supported by the network slice for the aggregate of all GBR QoS flows in downlink belonging to the set of all UEs using the network slice. Not including this parameter or if the value is 0, best effort traffic is expected where no minimum throughput is guaranteed.",
			"extensible": null,
			"isUnique": true,
			"maxCardinality": 1,
			"minCardinality": 1,
			"regex": null,
			"valueType": "FLOAT",
			"serviceSpecCharRelationship": [
				{ "name": "Scalability Attribute", "role": "tag", "relationshipType": "tag" },
				{ "name": "KPI", "role": "tag", "relationshipType": "tag" }
			],
			"serviceSpecCharacteristicValue": [
				{
					"isDefault": false,
					"rangeInterval": null,
					"regex": null,
					"unitOfMeasure": "kbps",
					"valueFrom": null,
					"valueTo": null,
					"valueType": "FLOAT",
					"validFor": null,
					"value": {
						"value": "0"
					}
				}
			]
		},
		{
			"name": "Downlink throughput per network slice: Additional downlink GBR QoS flows",
			"configurable": false,
			"description": "Additional downlink GBR QoS flows.",
			"extensible": null,
			"isUnique": true,
			"maxCardinality": 1,
			"minCardinality": 1,
			"regex": null,
			"valueType": "SET",
			"serviceSpecCharRelationship": [
				{ "name": "Scalability Attribute", "role": "tag", "relationshipType": "tag" },
				{ "name": "KPI", "role": "tag", "relationshipType": "tag" }
			],
			"serviceSpecCharacteristicValue": [
				{
					"isDefault": true,
					"rangeInterval": null,
					"regex": null,
					"unitOfMeasure": "N/A",
					"valueFrom": null,
					"valueTo": null,
					"valueType": "INTEGER",
					"validFor": null,
					"value": {
						"value": "0",
						"alias": "No additional downlink GBR QoS flows allowed"
					}
				},
				{
					"isDefault": false,
					"rangeInterval": null,
					"regex": null,
					"unitOfMeasure": "N/A",
					"valueFrom": null,
					"valueTo": null,
					"valueType": "INTEGER",
					"validFor": null,
					"value": {
						"value": "1",
						"alias": "Additional downlink GBR QoS flows allowed"
					}
				}
				
			]
		},
		{
			"name": "Downlink throughput per network slice: Maximum downlink throughput",
			"configurable": false,
			"description": "This parameter defines the maximum data rate supported by the network slice for all UEs together in downlink.",
			"extensible": null,
			"isUnique": true,
			"maxCardinality": 1,
			"minCardinality": 0,
			"regex": "Conditional: Either maximum downlink throughput per network slice or Maximum downlink throughput per UE shall be present",
			"valueType": "INTEGER",
			"serviceSpecCharRelationship": [
				{ "name": "Scalability Attribute", "role": "tag", "relationshipType": "tag" },
				{ "name": "KPI", "role": "tag", "relationshipType": "tag" }
			],
			"serviceSpecCharacteristicValue": [
				{
					"isDefault": false,
					"rangeInterval": null,
					"regex": null,
					"unitOfMeasure": "kbps",
					"valueFrom": null,
					"valueTo": null,
					"valueType": "INTEGER",
					"validFor": null,
					"value": {
						"value": "0"
					}
				}
			]
		},
		{
			"name": "Downlink maximum throughput per UE",
			"configurable": false,
			"description": "This attribute describes the maximum data rate supported by the network slice per UE in downlink. The attribute is comprised of a list of Service Category parameters with the associated Maximum Downlink Throughput per UE value.",
			"serviceSpecCharRelationship": [
				{
					"role": "Service category",
					"name": "Downlink maximum throughput per UE: Service category",
					"relationshipType": "dependency"
				},
				{
					"role": "Maximum downlink throughput per UE value",
					"name": "Downlink maximum throughput per UE: Maximum downlink throughput per UE value",
					"relationshipType": "dependency"
				}
			]
		},
		{
			"name": "Downlink maximum throughput per UE: Service category",
			"configurable": false,
			"description": "This parameter defines a service category which may be assigned to certain groups of devices using the network slice. If present, it shall be associated with a Maximum Downlink Throughput Value parameter.",
			"extensible": null,
			"isUnique": true,
			"maxCardinality": 1,
			"minCardinality": 0,
			"regex": "Conditional: Attribute must be present if service is supported requiring guaranteed downlink throughput",
			"valueType": "TEXT",			
			"serviceSpecCharRelationship": [
				{ "name": "Character Attribute", "role": "tag", "relationshipType": "tag" },
				{ "name": "Functional", "role": "tag", "relationshipType": "tag" }
			],
			"serviceSpecCharacteristicValue": [
				{
					"isDefault": false,
					"rangeInterval": null,
					"regex": null,
					"unitOfMeasure": "N/A",
					"valueFrom": null,
					"valueTo": null,
					"valueType": "TEXT",
					"validFor": null,
					"value": {
						"value": "Service Category"
					}
				}
			]
		},
		{
			"name": "Downlink maximum throughput per UE: Maximum downlink throughput per UE value",
			"configurable": false,
			"description": "This parameter defines the Maximum Downlink Throughput per UE value. This may be associated with a Service Category parameter.",
			"extensible": null,
			"isUnique": true,
			"maxCardinality": 1,
			"minCardinality": 0,
			"regex": "Conditional: Either maximum downlink throughput per network slice or Maximum downlink throughput per UE shall be present",
			"valueType": "INTEGER",
			"serviceSpecCharRelationship": [
				{ "name": "Character Attribute", "role": "tag", "relationshipType": "tag" },
				{ "name": "Performance", "role": "tag", "relationshipType": "tag" },
				{ "name": "KPI", "role": "tag", "relationshipType": "tag" }
			],
			"serviceSpecCharacteristicValue": [
				{
					"isDefault": false,
					"rangeInterval": null,
					"regex": null,
					"unitOfMeasure": "kbps",
					"valueFrom": null,
					"valueTo": null,
					"valueType": "INTEGER",
					"validFor": null,
					"value": {
						"value": "50000"
					}
				}
			]
		},
		{
			"name": "Energy efficiency",
			"description": "This attribute describes whether the network slice supports the energy efficiency KPI. The energy efficiency is evaluated only when the network is running.",
			"serviceSpecCharRelationship": [
				{
					"role": "Network slice energy efficiency",
					"name": "Energy efficiency: Network slice energy efficiency",
					"relationshipType": "dependency"
				}
			]
		},
		{
			"name": "Energy efficiency: Network slice energy efficiency",
			"configurable": false,
			"description": "",
			"extensible": null,
			"isUnique": true,
			"maxCardinality": 1,
			"minCardinality": 0,
			"regex": null,
			"valueType": "INTEGER",
			"serviceSpecCharRelationship": [
				{ "name": "Character Attribute", "role": "tag", "relationshipType": "tag" },
				{ "name": "Operational", "role": "tag", "relationshipType": "tag" }
			],
			"serviceSpecCharacteristicValue": [
				{
					"isDefault": false,
					"rangeInterval": null,
					"regex": null,
					"unitOfMeasure": "Bit / Joule",
					"valueFrom": null,
					"valueTo": null,
					"valueType": "INTEGER",
					"validFor": null,
					"value": {
						"value": "40",
						"alias": "(Urban area)"
					}
				}
			]
		},
		{
			"name": "Group communication support",
			"configurable": false,
			"description": "This parameter describes which type of group communication is provided by the network slice. ",
			"extensible": null,
			"isUnique": true,
			"maxCardinality": 1,
			"minCardinality": 1,
			"regex": null,
			"valueType": "ENUM",
			
			"serviceSpecCharRelationship": [
				{ "name": "Character Attribute", "role": "tag", "relationshipType": "tag" },
				{ "name": "Functional", "role": "tag", "relationshipType": "tag" }
			],
			"serviceSpecCharacteristicValue": [
				{
					"isDefault": true,
					"rangeInterval": null,
					"regex": null,
					"unitOfMeasure": "N/A",
					"valueFrom": null,
					"valueTo": null,
					"valueType": "INTEGER",
					"validFor": null,
					"value": {
						"value": "0",
						"alias": "not available"
					}
				},
				{
					"isDefault": false,
					"rangeInterval": null,
					"regex": null,
					"unitOfMeasure": "N/A",
					"valueFrom": null,
					"valueTo": null,
					"valueType": "INTEGER",
					"validFor": null,
					"value": {
						"value": "1",
						"alias": "Single Cell Point to Multipoint (SCPTM)"
					}
				},
				{
					"isDefault": false,
					"rangeInterval": null,
					"regex": null,
					"unitOfMeasure": "N/A",
					"valueFrom": null,
					"valueTo": null,
					"valueType": "INTEGER",
					"validFor": null,
					"value": {
						"value": "2",
						"alias": "Broadcast/Multicast"
					}
				},
				{
					"isDefault": false,
					"rangeInterval": null,
					"regex": null,
					"unitOfMeasure": "N/A",
					"valueFrom": null,
					"valueTo": null,
					"valueType": "INTEGER",
					"validFor": null,
					"value": {
						"value": "3",
						"alias": "Broadcast/Multicast + SC-PTM"
					}
				}
			]
		},
		{
			"name": "Isolation level: Isolation",
			"configurable": false,
			"description": "Isolation is one of the key expectations of network slicing. A network slice instance may be fully or partly, logically and/or physically, isolated from another network slice instance. ",
			"extensible": null,
			"isUnique": true,
			"maxCardinality": 1,
			"minCardinality": 0,
			"regex": null,
			"valueType": "ENUM",
			"serviceSpecCharRelationship": [
				{ "name": "Character Attribute", "role": "tag", "relationshipType": "tag" },
				{ "name": "Functional", "role": "tag", "relationshipType": "tag" },
				{
					"role": "Physical Isolation",
					"name": "Isolation level: Physical Isolation",
					"relationshipType": "dependency"
				},
				{
					"role": "Logical Isolation",
					"name": "Isolation level: Logical Isolation",
					"relationshipType": "dependency"
				}
			],
			"serviceSpecCharacteristicValue": [
				{
					"isDefault": true,
					"rangeInterval": null,
					"regex": null,
					"unitOfMeasure": "N/A",
					"valueFrom": null,
					"valueTo": null,
					"valueType": "INTEGER",
					"validFor": null,
					"value": {
						"value": "0",
						"alias": "No Isolation"
					}
				},
				{
					"isDefault": false,
					"rangeInterval": null,
					"regex": null,
					"unitOfMeasure": "N/A",
					"valueFrom": null,
					"valueTo": null,
					"valueType": "INTEGER",
					"validFor": null,
					"value": {
						"value": "1",
						"alias": "Physical Isolation"
					}
				},
				{
					"isDefault": false,
					"rangeInterval": null,
					"regex": null,
					"unitOfMeasure": "N/A",
					"valueFrom": null,
					"valueTo": null,
					"valueType": "INTEGER",
					"validFor": null,
					"value": {
						"value": "2",
						"alias": "Logical Isolation"
					}
				}
			]
		},
		{
			"name": "Isolation level: Physical Isolation",
			"configurable": false,
			"description": "Physical network slices are physically separated (e.g. different rack, different hardware, different location, etc.). Process and threads isolation,  Physical memory isolation, Physical network isolation",
			"extensible": null,
			"isUnique": true,
			"maxCardinality": 1,
			"minCardinality": 0,
			"regex": "Conditional: This parameter must be present when Isolation is set to 1.",
			"valueType": "ENUM",			
			"serviceSpecCharRelationship": [
				{ "name": "Character Attribute", "role": "tag", "relationshipType": "tag" },
				{ "name": "Functional", "role": "tag", "relationshipType": "tag" }
			
			],
			"serviceSpecCharacteristicValue": [
				{
					"isDefault": true,
					"rangeInterval": null,
					"regex": null,
					"unitOfMeasure": "N/A",
					"valueFrom": null,
					"valueTo": null,
					"valueType": "INTEGER",
					"validFor": null,
					"value": {
						"value": "0",
						"alias": "Process and threads Isolation"
					}
				},
				{
					"isDefault": false,
					"rangeInterval": null,
					"regex": null,
					"unitOfMeasure": "N/A",
					"valueFrom": null,
					"valueTo": null,
					"valueType": "INTEGER",
					"validFor": null,
					"value": {
						"value": "1",
						"alias": "Physical memory Isolation"
					}
				},
				{
					"isDefault": false,
					"rangeInterval": null,
					"regex": null,
					"unitOfMeasure": "N/A",
					"valueFrom": null,
					"valueTo": null,
					"valueType": "INTEGER",
					"validFor": null,
					"value": {
						"value": "2",
						"alias": "Physical network isolation"
					}
				}
			]
		},
		{
			"name": "Isolation level: Logical Isolation",
			"configurable": false,
			"description": "Logical network slices are logically separated. Virtual resources isolation a network slice has access to specific range of resources that do not overlap with other network slices (e.g. VM isolation). Network functions isolation   NF (Network Function) is dedicated to the NSC, but virtual resources are shared. Tenant/Service Isolation  NSC data are isolated from other NSCs, but virtual resources and NFs are shared",
			"extensible": null,
			"isUnique": true,
			"maxCardinality": 1,
			"minCardinality": 0,
			"regex": "Conditional: ",
			"valueType": "ENUM",
			"serviceSpecCharRelationship": [
				{ "name": "Character Attribute", "role": "tag", "relationshipType": "tag" },
				{ "name": "Functional", "role": "tag", "relationshipType": "tag" }
			],
			"serviceSpecCharacteristicValue": [
				{
					"isDefault": true,
					"rangeInterval": null,
					"regex": null,
					"unitOfMeasure": "N/A",
					"valueFrom": null,
					"valueTo": null,
					"valueType": "INTEGER",
					"validFor": null,
					"value": {
						"value": "1",
						"alias": "Virtual resource isolation"
					}
				},
				{
					"isDefault": false,
					"rangeInterval": null,
					"regex": null,
					"unitOfMeasure": "N/A",
					"valueFrom": null,
					"valueTo": null,
					"valueType": "INTEGER",
					"validFor": null,
					"value": {
						"value": "2",
						"alias": "Network Function isolation"
					}
				},
				{
					"isDefault": false,
					"rangeInterval": null,
					"regex": null,
					"unitOfMeasure": "N/A",
					"valueFrom": null,
					"valueTo": null,
					"valueType": "INTEGER",
					"validFor": null,
					"value": {
						"value": "3",
						"alias": "Tenant/Service isolation"
					}
				}
			]
		},
		{
			"name": "Maximum supported packet size",
			"configurable": false,
			"description": "This attribute describes the maximum packet size supported by the network slice and may be important for URLLC (Ultra-Reliable Low Latency Communication) and MIoT (Massive IoT), or to indicate a supported maximum transmission unit (MTU).",
			"extensible": null,
			"isUnique": true,
			"maxCardinality": 1,
			"minCardinality": 0,
			"regex": null,
			"valueType": "INTEGER",
			"serviceSpecCharRelationship": [
				{ "name": "Character Attribute", "role": "tag", "relationshipType": "tag" },
				{ "name": "Performance", "role": "tag", "relationshipType": "tag" },
				{ "name": "KPI", "role": "tag", "relationshipType": "tag" }	
			],
			"serviceSpecCharacteristicValue": [
				{
					"isDefault": true,
					"rangeInterval": null,
					"regex": null,
					"unitOfMeasure": "Bytes",
					"valueFrom": null,
					"valueTo": null,
					"valueType": "INTEGER",
					"validFor": null,
					"value": {
						"value": "1500"
					}
				}
			]
		},
		{
			"name": "Mission critical support",
			"configurable": false,
			"description": "Mission-critical (MC) leads to a priority of the network slice relative to others, for C-plane (Control Plane) and U-plane (User Plane) decisions. This is relative to a customer provider relationship and to a PLMN (Public land Mobile Network)",
			"extensible": null,
			"isUnique": true,
			"maxCardinality": 1,
			"minCardinality": 1,
			"regex": null,
			"valueType": "BINARY",
			"serviceSpecCharRelationship": [
				{ "name": "Character Attribute", "role": "tag", "relationshipType": "tag" },
				{ "name": "Functional", "role": "tag", "relationshipType": "tag" },
				{
					"role": "Mission-critical capability support",
					"name": "Mission critical support: Mission-critical capability support",
					"relationshipType": "dependency"
				},
				{
					"role": "Mission-critical service support",
					"name": "Mission critical support: Mission-critical service support",
					"relationshipType": "dependency"
				}
			],
			"serviceSpecCharacteristicValue": [
				{
					"isDefault": true,
					"rangeInterval": null,
					"regex": null,
					"unitOfMeasure": "N/A",
					"valueFrom": null,
					"valueTo": null,
					"valueType": "BINARY",
					"validFor": null,
					"value": {
						"value": "0",
						"alias": "non-mission-critical"
					}
				},
				{
					"isDefault": false,
					"rangeInterval": null,
					"regex": null,
					"unitOfMeasure": "N/A",
					"valueFrom": null,
					"valueTo": null,
					"valueType": "BINARY",
					"validFor": null,
					"value": {
						"value": "1",
						"alias": "mission-critical"
					}
				}
			]
		},
		{
			"name": "Mission critical support: Mission-critical capability support",
			"configurable": false,
			"description": "Mission-critical (MC) leads to a priority of the network slice relative to others, for C-plane (Control Plane) and U-plane (User Plane) decisions. This is relative to a customer provider relationship and to a PLMN (Public land Mobile Network)",
			"extensible": null,
			"isUnique": true,
			"maxCardinality": 1,
			"minCardinality": 0,
			"regex": "Conditional: Conditional: Specifies capabilities  available to support mission-critical services. More than one capability may be supported at once. This parameter is optional when Mission critical support is set to 1 (mission-critical slice)",
			"valueType": "ARRAY",

			"serviceSpecCharRelationship": [
				{ "name": "Character Attribute", "role": "tag", "relationshipType": "tag" },
				{ "name": "Functional", "role": "tag", "relationshipType": "tag" }
			],
			"serviceSpecCharacteristicValue": [
				{
					"isDefault": true,
					"rangeInterval": null,
					"regex": null,
					"unitOfMeasure": "N/A",
					"valueFrom": null,
					"valueTo": null,
					"valueType": "INTEGER",
					"validFor": null,
					"value": {
						"value": "1",
						"alias": "Inter-user prioritization"
					}
				},
				{
					"isDefault": false,
					"rangeInterval": null,
					"regex": null,
					"unitOfMeasure": "N/A",
					"valueFrom": null,
					"valueTo": null,
					"valueType": "INTEGER",
					"validFor": null,
					"value": {
						"value": "2",
						"alias": "Pre-emption"
					}
				},
				{
					"isDefault": false,
					"rangeInterval": null,
					"regex": null,
					"unitOfMeasure": "N/A",
					"valueFrom": null,
					"valueTo": null,
					"valueType": "INTEGER",
					"validFor": null,
					"value": {
						"value": "3",
						"alias": "Local control"
					}
				}
			]
		},
		{
			"name": "Mission critical support: Mission-critical service support",
			"configurable": false,
			"description": "This attribute specifies whether or not the network slice supports mission-critical push-to-talk (MCPTT), mission-critical data (MCData)], mission-critical video (MCVideo), Isolated E-UTRAN Operation for Public Safety (IOPS), or mission-critical interworking",
			"extensible": null,
			"isUnique": true,
			"maxCardinality": 1,
			"minCardinality": 0,
			"regex": "Conditional: This attribute must be present when Mission critical support is set to 1.",
			"valueType": "ARRAY",
			"serviceSpecCharRelationship": [
				{ "name": "Character Attribute", "role": "tag", "relationshipType": "tag" },
				{ "name": "Functional", "role": "tag", "relationshipType": "tag" }
			],
			"serviceSpecCharacteristicValue": [
				{
					"isDefault": true,
					"rangeInterval": null,
					"regex": null,
					"unitOfMeasure": "N/A",
					"valueFrom": null,
					"valueTo": null,
					"valueType": "INTEGER",
					"validFor": null,
					"value": {
						"value": "1",
						"alias": "MCPTT"
					}
				},
				{
					"isDefault": false,
					"rangeInterval": null,
					"regex": null,
					"unitOfMeasure": "N/A",
					"valueFrom": null,
					"valueTo": null,
					"valueType": "INTEGER",
					"validFor": null,
					"value": {
						"value": "2",
						"alias": "MCData"
					}
				},
				{
					"isDefault": false,
					"rangeInterval": null,
					"regex": null,
					"unitOfMeasure": "N/A",
					"valueFrom": null,
					"valueTo": null,
					"valueType": "INTEGER",
					"validFor": null,
					"value": {
						"value": "3",
						"alias": "MCVideo"