From d5ccb55c193c9efbd839f80e502049f19e730dff Mon Sep 17 00:00:00 2001 From: Mikael DELSOL Date: Tue, 16 Jun 2026 23:50:12 +0200 Subject: [PATCH] fix issue #341: update generated files based on new DomHandler release --- Makefile | 5 +- src/File/Struct.php | 4 +- tests/Generator/GeneratorTest.php | 5 + tests/Parser/Wsdl/TagElementTest.php | 4 +- .../ValidAdGroupsSelectionCriteria.php | 91 +- tests/resources/generated/ValidAddress.php | 91 +- .../resources/generated/ValidAddressType.php | 91 +- .../generated/ValidApiArrayOfError.php | 13 +- .../generated/ValidApiArrayOfErrorProject.php | 13 +- .../generated/ValidApiArrayOfGuid.php | 13 +- .../ValidApiArrayOfNewsRelatedSearch.php | 13 +- .../generated/ValidApiArrayOfString.php | 13 +- .../ValidApiArrayOfWebSearchOption.php | 13 +- .../generated/ValidApiFareItinerary.php | 13 +- .../generated/ValidApiNewsArticle.php | 65 +- tests/resources/generated/ValidApiOffer.php | 12 +- tests/resources/generated/ValidApiQuery.php | 39 +- ...WithIdenticalPropertiesDifferentByCase.php | 44 +- .../generated/ValidApiSearchRequest.php | 195 +- .../generated/ValidApiVideoRequest.php | 52 +- .../generated/ValidCampaignGetItem.php | 231 +- .../generated/ValidHotelReservationType.php | 39 +- .../generated/ValidPaymentCardType.php | 65 +- ...idSetExpressCheckoutRequestDetailsType.php | 845 ++- tests/resources/generated/ValidShopper.php | 52 +- tests/resources/generated/ValidTaxType.php | 13 +- .../generated/ValidUniqueID_Type.php | 13 +- .../generated/ValidUnitTestsStructResult.php | 23 +- .../resources/generated/json_serialized.json | 328 +- .../generated/parsed_actonservice2_none.json | 122 +- .../generated/parsed_actonservice2_start.json | 122 +- .../generated/parsed_bingsearch_none.json | 328 +- .../generated/parsed_bingsearch_start.json | 328 +- .../parsed_deliveryservice_none.json | 860 +-- .../parsed_deliveryservice_start.json | 860 +-- .../parsed_docdatapayments_none.json | 266 +- .../parsed_docdatapayments_start.json | 266 +- .../resources/generated/parsed_ews_none.json | 3676 ++++++------- .../resources/generated/parsed_ews_start.json | 3676 ++++++------- .../generated/parsed_myboard_none.json | 206 +- .../generated/parsed_myboard_start.json | 206 +- .../generated/parsed_odigeo_none.json | 16 +- .../generated/parsed_odigeo_start.json | 16 +- .../generated/parsed_ordercontract_none.json | 32 +- .../generated/parsed_ordercontract_start.json | 32 +- .../generated/parsed_paypal_none.json | 2382 ++++----- .../generated/parsed_paypal_start.json | 2382 ++++----- .../generated/parsed_queueservice_none.json | 52 +- .../generated/parsed_queueservice_start.json | 52 +- .../generated/parsed_unit_tests_none.json | 6 +- .../generated/parsed_unit_tests_start.json | 6 +- .../parsed_vehicleselection_none.json | 4668 ++++++++--------- .../parsed_vehicleselection_start.json | 4668 ++++++++--------- .../resources/generated/parsed_wcf_none.json | 4 +- .../resources/generated/parsed_wcf_start.json | 4 +- .../resources/generated/parsed_whl_none.json | 378 +- .../resources/generated/parsed_whl_start.json | 378 +- .../parsed_yandex_campaigns_none.json | 324 +- .../parsed_yandex_campaigns_start.json | 324 +- .../generated/parsed_yandex_groups_none.json | 96 +- .../generated/parsed_yandex_groups_start.json | 96 +- 61 files changed, 15315 insertions(+), 13915 deletions(-) diff --git a/Makefile b/Makefile index e11947f5..9a417534 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ COMPOSER ?= /usr/bin/composer DOCKER_COMPOSE ?= docker compose DOCKER_EXEC_CONTAINER ?= docker exec -t $(CONTAINER_NAME) -.PHONY: bash build cs-fixer down install phpstan phpunit rector up update +.PHONY: bash build cs-fixer down install jsons phpstan phpunit rector up update bash: $(DOCKER_EXEC_CONTAINER) bash @@ -21,6 +21,9 @@ down: install: $(DOCKER_EXEC_CONTAINER) $(PHP_VERSION) $(COMPOSER) install +jsons: + $(DOCKER_EXEC_CONTAINER) $(PHP_VERSION) tests/generate_serialized_jsons.php + phpstan: $(DOCKER_EXEC_CONTAINER) $(PHP_VERSION) vendor/bin/phpstan analyze src --level=2 diff --git a/src/File/Struct.php b/src/File/Struct.php index 5f72e32f..5928078c 100644 --- a/src/File/Struct.php +++ b/src/File/Struct.php @@ -482,7 +482,7 @@ protected function addStructMethodsSetAndGetAnnotationBlockFromStructAttribute(s switch ($setOrGet) { case 'set': if ($attribute->getRemovableFromRequest()) { - $annotationBlock->addChild('This property is removable from request (nillable=true+minOccurs=0), therefore if the value assigned to this property is null, it is removed from this object'); + $annotationBlock->addChild('This property is removable from request (minOccurs=0), therefore if the value assigned to this property is null, it is removed from this object'); } if ($attribute->isAChoice()) { $annotationBlock->addChild('This property belongs to a choice that allows only one property to exist. It is therefore removable from the request, consequently if the value assigned to this property is null, the property is removed from this object'); @@ -514,7 +514,7 @@ protected function addStructMethodsSetAndGetAnnotationBlockFromStructAttribute(s case 'get': if ($attribute->getRemovableFromRequest()) { - $annotationBlock->addChild('An additional test has been added (isset) before returning the property value as this property may have been unset before, due to the fact that this property is removable from the request (nillable=true+minOccurs=0)'); + $annotationBlock->addChild('An additional test has been added (isset) before returning the property value as this property may have been unset before, due to the fact that this property is removable from the request (minOccurs=0)'); } $this ->addStructMethodsGetAnnotationBlockFromXmlAttribute($annotationBlock, $attribute) diff --git a/tests/Generator/GeneratorTest.php b/tests/Generator/GeneratorTest.php index fcfc286d..e7121b31 100755 --- a/tests/Generator/GeneratorTest.php +++ b/tests/Generator/GeneratorTest.php @@ -598,6 +598,10 @@ public function testJsonSerialize(): void $generator = self::getBingGeneratorInstance(true); $generator->setOptionStandalone(false); $generator->parse(); + + // uncomment the next line to easily regenerate file :) + // file_put_contents(sprintf('%sjson_serialized.json', self::getTestDirectory()), trim(json_encode($generator, JSON_PRETTY_PRINT))); + $jsonContent = file_get_contents(sprintf('%sjson_serialized.json', self::getTestDirectory())); $jsonContent = str_replace([ '"__ORIGIN__"', @@ -606,6 +610,7 @@ public function testJsonSerialize(): void json_encode(self::wsdlBingPath(), JSON_THROW_ON_ERROR), json_encode($generator->getOptionDestination(), JSON_THROW_ON_ERROR), ], $jsonContent); + $this->assertSame(trim($jsonContent), trim(json_encode($generator, JSON_PRETTY_PRINT))); } diff --git a/tests/Parser/Wsdl/TagElementTest.php b/tests/Parser/Wsdl/TagElementTest.php index 7c10a941..382acfe6 100755 --- a/tests/Parser/Wsdl/TagElementTest.php +++ b/tests/Parser/Wsdl/TagElementTest.php @@ -48,7 +48,7 @@ public function testParseBing(): void ], $structs->getStructByName('SearchRequest')->getAttribute('Version')->getMeta()); $this->assertSame('string', $structs->getStructByName('SearchRequest')->getAttribute('Version')->getType()); $this->assertFalse($structs->getStructByName('SearchRequest')->getAttribute('Version')->getContainsElements()); - $this->assertFalse($structs->getStructByName('SearchRequest')->getAttribute('Version')->getRemovableFromRequest()); + $this->assertTrue($structs->getStructByName('SearchRequest')->getAttribute('Version')->getRemovableFromRequest()); ++$count; } if ($structs->getStructByName('ArrayOfNewsRelatedSearch') instanceof Struct) { @@ -58,7 +58,7 @@ public function testParseBing(): void ], $structs->getStructByName('ArrayOfNewsRelatedSearch')->getAttribute('NewsRelatedSearch')->getMeta()); $this->assertSame('NewsRelatedSearch', $structs->getStructByName('ArrayOfNewsRelatedSearch')->getAttribute('NewsRelatedSearch')->getType()); $this->assertTrue($structs->getStructByName('ArrayOfNewsRelatedSearch')->getAttribute('NewsRelatedSearch')->getContainsElements()); - $this->assertFalse($structs->getStructByName('ArrayOfNewsRelatedSearch')->getAttribute('NewsRelatedSearch')->getRemovableFromRequest()); + $this->assertTrue($structs->getStructByName('ArrayOfNewsRelatedSearch')->getAttribute('NewsRelatedSearch')->getRemovableFromRequest()); ++$count; } } diff --git a/tests/resources/generated/ValidAdGroupsSelectionCriteria.php b/tests/resources/generated/ValidAdGroupsSelectionCriteria.php index b41762e2..0521aaf5 100644 --- a/tests/resources/generated/ValidAdGroupsSelectionCriteria.php +++ b/tests/resources/generated/ValidAdGroupsSelectionCriteria.php @@ -102,11 +102,14 @@ public function __construct(?array $campaignIds = null, ?array $ids = null, ?arr } /** * Get CampaignIds value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return int[] */ public function getCampaignIds(): ?array { - return $this->CampaignIds; + return $this->CampaignIds ?? null; } /** * This method is responsible for validating the value(s) passed to the setCampaignIds method @@ -137,6 +140,8 @@ public static function validateCampaignIdsForArrayConstraintFromSetCampaignIds(? } /** * Set CampaignIds value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @throws InvalidArgumentException * @param int[] $campaignIds * @return \StructType\ApiAdGroupsSelectionCriteria @@ -147,7 +152,11 @@ public function setCampaignIds(?array $campaignIds = null): self if ('' !== ($campaignIdsArrayErrorMessage = self::validateCampaignIdsForArrayConstraintFromSetCampaignIds($campaignIds))) { throw new InvalidArgumentException($campaignIdsArrayErrorMessage, __LINE__); } - $this->CampaignIds = $campaignIds; + if (is_null($campaignIds) || (is_array($campaignIds) && empty($campaignIds))) { + unset($this->CampaignIds); + } else { + $this->CampaignIds = $campaignIds; + } return $this; } @@ -169,11 +178,14 @@ public function addToCampaignIds(int $item): self } /** * Get Ids value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return int[] */ public function getIds(): ?array { - return $this->Ids; + return $this->Ids ?? null; } /** * This method is responsible for validating the value(s) passed to the setIds method @@ -204,6 +216,8 @@ public static function validateIdsForArrayConstraintFromSetIds(?array $values = } /** * Set Ids value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @throws InvalidArgumentException * @param int[] $ids * @return \StructType\ApiAdGroupsSelectionCriteria @@ -214,7 +228,11 @@ public function setIds(?array $ids = null): self if ('' !== ($idsArrayErrorMessage = self::validateIdsForArrayConstraintFromSetIds($ids))) { throw new InvalidArgumentException($idsArrayErrorMessage, __LINE__); } - $this->Ids = $ids; + if (is_null($ids) || (is_array($ids) && empty($ids))) { + unset($this->Ids); + } else { + $this->Ids = $ids; + } return $this; } @@ -236,11 +254,14 @@ public function addToIds(int $item): self } /** * Get Types value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string[] */ public function getTypes(): ?array { - return $this->Types; + return $this->Types ?? null; } /** * This method is responsible for validating the value(s) passed to the setTypes method @@ -271,6 +292,8 @@ public static function validateTypesForArrayConstraintFromSetTypes(?array $value } /** * Set Types value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @uses \EnumType\ApiAdGroupTypesEnum::valueIsValid() * @uses \EnumType\ApiAdGroupTypesEnum::getValidValues() * @throws InvalidArgumentException @@ -283,7 +306,11 @@ public function setTypes(?array $types = null): self if ('' !== ($typesArrayErrorMessage = self::validateTypesForArrayConstraintFromSetTypes($types))) { throw new InvalidArgumentException($typesArrayErrorMessage, __LINE__); } - $this->Types = $types; + if (is_null($types) || (is_array($types) && empty($types))) { + unset($this->Types); + } else { + $this->Types = $types; + } return $this; } @@ -307,11 +334,14 @@ public function addToTypes(string $item): self } /** * Get Statuses value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string[] */ public function getStatuses(): ?array { - return $this->Statuses; + return $this->Statuses ?? null; } /** * This method is responsible for validating the value(s) passed to the setStatuses method @@ -342,6 +372,8 @@ public static function validateStatusesForArrayConstraintFromSetStatuses(?array } /** * Set Statuses value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @uses \EnumType\ApiStatusSelectionEnum::valueIsValid() * @uses \EnumType\ApiStatusSelectionEnum::getValidValues() * @throws InvalidArgumentException @@ -354,7 +386,11 @@ public function setStatuses(?array $statuses = null): self if ('' !== ($statusesArrayErrorMessage = self::validateStatusesForArrayConstraintFromSetStatuses($statuses))) { throw new InvalidArgumentException($statusesArrayErrorMessage, __LINE__); } - $this->Statuses = $statuses; + if (is_null($statuses) || (is_array($statuses) && empty($statuses))) { + unset($this->Statuses); + } else { + $this->Statuses = $statuses; + } return $this; } @@ -378,11 +414,14 @@ public function addToStatuses(string $item): self } /** * Get TagIds value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return int[] */ public function getTagIds(): ?array { - return $this->TagIds; + return $this->TagIds ?? null; } /** * This method is responsible for validating the value(s) passed to the setTagIds method @@ -413,6 +452,8 @@ public static function validateTagIdsForArrayConstraintFromSetTagIds(?array $val } /** * Set TagIds value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @throws InvalidArgumentException * @param int[] $tagIds * @return \StructType\ApiAdGroupsSelectionCriteria @@ -423,7 +464,11 @@ public function setTagIds(?array $tagIds = null): self if ('' !== ($tagIdsArrayErrorMessage = self::validateTagIdsForArrayConstraintFromSetTagIds($tagIds))) { throw new InvalidArgumentException($tagIdsArrayErrorMessage, __LINE__); } - $this->TagIds = $tagIds; + if (is_null($tagIds) || (is_array($tagIds) && empty($tagIds))) { + unset($this->TagIds); + } else { + $this->TagIds = $tagIds; + } return $this; } @@ -445,11 +490,14 @@ public function addToTagIds(int $item): self } /** * Get Tags value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string[] */ public function getTags(): ?array { - return $this->Tags; + return $this->Tags ?? null; } /** * This method is responsible for validating the value(s) passed to the setTags method @@ -480,6 +528,8 @@ public static function validateTagsForArrayConstraintFromSetTags(?array $values } /** * Set Tags value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @throws InvalidArgumentException * @param string[] $tags * @return \StructType\ApiAdGroupsSelectionCriteria @@ -490,7 +540,11 @@ public function setTags(?array $tags = null): self if ('' !== ($tagsArrayErrorMessage = self::validateTagsForArrayConstraintFromSetTags($tags))) { throw new InvalidArgumentException($tagsArrayErrorMessage, __LINE__); } - $this->Tags = $tags; + if (is_null($tags) || (is_array($tags) && empty($tags))) { + unset($this->Tags); + } else { + $this->Tags = $tags; + } return $this; } @@ -512,11 +566,14 @@ public function addToTags(string $item): self } /** * Get AppIconStatuses value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string[] */ public function getAppIconStatuses(): ?array { - return $this->AppIconStatuses; + return $this->AppIconStatuses ?? null; } /** * This method is responsible for validating the value(s) passed to the setAppIconStatuses method @@ -547,6 +604,8 @@ public static function validateAppIconStatusesForArrayConstraintFromSetAppIconSt } /** * Set AppIconStatuses value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @uses \EnumType\ApiStatusSelectionEnum::valueIsValid() * @uses \EnumType\ApiStatusSelectionEnum::getValidValues() * @throws InvalidArgumentException @@ -559,7 +618,11 @@ public function setAppIconStatuses(?array $appIconStatuses = null): self if ('' !== ($appIconStatusesArrayErrorMessage = self::validateAppIconStatusesForArrayConstraintFromSetAppIconStatuses($appIconStatuses))) { throw new InvalidArgumentException($appIconStatusesArrayErrorMessage, __LINE__); } - $this->AppIconStatuses = $appIconStatuses; + if (is_null($appIconStatuses) || (is_array($appIconStatuses) && empty($appIconStatuses))) { + unset($this->AppIconStatuses); + } else { + $this->AppIconStatuses = $appIconStatuses; + } return $this; } diff --git a/tests/resources/generated/ValidAddress.php b/tests/resources/generated/ValidAddress.php index 4e1e133b..85c6fcc2 100644 --- a/tests/resources/generated/ValidAddress.php +++ b/tests/resources/generated/ValidAddress.php @@ -96,14 +96,19 @@ public function __construct(?string $СубъектРФ = null, ?\StructType\Api } /** * Get СубъектРФ value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getСубъектРФ(): ?string { - return $this->СубъектРФ; + return $this->СубъектРФ ?? null; } /** * Set СубъектРФ value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $СубъектРФ * @return \StructType\ApiАдресРФ */ @@ -113,39 +118,57 @@ public function setСубъектРФ(?string $СубъектРФ = null): self if (!is_null($СубъектРФ) && !is_string($СубъектРФ)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($СубъектРФ, true), gettype($СубъектРФ)), __LINE__); } - $this->СубъектРФ = $СубъектРФ; + if (is_null($СубъектРФ) || (is_array($СубъектРФ) && empty($СубъектРФ))) { + unset($this->СубъектРФ); + } else { + $this->СубъектРФ = $СубъектРФ; + } return $this; } /** * Get СвРайМО value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return \StructType\ApiСвРайМО|null */ public function getСвРайМО(): ?\StructType\ApiСвРайМО { - return $this->СвРайМО; + return $this->СвРайМО ?? null; } /** * Set СвРайМО value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param \StructType\ApiСвРайМО $СвРайМО * @return \StructType\ApiАдресРФ */ public function setСвРайМО(?\StructType\ApiСвРайМО $СвРайМО = null): self { - $this->СвРайМО = $СвРайМО; + if (is_null($СвРайМО) || (is_array($СвРайМО) && empty($СвРайМО))) { + unset($this->СвРайМО); + } else { + $this->СвРайМО = $СвРайМО; + } return $this; } /** * Get Город value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getГород(): ?string { - return $this->Город; + return $this->Город ?? null; } /** * Set Город value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $Город * @return \StructType\ApiАдресРФ */ @@ -155,20 +178,29 @@ public function setГород(?string $Город = null): self if (!is_null($Город) && !is_string($Город)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($Город, true), gettype($Город)), __LINE__); } - $this->Город = $Город; + if (is_null($Город) || (is_array($Город) && empty($Город))) { + unset($this->Город); + } else { + $this->Город = $Город; + } return $this; } /** * Get ВнутригРайон value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getВнутригРайон(): ?string { - return $this->ВнутригРайон; + return $this->ВнутригРайон ?? null; } /** * Set ВнутригРайон value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $ВнутригРайон * @return \StructType\ApiАдресРФ */ @@ -178,20 +210,29 @@ public function setВнутригРайон(?string $ВнутригРайон = if (!is_null($ВнутригРайон) && !is_string($ВнутригРайон)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($ВнутригРайон, true), gettype($ВнутригРайон)), __LINE__); } - $this->ВнутригРайон = $ВнутригРайон; + if (is_null($ВнутригРайон) || (is_array($ВнутригРайон) && empty($ВнутригРайон))) { + unset($this->ВнутригРайон); + } else { + $this->ВнутригРайон = $ВнутригРайон; + } return $this; } /** * Get НаселПункт value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getНаселПункт(): ?string { - return $this->НаселПункт; + return $this->НаселПункт ?? null; } /** * Set НаселПункт value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $НаселПункт * @return \StructType\ApiАдресРФ */ @@ -201,20 +242,29 @@ public function setНаселПункт(?string $НаселПункт = null): s if (!is_null($НаселПункт) && !is_string($НаселПункт)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($НаселПункт, true), gettype($НаселПункт)), __LINE__); } - $this->НаселПункт = $НаселПункт; + if (is_null($НаселПункт) || (is_array($НаселПункт) && empty($НаселПункт))) { + unset($this->НаселПункт); + } else { + $this->НаселПункт = $НаселПункт; + } return $this; } /** * Get Улица value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getУлица(): ?string { - return $this->Улица; + return $this->Улица ?? null; } /** * Set Улица value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $Улица * @return \StructType\ApiАдресРФ */ @@ -224,17 +274,24 @@ public function setУлица(?string $Улица = null): self if (!is_null($Улица) && !is_string($Улица)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($Улица, true), gettype($Улица)), __LINE__); } - $this->Улица = $Улица; + if (is_null($Улица) || (is_array($Улица) && empty($Улица))) { + unset($this->Улица); + } else { + $this->Улица = $Улица; + } return $this; } /** * Get ДопАдрЭл value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return \StructType\ApiДопАдрЭл[] */ public function getДопАдрЭл(): ?array { - return $this->ДопАдрЭл; + return $this->ДопАдрЭл ?? null; } /** * This method is responsible for validating the value(s) passed to the setДопАдрЭл method @@ -265,6 +322,8 @@ public static function validateДопАдрЭлForArrayConstraintFromSetДопА } /** * Set ДопАдрЭл value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @throws InvalidArgumentException * @param \StructType\ApiДопАдрЭл[] $ДопАдрЭл * @return \StructType\ApiАдресРФ @@ -275,7 +334,11 @@ public function setДопАдрЭл(?array $ДопАдрЭл = null): self if ('' !== ($ДопАдрЭлArrayErrorMessage = self::validateДопАдрЭлForArrayConstraintFromSetДопАдрЭл($ДопАдрЭл))) { throw new InvalidArgumentException($ДопАдрЭлArrayErrorMessage, __LINE__); } - $this->ДопАдрЭл = $ДопАдрЭл; + if (is_null($ДопАдрЭл) || (is_array($ДопАдрЭл) && empty($ДопАдрЭл))) { + unset($this->ДопАдрЭл); + } else { + $this->ДопАдрЭл = $ДопАдрЭл; + } return $this; } diff --git a/tests/resources/generated/ValidAddressType.php b/tests/resources/generated/ValidAddressType.php index c8155db7..b8789a30 100644 --- a/tests/resources/generated/ValidAddressType.php +++ b/tests/resources/generated/ValidAddressType.php @@ -219,30 +219,42 @@ public function setShareMarketInd(string $shareMarketInd): self } /** * Get StreetNmbr value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return \StructType\ApiStreetNmbr|null */ public function getStreetNmbr(): ?\StructType\ApiStreetNmbr { - return $this->StreetNmbr; + return $this->StreetNmbr ?? null; } /** * Set StreetNmbr value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param \StructType\ApiStreetNmbr $streetNmbr * @return \StructType\ApiAddressType */ public function setStreetNmbr(?\StructType\ApiStreetNmbr $streetNmbr = null): self { - $this->StreetNmbr = $streetNmbr; + if (is_null($streetNmbr) || (is_array($streetNmbr) && empty($streetNmbr))) { + unset($this->StreetNmbr); + } else { + $this->StreetNmbr = $streetNmbr; + } return $this; } /** * Get AddressLine value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string[] */ public function getAddressLine(): ?array { - return $this->AddressLine; + return $this->AddressLine ?? null; } /** * This method is responsible for validating the value(s) passed to the setAddressLine method @@ -321,6 +333,8 @@ public static function validateAddressLineForMinLengthConstraintFromSetAddressLi } /** * Set AddressLine value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @throws InvalidArgumentException * @param string[] $addressLine * @return \StructType\ApiAddressType @@ -343,7 +357,11 @@ public function setAddressLine(?array $addressLine = null): self if ('' !== ($addressLineMinLengthErrorMessage = self::validateAddressLineForMinLengthConstraintFromSetAddressLine($addressLine))) { throw new InvalidArgumentException($addressLineMinLengthErrorMessage, __LINE__); } - $this->AddressLine = $addressLine; + if (is_null($addressLine) || (is_array($addressLine) && empty($addressLine))) { + unset($this->AddressLine); + } else { + $this->AddressLine = $addressLine; + } return $this; } @@ -377,14 +395,19 @@ public function addToAddressLine(string $item): self } /** * Get CityName value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getCityName(): ?string { - return $this->CityName; + return $this->CityName ?? null; } /** * Set CityName value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $cityName * @return \StructType\ApiAddressType */ @@ -402,20 +425,29 @@ public function setCityName(?string $cityName = null): self if (!is_null($cityName) && mb_strlen((string) $cityName) < 1) { throw new InvalidArgumentException(sprintf('Invalid length of %s, the number of characters/octets contained by the literal must be greater than or equal to 1', mb_strlen((string) $cityName)), __LINE__); } - $this->CityName = $cityName; + if (is_null($cityName) || (is_array($cityName) && empty($cityName))) { + unset($this->CityName); + } else { + $this->CityName = $cityName; + } return $this; } /** * Get PostalCode value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getPostalCode(): ?string { - return $this->PostalCode; + return $this->PostalCode ?? null; } /** * Set PostalCode value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $postalCode * @return \StructType\ApiAddressType */ @@ -433,20 +465,29 @@ public function setPostalCode(?string $postalCode = null): self if (!is_null($postalCode) && mb_strlen((string) $postalCode) < 1) { throw new InvalidArgumentException(sprintf('Invalid length of %s, the number of characters/octets contained by the literal must be greater than or equal to 1', mb_strlen((string) $postalCode)), __LINE__); } - $this->PostalCode = $postalCode; + if (is_null($postalCode) || (is_array($postalCode) && empty($postalCode))) { + unset($this->PostalCode); + } else { + $this->PostalCode = $postalCode; + } return $this; } /** * Get County value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getCounty(): ?string { - return $this->County; + return $this->County ?? null; } /** * Set County value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $county * @return \StructType\ApiAddressType */ @@ -464,45 +505,67 @@ public function setCounty(?string $county = null): self if (!is_null($county) && mb_strlen((string) $county) < 1) { throw new InvalidArgumentException(sprintf('Invalid length of %s, the number of characters/octets contained by the literal must be greater than or equal to 1', mb_strlen((string) $county)), __LINE__); } - $this->County = $county; + if (is_null($county) || (is_array($county) && empty($county))) { + unset($this->County); + } else { + $this->County = $county; + } return $this; } /** * Get StateProv value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return \StructType\ApiStateProvType|null */ public function getStateProv(): ?\StructType\ApiStateProvType { - return $this->StateProv; + return $this->StateProv ?? null; } /** * Set StateProv value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param \StructType\ApiStateProvType $stateProv * @return \StructType\ApiAddressType */ public function setStateProv(?\StructType\ApiStateProvType $stateProv = null): self { - $this->StateProv = $stateProv; + if (is_null($stateProv) || (is_array($stateProv) && empty($stateProv))) { + unset($this->StateProv); + } else { + $this->StateProv = $stateProv; + } return $this; } /** * Get CountryName value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return \StructType\ApiCountryNameType|null */ public function getCountryName(): ?\StructType\ApiCountryNameType { - return $this->CountryName; + return $this->CountryName ?? null; } /** * Set CountryName value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param \StructType\ApiCountryNameType $countryName * @return \StructType\ApiAddressType */ public function setCountryName(?\StructType\ApiCountryNameType $countryName = null): self { - $this->CountryName = $countryName; + if (is_null($countryName) || (is_array($countryName) && empty($countryName))) { + unset($this->CountryName); + } else { + $this->CountryName = $countryName; + } return $this; } diff --git a/tests/resources/generated/ValidApiArrayOfError.php b/tests/resources/generated/ValidApiArrayOfError.php index 731cf2de..18fd5d4c 100755 --- a/tests/resources/generated/ValidApiArrayOfError.php +++ b/tests/resources/generated/ValidApiArrayOfError.php @@ -35,11 +35,14 @@ public function __construct(?array $error = null) } /** * Get Error value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return \StructType\ApiError[] */ public function getError(): ?array { - return $this->Error; + return $this->Error ?? null; } /** * This method is responsible for validating the value(s) passed to the setError method @@ -70,6 +73,8 @@ public static function validateErrorForArrayConstraintFromSetError(?array $value } /** * Set Error value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @throws InvalidArgumentException * @param \StructType\ApiError[] $error * @return \ArrayType\ApiArrayOfError @@ -80,7 +85,11 @@ public function setError(?array $error = null): self if ('' !== ($errorArrayErrorMessage = self::validateErrorForArrayConstraintFromSetError($error))) { throw new InvalidArgumentException($errorArrayErrorMessage, __LINE__); } - $this->Error = $error; + if (is_null($error) || (is_array($error) && empty($error))) { + unset($this->Error); + } else { + $this->Error = $error; + } return $this; } diff --git a/tests/resources/generated/ValidApiArrayOfErrorProject.php b/tests/resources/generated/ValidApiArrayOfErrorProject.php index 02023413..9264e4b1 100755 --- a/tests/resources/generated/ValidApiArrayOfErrorProject.php +++ b/tests/resources/generated/ValidApiArrayOfErrorProject.php @@ -35,11 +35,14 @@ public function __construct(?array $error = null) } /** * Get Error value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return \StructType\ApiErrorProject[] */ public function getError(): ?array { - return $this->Error; + return $this->Error ?? null; } /** * This method is responsible for validating the value(s) passed to the setError method @@ -70,6 +73,8 @@ public static function validateErrorForArrayConstraintFromSetError(?array $value } /** * Set Error value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @throws InvalidArgumentException * @param \StructType\ApiErrorProject[] $error * @return \ArrayType\ApiArrayOfErrorProject @@ -80,7 +85,11 @@ public function setError(?array $error = null): self if ('' !== ($errorArrayErrorMessage = self::validateErrorForArrayConstraintFromSetError($error))) { throw new InvalidArgumentException($errorArrayErrorMessage, __LINE__); } - $this->Error = $error; + if (is_null($error) || (is_array($error) && empty($error))) { + unset($this->Error); + } else { + $this->Error = $error; + } return $this; } diff --git a/tests/resources/generated/ValidApiArrayOfGuid.php b/tests/resources/generated/ValidApiArrayOfGuid.php index 8dc32bd7..269ded9e 100644 --- a/tests/resources/generated/ValidApiArrayOfGuid.php +++ b/tests/resources/generated/ValidApiArrayOfGuid.php @@ -37,11 +37,14 @@ public function __construct(?array $string = null) } /** * Get string value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string[] */ public function getString(): ?array { - return $this->string; + return $this->string ?? null; } /** * This method is responsible for validating the value(s) passed to the setString method @@ -96,6 +99,8 @@ public static function validateStringForPatternConstraintFromSetString(?array $v } /** * Set string value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @throws InvalidArgumentException * @param string[] $string * @return \ArrayType\ApiArrayOfGuid @@ -110,7 +115,11 @@ public function setString(?array $string = null): self if ('' !== ($stringPatternErrorMessage = self::validateStringForPatternConstraintFromSetString($string))) { throw new InvalidArgumentException($stringPatternErrorMessage, __LINE__); } - $this->string = $string; + if (is_null($string) || (is_array($string) && empty($string))) { + unset($this->string); + } else { + $this->string = $string; + } return $this; } diff --git a/tests/resources/generated/ValidApiArrayOfNewsRelatedSearch.php b/tests/resources/generated/ValidApiArrayOfNewsRelatedSearch.php index e94bd03c..8fcd0a79 100755 --- a/tests/resources/generated/ValidApiArrayOfNewsRelatedSearch.php +++ b/tests/resources/generated/ValidApiArrayOfNewsRelatedSearch.php @@ -35,11 +35,14 @@ public function __construct(?array $newsRelatedSearch = null) } /** * Get NewsRelatedSearch value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return \StructType\ApiNewsRelatedSearch[] */ public function getNewsRelatedSearch(): ?array { - return $this->NewsRelatedSearch; + return $this->NewsRelatedSearch ?? null; } /** * This method is responsible for validating the value(s) passed to the setNewsRelatedSearch method @@ -70,6 +73,8 @@ public static function validateNewsRelatedSearchForArrayConstraintFromSetNewsRel } /** * Set NewsRelatedSearch value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @throws InvalidArgumentException * @param \StructType\ApiNewsRelatedSearch[] $newsRelatedSearch * @return \ArrayType\ApiArrayOfNewsRelatedSearch @@ -80,7 +85,11 @@ public function setNewsRelatedSearch(?array $newsRelatedSearch = null): self if ('' !== ($newsRelatedSearchArrayErrorMessage = self::validateNewsRelatedSearchForArrayConstraintFromSetNewsRelatedSearch($newsRelatedSearch))) { throw new InvalidArgumentException($newsRelatedSearchArrayErrorMessage, __LINE__); } - $this->NewsRelatedSearch = $newsRelatedSearch; + if (is_null($newsRelatedSearch) || (is_array($newsRelatedSearch) && empty($newsRelatedSearch))) { + unset($this->NewsRelatedSearch); + } else { + $this->NewsRelatedSearch = $newsRelatedSearch; + } return $this; } diff --git a/tests/resources/generated/ValidApiArrayOfString.php b/tests/resources/generated/ValidApiArrayOfString.php index fabe9a0b..10b7e00c 100755 --- a/tests/resources/generated/ValidApiArrayOfString.php +++ b/tests/resources/generated/ValidApiArrayOfString.php @@ -35,11 +35,14 @@ public function __construct(?array $string = null) } /** * Get string value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string[] */ public function getString(): ?array { - return $this->string; + return $this->string ?? null; } /** * This method is responsible for validating the value(s) passed to the setString method @@ -70,6 +73,8 @@ public static function validateStringForArrayConstraintFromSetString(?array $val } /** * Set string value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @throws InvalidArgumentException * @param string[] $string * @return \ArrayType\ApiArrayOfString @@ -80,7 +85,11 @@ public function setString(?array $string = null): self if ('' !== ($stringArrayErrorMessage = self::validateStringForArrayConstraintFromSetString($string))) { throw new InvalidArgumentException($stringArrayErrorMessage, __LINE__); } - $this->string = $string; + if (is_null($string) || (is_array($string) && empty($string))) { + unset($this->string); + } else { + $this->string = $string; + } return $this; } diff --git a/tests/resources/generated/ValidApiArrayOfWebSearchOption.php b/tests/resources/generated/ValidApiArrayOfWebSearchOption.php index 55da597e..2f17b92a 100755 --- a/tests/resources/generated/ValidApiArrayOfWebSearchOption.php +++ b/tests/resources/generated/ValidApiArrayOfWebSearchOption.php @@ -35,11 +35,14 @@ public function __construct(?array $webSearchOption = null) } /** * Get WebSearchOption value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string[] */ public function getWebSearchOption(): ?array { - return $this->WebSearchOption; + return $this->WebSearchOption ?? null; } /** * This method is responsible for validating the value(s) passed to the setWebSearchOption method @@ -70,6 +73,8 @@ public static function validateWebSearchOptionForArrayConstraintFromSetWebSearch } /** * Set WebSearchOption value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @uses \EnumType\ApiWebSearchOption::valueIsValid() * @uses \EnumType\ApiWebSearchOption::getValidValues() * @throws InvalidArgumentException @@ -82,7 +87,11 @@ public function setWebSearchOption(?array $webSearchOption = null): self if ('' !== ($webSearchOptionArrayErrorMessage = self::validateWebSearchOptionForArrayConstraintFromSetWebSearchOption($webSearchOption))) { throw new InvalidArgumentException($webSearchOptionArrayErrorMessage, __LINE__); } - $this->WebSearchOption = $webSearchOption; + if (is_null($webSearchOption) || (is_array($webSearchOption) && empty($webSearchOption))) { + unset($this->WebSearchOption); + } else { + $this->WebSearchOption = $webSearchOption; + } return $this; } diff --git a/tests/resources/generated/ValidApiFareItinerary.php b/tests/resources/generated/ValidApiFareItinerary.php index deeb68b6..a60fb955 100755 --- a/tests/resources/generated/ValidApiFareItinerary.php +++ b/tests/resources/generated/ValidApiFareItinerary.php @@ -357,14 +357,19 @@ public function addToThirdSegmentsIds(int $item): self } /** * Get clickoutURLParams value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getClickoutURLParams(): ?string { - return $this->clickoutURLParams; + return $this->clickoutURLParams ?? null; } /** * Set clickoutURLParams value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $clickoutURLParams * @return \StructType\ApiFareItinerary */ @@ -374,7 +379,11 @@ public function setClickoutURLParams(?string $clickoutURLParams = null): self if (!is_null($clickoutURLParams) && !is_string($clickoutURLParams)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($clickoutURLParams, true), gettype($clickoutURLParams)), __LINE__); } - $this->clickoutURLParams = $clickoutURLParams; + if (is_null($clickoutURLParams) || (is_array($clickoutURLParams) && empty($clickoutURLParams))) { + unset($this->clickoutURLParams); + } else { + $this->clickoutURLParams = $clickoutURLParams; + } return $this; } diff --git a/tests/resources/generated/ValidApiNewsArticle.php b/tests/resources/generated/ValidApiNewsArticle.php index d1e31a70..313437f4 100755 --- a/tests/resources/generated/ValidApiNewsArticle.php +++ b/tests/resources/generated/ValidApiNewsArticle.php @@ -80,14 +80,19 @@ public function __construct(?string $title = null, ?string $url = null, ?string } /** * Get Title value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getTitle(): ?string { - return $this->Title; + return $this->Title ?? null; } /** * Set Title value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $title * @return \StructType\ApiNewsArticle */ @@ -97,20 +102,29 @@ public function setTitle(?string $title = null): self if (!is_null($title) && !is_string($title)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($title, true), gettype($title)), __LINE__); } - $this->Title = $title; + if (is_null($title) || (is_array($title) && empty($title))) { + unset($this->Title); + } else { + $this->Title = $title; + } return $this; } /** * Get Url value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getUrl(): ?string { - return $this->Url; + return $this->Url ?? null; } /** * Set Url value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $url * @return \StructType\ApiNewsArticle */ @@ -120,20 +134,29 @@ public function setUrl(?string $url = null): self if (!is_null($url) && !is_string($url)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($url, true), gettype($url)), __LINE__); } - $this->Url = $url; + if (is_null($url) || (is_array($url) && empty($url))) { + unset($this->Url); + } else { + $this->Url = $url; + } return $this; } /** * Get Source value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getSource(): ?string { - return $this->Source; + return $this->Source ?? null; } /** * Set Source value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $source * @return \StructType\ApiNewsArticle */ @@ -143,20 +166,29 @@ public function setSource(?string $source = null): self if (!is_null($source) && !is_string($source)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($source, true), gettype($source)), __LINE__); } - $this->Source = $source; + if (is_null($source) || (is_array($source) && empty($source))) { + unset($this->Source); + } else { + $this->Source = $source; + } return $this; } /** * Get Snippet value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getSnippet(): ?string { - return $this->Snippet; + return $this->Snippet ?? null; } /** * Set Snippet value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $snippet * @return \StructType\ApiNewsArticle */ @@ -166,20 +198,29 @@ public function setSnippet(?string $snippet = null): self if (!is_null($snippet) && !is_string($snippet)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($snippet, true), gettype($snippet)), __LINE__); } - $this->Snippet = $snippet; + if (is_null($snippet) || (is_array($snippet) && empty($snippet))) { + unset($this->Snippet); + } else { + $this->Snippet = $snippet; + } return $this; } /** * Get Date value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getDate(): ?string { - return $this->Date; + return $this->Date ?? null; } /** * Set Date value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $date * @return \StructType\ApiNewsArticle */ @@ -189,7 +230,11 @@ public function setDate(?string $date = null): self if (!is_null($date) && !is_string($date)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($date, true), gettype($date)), __LINE__); } - $this->Date = $date; + if (is_null($date) || (is_array($date) && empty($date))) { + unset($this->Date); + } else { + $this->Date = $date; + } return $this; } diff --git a/tests/resources/generated/ValidApiOffer.php b/tests/resources/generated/ValidApiOffer.php index 551f6858..8a3df52a 100644 --- a/tests/resources/generated/ValidApiOffer.php +++ b/tests/resources/generated/ValidApiOffer.php @@ -52,7 +52,7 @@ public function __construct(?string $offerClassMember = null, ?\StructType\ApiOf * Get offerClassMember value * An additional test has been added (isset) before returning the property value as * this property may have been unset before, due to the fact that this property is - * removable from the request (nillable=true+minOccurs=0) + * removable from the request (minOccurs=0) * @return string|null */ public function getOfferClassMember(): ?string @@ -61,8 +61,8 @@ public function getOfferClassMember(): ?string } /** * Set offerClassMember value - * This property is removable from request (nillable=true+minOccurs=0), therefore - * if the value assigned to this property is null, it is removed from this object + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $offerClassMember * @return \StructType\ApiOffer */ @@ -84,7 +84,7 @@ public function setOfferClassMember(?string $offerClassMember = null): self * Get offer value * An additional test has been added (isset) before returning the property value as * this property may have been unset before, due to the fact that this property is - * removable from the request (nillable=true+minOccurs=0) + * removable from the request (minOccurs=0) * @return \StructType\ApiOffer|null */ public function getOffer(): ?\StructType\ApiOffer @@ -93,8 +93,8 @@ public function getOffer(): ?\StructType\ApiOffer } /** * Set offer value - * This property is removable from request (nillable=true+minOccurs=0), therefore - * if the value assigned to this property is null, it is removed from this object + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param \StructType\ApiOffer $offer * @return \StructType\ApiOffer */ diff --git a/tests/resources/generated/ValidApiQuery.php b/tests/resources/generated/ValidApiQuery.php index 5feb772e..1eff9f8f 100755 --- a/tests/resources/generated/ValidApiQuery.php +++ b/tests/resources/generated/ValidApiQuery.php @@ -58,14 +58,19 @@ public function __construct(?string $searchTerms = null, ?string $alteredQuery = } /** * Get SearchTerms value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getSearchTerms(): ?string { - return $this->SearchTerms; + return $this->SearchTerms ?? null; } /** * Set SearchTerms value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $searchTerms * @return \StructType\ApiQuery */ @@ -75,20 +80,29 @@ public function setSearchTerms(?string $searchTerms = null): self if (!is_null($searchTerms) && !is_string($searchTerms)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($searchTerms, true), gettype($searchTerms)), __LINE__); } - $this->SearchTerms = $searchTerms; + if (is_null($searchTerms) || (is_array($searchTerms) && empty($searchTerms))) { + unset($this->SearchTerms); + } else { + $this->SearchTerms = $searchTerms; + } return $this; } /** * Get AlteredQuery value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getAlteredQuery(): ?string { - return $this->AlteredQuery; + return $this->AlteredQuery ?? null; } /** * Set AlteredQuery value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $alteredQuery * @return \StructType\ApiQuery */ @@ -98,20 +112,29 @@ public function setAlteredQuery(?string $alteredQuery = null): self if (!is_null($alteredQuery) && !is_string($alteredQuery)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($alteredQuery, true), gettype($alteredQuery)), __LINE__); } - $this->AlteredQuery = $alteredQuery; + if (is_null($alteredQuery) || (is_array($alteredQuery) && empty($alteredQuery))) { + unset($this->AlteredQuery); + } else { + $this->AlteredQuery = $alteredQuery; + } return $this; } /** * Get AlterationOverrideQuery value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getAlterationOverrideQuery(): ?string { - return $this->AlterationOverrideQuery; + return $this->AlterationOverrideQuery ?? null; } /** * Set AlterationOverrideQuery value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $alterationOverrideQuery * @return \StructType\ApiQuery */ @@ -121,7 +144,11 @@ public function setAlterationOverrideQuery(?string $alterationOverrideQuery = nu if (!is_null($alterationOverrideQuery) && !is_string($alterationOverrideQuery)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($alterationOverrideQuery, true), gettype($alterationOverrideQuery)), __LINE__); } - $this->AlterationOverrideQuery = $alterationOverrideQuery; + if (is_null($alterationOverrideQuery) || (is_array($alterationOverrideQuery) && empty($alterationOverrideQuery))) { + unset($this->AlterationOverrideQuery); + } else { + $this->AlterationOverrideQuery = $alterationOverrideQuery; + } return $this; } diff --git a/tests/resources/generated/ValidApiQueryWithIdenticalPropertiesDifferentByCase.php b/tests/resources/generated/ValidApiQueryWithIdenticalPropertiesDifferentByCase.php index c0050085..0d0ce113 100644 --- a/tests/resources/generated/ValidApiQueryWithIdenticalPropertiesDifferentByCase.php +++ b/tests/resources/generated/ValidApiQueryWithIdenticalPropertiesDifferentByCase.php @@ -66,6 +66,9 @@ public function __construct(string $searchTerms, ?string $searchTerms_1 = null, } /** * Get SearchTerms value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getSearchTerms(): string @@ -74,6 +77,8 @@ public function getSearchTerms(): string } /** * Set SearchTerms value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $searchTerms * @return \StructType\ApiQuery */ @@ -89,14 +94,19 @@ public function setSearchTerms(string $searchTerms): self } /** * Get SearchTerms value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getSearchTerms_1(): ?string { - return $this->SearchTerms; + return $this->SearchTerms ?? null; } /** * Set SearchTerms value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $searchTerms * @return \StructType\ApiQuery */ @@ -106,20 +116,29 @@ public function setSearchTerms_1(?string $searchTerms_1 = null): self if (!is_null($searchTerms_1) && !is_string($searchTerms_1)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($searchTerms_1, true), gettype($searchTerms_1)), __LINE__); } - $this->SearchTerms = $searchTerms_1; + if (is_null($searchTerms_1) || (is_array($searchTerms_1) && empty($searchTerms_1))) { + unset($this->SearchTerms); + } else { + $this->SearchTerms = $searchTerms_1; + } return $this; } /** * Get AlteredQuery value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getAlteredQuery(): ?string { - return $this->AlteredQuery; + return $this->AlteredQuery ?? null; } /** * Set AlteredQuery value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $alteredQuery * @return \StructType\ApiQuery */ @@ -129,20 +148,29 @@ public function setAlteredQuery(?string $alteredQuery = null): self if (!is_null($alteredQuery) && !is_string($alteredQuery)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($alteredQuery, true), gettype($alteredQuery)), __LINE__); } - $this->AlteredQuery = $alteredQuery; + if (is_null($alteredQuery) || (is_array($alteredQuery) && empty($alteredQuery))) { + unset($this->AlteredQuery); + } else { + $this->AlteredQuery = $alteredQuery; + } return $this; } /** * Get AlterationOverrideQuery value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getAlterationOverrideQuery(): ?string { - return $this->AlterationOverrideQuery; + return $this->AlterationOverrideQuery ?? null; } /** * Set AlterationOverrideQuery value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $alterationOverrideQuery * @return \StructType\ApiQuery */ @@ -152,7 +180,11 @@ public function setAlterationOverrideQuery(?string $alterationOverrideQuery = nu if (!is_null($alterationOverrideQuery) && !is_string($alterationOverrideQuery)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($alterationOverrideQuery, true), gettype($alterationOverrideQuery)), __LINE__); } - $this->AlterationOverrideQuery = $alterationOverrideQuery; + if (is_null($alterationOverrideQuery) || (is_array($alterationOverrideQuery) && empty($alterationOverrideQuery))) { + unset($this->AlterationOverrideQuery); + } else { + $this->AlterationOverrideQuery = $alterationOverrideQuery; + } return $this; } diff --git a/tests/resources/generated/ValidApiSearchRequest.php b/tests/resources/generated/ValidApiSearchRequest.php index 0d1b32cb..b8f4282b 100755 --- a/tests/resources/generated/ValidApiSearchRequest.php +++ b/tests/resources/generated/ValidApiSearchRequest.php @@ -319,14 +319,19 @@ public function setParameters(\StructType\ApiSearchRequest $parameters): self } /** * Get Version value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getVersion(): ?string { - return $this->Version; + return $this->Version ?? null; } /** * Set Version value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $version * @return \StructType\ApiSearchRequest */ @@ -336,20 +341,29 @@ public function setVersion(string $version = '2.2'): self if (!is_null($version) && !is_string($version)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($version, true), gettype($version)), __LINE__); } - $this->Version = $version; + if (is_null($version) || (is_array($version) && empty($version))) { + unset($this->Version); + } else { + $this->Version = $version; + } return $this; } /** * Get Market value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getMarket(): ?string { - return $this->Market; + return $this->Market ?? null; } /** * Set Market value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $market * @return \StructType\ApiSearchRequest */ @@ -359,20 +373,29 @@ public function setMarket(?string $market = null): self if (!is_null($market) && !is_string($market)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($market, true), gettype($market)), __LINE__); } - $this->Market = $market; + if (is_null($market) || (is_array($market) && empty($market))) { + unset($this->Market); + } else { + $this->Market = $market; + } return $this; } /** * Get UILanguage value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getUILanguage(): ?string { - return $this->UILanguage; + return $this->UILanguage ?? null; } /** * Set UILanguage value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $uILanguage * @return \StructType\ApiSearchRequest */ @@ -382,20 +405,29 @@ public function setUILanguage(?string $uILanguage = null): self if (!is_null($uILanguage) && !is_string($uILanguage)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($uILanguage, true), gettype($uILanguage)), __LINE__); } - $this->UILanguage = $uILanguage; + if (is_null($uILanguage) || (is_array($uILanguage) && empty($uILanguage))) { + unset($this->UILanguage); + } else { + $this->UILanguage = $uILanguage; + } return $this; } /** * Get Adult value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getAdult(): ?string { - return $this->Adult; + return $this->Adult ?? null; } /** * Set Adult value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @uses \EnumType\ApiAdultOption::valueIsValid() * @uses \EnumType\ApiAdultOption::getValidValues() * @throws InvalidArgumentException @@ -408,20 +440,29 @@ public function setAdult(?string $adult = null): self if (!\EnumType\ApiAdultOption::valueIsValid($adult)) { throw new InvalidArgumentException(sprintf('Invalid value(s) %s, please use one of: %s from enumeration class \EnumType\ApiAdultOption', is_array($adult) ? implode(', ', $adult) : var_export($adult, true), implode(', ', \EnumType\ApiAdultOption::getValidValues())), __LINE__); } - $this->Adult = $adult; + if (is_null($adult) || (is_array($adult) && empty($adult))) { + unset($this->Adult); + } else { + $this->Adult = $adult; + } return $this; } /** * Get Latitude value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return float|null */ public function getLatitude(): ?float { - return $this->Latitude; + return $this->Latitude ?? null; } /** * Set Latitude value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param float $latitude * @return \StructType\ApiSearchRequest */ @@ -431,20 +472,29 @@ public function setLatitude(?float $latitude = null): self if (!is_null($latitude) && !(is_float($latitude) || is_numeric($latitude))) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a float value, %s given', var_export($latitude, true), gettype($latitude)), __LINE__); } - $this->Latitude = $latitude; + if (is_null($latitude) || (is_array($latitude) && empty($latitude))) { + unset($this->Latitude); + } else { + $this->Latitude = $latitude; + } return $this; } /** * Get Longitude value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return float|null */ public function getLongitude(): ?float { - return $this->Longitude; + return $this->Longitude ?? null; } /** * Set Longitude value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param float $longitude * @return \StructType\ApiSearchRequest */ @@ -454,20 +504,29 @@ public function setLongitude(?float $longitude = null): self if (!is_null($longitude) && !(is_float($longitude) || is_numeric($longitude))) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a float value, %s given', var_export($longitude, true), gettype($longitude)), __LINE__); } - $this->Longitude = $longitude; + if (is_null($longitude) || (is_array($longitude) && empty($longitude))) { + unset($this->Longitude); + } else { + $this->Longitude = $longitude; + } return $this; } /** * Get Radius value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return float|null */ public function getRadius(): ?float { - return $this->Radius; + return $this->Radius ?? null; } /** * Set Radius value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param float $radius * @return \StructType\ApiSearchRequest */ @@ -477,159 +536,235 @@ public function setRadius(?float $radius = null): self if (!is_null($radius) && !(is_float($radius) || is_numeric($radius))) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a float value, %s given', var_export($radius, true), gettype($radius)), __LINE__); } - $this->Radius = $radius; + if (is_null($radius) || (is_array($radius) && empty($radius))) { + unset($this->Radius); + } else { + $this->Radius = $radius; + } return $this; } /** * Get Options value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return \ArrayType\ApiArrayOfSearchOption|null */ public function getOptions(): ?\ArrayType\ApiArrayOfSearchOption { - return $this->Options; + return $this->Options ?? null; } /** * Set Options value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param \ArrayType\ApiArrayOfSearchOption $options * @return \StructType\ApiSearchRequest */ public function setOptions(?\ArrayType\ApiArrayOfSearchOption $options = null): self { - $this->Options = $options; + if (is_null($options) || (is_array($options) && empty($options))) { + unset($this->Options); + } else { + $this->Options = $options; + } return $this; } /** * Get Web value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return \StructType\ApiWebRequest|null */ public function getWeb(): ?\StructType\ApiWebRequest { - return $this->Web; + return $this->Web ?? null; } /** * Set Web value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param \StructType\ApiWebRequest $web * @return \StructType\ApiSearchRequest */ public function setWeb(?\StructType\ApiWebRequest $web = null): self { - $this->Web = $web; + if (is_null($web) || (is_array($web) && empty($web))) { + unset($this->Web); + } else { + $this->Web = $web; + } return $this; } /** * Get Image value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return \StructType\ApiImageRequest|null */ public function getImage(): ?\StructType\ApiImageRequest { - return $this->Image; + return $this->Image ?? null; } /** * Set Image value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param \StructType\ApiImageRequest $image * @return \StructType\ApiSearchRequest */ public function setImage(?\StructType\ApiImageRequest $image = null): self { - $this->Image = $image; + if (is_null($image) || (is_array($image) && empty($image))) { + unset($this->Image); + } else { + $this->Image = $image; + } return $this; } /** * Get Phonebook value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return \StructType\ApiPhonebookRequest|null */ public function getPhonebook(): ?\StructType\ApiPhonebookRequest { - return $this->Phonebook; + return $this->Phonebook ?? null; } /** * Set Phonebook value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param \StructType\ApiPhonebookRequest $phonebook * @return \StructType\ApiSearchRequest */ public function setPhonebook(?\StructType\ApiPhonebookRequest $phonebook = null): self { - $this->Phonebook = $phonebook; + if (is_null($phonebook) || (is_array($phonebook) && empty($phonebook))) { + unset($this->Phonebook); + } else { + $this->Phonebook = $phonebook; + } return $this; } /** * Get Video value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return \StructType\ApiVideoRequest|null */ public function getVideo(): ?\StructType\ApiVideoRequest { - return $this->Video; + return $this->Video ?? null; } /** * Set Video value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param \StructType\ApiVideoRequest $video * @return \StructType\ApiSearchRequest */ public function setVideo(?\StructType\ApiVideoRequest $video = null): self { - $this->Video = $video; + if (is_null($video) || (is_array($video) && empty($video))) { + unset($this->Video); + } else { + $this->Video = $video; + } return $this; } /** * Get News value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return \StructType\ApiNewsRequest|null */ public function getNews(): ?\StructType\ApiNewsRequest { - return $this->News; + return $this->News ?? null; } /** * Set News value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param \StructType\ApiNewsRequest $news * @return \StructType\ApiSearchRequest */ public function setNews(?\StructType\ApiNewsRequest $news = null): self { - $this->News = $news; + if (is_null($news) || (is_array($news) && empty($news))) { + unset($this->News); + } else { + $this->News = $news; + } return $this; } /** * Get MobileWeb value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return \StructType\ApiMobileWebRequest|null */ public function getMobileWeb(): ?\StructType\ApiMobileWebRequest { - return $this->MobileWeb; + return $this->MobileWeb ?? null; } /** * Set MobileWeb value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param \StructType\ApiMobileWebRequest $mobileWeb * @return \StructType\ApiSearchRequest */ public function setMobileWeb(?\StructType\ApiMobileWebRequest $mobileWeb = null): self { - $this->MobileWeb = $mobileWeb; + if (is_null($mobileWeb) || (is_array($mobileWeb) && empty($mobileWeb))) { + unset($this->MobileWeb); + } else { + $this->MobileWeb = $mobileWeb; + } return $this; } /** * Get Translation value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return \StructType\ApiTranslationRequest|null */ public function getTranslation(): ?\StructType\ApiTranslationRequest { - return $this->Translation; + return $this->Translation ?? null; } /** * Set Translation value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param \StructType\ApiTranslationRequest $translation * @return \StructType\ApiSearchRequest */ public function setTranslation(?\StructType\ApiTranslationRequest $translation = null): self { - $this->Translation = $translation; + if (is_null($translation) || (is_array($translation) && empty($translation))) { + unset($this->Translation); + } else { + $this->Translation = $translation; + } return $this; } diff --git a/tests/resources/generated/ValidApiVideoRequest.php b/tests/resources/generated/ValidApiVideoRequest.php index e34cf88d..fd54c048 100755 --- a/tests/resources/generated/ValidApiVideoRequest.php +++ b/tests/resources/generated/ValidApiVideoRequest.php @@ -69,14 +69,19 @@ public function __construct(?int $offset = null, ?int $count = null, ?\ArrayType } /** * Get Offset value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return int|null */ public function getOffset(): ?int { - return $this->Offset; + return $this->Offset ?? null; } /** * Set Offset value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param int $offset * @return \StructType\ApiVideoRequest */ @@ -86,20 +91,29 @@ public function setOffset(?int $offset = null): self if (!is_null($offset) && !(is_int($offset) || ctype_digit($offset))) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide an integer value, %s given', var_export($offset, true), gettype($offset)), __LINE__); } - $this->Offset = $offset; + if (is_null($offset) || (is_array($offset) && empty($offset))) { + unset($this->Offset); + } else { + $this->Offset = $offset; + } return $this; } /** * Get Count value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return int|null */ public function getCount(): ?int { - return $this->Count; + return $this->Count ?? null; } /** * Set Count value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param int $count * @return \StructType\ApiVideoRequest */ @@ -109,39 +123,57 @@ public function setCount(?int $count = null): self if (!is_null($count) && !(is_int($count) || ctype_digit($count))) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide an integer value, %s given', var_export($count, true), gettype($count)), __LINE__); } - $this->Count = $count; + if (is_null($count) || (is_array($count) && empty($count))) { + unset($this->Count); + } else { + $this->Count = $count; + } return $this; } /** * Get Filters value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return \ArrayType\ApiArrayOfString|null */ public function getFilters(): ?\ArrayType\ApiArrayOfString { - return $this->Filters; + return $this->Filters ?? null; } /** * Set Filters value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param \ArrayType\ApiArrayOfString $filters * @return \StructType\ApiVideoRequest */ public function setFilters(?\ArrayType\ApiArrayOfString $filters = null): self { - $this->Filters = $filters; + if (is_null($filters) || (is_array($filters) && empty($filters))) { + unset($this->Filters); + } else { + $this->Filters = $filters; + } return $this; } /** * Get SortBy value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getSortBy(): ?string { - return $this->SortBy; + return $this->SortBy ?? null; } /** * Set SortBy value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @uses \EnumType\ApiVideoSortOption::valueIsValid() * @uses \EnumType\ApiVideoSortOption::getValidValues() * @throws InvalidArgumentException @@ -154,7 +186,11 @@ public function setSortBy(?string $sortBy = null): self if (!\EnumType\ApiVideoSortOption::valueIsValid($sortBy)) { throw new InvalidArgumentException(sprintf('Invalid value(s) %s, please use one of: %s from enumeration class \EnumType\ApiVideoSortOption', is_array($sortBy) ? implode(', ', $sortBy) : var_export($sortBy, true), implode(', ', \EnumType\ApiVideoSortOption::getValidValues())), __LINE__); } - $this->SortBy = $sortBy; + if (is_null($sortBy) || (is_array($sortBy) && empty($sortBy))) { + unset($this->SortBy); + } else { + $this->SortBy = $sortBy; + } return $this; } diff --git a/tests/resources/generated/ValidCampaignGetItem.php b/tests/resources/generated/ValidCampaignGetItem.php index dbafdbe6..3f952f41 100644 --- a/tests/resources/generated/ValidCampaignGetItem.php +++ b/tests/resources/generated/ValidCampaignGetItem.php @@ -263,7 +263,7 @@ public function __construct(?int $sourceId = null, ?\StructType\ApiDailyBudget $ * Get SourceId value * An additional test has been added (isset) before returning the property value as * this property may have been unset before, due to the fact that this property is - * removable from the request (nillable=true+minOccurs=0) + * removable from the request (minOccurs=0) * @return int|null */ public function getSourceId(): ?int @@ -272,8 +272,8 @@ public function getSourceId(): ?int } /** * Set SourceId value - * This property is removable from request (nillable=true+minOccurs=0), therefore - * if the value assigned to this property is null, it is removed from this object + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param int $sourceId * @return \StructType\ApiCampaignGetItem */ @@ -291,7 +291,7 @@ public function setSourceId(?int $sourceId = null): self * Get DailyBudget value * An additional test has been added (isset) before returning the property value as * this property may have been unset before, due to the fact that this property is - * removable from the request (nillable=true+minOccurs=0) + * removable from the request (minOccurs=0) * @return \StructType\ApiDailyBudget|null */ public function getDailyBudget(): ?\StructType\ApiDailyBudget @@ -300,8 +300,8 @@ public function getDailyBudget(): ?\StructType\ApiDailyBudget } /** * Set DailyBudget value - * This property is removable from request (nillable=true+minOccurs=0), therefore - * if the value assigned to this property is null, it is removed from this object + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param \StructType\ApiDailyBudget $dailyBudget * @return \StructType\ApiCampaignGetItem */ @@ -319,7 +319,7 @@ public function setDailyBudget(?\StructType\ApiDailyBudget $dailyBudget = null): * Get EndDate value * An additional test has been added (isset) before returning the property value as * this property may have been unset before, due to the fact that this property is - * removable from the request (nillable=true+minOccurs=0) + * removable from the request (minOccurs=0) * @return string|null */ public function getEndDate(): ?string @@ -328,8 +328,8 @@ public function getEndDate(): ?string } /** * Set EndDate value - * This property is removable from request (nillable=true+minOccurs=0), therefore - * if the value assigned to this property is null, it is removed from this object + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $endDate * @return \StructType\ApiCampaignGetItem */ @@ -347,7 +347,7 @@ public function setEndDate(?string $endDate = null): self * Get NegativeKeywords value * An additional test has been added (isset) before returning the property value as * this property may have been unset before, due to the fact that this property is - * removable from the request (nillable=true+minOccurs=0) + * removable from the request (minOccurs=0) * @return \ArrayType\ApiArrayOfString|null */ public function getNegativeKeywords(): ?\ArrayType\ApiArrayOfString @@ -356,8 +356,8 @@ public function getNegativeKeywords(): ?\ArrayType\ApiArrayOfString } /** * Set NegativeKeywords value - * This property is removable from request (nillable=true+minOccurs=0), therefore - * if the value assigned to this property is null, it is removed from this object + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param \ArrayType\ApiArrayOfString $negativeKeywords * @return \StructType\ApiCampaignGetItem */ @@ -375,7 +375,7 @@ public function setNegativeKeywords(?\ArrayType\ApiArrayOfString $negativeKeywor * Get BlockedIps value * An additional test has been added (isset) before returning the property value as * this property may have been unset before, due to the fact that this property is - * removable from the request (nillable=true+minOccurs=0) + * removable from the request (minOccurs=0) * @return \ArrayType\ApiArrayOfString|null */ public function getBlockedIps(): ?\ArrayType\ApiArrayOfString @@ -384,8 +384,8 @@ public function getBlockedIps(): ?\ArrayType\ApiArrayOfString } /** * Set BlockedIps value - * This property is removable from request (nillable=true+minOccurs=0), therefore - * if the value assigned to this property is null, it is removed from this object + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param \ArrayType\ApiArrayOfString $blockedIps * @return \StructType\ApiCampaignGetItem */ @@ -403,7 +403,7 @@ public function setBlockedIps(?\ArrayType\ApiArrayOfString $blockedIps = null): * Get ExcludedSites value * An additional test has been added (isset) before returning the property value as * this property may have been unset before, due to the fact that this property is - * removable from the request (nillable=true+minOccurs=0) + * removable from the request (minOccurs=0) * @return \ArrayType\ApiArrayOfString|null */ public function getExcludedSites(): ?\ArrayType\ApiArrayOfString @@ -412,8 +412,8 @@ public function getExcludedSites(): ?\ArrayType\ApiArrayOfString } /** * Set ExcludedSites value - * This property is removable from request (nillable=true+minOccurs=0), therefore - * if the value assigned to this property is null, it is removed from this object + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param \ArrayType\ApiArrayOfString $excludedSites * @return \StructType\ApiCampaignGetItem */ @@ -429,286 +429,421 @@ public function setExcludedSites(?\ArrayType\ApiArrayOfString $excludedSites = n } /** * Get Id value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return int|null */ public function getId(): ?int { - return $this->Id; + return $this->Id ?? null; } /** * Set Id value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param int $id * @return \StructType\ApiCampaignGetItem */ public function setId(?int $id = null): self { - $this->Id = $id; + if (is_null($id) || (is_array($id) && empty($id))) { + unset($this->Id); + } else { + $this->Id = $id; + } return $this; } /** * Get Name value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getName(): ?string { - return $this->Name; + return $this->Name ?? null; } /** * Set Name value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $name * @return \StructType\ApiCampaignGetItem */ public function setName(?string $name = null): self { - $this->Name = $name; + if (is_null($name) || (is_array($name) && empty($name))) { + unset($this->Name); + } else { + $this->Name = $name; + } return $this; } /** * Get StartDate value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getStartDate(): ?string { - return $this->StartDate; + return $this->StartDate ?? null; } /** * Set StartDate value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $startDate * @return \StructType\ApiCampaignGetItem */ public function setStartDate(?string $startDate = null): self { - $this->StartDate = $startDate; + if (is_null($startDate) || (is_array($startDate) && empty($startDate))) { + unset($this->StartDate); + } else { + $this->StartDate = $startDate; + } return $this; } /** * Get Type value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getType(): ?string { - return $this->Type; + return $this->Type ?? null; } /** * Set Type value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $type * @return \StructType\ApiCampaignGetItem */ public function setType(?string $type = null): self { - $this->Type = $type; + if (is_null($type) || (is_array($type) && empty($type))) { + unset($this->Type); + } else { + $this->Type = $type; + } return $this; } /** * Get Status value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getStatus(): ?string { - return $this->Status; + return $this->Status ?? null; } /** * Set Status value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $status * @return \StructType\ApiCampaignGetItem */ public function setStatus(?string $status = null): self { - $this->Status = $status; + if (is_null($status) || (is_array($status) && empty($status))) { + unset($this->Status); + } else { + $this->Status = $status; + } return $this; } /** * Get State value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getState(): ?string { - return $this->State; + return $this->State ?? null; } /** * Set State value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $state * @return \StructType\ApiCampaignGetItem */ public function setState(?string $state = null): self { - $this->State = $state; + if (is_null($state) || (is_array($state) && empty($state))) { + unset($this->State); + } else { + $this->State = $state; + } return $this; } /** * Get StatusPayment value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getStatusPayment(): ?string { - return $this->StatusPayment; + return $this->StatusPayment ?? null; } /** * Set StatusPayment value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $statusPayment * @return \StructType\ApiCampaignGetItem */ public function setStatusPayment(?string $statusPayment = null): self { - $this->StatusPayment = $statusPayment; + if (is_null($statusPayment) || (is_array($statusPayment) && empty($statusPayment))) { + unset($this->StatusPayment); + } else { + $this->StatusPayment = $statusPayment; + } return $this; } /** * Get StatusClarification value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getStatusClarification(): ?string { - return $this->StatusClarification; + return $this->StatusClarification ?? null; } /** * Set StatusClarification value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $statusClarification * @return \StructType\ApiCampaignGetItem */ public function setStatusClarification(?string $statusClarification = null): self { - $this->StatusClarification = $statusClarification; + if (is_null($statusClarification) || (is_array($statusClarification) && empty($statusClarification))) { + unset($this->StatusClarification); + } else { + $this->StatusClarification = $statusClarification; + } return $this; } /** * Get Statistics value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return \StructType\ApiStatistics|null */ public function getStatistics(): ?\StructType\ApiStatistics { - return $this->Statistics; + return $this->Statistics ?? null; } /** * Set Statistics value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param \StructType\ApiStatistics $statistics * @return \StructType\ApiCampaignGetItem */ public function setStatistics(?\StructType\ApiStatistics $statistics = null): self { - $this->Statistics = $statistics; + if (is_null($statistics) || (is_array($statistics) && empty($statistics))) { + unset($this->Statistics); + } else { + $this->Statistics = $statistics; + } return $this; } /** * Get Currency value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getCurrency(): ?string { - return $this->Currency; + return $this->Currency ?? null; } /** * Set Currency value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $currency * @return \StructType\ApiCampaignGetItem */ public function setCurrency(?string $currency = null): self { - $this->Currency = $currency; + if (is_null($currency) || (is_array($currency) && empty($currency))) { + unset($this->Currency); + } else { + $this->Currency = $currency; + } return $this; } /** * Get Funds value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return \StructType\ApiFundsParam|null */ public function getFunds(): ?\StructType\ApiFundsParam { - return $this->Funds; + return $this->Funds ?? null; } /** * Set Funds value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param \StructType\ApiFundsParam $funds * @return \StructType\ApiCampaignGetItem */ public function setFunds(?\StructType\ApiFundsParam $funds = null): self { - $this->Funds = $funds; + if (is_null($funds) || (is_array($funds) && empty($funds))) { + unset($this->Funds); + } else { + $this->Funds = $funds; + } return $this; } /** * Get RepresentedBy value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return \StructType\ApiCampaignAssistant|null */ public function getRepresentedBy(): ?\StructType\ApiCampaignAssistant { - return $this->RepresentedBy; + return $this->RepresentedBy ?? null; } /** * Set RepresentedBy value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param \StructType\ApiCampaignAssistant $representedBy * @return \StructType\ApiCampaignGetItem */ public function setRepresentedBy(?\StructType\ApiCampaignAssistant $representedBy = null): self { - $this->RepresentedBy = $representedBy; + if (is_null($representedBy) || (is_array($representedBy) && empty($representedBy))) { + unset($this->RepresentedBy); + } else { + $this->RepresentedBy = $representedBy; + } return $this; } /** * Get TextCampaign value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return \StructType\ApiTextCampaignGetItem|null */ public function getTextCampaign(): ?\StructType\ApiTextCampaignGetItem { - return $this->TextCampaign; + return $this->TextCampaign ?? null; } /** * Set TextCampaign value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param \StructType\ApiTextCampaignGetItem $textCampaign * @return \StructType\ApiCampaignGetItem */ public function setTextCampaign(?\StructType\ApiTextCampaignGetItem $textCampaign = null): self { - $this->TextCampaign = $textCampaign; + if (is_null($textCampaign) || (is_array($textCampaign) && empty($textCampaign))) { + unset($this->TextCampaign); + } else { + $this->TextCampaign = $textCampaign; + } return $this; } /** * Get MobileAppCampaign value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return \StructType\ApiMobileAppCampaignGetItem|null */ public function getMobileAppCampaign(): ?\StructType\ApiMobileAppCampaignGetItem { - return $this->MobileAppCampaign; + return $this->MobileAppCampaign ?? null; } /** * Set MobileAppCampaign value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param \StructType\ApiMobileAppCampaignGetItem $mobileAppCampaign * @return \StructType\ApiCampaignGetItem */ public function setMobileAppCampaign(?\StructType\ApiMobileAppCampaignGetItem $mobileAppCampaign = null): self { - $this->MobileAppCampaign = $mobileAppCampaign; + if (is_null($mobileAppCampaign) || (is_array($mobileAppCampaign) && empty($mobileAppCampaign))) { + unset($this->MobileAppCampaign); + } else { + $this->MobileAppCampaign = $mobileAppCampaign; + } return $this; } /** * Get DynamicTextCampaign value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return \StructType\ApiDynamicTextCampaignGetItem|null */ public function getDynamicTextCampaign(): ?\StructType\ApiDynamicTextCampaignGetItem { - return $this->DynamicTextCampaign; + return $this->DynamicTextCampaign ?? null; } /** * Set DynamicTextCampaign value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param \StructType\ApiDynamicTextCampaignGetItem $dynamicTextCampaign * @return \StructType\ApiCampaignGetItem */ public function setDynamicTextCampaign(?\StructType\ApiDynamicTextCampaignGetItem $dynamicTextCampaign = null): self { - $this->DynamicTextCampaign = $dynamicTextCampaign; + if (is_null($dynamicTextCampaign) || (is_array($dynamicTextCampaign) && empty($dynamicTextCampaign))) { + unset($this->DynamicTextCampaign); + } else { + $this->DynamicTextCampaign = $dynamicTextCampaign; + } return $this; } diff --git a/tests/resources/generated/ValidHotelReservationType.php b/tests/resources/generated/ValidHotelReservationType.php index 2dc14eb1..6f23c4ce 100644 --- a/tests/resources/generated/ValidHotelReservationType.php +++ b/tests/resources/generated/ValidHotelReservationType.php @@ -84,58 +84,85 @@ public function __construct(?\StructType\ApiRoomStaysType $roomStays = null, ?\S } /** * Get RoomStays value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return \StructType\ApiRoomStaysType|null */ public function getRoomStays(): ?\StructType\ApiRoomStaysType { - return $this->RoomStays; + return $this->RoomStays ?? null; } /** * Set RoomStays value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param \StructType\ApiRoomStaysType $roomStays * @return \StructType\ApiHotelReservationType */ public function setRoomStays(?\StructType\ApiRoomStaysType $roomStays = null): self { - $this->RoomStays = $roomStays; + if (is_null($roomStays) || (is_array($roomStays) && empty($roomStays))) { + unset($this->RoomStays); + } else { + $this->RoomStays = $roomStays; + } return $this; } /** * Get ResGuests value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return \StructType\ApiResGuestsType|null */ public function getResGuests(): ?\StructType\ApiResGuestsType { - return $this->ResGuests; + return $this->ResGuests ?? null; } /** * Set ResGuests value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param \StructType\ApiResGuestsType $resGuests * @return \StructType\ApiHotelReservationType */ public function setResGuests(?\StructType\ApiResGuestsType $resGuests = null): self { - $this->ResGuests = $resGuests; + if (is_null($resGuests) || (is_array($resGuests) && empty($resGuests))) { + unset($this->ResGuests); + } else { + $this->ResGuests = $resGuests; + } return $this; } /** * Get ResGlobalInfo value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return \StructType\ApiResGlobalInfoType|null */ public function getResGlobalInfo(): ?\StructType\ApiResGlobalInfoType { - return $this->ResGlobalInfo; + return $this->ResGlobalInfo ?? null; } /** * Set ResGlobalInfo value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param \StructType\ApiResGlobalInfoType $resGlobalInfo * @return \StructType\ApiHotelReservationType */ public function setResGlobalInfo(?\StructType\ApiResGlobalInfoType $resGlobalInfo = null): self { - $this->ResGlobalInfo = $resGlobalInfo; + if (is_null($resGlobalInfo) || (is_array($resGlobalInfo) && empty($resGlobalInfo))) { + unset($this->ResGlobalInfo); + } else { + $this->ResGlobalInfo = $resGlobalInfo; + } return $this; } diff --git a/tests/resources/generated/ValidPaymentCardType.php b/tests/resources/generated/ValidPaymentCardType.php index 603aca2c..abe94971 100644 --- a/tests/resources/generated/ValidPaymentCardType.php +++ b/tests/resources/generated/ValidPaymentCardType.php @@ -292,14 +292,19 @@ public function setShareMarketInd(string $shareMarketInd): self } /** * Get CardHolderName value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getCardHolderName(): ?string { - return $this->CardHolderName; + return $this->CardHolderName ?? null; } /** * Set CardHolderName value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $cardHolderName * @return \StructType\ApiPaymentCardType */ @@ -317,55 +322,80 @@ public function setCardHolderName(?string $cardHolderName = null): self if (!is_null($cardHolderName) && mb_strlen((string) $cardHolderName) < 1) { throw new InvalidArgumentException(sprintf('Invalid length of %s, the number of characters/octets contained by the literal must be greater than or equal to 1', mb_strlen((string) $cardHolderName)), __LINE__); } - $this->CardHolderName = $cardHolderName; + if (is_null($cardHolderName) || (is_array($cardHolderName) && empty($cardHolderName))) { + unset($this->CardHolderName); + } else { + $this->CardHolderName = $cardHolderName; + } return $this; } /** * Get CardIssuerName value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return \StructType\ApiCardIssuerName|null */ public function getCardIssuerName(): ?\StructType\ApiCardIssuerName { - return $this->CardIssuerName; + return $this->CardIssuerName ?? null; } /** * Set CardIssuerName value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param \StructType\ApiCardIssuerName $cardIssuerName * @return \StructType\ApiPaymentCardType */ public function setCardIssuerName(?\StructType\ApiCardIssuerName $cardIssuerName = null): self { - $this->CardIssuerName = $cardIssuerName; + if (is_null($cardIssuerName) || (is_array($cardIssuerName) && empty($cardIssuerName))) { + unset($this->CardIssuerName); + } else { + $this->CardIssuerName = $cardIssuerName; + } return $this; } /** * Get Address value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return \StructType\ApiAddressType|null */ public function getAddress(): ?\StructType\ApiAddressType { - return $this->Address; + return $this->Address ?? null; } /** * Set Address value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param \StructType\ApiAddressType $address * @return \StructType\ApiPaymentCardType */ public function setAddress(?\StructType\ApiAddressType $address = null): self { - $this->Address = $address; + if (is_null($address) || (is_array($address) && empty($address))) { + unset($this->Address); + } else { + $this->Address = $address; + } return $this; } /** * Get Telephone value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return \StructType\ApiTelephone[] */ public function getTelephone(): ?array { - return $this->Telephone; + return $this->Telephone ?? null; } /** * This method is responsible for validating the value(s) passed to the setTelephone method @@ -396,6 +426,8 @@ public static function validateTelephoneForArrayConstraintFromSetTelephone(?arra } /** * Set Telephone value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @throws InvalidArgumentException * @param \StructType\ApiTelephone[] $telephone * @return \StructType\ApiPaymentCardType @@ -410,7 +442,11 @@ public function setTelephone(?array $telephone = null): self if (is_array($telephone) && count($telephone) > 5) { throw new InvalidArgumentException(sprintf('Invalid count of %s, the number of elements contained by the property must be less than or equal to 5', count($telephone)), __LINE__); } - $this->Telephone = $telephone; + if (is_null($telephone) || (is_array($telephone) && empty($telephone))) { + unset($this->Telephone); + } else { + $this->Telephone = $telephone; + } return $this; } @@ -436,11 +472,14 @@ public function addToTelephone(\StructType\ApiTelephone $item): self } /** * Get Email value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return \StructType\ApiEmailType[] */ public function getEmail(): ?array { - return $this->Email; + return $this->Email ?? null; } /** * This method is responsible for validating the value(s) passed to the setEmail method @@ -471,6 +510,8 @@ public static function validateEmailForArrayConstraintFromSetEmail(?array $value } /** * Set Email value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @throws InvalidArgumentException * @param \StructType\ApiEmailType[] $email * @return \StructType\ApiPaymentCardType @@ -485,7 +526,11 @@ public function setEmail(?array $email = null): self if (is_array($email) && count($email) > 3) { throw new InvalidArgumentException(sprintf('Invalid count of %s, the number of elements contained by the property must be less than or equal to 3', count($email)), __LINE__); } - $this->Email = $email; + if (is_null($email) || (is_array($email) && empty($email))) { + unset($this->Email); + } else { + $this->Email = $email; + } return $this; } diff --git a/tests/resources/generated/ValidSetExpressCheckoutRequestDetailsType.php b/tests/resources/generated/ValidSetExpressCheckoutRequestDetailsType.php index a8775830..d3400720 100644 --- a/tests/resources/generated/ValidSetExpressCheckoutRequestDetailsType.php +++ b/tests/resources/generated/ValidSetExpressCheckoutRequestDetailsType.php @@ -855,33 +855,47 @@ public function setCancelURL(string $cancelURL): self } /** * Get OrderTotal value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return \StructType\ApiBasicAmountType|null */ public function getOrderTotal(): ?\StructType\ApiBasicAmountType { - return $this->OrderTotal; + return $this->OrderTotal ?? null; } /** * Set OrderTotal value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param \StructType\ApiBasicAmountType $orderTotal * @return \StructType\ApiSetExpressCheckoutRequestDetailsType */ public function setOrderTotal(?\StructType\ApiBasicAmountType $orderTotal = null): self { - $this->OrderTotal = $orderTotal; + if (is_null($orderTotal) || (is_array($orderTotal) && empty($orderTotal))) { + unset($this->OrderTotal); + } else { + $this->OrderTotal = $orderTotal; + } return $this; } /** * Get TrackingImageURL value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getTrackingImageURL(): ?string { - return $this->TrackingImageURL; + return $this->TrackingImageURL ?? null; } /** * Set TrackingImageURL value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $trackingImageURL * @return \StructType\ApiSetExpressCheckoutRequestDetailsType */ @@ -891,20 +905,29 @@ public function setTrackingImageURL(?string $trackingImageURL = null): self if (!is_null($trackingImageURL) && !is_string($trackingImageURL)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($trackingImageURL, true), gettype($trackingImageURL)), __LINE__); } - $this->TrackingImageURL = $trackingImageURL; + if (is_null($trackingImageURL) || (is_array($trackingImageURL) && empty($trackingImageURL))) { + unset($this->TrackingImageURL); + } else { + $this->TrackingImageURL = $trackingImageURL; + } return $this; } /** * Get giropaySuccessURL value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getGiropaySuccessURL(): ?string { - return $this->giropaySuccessURL; + return $this->giropaySuccessURL ?? null; } /** * Set giropaySuccessURL value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $giropaySuccessURL * @return \StructType\ApiSetExpressCheckoutRequestDetailsType */ @@ -914,20 +937,29 @@ public function setGiropaySuccessURL(?string $giropaySuccessURL = null): self if (!is_null($giropaySuccessURL) && !is_string($giropaySuccessURL)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($giropaySuccessURL, true), gettype($giropaySuccessURL)), __LINE__); } - $this->giropaySuccessURL = $giropaySuccessURL; + if (is_null($giropaySuccessURL) || (is_array($giropaySuccessURL) && empty($giropaySuccessURL))) { + unset($this->giropaySuccessURL); + } else { + $this->giropaySuccessURL = $giropaySuccessURL; + } return $this; } /** * Get giropayCancelURL value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getGiropayCancelURL(): ?string { - return $this->giropayCancelURL; + return $this->giropayCancelURL ?? null; } /** * Set giropayCancelURL value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $giropayCancelURL * @return \StructType\ApiSetExpressCheckoutRequestDetailsType */ @@ -937,20 +969,29 @@ public function setGiropayCancelURL(?string $giropayCancelURL = null): self if (!is_null($giropayCancelURL) && !is_string($giropayCancelURL)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($giropayCancelURL, true), gettype($giropayCancelURL)), __LINE__); } - $this->giropayCancelURL = $giropayCancelURL; + if (is_null($giropayCancelURL) || (is_array($giropayCancelURL) && empty($giropayCancelURL))) { + unset($this->giropayCancelURL); + } else { + $this->giropayCancelURL = $giropayCancelURL; + } return $this; } /** * Get BanktxnPendingURL value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getBanktxnPendingURL(): ?string { - return $this->BanktxnPendingURL; + return $this->BanktxnPendingURL ?? null; } /** * Set BanktxnPendingURL value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $banktxnPendingURL * @return \StructType\ApiSetExpressCheckoutRequestDetailsType */ @@ -960,20 +1001,29 @@ public function setBanktxnPendingURL(?string $banktxnPendingURL = null): self if (!is_null($banktxnPendingURL) && !is_string($banktxnPendingURL)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($banktxnPendingURL, true), gettype($banktxnPendingURL)), __LINE__); } - $this->BanktxnPendingURL = $banktxnPendingURL; + if (is_null($banktxnPendingURL) || (is_array($banktxnPendingURL) && empty($banktxnPendingURL))) { + unset($this->BanktxnPendingURL); + } else { + $this->BanktxnPendingURL = $banktxnPendingURL; + } return $this; } /** * Get Token value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getToken(): ?string { - return $this->Token; + return $this->Token ?? null; } /** * Set Token value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $token * @return \StructType\ApiSetExpressCheckoutRequestDetailsType */ @@ -983,39 +1033,57 @@ public function setToken(?string $token = null): self if (!is_null($token) && !is_string($token)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($token, true), gettype($token)), __LINE__); } - $this->Token = $token; + if (is_null($token) || (is_array($token) && empty($token))) { + unset($this->Token); + } else { + $this->Token = $token; + } return $this; } /** * Get MaxAmount value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return \StructType\ApiBasicAmountType|null */ public function getMaxAmount(): ?\StructType\ApiBasicAmountType { - return $this->MaxAmount; + return $this->MaxAmount ?? null; } /** * Set MaxAmount value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param \StructType\ApiBasicAmountType $maxAmount * @return \StructType\ApiSetExpressCheckoutRequestDetailsType */ public function setMaxAmount(?\StructType\ApiBasicAmountType $maxAmount = null): self { - $this->MaxAmount = $maxAmount; + if (is_null($maxAmount) || (is_array($maxAmount) && empty($maxAmount))) { + unset($this->MaxAmount); + } else { + $this->MaxAmount = $maxAmount; + } return $this; } /** * Get OrderDescription value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getOrderDescription(): ?string { - return $this->OrderDescription; + return $this->OrderDescription ?? null; } /** * Set OrderDescription value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $orderDescription * @return \StructType\ApiSetExpressCheckoutRequestDetailsType */ @@ -1025,20 +1093,29 @@ public function setOrderDescription(?string $orderDescription = null): self if (!is_null($orderDescription) && !is_string($orderDescription)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($orderDescription, true), gettype($orderDescription)), __LINE__); } - $this->OrderDescription = $orderDescription; + if (is_null($orderDescription) || (is_array($orderDescription) && empty($orderDescription))) { + unset($this->OrderDescription); + } else { + $this->OrderDescription = $orderDescription; + } return $this; } /** * Get Custom value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getCustom(): ?string { - return $this->Custom; + return $this->Custom ?? null; } /** * Set Custom value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $custom * @return \StructType\ApiSetExpressCheckoutRequestDetailsType */ @@ -1048,20 +1125,29 @@ public function setCustom(?string $custom = null): self if (!is_null($custom) && !is_string($custom)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($custom, true), gettype($custom)), __LINE__); } - $this->Custom = $custom; + if (is_null($custom) || (is_array($custom) && empty($custom))) { + unset($this->Custom); + } else { + $this->Custom = $custom; + } return $this; } /** * Get InvoiceID value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getInvoiceID(): ?string { - return $this->InvoiceID; + return $this->InvoiceID ?? null; } /** * Set InvoiceID value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $invoiceID * @return \StructType\ApiSetExpressCheckoutRequestDetailsType */ @@ -1071,20 +1157,29 @@ public function setInvoiceID(?string $invoiceID = null): self if (!is_null($invoiceID) && !is_string($invoiceID)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($invoiceID, true), gettype($invoiceID)), __LINE__); } - $this->InvoiceID = $invoiceID; + if (is_null($invoiceID) || (is_array($invoiceID) && empty($invoiceID))) { + unset($this->InvoiceID); + } else { + $this->InvoiceID = $invoiceID; + } return $this; } /** * Get ReqConfirmShipping value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getReqConfirmShipping(): ?string { - return $this->ReqConfirmShipping; + return $this->ReqConfirmShipping ?? null; } /** * Set ReqConfirmShipping value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $reqConfirmShipping * @return \StructType\ApiSetExpressCheckoutRequestDetailsType */ @@ -1094,20 +1189,29 @@ public function setReqConfirmShipping(?string $reqConfirmShipping = null): self if (!is_null($reqConfirmShipping) && !is_string($reqConfirmShipping)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($reqConfirmShipping, true), gettype($reqConfirmShipping)), __LINE__); } - $this->ReqConfirmShipping = $reqConfirmShipping; + if (is_null($reqConfirmShipping) || (is_array($reqConfirmShipping) && empty($reqConfirmShipping))) { + unset($this->ReqConfirmShipping); + } else { + $this->ReqConfirmShipping = $reqConfirmShipping; + } return $this; } /** * Get ReqBillingAddress value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getReqBillingAddress(): ?string { - return $this->ReqBillingAddress; + return $this->ReqBillingAddress ?? null; } /** * Set ReqBillingAddress value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $reqBillingAddress * @return \StructType\ApiSetExpressCheckoutRequestDetailsType */ @@ -1117,39 +1221,57 @@ public function setReqBillingAddress(?string $reqBillingAddress = null): self if (!is_null($reqBillingAddress) && !is_string($reqBillingAddress)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($reqBillingAddress, true), gettype($reqBillingAddress)), __LINE__); } - $this->ReqBillingAddress = $reqBillingAddress; + if (is_null($reqBillingAddress) || (is_array($reqBillingAddress) && empty($reqBillingAddress))) { + unset($this->ReqBillingAddress); + } else { + $this->ReqBillingAddress = $reqBillingAddress; + } return $this; } /** * Get BillingAddress value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return \StructType\ApiAddressType|null */ public function getBillingAddress(): ?\StructType\ApiAddressType { - return $this->BillingAddress; + return $this->BillingAddress ?? null; } /** * Set BillingAddress value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param \StructType\ApiAddressType $billingAddress * @return \StructType\ApiSetExpressCheckoutRequestDetailsType */ public function setBillingAddress(?\StructType\ApiAddressType $billingAddress = null): self { - $this->BillingAddress = $billingAddress; + if (is_null($billingAddress) || (is_array($billingAddress) && empty($billingAddress))) { + unset($this->BillingAddress); + } else { + $this->BillingAddress = $billingAddress; + } return $this; } /** * Get NoShipping value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getNoShipping(): ?string { - return $this->NoShipping; + return $this->NoShipping ?? null; } /** * Set NoShipping value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $noShipping * @return \StructType\ApiSetExpressCheckoutRequestDetailsType */ @@ -1159,20 +1281,29 @@ public function setNoShipping(?string $noShipping = null): self if (!is_null($noShipping) && !is_string($noShipping)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($noShipping, true), gettype($noShipping)), __LINE__); } - $this->NoShipping = $noShipping; + if (is_null($noShipping) || (is_array($noShipping) && empty($noShipping))) { + unset($this->NoShipping); + } else { + $this->NoShipping = $noShipping; + } return $this; } /** * Get AddressOverride value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getAddressOverride(): ?string { - return $this->AddressOverride; + return $this->AddressOverride ?? null; } /** * Set AddressOverride value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $addressOverride * @return \StructType\ApiSetExpressCheckoutRequestDetailsType */ @@ -1182,20 +1313,29 @@ public function setAddressOverride(?string $addressOverride = null): self if (!is_null($addressOverride) && !is_string($addressOverride)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($addressOverride, true), gettype($addressOverride)), __LINE__); } - $this->AddressOverride = $addressOverride; + if (is_null($addressOverride) || (is_array($addressOverride) && empty($addressOverride))) { + unset($this->AddressOverride); + } else { + $this->AddressOverride = $addressOverride; + } return $this; } /** * Get LocaleCode value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getLocaleCode(): ?string { - return $this->LocaleCode; + return $this->LocaleCode ?? null; } /** * Set LocaleCode value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $localeCode * @return \StructType\ApiSetExpressCheckoutRequestDetailsType */ @@ -1205,20 +1345,29 @@ public function setLocaleCode(?string $localeCode = null): self if (!is_null($localeCode) && !is_string($localeCode)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($localeCode, true), gettype($localeCode)), __LINE__); } - $this->LocaleCode = $localeCode; + if (is_null($localeCode) || (is_array($localeCode) && empty($localeCode))) { + unset($this->LocaleCode); + } else { + $this->LocaleCode = $localeCode; + } return $this; } /** * Get PageStyle value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getPageStyle(): ?string { - return $this->PageStyle; + return $this->PageStyle ?? null; } /** * Set PageStyle value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $pageStyle * @return \StructType\ApiSetExpressCheckoutRequestDetailsType */ @@ -1228,20 +1377,29 @@ public function setPageStyle(?string $pageStyle = null): self if (!is_null($pageStyle) && !is_string($pageStyle)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($pageStyle, true), gettype($pageStyle)), __LINE__); } - $this->PageStyle = $pageStyle; + if (is_null($pageStyle) || (is_array($pageStyle) && empty($pageStyle))) { + unset($this->PageStyle); + } else { + $this->PageStyle = $pageStyle; + } return $this; } /** * Get cpp_header_image value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getCpp_header_image(): ?string { - return $this->{'cpp-header-image'}; + return $this->{'cpp-header-image'} ?? null; } /** * Set cpp_header_image value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $cpp_header_image * @return \StructType\ApiSetExpressCheckoutRequestDetailsType */ @@ -1251,20 +1409,29 @@ public function setCpp_header_image(?string $cpp_header_image = null): self if (!is_null($cpp_header_image) && !is_string($cpp_header_image)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($cpp_header_image, true), gettype($cpp_header_image)), __LINE__); } - $this->cpp_header_image = $this->{'cpp-header-image'} = $cpp_header_image; + if (is_null($cpp_header_image) || (is_array($cpp_header_image) && empty($cpp_header_image))) { + unset($this->cpp_header_image, $this->{'cpp-header-image'}); + } else { + $this->cpp_header_image = $this->{'cpp-header-image'} = $cpp_header_image; + } return $this; } /** * Get cpp_header_border_color value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getCpp_header_border_color(): ?string { - return $this->{'cpp-header-border-color'}; + return $this->{'cpp-header-border-color'} ?? null; } /** * Set cpp_header_border_color value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $cpp_header_border_color * @return \StructType\ApiSetExpressCheckoutRequestDetailsType */ @@ -1274,20 +1441,29 @@ public function setCpp_header_border_color(?string $cpp_header_border_color = nu if (!is_null($cpp_header_border_color) && !is_string($cpp_header_border_color)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($cpp_header_border_color, true), gettype($cpp_header_border_color)), __LINE__); } - $this->cpp_header_border_color = $this->{'cpp-header-border-color'} = $cpp_header_border_color; + if (is_null($cpp_header_border_color) || (is_array($cpp_header_border_color) && empty($cpp_header_border_color))) { + unset($this->cpp_header_border_color, $this->{'cpp-header-border-color'}); + } else { + $this->cpp_header_border_color = $this->{'cpp-header-border-color'} = $cpp_header_border_color; + } return $this; } /** * Get cpp_header_back_color value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getCpp_header_back_color(): ?string { - return $this->{'cpp-header-back-color'}; + return $this->{'cpp-header-back-color'} ?? null; } /** * Set cpp_header_back_color value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $cpp_header_back_color * @return \StructType\ApiSetExpressCheckoutRequestDetailsType */ @@ -1297,20 +1473,29 @@ public function setCpp_header_back_color(?string $cpp_header_back_color = null): if (!is_null($cpp_header_back_color) && !is_string($cpp_header_back_color)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($cpp_header_back_color, true), gettype($cpp_header_back_color)), __LINE__); } - $this->cpp_header_back_color = $this->{'cpp-header-back-color'} = $cpp_header_back_color; + if (is_null($cpp_header_back_color) || (is_array($cpp_header_back_color) && empty($cpp_header_back_color))) { + unset($this->cpp_header_back_color, $this->{'cpp-header-back-color'}); + } else { + $this->cpp_header_back_color = $this->{'cpp-header-back-color'} = $cpp_header_back_color; + } return $this; } /** * Get cpp_payflow_color value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getCpp_payflow_color(): ?string { - return $this->{'cpp-payflow-color'}; + return $this->{'cpp-payflow-color'} ?? null; } /** * Set cpp_payflow_color value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $cpp_payflow_color * @return \StructType\ApiSetExpressCheckoutRequestDetailsType */ @@ -1320,20 +1505,29 @@ public function setCpp_payflow_color(?string $cpp_payflow_color = null): self if (!is_null($cpp_payflow_color) && !is_string($cpp_payflow_color)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($cpp_payflow_color, true), gettype($cpp_payflow_color)), __LINE__); } - $this->cpp_payflow_color = $this->{'cpp-payflow-color'} = $cpp_payflow_color; + if (is_null($cpp_payflow_color) || (is_array($cpp_payflow_color) && empty($cpp_payflow_color))) { + unset($this->cpp_payflow_color, $this->{'cpp-payflow-color'}); + } else { + $this->cpp_payflow_color = $this->{'cpp-payflow-color'} = $cpp_payflow_color; + } return $this; } /** * Get cpp_cart_border_color value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getCpp_cart_border_color(): ?string { - return $this->{'cpp-cart-border-color'}; + return $this->{'cpp-cart-border-color'} ?? null; } /** * Set cpp_cart_border_color value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $cpp_cart_border_color * @return \StructType\ApiSetExpressCheckoutRequestDetailsType */ @@ -1343,20 +1537,29 @@ public function setCpp_cart_border_color(?string $cpp_cart_border_color = null): if (!is_null($cpp_cart_border_color) && !is_string($cpp_cart_border_color)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($cpp_cart_border_color, true), gettype($cpp_cart_border_color)), __LINE__); } - $this->cpp_cart_border_color = $this->{'cpp-cart-border-color'} = $cpp_cart_border_color; + if (is_null($cpp_cart_border_color) || (is_array($cpp_cart_border_color) && empty($cpp_cart_border_color))) { + unset($this->cpp_cart_border_color, $this->{'cpp-cart-border-color'}); + } else { + $this->cpp_cart_border_color = $this->{'cpp-cart-border-color'} = $cpp_cart_border_color; + } return $this; } /** * Get cpp_logo_image value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getCpp_logo_image(): ?string { - return $this->{'cpp-logo-image'}; + return $this->{'cpp-logo-image'} ?? null; } /** * Set cpp_logo_image value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $cpp_logo_image * @return \StructType\ApiSetExpressCheckoutRequestDetailsType */ @@ -1366,39 +1569,57 @@ public function setCpp_logo_image(?string $cpp_logo_image = null): self if (!is_null($cpp_logo_image) && !is_string($cpp_logo_image)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($cpp_logo_image, true), gettype($cpp_logo_image)), __LINE__); } - $this->cpp_logo_image = $this->{'cpp-logo-image'} = $cpp_logo_image; + if (is_null($cpp_logo_image) || (is_array($cpp_logo_image) && empty($cpp_logo_image))) { + unset($this->cpp_logo_image, $this->{'cpp-logo-image'}); + } else { + $this->cpp_logo_image = $this->{'cpp-logo-image'} = $cpp_logo_image; + } return $this; } /** * Get Address value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return \StructType\ApiAddressType|null */ public function getAddress(): ?\StructType\ApiAddressType { - return $this->Address; + return $this->Address ?? null; } /** * Set Address value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param \StructType\ApiAddressType $address * @return \StructType\ApiSetExpressCheckoutRequestDetailsType */ public function setAddress(?\StructType\ApiAddressType $address = null): self { - $this->Address = $address; + if (is_null($address) || (is_array($address) && empty($address))) { + unset($this->Address); + } else { + $this->Address = $address; + } return $this; } /** * Get PaymentAction value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getPaymentAction(): ?string { - return $this->PaymentAction; + return $this->PaymentAction ?? null; } /** * Set PaymentAction value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @uses \EnumType\ApiPaymentActionCodeType::valueIsValid() * @uses \EnumType\ApiPaymentActionCodeType::getValidValues() * @throws InvalidArgumentException @@ -1411,20 +1632,29 @@ public function setPaymentAction(?string $paymentAction = null): self if (!\EnumType\ApiPaymentActionCodeType::valueIsValid($paymentAction)) { throw new InvalidArgumentException(sprintf('Invalid value(s) %s, please use one of: %s from enumeration class \EnumType\ApiPaymentActionCodeType', is_array($paymentAction) ? implode(', ', $paymentAction) : var_export($paymentAction, true), implode(', ', \EnumType\ApiPaymentActionCodeType::getValidValues())), __LINE__); } - $this->PaymentAction = $paymentAction; + if (is_null($paymentAction) || (is_array($paymentAction) && empty($paymentAction))) { + unset($this->PaymentAction); + } else { + $this->PaymentAction = $paymentAction; + } return $this; } /** * Get SolutionType value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getSolutionType(): ?string { - return $this->SolutionType; + return $this->SolutionType ?? null; } /** * Set SolutionType value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @uses \EnumType\ApiSolutionTypeType::valueIsValid() * @uses \EnumType\ApiSolutionTypeType::getValidValues() * @throws InvalidArgumentException @@ -1437,20 +1667,29 @@ public function setSolutionType(?string $solutionType = null): self if (!\EnumType\ApiSolutionTypeType::valueIsValid($solutionType)) { throw new InvalidArgumentException(sprintf('Invalid value(s) %s, please use one of: %s from enumeration class \EnumType\ApiSolutionTypeType', is_array($solutionType) ? implode(', ', $solutionType) : var_export($solutionType, true), implode(', ', \EnumType\ApiSolutionTypeType::getValidValues())), __LINE__); } - $this->SolutionType = $solutionType; + if (is_null($solutionType) || (is_array($solutionType) && empty($solutionType))) { + unset($this->SolutionType); + } else { + $this->SolutionType = $solutionType; + } return $this; } /** * Get LandingPage value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getLandingPage(): ?string { - return $this->LandingPage; + return $this->LandingPage ?? null; } /** * Set LandingPage value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @uses \EnumType\ApiLandingPageType::valueIsValid() * @uses \EnumType\ApiLandingPageType::getValidValues() * @throws InvalidArgumentException @@ -1463,20 +1702,29 @@ public function setLandingPage(?string $landingPage = null): self if (!\EnumType\ApiLandingPageType::valueIsValid($landingPage)) { throw new InvalidArgumentException(sprintf('Invalid value(s) %s, please use one of: %s from enumeration class \EnumType\ApiLandingPageType', is_array($landingPage) ? implode(', ', $landingPage) : var_export($landingPage, true), implode(', ', \EnumType\ApiLandingPageType::getValidValues())), __LINE__); } - $this->LandingPage = $landingPage; + if (is_null($landingPage) || (is_array($landingPage) && empty($landingPage))) { + unset($this->LandingPage); + } else { + $this->LandingPage = $landingPage; + } return $this; } /** * Get BuyerEmail value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getBuyerEmail(): ?string { - return $this->BuyerEmail; + return $this->BuyerEmail ?? null; } /** * Set BuyerEmail value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $buyerEmail * @return \StructType\ApiSetExpressCheckoutRequestDetailsType */ @@ -1486,20 +1734,29 @@ public function setBuyerEmail(?string $buyerEmail = null): self if (!is_null($buyerEmail) && !is_string($buyerEmail)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($buyerEmail, true), gettype($buyerEmail)), __LINE__); } - $this->BuyerEmail = $buyerEmail; + if (is_null($buyerEmail) || (is_array($buyerEmail) && empty($buyerEmail))) { + unset($this->BuyerEmail); + } else { + $this->BuyerEmail = $buyerEmail; + } return $this; } /** * Get ChannelType value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getChannelType(): ?string { - return $this->ChannelType; + return $this->ChannelType ?? null; } /** * Set ChannelType value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @uses \EnumType\ApiChannelType::valueIsValid() * @uses \EnumType\ApiChannelType::getValidValues() * @throws InvalidArgumentException @@ -1512,17 +1769,24 @@ public function setChannelType(?string $channelType = null): self if (!\EnumType\ApiChannelType::valueIsValid($channelType)) { throw new InvalidArgumentException(sprintf('Invalid value(s) %s, please use one of: %s from enumeration class \EnumType\ApiChannelType', is_array($channelType) ? implode(', ', $channelType) : var_export($channelType, true), implode(', ', \EnumType\ApiChannelType::getValidValues())), __LINE__); } - $this->ChannelType = $channelType; + if (is_null($channelType) || (is_array($channelType) && empty($channelType))) { + unset($this->ChannelType); + } else { + $this->ChannelType = $channelType; + } return $this; } /** * Get BillingAgreementDetails value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return \StructType\ApiBillingAgreementDetailsType[] */ public function getBillingAgreementDetails(): ?array { - return $this->BillingAgreementDetails; + return $this->BillingAgreementDetails ?? null; } /** * This method is responsible for validating the value(s) passed to the setBillingAgreementDetails method @@ -1553,6 +1817,8 @@ public static function validateBillingAgreementDetailsForArrayConstraintFromSetB } /** * Set BillingAgreementDetails value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @throws InvalidArgumentException * @param \StructType\ApiBillingAgreementDetailsType[] $billingAgreementDetails * @return \StructType\ApiSetExpressCheckoutRequestDetailsType @@ -1563,7 +1829,11 @@ public function setBillingAgreementDetails(?array $billingAgreementDetails = nul if ('' !== ($billingAgreementDetailsArrayErrorMessage = self::validateBillingAgreementDetailsForArrayConstraintFromSetBillingAgreementDetails($billingAgreementDetails))) { throw new InvalidArgumentException($billingAgreementDetailsArrayErrorMessage, __LINE__); } - $this->BillingAgreementDetails = $billingAgreementDetails; + if (is_null($billingAgreementDetails) || (is_array($billingAgreementDetails) && empty($billingAgreementDetails))) { + unset($this->BillingAgreementDetails); + } else { + $this->BillingAgreementDetails = $billingAgreementDetails; + } return $this; } @@ -1585,11 +1855,14 @@ public function addToBillingAgreementDetails(\StructType\ApiBillingAgreementDeta } /** * Get PromoCodes value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string[] */ public function getPromoCodes(): ?array { - return $this->PromoCodes; + return $this->PromoCodes ?? null; } /** * This method is responsible for validating the value(s) passed to the setPromoCodes method @@ -1620,6 +1893,8 @@ public static function validatePromoCodesForArrayConstraintFromSetPromoCodes(?ar } /** * Set PromoCodes value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @throws InvalidArgumentException * @param string[] $promoCodes * @return \StructType\ApiSetExpressCheckoutRequestDetailsType @@ -1630,7 +1905,11 @@ public function setPromoCodes(?array $promoCodes = null): self if ('' !== ($promoCodesArrayErrorMessage = self::validatePromoCodesForArrayConstraintFromSetPromoCodes($promoCodes))) { throw new InvalidArgumentException($promoCodesArrayErrorMessage, __LINE__); } - $this->PromoCodes = $promoCodes; + if (is_null($promoCodes) || (is_array($promoCodes) && empty($promoCodes))) { + unset($this->PromoCodes); + } else { + $this->PromoCodes = $promoCodes; + } return $this; } @@ -1652,14 +1931,19 @@ public function addToPromoCodes(string $item): self } /** * Get PayPalCheckOutBtnType value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getPayPalCheckOutBtnType(): ?string { - return $this->PayPalCheckOutBtnType; + return $this->PayPalCheckOutBtnType ?? null; } /** * Set PayPalCheckOutBtnType value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $payPalCheckOutBtnType * @return \StructType\ApiSetExpressCheckoutRequestDetailsType */ @@ -1669,20 +1953,29 @@ public function setPayPalCheckOutBtnType(?string $payPalCheckOutBtnType = null): if (!is_null($payPalCheckOutBtnType) && !is_string($payPalCheckOutBtnType)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($payPalCheckOutBtnType, true), gettype($payPalCheckOutBtnType)), __LINE__); } - $this->PayPalCheckOutBtnType = $payPalCheckOutBtnType; + if (is_null($payPalCheckOutBtnType) || (is_array($payPalCheckOutBtnType) && empty($payPalCheckOutBtnType))) { + unset($this->PayPalCheckOutBtnType); + } else { + $this->PayPalCheckOutBtnType = $payPalCheckOutBtnType; + } return $this; } /** * Get ProductCategory value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getProductCategory(): ?string { - return $this->ProductCategory; + return $this->ProductCategory ?? null; } /** * Set ProductCategory value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @uses \EnumType\ApiProductCategoryType::valueIsValid() * @uses \EnumType\ApiProductCategoryType::getValidValues() * @throws InvalidArgumentException @@ -1695,20 +1988,29 @@ public function setProductCategory(?string $productCategory = null): self if (!\EnumType\ApiProductCategoryType::valueIsValid($productCategory)) { throw new InvalidArgumentException(sprintf('Invalid value(s) %s, please use one of: %s from enumeration class \EnumType\ApiProductCategoryType', is_array($productCategory) ? implode(', ', $productCategory) : var_export($productCategory, true), implode(', ', \EnumType\ApiProductCategoryType::getValidValues())), __LINE__); } - $this->ProductCategory = $productCategory; + if (is_null($productCategory) || (is_array($productCategory) && empty($productCategory))) { + unset($this->ProductCategory); + } else { + $this->ProductCategory = $productCategory; + } return $this; } /** * Get ShippingMethod value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getShippingMethod(): ?string { - return $this->ShippingMethod; + return $this->ShippingMethod ?? null; } /** * Set ShippingMethod value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @uses \EnumType\ApiShippingServiceCodeType::valueIsValid() * @uses \EnumType\ApiShippingServiceCodeType::getValidValues() * @throws InvalidArgumentException @@ -1721,20 +2023,29 @@ public function setShippingMethod(?string $shippingMethod = null): self if (!\EnumType\ApiShippingServiceCodeType::valueIsValid($shippingMethod)) { throw new InvalidArgumentException(sprintf('Invalid value(s) %s, please use one of: %s from enumeration class \EnumType\ApiShippingServiceCodeType', is_array($shippingMethod) ? implode(', ', $shippingMethod) : var_export($shippingMethod, true), implode(', ', \EnumType\ApiShippingServiceCodeType::getValidValues())), __LINE__); } - $this->ShippingMethod = $shippingMethod; + if (is_null($shippingMethod) || (is_array($shippingMethod) && empty($shippingMethod))) { + unset($this->ShippingMethod); + } else { + $this->ShippingMethod = $shippingMethod; + } return $this; } /** * Get ProfileAddressChangeDate value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getProfileAddressChangeDate(): ?string { - return $this->ProfileAddressChangeDate; + return $this->ProfileAddressChangeDate ?? null; } /** * Set ProfileAddressChangeDate value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $profileAddressChangeDate * @return \StructType\ApiSetExpressCheckoutRequestDetailsType */ @@ -1744,20 +2055,29 @@ public function setProfileAddressChangeDate(?string $profileAddressChangeDate = if (!is_null($profileAddressChangeDate) && !is_string($profileAddressChangeDate)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($profileAddressChangeDate, true), gettype($profileAddressChangeDate)), __LINE__); } - $this->ProfileAddressChangeDate = $profileAddressChangeDate; + if (is_null($profileAddressChangeDate) || (is_array($profileAddressChangeDate) && empty($profileAddressChangeDate))) { + unset($this->ProfileAddressChangeDate); + } else { + $this->ProfileAddressChangeDate = $profileAddressChangeDate; + } return $this; } /** * Get AllowNote value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getAllowNote(): ?string { - return $this->AllowNote; + return $this->AllowNote ?? null; } /** * Set AllowNote value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $allowNote * @return \StructType\ApiSetExpressCheckoutRequestDetailsType */ @@ -1767,39 +2087,57 @@ public function setAllowNote(?string $allowNote = null): self if (!is_null($allowNote) && !is_string($allowNote)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($allowNote, true), gettype($allowNote)), __LINE__); } - $this->AllowNote = $allowNote; + if (is_null($allowNote) || (is_array($allowNote) && empty($allowNote))) { + unset($this->AllowNote); + } else { + $this->AllowNote = $allowNote; + } return $this; } /** * Get FundingSourceDetails value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return \StructType\ApiFundingSourceDetailsType|null */ public function getFundingSourceDetails(): ?\StructType\ApiFundingSourceDetailsType { - return $this->FundingSourceDetails; + return $this->FundingSourceDetails ?? null; } /** * Set FundingSourceDetails value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param \StructType\ApiFundingSourceDetailsType $fundingSourceDetails * @return \StructType\ApiSetExpressCheckoutRequestDetailsType */ public function setFundingSourceDetails(?\StructType\ApiFundingSourceDetailsType $fundingSourceDetails = null): self { - $this->FundingSourceDetails = $fundingSourceDetails; + if (is_null($fundingSourceDetails) || (is_array($fundingSourceDetails) && empty($fundingSourceDetails))) { + unset($this->FundingSourceDetails); + } else { + $this->FundingSourceDetails = $fundingSourceDetails; + } return $this; } /** * Get BrandName value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getBrandName(): ?string { - return $this->BrandName; + return $this->BrandName ?? null; } /** * Set BrandName value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $brandName * @return \StructType\ApiSetExpressCheckoutRequestDetailsType */ @@ -1809,20 +2147,29 @@ public function setBrandName(?string $brandName = null): self if (!is_null($brandName) && !is_string($brandName)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($brandName, true), gettype($brandName)), __LINE__); } - $this->BrandName = $brandName; + if (is_null($brandName) || (is_array($brandName) && empty($brandName))) { + unset($this->BrandName); + } else { + $this->BrandName = $brandName; + } return $this; } /** * Get CallbackURL value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getCallbackURL(): ?string { - return $this->CallbackURL; + return $this->CallbackURL ?? null; } /** * Set CallbackURL value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $callbackURL * @return \StructType\ApiSetExpressCheckoutRequestDetailsType */ @@ -1832,36 +2179,52 @@ public function setCallbackURL(?string $callbackURL = null): self if (!is_null($callbackURL) && !is_string($callbackURL)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($callbackURL, true), gettype($callbackURL)), __LINE__); } - $this->CallbackURL = $callbackURL; + if (is_null($callbackURL) || (is_array($callbackURL) && empty($callbackURL))) { + unset($this->CallbackURL); + } else { + $this->CallbackURL = $callbackURL; + } return $this; } /** * Get EnhancedCheckoutData value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return \StructType\ApiEnhancedCheckoutDataType|null */ public function getEnhancedCheckoutData(): ?\StructType\ApiEnhancedCheckoutDataType { - return $this->EnhancedCheckoutData; + return $this->EnhancedCheckoutData ?? null; } /** * Set EnhancedCheckoutData value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param \StructType\ApiEnhancedCheckoutDataType $enhancedCheckoutData * @return \StructType\ApiSetExpressCheckoutRequestDetailsType */ public function setEnhancedCheckoutData(?\StructType\ApiEnhancedCheckoutDataType $enhancedCheckoutData = null): self { - $this->EnhancedCheckoutData = $enhancedCheckoutData; + if (is_null($enhancedCheckoutData) || (is_array($enhancedCheckoutData) && empty($enhancedCheckoutData))) { + unset($this->EnhancedCheckoutData); + } else { + $this->EnhancedCheckoutData = $enhancedCheckoutData; + } return $this; } /** * Get OtherPaymentMethods value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return \StructType\ApiOtherPaymentMethodDetailsType[] */ public function getOtherPaymentMethods(): ?array { - return $this->OtherPaymentMethods; + return $this->OtherPaymentMethods ?? null; } /** * This method is responsible for validating the value(s) passed to the setOtherPaymentMethods method @@ -1892,6 +2255,8 @@ public static function validateOtherPaymentMethodsForArrayConstraintFromSetOther } /** * Set OtherPaymentMethods value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @throws InvalidArgumentException * @param \StructType\ApiOtherPaymentMethodDetailsType[] $otherPaymentMethods * @return \StructType\ApiSetExpressCheckoutRequestDetailsType @@ -1902,7 +2267,11 @@ public function setOtherPaymentMethods(?array $otherPaymentMethods = null): self if ('' !== ($otherPaymentMethodsArrayErrorMessage = self::validateOtherPaymentMethodsForArrayConstraintFromSetOtherPaymentMethods($otherPaymentMethods))) { throw new InvalidArgumentException($otherPaymentMethodsArrayErrorMessage, __LINE__); } - $this->OtherPaymentMethods = $otherPaymentMethods; + if (is_null($otherPaymentMethods) || (is_array($otherPaymentMethods) && empty($otherPaymentMethods))) { + unset($this->OtherPaymentMethods); + } else { + $this->OtherPaymentMethods = $otherPaymentMethods; + } return $this; } @@ -1924,30 +2293,42 @@ public function addToOtherPaymentMethods(\StructType\ApiOtherPaymentMethodDetail } /** * Get BuyerDetails value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return \StructType\ApiBuyerDetailsType|null */ public function getBuyerDetails(): ?\StructType\ApiBuyerDetailsType { - return $this->BuyerDetails; + return $this->BuyerDetails ?? null; } /** * Set BuyerDetails value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param \StructType\ApiBuyerDetailsType $buyerDetails * @return \StructType\ApiSetExpressCheckoutRequestDetailsType */ public function setBuyerDetails(?\StructType\ApiBuyerDetailsType $buyerDetails = null): self { - $this->BuyerDetails = $buyerDetails; + if (is_null($buyerDetails) || (is_array($buyerDetails) && empty($buyerDetails))) { + unset($this->BuyerDetails); + } else { + $this->BuyerDetails = $buyerDetails; + } return $this; } /** * Get PaymentDetails value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return \StructType\ApiPaymentDetailsType[] */ public function getPaymentDetails(): ?array { - return $this->PaymentDetails; + return $this->PaymentDetails ?? null; } /** * This method is responsible for validating the value(s) passed to the setPaymentDetails method @@ -1978,6 +2359,8 @@ public static function validatePaymentDetailsForArrayConstraintFromSetPaymentDet } /** * Set PaymentDetails value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @throws InvalidArgumentException * @param \StructType\ApiPaymentDetailsType[] $paymentDetails * @return \StructType\ApiSetExpressCheckoutRequestDetailsType @@ -1992,7 +2375,11 @@ public function setPaymentDetails(?array $paymentDetails = null): self if (is_array($paymentDetails) && count($paymentDetails) > 10) { throw new InvalidArgumentException(sprintf('Invalid count of %s, the number of elements contained by the property must be less than or equal to 10', count($paymentDetails)), __LINE__); } - $this->PaymentDetails = $paymentDetails; + if (is_null($paymentDetails) || (is_array($paymentDetails) && empty($paymentDetails))) { + unset($this->PaymentDetails); + } else { + $this->PaymentDetails = $paymentDetails; + } return $this; } @@ -2018,11 +2405,14 @@ public function addToPaymentDetails(\StructType\ApiPaymentDetailsType $item): se } /** * Get FlatRateShippingOptions value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return \StructType\ApiShippingOptionType[] */ public function getFlatRateShippingOptions(): ?array { - return $this->FlatRateShippingOptions; + return $this->FlatRateShippingOptions ?? null; } /** * This method is responsible for validating the value(s) passed to the setFlatRateShippingOptions method @@ -2053,6 +2443,8 @@ public static function validateFlatRateShippingOptionsForArrayConstraintFromSetF } /** * Set FlatRateShippingOptions value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @throws InvalidArgumentException * @param \StructType\ApiShippingOptionType[] $flatRateShippingOptions * @return \StructType\ApiSetExpressCheckoutRequestDetailsType @@ -2063,7 +2455,11 @@ public function setFlatRateShippingOptions(?array $flatRateShippingOptions = nul if ('' !== ($flatRateShippingOptionsArrayErrorMessage = self::validateFlatRateShippingOptionsForArrayConstraintFromSetFlatRateShippingOptions($flatRateShippingOptions))) { throw new InvalidArgumentException($flatRateShippingOptionsArrayErrorMessage, __LINE__); } - $this->FlatRateShippingOptions = $flatRateShippingOptions; + if (is_null($flatRateShippingOptions) || (is_array($flatRateShippingOptions) && empty($flatRateShippingOptions))) { + unset($this->FlatRateShippingOptions); + } else { + $this->FlatRateShippingOptions = $flatRateShippingOptions; + } return $this; } @@ -2085,14 +2481,19 @@ public function addToFlatRateShippingOptions(\StructType\ApiShippingOptionType $ } /** * Get CallbackTimeout value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getCallbackTimeout(): ?string { - return $this->CallbackTimeout; + return $this->CallbackTimeout ?? null; } /** * Set CallbackTimeout value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $callbackTimeout * @return \StructType\ApiSetExpressCheckoutRequestDetailsType */ @@ -2102,20 +2503,29 @@ public function setCallbackTimeout(?string $callbackTimeout = null): self if (!is_null($callbackTimeout) && !is_string($callbackTimeout)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($callbackTimeout, true), gettype($callbackTimeout)), __LINE__); } - $this->CallbackTimeout = $callbackTimeout; + if (is_null($callbackTimeout) || (is_array($callbackTimeout) && empty($callbackTimeout))) { + unset($this->CallbackTimeout); + } else { + $this->CallbackTimeout = $callbackTimeout; + } return $this; } /** * Get CallbackVersion value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getCallbackVersion(): ?string { - return $this->CallbackVersion; + return $this->CallbackVersion ?? null; } /** * Set CallbackVersion value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $callbackVersion * @return \StructType\ApiSetExpressCheckoutRequestDetailsType */ @@ -2125,20 +2535,29 @@ public function setCallbackVersion(?string $callbackVersion = null): self if (!is_null($callbackVersion) && !is_string($callbackVersion)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($callbackVersion, true), gettype($callbackVersion)), __LINE__); } - $this->CallbackVersion = $callbackVersion; + if (is_null($callbackVersion) || (is_array($callbackVersion) && empty($callbackVersion))) { + unset($this->CallbackVersion); + } else { + $this->CallbackVersion = $callbackVersion; + } return $this; } /** * Get CustomerServiceNumber value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getCustomerServiceNumber(): ?string { - return $this->CustomerServiceNumber; + return $this->CustomerServiceNumber ?? null; } /** * Set CustomerServiceNumber value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $customerServiceNumber * @return \StructType\ApiSetExpressCheckoutRequestDetailsType */ @@ -2148,20 +2567,29 @@ public function setCustomerServiceNumber(?string $customerServiceNumber = null): if (!is_null($customerServiceNumber) && !is_string($customerServiceNumber)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($customerServiceNumber, true), gettype($customerServiceNumber)), __LINE__); } - $this->CustomerServiceNumber = $customerServiceNumber; + if (is_null($customerServiceNumber) || (is_array($customerServiceNumber) && empty($customerServiceNumber))) { + unset($this->CustomerServiceNumber); + } else { + $this->CustomerServiceNumber = $customerServiceNumber; + } return $this; } /** * Get GiftMessageEnable value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getGiftMessageEnable(): ?string { - return $this->GiftMessageEnable; + return $this->GiftMessageEnable ?? null; } /** * Set GiftMessageEnable value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $giftMessageEnable * @return \StructType\ApiSetExpressCheckoutRequestDetailsType */ @@ -2171,20 +2599,29 @@ public function setGiftMessageEnable(?string $giftMessageEnable = null): self if (!is_null($giftMessageEnable) && !is_string($giftMessageEnable)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($giftMessageEnable, true), gettype($giftMessageEnable)), __LINE__); } - $this->GiftMessageEnable = $giftMessageEnable; + if (is_null($giftMessageEnable) || (is_array($giftMessageEnable) && empty($giftMessageEnable))) { + unset($this->GiftMessageEnable); + } else { + $this->GiftMessageEnable = $giftMessageEnable; + } return $this; } /** * Get GiftReceiptEnable value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getGiftReceiptEnable(): ?string { - return $this->GiftReceiptEnable; + return $this->GiftReceiptEnable ?? null; } /** * Set GiftReceiptEnable value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $giftReceiptEnable * @return \StructType\ApiSetExpressCheckoutRequestDetailsType */ @@ -2194,20 +2631,29 @@ public function setGiftReceiptEnable(?string $giftReceiptEnable = null): self if (!is_null($giftReceiptEnable) && !is_string($giftReceiptEnable)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($giftReceiptEnable, true), gettype($giftReceiptEnable)), __LINE__); } - $this->GiftReceiptEnable = $giftReceiptEnable; + if (is_null($giftReceiptEnable) || (is_array($giftReceiptEnable) && empty($giftReceiptEnable))) { + unset($this->GiftReceiptEnable); + } else { + $this->GiftReceiptEnable = $giftReceiptEnable; + } return $this; } /** * Get GiftWrapEnable value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getGiftWrapEnable(): ?string { - return $this->GiftWrapEnable; + return $this->GiftWrapEnable ?? null; } /** * Set GiftWrapEnable value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $giftWrapEnable * @return \StructType\ApiSetExpressCheckoutRequestDetailsType */ @@ -2217,20 +2663,29 @@ public function setGiftWrapEnable(?string $giftWrapEnable = null): self if (!is_null($giftWrapEnable) && !is_string($giftWrapEnable)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($giftWrapEnable, true), gettype($giftWrapEnable)), __LINE__); } - $this->GiftWrapEnable = $giftWrapEnable; + if (is_null($giftWrapEnable) || (is_array($giftWrapEnable) && empty($giftWrapEnable))) { + unset($this->GiftWrapEnable); + } else { + $this->GiftWrapEnable = $giftWrapEnable; + } return $this; } /** * Get GiftWrapName value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getGiftWrapName(): ?string { - return $this->GiftWrapName; + return $this->GiftWrapName ?? null; } /** * Set GiftWrapName value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $giftWrapName * @return \StructType\ApiSetExpressCheckoutRequestDetailsType */ @@ -2240,39 +2695,57 @@ public function setGiftWrapName(?string $giftWrapName = null): self if (!is_null($giftWrapName) && !is_string($giftWrapName)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($giftWrapName, true), gettype($giftWrapName)), __LINE__); } - $this->GiftWrapName = $giftWrapName; + if (is_null($giftWrapName) || (is_array($giftWrapName) && empty($giftWrapName))) { + unset($this->GiftWrapName); + } else { + $this->GiftWrapName = $giftWrapName; + } return $this; } /** * Get GiftWrapAmount value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return \StructType\ApiBasicAmountType|null */ public function getGiftWrapAmount(): ?\StructType\ApiBasicAmountType { - return $this->GiftWrapAmount; + return $this->GiftWrapAmount ?? null; } /** * Set GiftWrapAmount value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param \StructType\ApiBasicAmountType $giftWrapAmount * @return \StructType\ApiSetExpressCheckoutRequestDetailsType */ public function setGiftWrapAmount(?\StructType\ApiBasicAmountType $giftWrapAmount = null): self { - $this->GiftWrapAmount = $giftWrapAmount; + if (is_null($giftWrapAmount) || (is_array($giftWrapAmount) && empty($giftWrapAmount))) { + unset($this->GiftWrapAmount); + } else { + $this->GiftWrapAmount = $giftWrapAmount; + } return $this; } /** * Get BuyerEmailOptInEnable value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getBuyerEmailOptInEnable(): ?string { - return $this->BuyerEmailOptInEnable; + return $this->BuyerEmailOptInEnable ?? null; } /** * Set BuyerEmailOptInEnable value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $buyerEmailOptInEnable * @return \StructType\ApiSetExpressCheckoutRequestDetailsType */ @@ -2282,20 +2755,29 @@ public function setBuyerEmailOptInEnable(?string $buyerEmailOptInEnable = null): if (!is_null($buyerEmailOptInEnable) && !is_string($buyerEmailOptInEnable)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($buyerEmailOptInEnable, true), gettype($buyerEmailOptInEnable)), __LINE__); } - $this->BuyerEmailOptInEnable = $buyerEmailOptInEnable; + if (is_null($buyerEmailOptInEnable) || (is_array($buyerEmailOptInEnable) && empty($buyerEmailOptInEnable))) { + unset($this->BuyerEmailOptInEnable); + } else { + $this->BuyerEmailOptInEnable = $buyerEmailOptInEnable; + } return $this; } /** * Get SurveyEnable value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getSurveyEnable(): ?string { - return $this->SurveyEnable; + return $this->SurveyEnable ?? null; } /** * Set SurveyEnable value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $surveyEnable * @return \StructType\ApiSetExpressCheckoutRequestDetailsType */ @@ -2305,20 +2787,29 @@ public function setSurveyEnable(?string $surveyEnable = null): self if (!is_null($surveyEnable) && !is_string($surveyEnable)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($surveyEnable, true), gettype($surveyEnable)), __LINE__); } - $this->SurveyEnable = $surveyEnable; + if (is_null($surveyEnable) || (is_array($surveyEnable) && empty($surveyEnable))) { + unset($this->SurveyEnable); + } else { + $this->SurveyEnable = $surveyEnable; + } return $this; } /** * Get SurveyQuestion value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getSurveyQuestion(): ?string { - return $this->SurveyQuestion; + return $this->SurveyQuestion ?? null; } /** * Set SurveyQuestion value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $surveyQuestion * @return \StructType\ApiSetExpressCheckoutRequestDetailsType */ @@ -2328,17 +2819,24 @@ public function setSurveyQuestion(?string $surveyQuestion = null): self if (!is_null($surveyQuestion) && !is_string($surveyQuestion)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($surveyQuestion, true), gettype($surveyQuestion)), __LINE__); } - $this->SurveyQuestion = $surveyQuestion; + if (is_null($surveyQuestion) || (is_array($surveyQuestion) && empty($surveyQuestion))) { + unset($this->SurveyQuestion); + } else { + $this->SurveyQuestion = $surveyQuestion; + } return $this; } /** * Get SurveyChoice value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string[] */ public function getSurveyChoice(): ?array { - return $this->SurveyChoice; + return $this->SurveyChoice ?? null; } /** * This method is responsible for validating the value(s) passed to the setSurveyChoice method @@ -2369,6 +2867,8 @@ public static function validateSurveyChoiceForArrayConstraintFromSetSurveyChoice } /** * Set SurveyChoice value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @throws InvalidArgumentException * @param string[] $surveyChoice * @return \StructType\ApiSetExpressCheckoutRequestDetailsType @@ -2379,7 +2879,11 @@ public function setSurveyChoice(?array $surveyChoice = null): self if ('' !== ($surveyChoiceArrayErrorMessage = self::validateSurveyChoiceForArrayConstraintFromSetSurveyChoice($surveyChoice))) { throw new InvalidArgumentException($surveyChoiceArrayErrorMessage, __LINE__); } - $this->SurveyChoice = $surveyChoice; + if (is_null($surveyChoice) || (is_array($surveyChoice) && empty($surveyChoice))) { + unset($this->SurveyChoice); + } else { + $this->SurveyChoice = $surveyChoice; + } return $this; } @@ -2401,14 +2905,19 @@ public function addToSurveyChoice(string $item): self } /** * Get TotalType value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getTotalType(): ?string { - return $this->TotalType; + return $this->TotalType ?? null; } /** * Set TotalType value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @uses \EnumType\ApiTotalType::valueIsValid() * @uses \EnumType\ApiTotalType::getValidValues() * @throws InvalidArgumentException @@ -2421,20 +2930,29 @@ public function setTotalType(?string $totalType = null): self if (!\EnumType\ApiTotalType::valueIsValid($totalType)) { throw new InvalidArgumentException(sprintf('Invalid value(s) %s, please use one of: %s from enumeration class \EnumType\ApiTotalType', is_array($totalType) ? implode(', ', $totalType) : var_export($totalType, true), implode(', ', \EnumType\ApiTotalType::getValidValues())), __LINE__); } - $this->TotalType = $totalType; + if (is_null($totalType) || (is_array($totalType) && empty($totalType))) { + unset($this->TotalType); + } else { + $this->TotalType = $totalType; + } return $this; } /** * Get NoteToBuyer value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getNoteToBuyer(): ?string { - return $this->NoteToBuyer; + return $this->NoteToBuyer ?? null; } /** * Set NoteToBuyer value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $noteToBuyer * @return \StructType\ApiSetExpressCheckoutRequestDetailsType */ @@ -2444,17 +2962,24 @@ public function setNoteToBuyer(?string $noteToBuyer = null): self if (!is_null($noteToBuyer) && !is_string($noteToBuyer)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($noteToBuyer, true), gettype($noteToBuyer)), __LINE__); } - $this->NoteToBuyer = $noteToBuyer; + if (is_null($noteToBuyer) || (is_array($noteToBuyer) && empty($noteToBuyer))) { + unset($this->NoteToBuyer); + } else { + $this->NoteToBuyer = $noteToBuyer; + } return $this; } /** * Get Incentives value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return \StructType\ApiIncentiveInfoType[] */ public function getIncentives(): ?array { - return $this->Incentives; + return $this->Incentives ?? null; } /** * This method is responsible for validating the value(s) passed to the setIncentives method @@ -2485,6 +3010,8 @@ public static function validateIncentivesForArrayConstraintFromSetIncentives(?ar } /** * Set Incentives value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @throws InvalidArgumentException * @param \StructType\ApiIncentiveInfoType[] $incentives * @return \StructType\ApiSetExpressCheckoutRequestDetailsType @@ -2495,7 +3022,11 @@ public function setIncentives(?array $incentives = null): self if ('' !== ($incentivesArrayErrorMessage = self::validateIncentivesForArrayConstraintFromSetIncentives($incentives))) { throw new InvalidArgumentException($incentivesArrayErrorMessage, __LINE__); } - $this->Incentives = $incentives; + if (is_null($incentives) || (is_array($incentives) && empty($incentives))) { + unset($this->Incentives); + } else { + $this->Incentives = $incentives; + } return $this; } @@ -2517,14 +3048,19 @@ public function addToIncentives(\StructType\ApiIncentiveInfoType $item): self } /** * Get ReqInstrumentDetails value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getReqInstrumentDetails(): ?string { - return $this->ReqInstrumentDetails; + return $this->ReqInstrumentDetails ?? null; } /** * Set ReqInstrumentDetails value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $reqInstrumentDetails * @return \StructType\ApiSetExpressCheckoutRequestDetailsType */ @@ -2534,93 +3070,136 @@ public function setReqInstrumentDetails(?string $reqInstrumentDetails = null): s if (!is_null($reqInstrumentDetails) && !is_string($reqInstrumentDetails)) { throw new InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($reqInstrumentDetails, true), gettype($reqInstrumentDetails)), __LINE__); } - $this->ReqInstrumentDetails = $reqInstrumentDetails; + if (is_null($reqInstrumentDetails) || (is_array($reqInstrumentDetails) && empty($reqInstrumentDetails))) { + unset($this->ReqInstrumentDetails); + } else { + $this->ReqInstrumentDetails = $reqInstrumentDetails; + } return $this; } /** * Get ExternalRememberMeOptInDetails value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return \StructType\ApiExternalRememberMeOptInDetailsType|null */ public function getExternalRememberMeOptInDetails(): ?\StructType\ApiExternalRememberMeOptInDetailsType { - return $this->ExternalRememberMeOptInDetails; + return $this->ExternalRememberMeOptInDetails ?? null; } /** * Set ExternalRememberMeOptInDetails value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param \StructType\ApiExternalRememberMeOptInDetailsType $externalRememberMeOptInDetails * @return \StructType\ApiSetExpressCheckoutRequestDetailsType */ public function setExternalRememberMeOptInDetails(?\StructType\ApiExternalRememberMeOptInDetailsType $externalRememberMeOptInDetails = null): self { - $this->ExternalRememberMeOptInDetails = $externalRememberMeOptInDetails; + if (is_null($externalRememberMeOptInDetails) || (is_array($externalRememberMeOptInDetails) && empty($externalRememberMeOptInDetails))) { + unset($this->ExternalRememberMeOptInDetails); + } else { + $this->ExternalRememberMeOptInDetails = $externalRememberMeOptInDetails; + } return $this; } /** * Get FlowControlDetails value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return \StructType\ApiFlowControlDetailsType|null */ public function getFlowControlDetails(): ?\StructType\ApiFlowControlDetailsType { - return $this->FlowControlDetails; + return $this->FlowControlDetails ?? null; } /** * Set FlowControlDetails value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param \StructType\ApiFlowControlDetailsType $flowControlDetails * @return \StructType\ApiSetExpressCheckoutRequestDetailsType */ public function setFlowControlDetails(?\StructType\ApiFlowControlDetailsType $flowControlDetails = null): self { - $this->FlowControlDetails = $flowControlDetails; + if (is_null($flowControlDetails) || (is_array($flowControlDetails) && empty($flowControlDetails))) { + unset($this->FlowControlDetails); + } else { + $this->FlowControlDetails = $flowControlDetails; + } return $this; } /** * Get DisplayControlDetails value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return \StructType\ApiDisplayControlDetailsType|null */ public function getDisplayControlDetails(): ?\StructType\ApiDisplayControlDetailsType { - return $this->DisplayControlDetails; + return $this->DisplayControlDetails ?? null; } /** * Set DisplayControlDetails value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param \StructType\ApiDisplayControlDetailsType $displayControlDetails * @return \StructType\ApiSetExpressCheckoutRequestDetailsType */ public function setDisplayControlDetails(?\StructType\ApiDisplayControlDetailsType $displayControlDetails = null): self { - $this->DisplayControlDetails = $displayControlDetails; + if (is_null($displayControlDetails) || (is_array($displayControlDetails) && empty($displayControlDetails))) { + unset($this->DisplayControlDetails); + } else { + $this->DisplayControlDetails = $displayControlDetails; + } return $this; } /** * Get ExternalPartnerTrackingDetails value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return \StructType\ApiExternalPartnerTrackingDetailsType|null */ public function getExternalPartnerTrackingDetails(): ?\StructType\ApiExternalPartnerTrackingDetailsType { - return $this->ExternalPartnerTrackingDetails; + return $this->ExternalPartnerTrackingDetails ?? null; } /** * Set ExternalPartnerTrackingDetails value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param \StructType\ApiExternalPartnerTrackingDetailsType $externalPartnerTrackingDetails * @return \StructType\ApiSetExpressCheckoutRequestDetailsType */ public function setExternalPartnerTrackingDetails(?\StructType\ApiExternalPartnerTrackingDetailsType $externalPartnerTrackingDetails = null): self { - $this->ExternalPartnerTrackingDetails = $externalPartnerTrackingDetails; + if (is_null($externalPartnerTrackingDetails) || (is_array($externalPartnerTrackingDetails) && empty($externalPartnerTrackingDetails))) { + unset($this->ExternalPartnerTrackingDetails); + } else { + $this->ExternalPartnerTrackingDetails = $externalPartnerTrackingDetails; + } return $this; } /** * Get CoupledBuckets value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return \StructType\ApiCoupledBucketsType[] */ public function getCoupledBuckets(): ?array { - return $this->CoupledBuckets; + return $this->CoupledBuckets ?? null; } /** * This method is responsible for validating the value(s) passed to the setCoupledBuckets method @@ -2651,6 +3230,8 @@ public static function validateCoupledBucketsForArrayConstraintFromSetCoupledBuc } /** * Set CoupledBuckets value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @throws InvalidArgumentException * @param \StructType\ApiCoupledBucketsType[] $coupledBuckets * @return \StructType\ApiSetExpressCheckoutRequestDetailsType @@ -2665,7 +3246,11 @@ public function setCoupledBuckets(?array $coupledBuckets = null): self if (is_array($coupledBuckets) && count($coupledBuckets) > 5) { throw new InvalidArgumentException(sprintf('Invalid count of %s, the number of elements contained by the property must be less than or equal to 5', count($coupledBuckets)), __LINE__); } - $this->CoupledBuckets = $coupledBuckets; + if (is_null($coupledBuckets) || (is_array($coupledBuckets) && empty($coupledBuckets))) { + unset($this->CoupledBuckets); + } else { + $this->CoupledBuckets = $coupledBuckets; + } return $this; } diff --git a/tests/resources/generated/ValidShopper.php b/tests/resources/generated/ValidShopper.php index 4c1bf04a..6ff11cbf 100644 --- a/tests/resources/generated/ValidShopper.php +++ b/tests/resources/generated/ValidShopper.php @@ -280,14 +280,19 @@ public function setId(string $id): self } /** * Get dateOfBirth value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getDateOfBirth(): ?string { - return $this->dateOfBirth; + return $this->dateOfBirth ?? null; } /** * Set dateOfBirth value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $dateOfBirth * @return \StructType\ApiShopper */ @@ -305,20 +310,29 @@ public function setDateOfBirth(?string $dateOfBirth = null): self if (!is_null($dateOfBirth) && mb_strlen((string) $dateOfBirth) < 10) { throw new InvalidArgumentException(sprintf('Invalid length of %s, the number of characters/octets contained by the literal must be greater than or equal to 10', mb_strlen((string) $dateOfBirth)), __LINE__); } - $this->dateOfBirth = $dateOfBirth; + if (is_null($dateOfBirth) || (is_array($dateOfBirth) && empty($dateOfBirth))) { + unset($this->dateOfBirth); + } else { + $this->dateOfBirth = $dateOfBirth; + } return $this; } /** * Get phoneNumber value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getPhoneNumber(): ?string { - return $this->phoneNumber; + return $this->phoneNumber ?? null; } /** * Set phoneNumber value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $phoneNumber * @return \StructType\ApiShopper */ @@ -336,20 +350,29 @@ public function setPhoneNumber(?string $phoneNumber = null): self if (!is_null($phoneNumber) && mb_strlen((string) $phoneNumber) < 1) { throw new InvalidArgumentException(sprintf('Invalid length of %s, the number of characters/octets contained by the literal must be greater than or equal to 1', mb_strlen((string) $phoneNumber)), __LINE__); } - $this->phoneNumber = $phoneNumber; + if (is_null($phoneNumber) || (is_array($phoneNumber) && empty($phoneNumber))) { + unset($this->phoneNumber); + } else { + $this->phoneNumber = $phoneNumber; + } return $this; } /** * Get mobilePhoneNumber value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getMobilePhoneNumber(): ?string { - return $this->mobilePhoneNumber; + return $this->mobilePhoneNumber ?? null; } /** * Set mobilePhoneNumber value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $mobilePhoneNumber * @return \StructType\ApiShopper */ @@ -367,20 +390,29 @@ public function setMobilePhoneNumber(?string $mobilePhoneNumber = null): self if (!is_null($mobilePhoneNumber) && mb_strlen((string) $mobilePhoneNumber) < 1) { throw new InvalidArgumentException(sprintf('Invalid length of %s, the number of characters/octets contained by the literal must be greater than or equal to 1', mb_strlen((string) $mobilePhoneNumber)), __LINE__); } - $this->mobilePhoneNumber = $mobilePhoneNumber; + if (is_null($mobilePhoneNumber) || (is_array($mobilePhoneNumber) && empty($mobilePhoneNumber))) { + unset($this->mobilePhoneNumber); + } else { + $this->mobilePhoneNumber = $mobilePhoneNumber; + } return $this; } /** * Get ipAddress value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return string|null */ public function getIpAddress(): ?string { - return $this->ipAddress; + return $this->ipAddress ?? null; } /** * Set ipAddress value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param string $ipAddress * @return \StructType\ApiShopper */ @@ -398,7 +430,11 @@ public function setIpAddress(?string $ipAddress = null): self if (!is_null($ipAddress) && mb_strlen((string) $ipAddress) < 1) { throw new InvalidArgumentException(sprintf('Invalid length of %s, the number of characters/octets contained by the literal must be greater than or equal to 1', mb_strlen((string) $ipAddress)), __LINE__); } - $this->ipAddress = $ipAddress; + if (is_null($ipAddress) || (is_array($ipAddress) && empty($ipAddress))) { + unset($this->ipAddress); + } else { + $this->ipAddress = $ipAddress; + } return $this; } diff --git a/tests/resources/generated/ValidTaxType.php b/tests/resources/generated/ValidTaxType.php index a96c8dbd..92f06032 100644 --- a/tests/resources/generated/ValidTaxType.php +++ b/tests/resources/generated/ValidTaxType.php @@ -121,11 +121,14 @@ public function __construct(?array $taxDescription = null, ?string $type = null, } /** * Get TaxDescription value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return \StructType\ApiParagraphType[] */ public function getTaxDescription(): ?array { - return $this->TaxDescription; + return $this->TaxDescription ?? null; } /** * This method is responsible for validating the value(s) passed to the setTaxDescription method @@ -156,6 +159,8 @@ public static function validateTaxDescriptionForArrayConstraintFromSetTaxDescrip } /** * Set TaxDescription value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @throws InvalidArgumentException * @param \StructType\ApiParagraphType[] $taxDescription * @return \StructType\ApiTaxType @@ -170,7 +175,11 @@ public function setTaxDescription(?array $taxDescription = null): self if (is_array($taxDescription) && count($taxDescription) > 5) { throw new InvalidArgumentException(sprintf('Invalid count of %s, the number of elements contained by the property must be less than or equal to 5', count($taxDescription)), __LINE__); } - $this->TaxDescription = $taxDescription; + if (is_null($taxDescription) || (is_array($taxDescription) && empty($taxDescription))) { + unset($this->TaxDescription); + } else { + $this->TaxDescription = $taxDescription; + } return $this; } diff --git a/tests/resources/generated/ValidUniqueID_Type.php b/tests/resources/generated/ValidUniqueID_Type.php index c4d97c88..e2ce114a 100644 --- a/tests/resources/generated/ValidUniqueID_Type.php +++ b/tests/resources/generated/ValidUniqueID_Type.php @@ -152,20 +152,29 @@ public function setID(string $iD): self } /** * Get CompanyName value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return \StructType\ApiCompanyNameType|null */ public function getCompanyName(): ?\StructType\ApiCompanyNameType { - return $this->CompanyName; + return $this->CompanyName ?? null; } /** * Set CompanyName value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param \StructType\ApiCompanyNameType $companyName * @return \StructType\ApiUniqueID_Type */ public function setCompanyName(?\StructType\ApiCompanyNameType $companyName = null): self { - $this->CompanyName = $companyName; + if (is_null($companyName) || (is_array($companyName) && empty($companyName))) { + unset($this->CompanyName); + } else { + $this->CompanyName = $companyName; + } return $this; } diff --git a/tests/resources/generated/ValidUnitTestsStructResult.php b/tests/resources/generated/ValidUnitTestsStructResult.php index 18e2583f..d24c37e0 100644 --- a/tests/resources/generated/ValidUnitTestsStructResult.php +++ b/tests/resources/generated/ValidUnitTestsStructResult.php @@ -66,6 +66,9 @@ public function __construct(bool $success = false, ?\StructType\ApiErrors $error } /** * Get Success value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return bool|null */ public function getSuccess(): ?bool @@ -102,6 +105,8 @@ public function validateSuccessForChoiceConstraintFromSetSuccess($value): string } /** * Set Success value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * This property belongs to a choice that allows only one property to exist. It is * therefore removable from the request, consequently if the value assigned to this * property is null, the property is removed from this object @@ -129,6 +134,9 @@ public function setSuccess(bool $success = false): self } /** * Get Errors value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return \StructType\ApiErrors|null */ public function getErrors(): ?\StructType\ApiErrors @@ -165,6 +173,8 @@ public function validateErrorsForChoiceConstraintFromSetErrors($value): string } /** * Set Errors value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * This property belongs to a choice that allows only one property to exist. It is * therefore removable from the request, consequently if the value assigned to this * property is null, the property is removed from this object @@ -188,20 +198,29 @@ public function setErrors(?\StructType\ApiErrors $errors = null): self } /** * Get Warnings value + * An additional test has been added (isset) before returning the property value as + * this property may have been unset before, due to the fact that this property is + * removable from the request (minOccurs=0) * @return \StructType\ApiWarnings|null */ public function getWarnings(): ?\StructType\ApiWarnings { - return $this->Warnings; + return $this->Warnings ?? null; } /** * Set Warnings value + * This property is removable from request (minOccurs=0), therefore if the value + * assigned to this property is null, it is removed from this object * @param \StructType\ApiWarnings $warnings * @return \StructType\ApiResult */ public function setWarnings(?\StructType\ApiWarnings $warnings = null): self { - $this->Warnings = $warnings; + if (is_null($warnings) || (is_array($warnings) && empty($warnings))) { + unset($this->Warnings); + } else { + $this->Warnings = $warnings; + } return $this; } diff --git a/tests/resources/generated/json_serialized.json b/tests/resources/generated/json_serialized.json index 3acc3495..b8167ad9 100755 --- a/tests/resources/generated/json_serialized.json +++ b/tests/resources/generated/json_serialized.json @@ -29,7 +29,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -43,7 +43,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -56,7 +56,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -95,7 +95,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AdultOption", "inheritance": "", "abstract": false, @@ -108,7 +108,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "double", "inheritance": "", "abstract": false, @@ -121,7 +121,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "double", "inheritance": "", "abstract": false, @@ -134,7 +134,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "double", "inheritance": "", "abstract": false, @@ -147,7 +147,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfSearchOption", "inheritance": "", "abstract": false, @@ -173,7 +173,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WebRequest", "inheritance": "", "abstract": false, @@ -186,7 +186,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ImageRequest", "inheritance": "", "abstract": false, @@ -199,7 +199,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PhonebookRequest", "inheritance": "", "abstract": false, @@ -212,7 +212,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "VideoRequest", "inheritance": "", "abstract": false, @@ -225,7 +225,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NewsRequest", "inheritance": "", "abstract": false, @@ -238,7 +238,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MobileWebRequest", "inheritance": "", "abstract": false, @@ -251,7 +251,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TranslationRequest", "inheritance": "", "abstract": false, @@ -329,7 +329,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SearchOption", "inheritance": "", "abstract": false, @@ -386,7 +386,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SourceType", "inheritance": "", "abstract": false, @@ -547,7 +547,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -560,7 +560,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -573,7 +573,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -586,7 +586,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfWebSearchOption", "inheritance": "", "abstract": false, @@ -599,7 +599,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfString", "inheritance": "", "abstract": false, @@ -626,7 +626,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WebSearchOption", "inheritance": "", "abstract": false, @@ -699,7 +699,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "guid", "inheritance": "", "abstract": false, @@ -769,7 +769,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -796,7 +796,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -809,7 +809,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -822,7 +822,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfString", "inheritance": "", "abstract": false, @@ -849,7 +849,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -862,7 +862,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -875,7 +875,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -888,7 +888,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PhonebookSortOption", "inheritance": "", "abstract": false, @@ -901,7 +901,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -914,7 +914,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -979,7 +979,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -992,7 +992,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -1005,7 +1005,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfString", "inheritance": "", "abstract": false, @@ -1018,7 +1018,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "VideoSortOption", "inheritance": "", "abstract": false, @@ -1075,7 +1075,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -1088,7 +1088,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -1102,7 +1102,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1115,7 +1115,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1128,7 +1128,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NewsSortOption", "inheritance": "", "abstract": false, @@ -1185,7 +1185,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -1198,7 +1198,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -1211,7 +1211,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfMobileWebSearchOption", "inheritance": "", "abstract": false, @@ -1238,7 +1238,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MobileWebSearchOption", "inheritance": "", "abstract": false, @@ -1348,7 +1348,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Query", "inheritance": "", "abstract": false, @@ -1361,7 +1361,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SpellResponse", "inheritance": "", "abstract": false, @@ -1374,7 +1374,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WebResponse", "inheritance": "", "abstract": false, @@ -1387,7 +1387,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ImageResponse", "inheritance": "", "abstract": false, @@ -1400,7 +1400,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RelatedSearchResponse", "inheritance": "", "abstract": false, @@ -1413,7 +1413,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "VideoResponse", "inheritance": "", "abstract": false, @@ -1426,7 +1426,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "InstantAnswerResponse", "inheritance": "", "abstract": false, @@ -1439,7 +1439,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NewsResponse", "inheritance": "", "abstract": false, @@ -1452,7 +1452,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MobileWebResponse", "inheritance": "", "abstract": false, @@ -1465,7 +1465,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfError", "inheritance": "", "abstract": false, @@ -1505,7 +1505,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1518,7 +1518,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1531,7 +1531,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1558,7 +1558,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -1571,7 +1571,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfSpellResult", "inheritance": "", "abstract": false, @@ -1598,7 +1598,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SpellResult", "inheritance": "", "abstract": false, @@ -1625,7 +1625,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1652,7 +1652,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -1665,7 +1665,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -1678,7 +1678,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfWebResult", "inheritance": "", "abstract": false, @@ -1705,7 +1705,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WebResult", "inheritance": "", "abstract": false, @@ -1732,7 +1732,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1745,7 +1745,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1758,7 +1758,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1771,7 +1771,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1784,7 +1784,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1797,7 +1797,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1810,7 +1810,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfWebSearchTag", "inheritance": "", "abstract": false, @@ -1823,7 +1823,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfDeepLink", "inheritance": "", "abstract": false, @@ -1850,7 +1850,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WebSearchTag", "inheritance": "", "abstract": false, @@ -1877,7 +1877,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1890,7 +1890,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1917,7 +1917,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DeepLink", "inheritance": "", "abstract": false, @@ -1944,7 +1944,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1957,7 +1957,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1984,7 +1984,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -1997,7 +1997,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -2010,7 +2010,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfImageResult", "inheritance": "", "abstract": false, @@ -2037,7 +2037,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ImageResult", "inheritance": "", "abstract": false, @@ -2064,7 +2064,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2077,7 +2077,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2090,7 +2090,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2103,7 +2103,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2116,7 +2116,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -2129,7 +2129,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -2142,7 +2142,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -2155,7 +2155,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2168,7 +2168,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Thumbnail", "inheritance": "", "abstract": false, @@ -2195,7 +2195,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2208,7 +2208,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2221,7 +2221,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -2234,7 +2234,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -2247,7 +2247,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -2260,7 +2260,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -2287,7 +2287,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfRelatedSearchResult", "inheritance": "", "abstract": false, @@ -2314,7 +2314,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RelatedSearchResult", "inheritance": "", "abstract": false, @@ -2341,7 +2341,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2354,7 +2354,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2381,7 +2381,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -2394,7 +2394,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -2407,7 +2407,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfVideoResult", "inheritance": "", "abstract": false, @@ -2434,7 +2434,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "VideoResult", "inheritance": "", "abstract": false, @@ -2461,7 +2461,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2474,7 +2474,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2487,7 +2487,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2500,7 +2500,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -2513,7 +2513,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2526,7 +2526,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Thumbnail", "inheritance": "", "abstract": false, @@ -2553,7 +2553,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfInstantAnswerResult", "inheritance": "", "abstract": false, @@ -2580,7 +2580,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "InstantAnswerResult", "inheritance": "", "abstract": false, @@ -2607,7 +2607,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2620,7 +2620,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2633,7 +2633,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2646,7 +2646,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2659,7 +2659,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2672,7 +2672,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2699,7 +2699,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -2712,7 +2712,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -2725,7 +2725,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfNewsRelatedSearch", "inheritance": "", "abstract": false, @@ -2738,7 +2738,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfNewsResult", "inheritance": "", "abstract": false, @@ -2765,7 +2765,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NewsRelatedSearch", "inheritance": "", "abstract": false, @@ -2792,7 +2792,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2805,7 +2805,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2832,7 +2832,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NewsResult", "inheritance": "", "abstract": false, @@ -2859,7 +2859,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2872,7 +2872,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2885,7 +2885,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2898,7 +2898,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2911,7 +2911,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2924,7 +2924,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -2937,7 +2937,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfNewsCollection", "inheritance": "", "abstract": false, @@ -2964,7 +2964,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NewsCollection", "inheritance": "", "abstract": false, @@ -2991,7 +2991,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3004,7 +3004,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfNewsArticle", "inheritance": "", "abstract": false, @@ -3031,7 +3031,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NewsArticle", "inheritance": "", "abstract": false, @@ -3058,7 +3058,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3071,7 +3071,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3084,7 +3084,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3097,7 +3097,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3110,7 +3110,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3137,7 +3137,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -3150,7 +3150,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -3163,7 +3163,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfMobileWebResult", "inheritance": "", "abstract": false, @@ -3190,7 +3190,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MobileWebResult", "inheritance": "", "abstract": false, @@ -3217,7 +3217,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3230,7 +3230,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3243,7 +3243,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3256,7 +3256,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3269,7 +3269,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3296,7 +3296,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Error", "inheritance": "", "abstract": false, @@ -3323,7 +3323,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -3336,7 +3336,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3349,7 +3349,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3362,7 +3362,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3375,7 +3375,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3388,7 +3388,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3401,7 +3401,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, diff --git a/tests/resources/generated/parsed_actonservice2_none.json b/tests/resources/generated/parsed_actonservice2_none.json index 2dba9431..0b6718de 100644 --- a/tests/resources/generated/parsed_actonservice2_none.json +++ b/tests/resources/generated/parsed_actonservice2_none.json @@ -792,7 +792,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -804,7 +804,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "base64Binary", "inheritance": "", "abstract": false, @@ -1185,7 +1185,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ID", "inheritance": "", "abstract": false, @@ -1207,7 +1207,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ID", "inheritance": "", "abstract": false, @@ -1229,7 +1229,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CustomEmail", "inheritance": "", "abstract": false, @@ -1318,7 +1318,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ID", "inheritance": "", "abstract": false, @@ -1333,7 +1333,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ID", "inheritance": "", "abstract": false, @@ -1408,7 +1408,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ID", "inheritance": "", "abstract": false, @@ -1424,7 +1424,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -1439,7 +1439,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "senderFrom", "inheritance": "", "abstract": false, @@ -1451,7 +1451,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -1466,7 +1466,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -1627,7 +1627,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1642,7 +1642,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1657,7 +1657,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -1673,7 +1673,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldSeparator", "inheritance": "", "abstract": false, @@ -1685,7 +1685,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "quoteCharacter", "inheritance": "", "abstract": false, @@ -1711,7 +1711,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "columnDef", "inheritance": "", "abstract": false, @@ -1724,7 +1724,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "mergeOptions", "inheritance": "", "abstract": false, @@ -1834,7 +1834,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ListColumnType", "inheritance": "", "abstract": false, @@ -1849,7 +1849,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1878,7 +1878,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -1936,7 +1936,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "columnMap", "inheritance": "", "abstract": false, @@ -1949,7 +1949,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -1965,7 +1965,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -1981,7 +1981,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2110,7 +2110,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ID", "inheritance": "", "abstract": false, @@ -2213,7 +2213,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ID", "inheritance": "", "abstract": false, @@ -2270,7 +2270,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AttachmentType", "inheritance": "", "abstract": false, @@ -2285,7 +2285,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "appendedRecords", "inheritance": "", "abstract": false, @@ -2297,7 +2297,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "updatedRecords", "inheritance": "", "abstract": false, @@ -2309,7 +2309,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unchangedRecords", "inheritance": "", "abstract": false, @@ -2439,7 +2439,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "format", "inheritance": "", "abstract": false, @@ -2451,7 +2451,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -2463,7 +2463,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -2475,7 +2475,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -2487,7 +2487,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -2590,7 +2590,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -2602,7 +2602,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -2614,7 +2614,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fullDetail", "inheritance": "", "abstract": false, @@ -2656,7 +2656,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "contactFields", "inheritance": "", "abstract": false, @@ -2897,7 +2897,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -2909,7 +2909,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -3163,7 +3163,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "detail", "inheritance": "", "abstract": false, @@ -3199,7 +3199,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "actionRecordDetailType", "inheritance": "", "abstract": false, @@ -3211,7 +3211,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "actionRecordDetailType", "inheritance": "", "abstract": false, @@ -3223,7 +3223,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "actionRecordDetailType", "inheritance": "", "abstract": false, @@ -3235,7 +3235,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "actionRecordDetailType", "inheritance": "", "abstract": false, @@ -3247,7 +3247,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "actionRecordDetailType", "inheritance": "", "abstract": false, @@ -3259,7 +3259,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "actionRecordDetailType", "inheritance": "", "abstract": false, @@ -3271,7 +3271,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "actionRecordDetailType", "inheritance": "", "abstract": false, @@ -3283,7 +3283,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "actionRecordDetailType", "inheritance": "", "abstract": false, @@ -3295,7 +3295,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "actionRecordDetailType", "inheritance": "", "abstract": false, @@ -3307,7 +3307,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "actionRecordDetailType", "inheritance": "", "abstract": false, @@ -3319,7 +3319,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "actionRecordDetailType", "inheritance": "", "abstract": false, @@ -3331,7 +3331,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "actionRecordDetailType", "inheritance": "", "abstract": false, @@ -3439,7 +3439,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3454,7 +3454,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3469,7 +3469,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3484,7 +3484,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3499,7 +3499,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "contactField", "inheritance": "", "abstract": false, diff --git a/tests/resources/generated/parsed_actonservice2_start.json b/tests/resources/generated/parsed_actonservice2_start.json index bd79fb02..5cb8ae7e 100644 --- a/tests/resources/generated/parsed_actonservice2_start.json +++ b/tests/resources/generated/parsed_actonservice2_start.json @@ -792,7 +792,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -804,7 +804,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "base64Binary", "inheritance": "", "abstract": false, @@ -1185,7 +1185,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ID", "inheritance": "", "abstract": false, @@ -1207,7 +1207,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ID", "inheritance": "", "abstract": false, @@ -1229,7 +1229,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CustomEmail", "inheritance": "", "abstract": false, @@ -1318,7 +1318,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ID", "inheritance": "", "abstract": false, @@ -1333,7 +1333,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ID", "inheritance": "", "abstract": false, @@ -1408,7 +1408,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ID", "inheritance": "", "abstract": false, @@ -1424,7 +1424,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -1439,7 +1439,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "senderFrom", "inheritance": "", "abstract": false, @@ -1451,7 +1451,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -1466,7 +1466,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -1627,7 +1627,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1642,7 +1642,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1657,7 +1657,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -1673,7 +1673,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldSeparator", "inheritance": "", "abstract": false, @@ -1685,7 +1685,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "quoteCharacter", "inheritance": "", "abstract": false, @@ -1711,7 +1711,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "columnDef", "inheritance": "", "abstract": false, @@ -1724,7 +1724,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "mergeOptions", "inheritance": "", "abstract": false, @@ -1834,7 +1834,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ListColumnType", "inheritance": "", "abstract": false, @@ -1849,7 +1849,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1878,7 +1878,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -1936,7 +1936,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "columnMap", "inheritance": "", "abstract": false, @@ -1949,7 +1949,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -1965,7 +1965,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -1981,7 +1981,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2110,7 +2110,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ID", "inheritance": "", "abstract": false, @@ -2213,7 +2213,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ID", "inheritance": "", "abstract": false, @@ -2270,7 +2270,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AttachmentType", "inheritance": "", "abstract": false, @@ -2285,7 +2285,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "appendedRecords", "inheritance": "", "abstract": false, @@ -2297,7 +2297,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "updatedRecords", "inheritance": "", "abstract": false, @@ -2309,7 +2309,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unchangedRecords", "inheritance": "", "abstract": false, @@ -2439,7 +2439,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "format", "inheritance": "", "abstract": false, @@ -2451,7 +2451,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -2463,7 +2463,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -2475,7 +2475,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -2487,7 +2487,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -2590,7 +2590,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -2602,7 +2602,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -2614,7 +2614,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fullDetail", "inheritance": "", "abstract": false, @@ -2656,7 +2656,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "contactFields", "inheritance": "", "abstract": false, @@ -2897,7 +2897,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -2909,7 +2909,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -3163,7 +3163,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "detail", "inheritance": "", "abstract": false, @@ -3199,7 +3199,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "actionRecordDetailType", "inheritance": "", "abstract": false, @@ -3211,7 +3211,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "actionRecordDetailType", "inheritance": "", "abstract": false, @@ -3223,7 +3223,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "actionRecordDetailType", "inheritance": "", "abstract": false, @@ -3235,7 +3235,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "actionRecordDetailType", "inheritance": "", "abstract": false, @@ -3247,7 +3247,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "actionRecordDetailType", "inheritance": "", "abstract": false, @@ -3259,7 +3259,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "actionRecordDetailType", "inheritance": "", "abstract": false, @@ -3271,7 +3271,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "actionRecordDetailType", "inheritance": "", "abstract": false, @@ -3283,7 +3283,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "actionRecordDetailType", "inheritance": "", "abstract": false, @@ -3295,7 +3295,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "actionRecordDetailType", "inheritance": "", "abstract": false, @@ -3307,7 +3307,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "actionRecordDetailType", "inheritance": "", "abstract": false, @@ -3319,7 +3319,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "actionRecordDetailType", "inheritance": "", "abstract": false, @@ -3331,7 +3331,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "actionRecordDetailType", "inheritance": "", "abstract": false, @@ -3439,7 +3439,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3454,7 +3454,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3469,7 +3469,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3484,7 +3484,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3499,7 +3499,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "contactField", "inheritance": "", "abstract": false, diff --git a/tests/resources/generated/parsed_bingsearch_none.json b/tests/resources/generated/parsed_bingsearch_none.json index d0b82978..bcc5b852 100644 --- a/tests/resources/generated/parsed_bingsearch_none.json +++ b/tests/resources/generated/parsed_bingsearch_none.json @@ -29,7 +29,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -43,7 +43,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -56,7 +56,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -95,7 +95,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AdultOption", "inheritance": "", "abstract": false, @@ -108,7 +108,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "double", "inheritance": "", "abstract": false, @@ -121,7 +121,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "double", "inheritance": "", "abstract": false, @@ -134,7 +134,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "double", "inheritance": "", "abstract": false, @@ -147,7 +147,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfSearchOption", "inheritance": "", "abstract": false, @@ -173,7 +173,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WebRequest", "inheritance": "", "abstract": false, @@ -186,7 +186,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ImageRequest", "inheritance": "", "abstract": false, @@ -199,7 +199,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PhonebookRequest", "inheritance": "", "abstract": false, @@ -212,7 +212,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "VideoRequest", "inheritance": "", "abstract": false, @@ -225,7 +225,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NewsRequest", "inheritance": "", "abstract": false, @@ -238,7 +238,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MobileWebRequest", "inheritance": "", "abstract": false, @@ -251,7 +251,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TranslationRequest", "inheritance": "", "abstract": false, @@ -329,7 +329,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SearchOption", "inheritance": "", "abstract": false, @@ -386,7 +386,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SourceType", "inheritance": "", "abstract": false, @@ -547,7 +547,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -560,7 +560,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -573,7 +573,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -586,7 +586,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfWebSearchOption", "inheritance": "", "abstract": false, @@ -599,7 +599,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfString", "inheritance": "", "abstract": false, @@ -626,7 +626,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WebSearchOption", "inheritance": "", "abstract": false, @@ -699,7 +699,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "guid", "inheritance": "", "abstract": false, @@ -769,7 +769,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -796,7 +796,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -809,7 +809,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -822,7 +822,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfString", "inheritance": "", "abstract": false, @@ -849,7 +849,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -862,7 +862,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -875,7 +875,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -888,7 +888,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PhonebookSortOption", "inheritance": "", "abstract": false, @@ -901,7 +901,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -914,7 +914,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -979,7 +979,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -992,7 +992,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -1005,7 +1005,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfString", "inheritance": "", "abstract": false, @@ -1018,7 +1018,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "VideoSortOption", "inheritance": "", "abstract": false, @@ -1075,7 +1075,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -1088,7 +1088,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -1102,7 +1102,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1115,7 +1115,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1128,7 +1128,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NewsSortOption", "inheritance": "", "abstract": false, @@ -1185,7 +1185,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -1198,7 +1198,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -1211,7 +1211,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfMobileWebSearchOption", "inheritance": "", "abstract": false, @@ -1238,7 +1238,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MobileWebSearchOption", "inheritance": "", "abstract": false, @@ -1348,7 +1348,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Query", "inheritance": "", "abstract": false, @@ -1361,7 +1361,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SpellResponse", "inheritance": "", "abstract": false, @@ -1374,7 +1374,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WebResponse", "inheritance": "", "abstract": false, @@ -1387,7 +1387,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ImageResponse", "inheritance": "", "abstract": false, @@ -1400,7 +1400,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RelatedSearchResponse", "inheritance": "", "abstract": false, @@ -1413,7 +1413,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "VideoResponse", "inheritance": "", "abstract": false, @@ -1426,7 +1426,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "InstantAnswerResponse", "inheritance": "", "abstract": false, @@ -1439,7 +1439,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NewsResponse", "inheritance": "", "abstract": false, @@ -1452,7 +1452,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MobileWebResponse", "inheritance": "", "abstract": false, @@ -1465,7 +1465,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfError", "inheritance": "", "abstract": false, @@ -1505,7 +1505,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1518,7 +1518,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1531,7 +1531,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1558,7 +1558,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -1571,7 +1571,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfSpellResult", "inheritance": "", "abstract": false, @@ -1598,7 +1598,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SpellResult", "inheritance": "", "abstract": false, @@ -1625,7 +1625,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1652,7 +1652,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -1665,7 +1665,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -1678,7 +1678,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfWebResult", "inheritance": "", "abstract": false, @@ -1705,7 +1705,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WebResult", "inheritance": "", "abstract": false, @@ -1732,7 +1732,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1745,7 +1745,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1758,7 +1758,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1771,7 +1771,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1784,7 +1784,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1797,7 +1797,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1810,7 +1810,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfWebSearchTag", "inheritance": "", "abstract": false, @@ -1823,7 +1823,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfDeepLink", "inheritance": "", "abstract": false, @@ -1850,7 +1850,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WebSearchTag", "inheritance": "", "abstract": false, @@ -1877,7 +1877,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1890,7 +1890,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1917,7 +1917,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DeepLink", "inheritance": "", "abstract": false, @@ -1944,7 +1944,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1957,7 +1957,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1984,7 +1984,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -1997,7 +1997,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -2010,7 +2010,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfImageResult", "inheritance": "", "abstract": false, @@ -2037,7 +2037,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ImageResult", "inheritance": "", "abstract": false, @@ -2064,7 +2064,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2077,7 +2077,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2090,7 +2090,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2103,7 +2103,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2116,7 +2116,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -2129,7 +2129,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -2142,7 +2142,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -2155,7 +2155,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2168,7 +2168,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Thumbnail", "inheritance": "", "abstract": false, @@ -2195,7 +2195,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2208,7 +2208,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2221,7 +2221,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -2234,7 +2234,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -2247,7 +2247,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -2260,7 +2260,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -2287,7 +2287,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfRelatedSearchResult", "inheritance": "", "abstract": false, @@ -2314,7 +2314,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RelatedSearchResult", "inheritance": "", "abstract": false, @@ -2341,7 +2341,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2354,7 +2354,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2381,7 +2381,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -2394,7 +2394,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -2407,7 +2407,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfVideoResult", "inheritance": "", "abstract": false, @@ -2434,7 +2434,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "VideoResult", "inheritance": "", "abstract": false, @@ -2461,7 +2461,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2474,7 +2474,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2487,7 +2487,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2500,7 +2500,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -2513,7 +2513,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2526,7 +2526,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Thumbnail", "inheritance": "", "abstract": false, @@ -2553,7 +2553,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfInstantAnswerResult", "inheritance": "", "abstract": false, @@ -2580,7 +2580,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "InstantAnswerResult", "inheritance": "", "abstract": false, @@ -2607,7 +2607,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2620,7 +2620,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2633,7 +2633,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2646,7 +2646,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2659,7 +2659,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2672,7 +2672,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2699,7 +2699,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -2712,7 +2712,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -2725,7 +2725,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfNewsRelatedSearch", "inheritance": "", "abstract": false, @@ -2738,7 +2738,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfNewsResult", "inheritance": "", "abstract": false, @@ -2765,7 +2765,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NewsRelatedSearch", "inheritance": "", "abstract": false, @@ -2792,7 +2792,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2805,7 +2805,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2832,7 +2832,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NewsResult", "inheritance": "", "abstract": false, @@ -2859,7 +2859,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2872,7 +2872,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2885,7 +2885,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2898,7 +2898,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2911,7 +2911,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2924,7 +2924,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -2937,7 +2937,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfNewsCollection", "inheritance": "", "abstract": false, @@ -2964,7 +2964,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NewsCollection", "inheritance": "", "abstract": false, @@ -2991,7 +2991,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3004,7 +3004,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfNewsArticle", "inheritance": "", "abstract": false, @@ -3031,7 +3031,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NewsArticle", "inheritance": "", "abstract": false, @@ -3058,7 +3058,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3071,7 +3071,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3084,7 +3084,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3097,7 +3097,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3110,7 +3110,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3137,7 +3137,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -3150,7 +3150,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -3163,7 +3163,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfMobileWebResult", "inheritance": "", "abstract": false, @@ -3190,7 +3190,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MobileWebResult", "inheritance": "", "abstract": false, @@ -3217,7 +3217,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3230,7 +3230,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3243,7 +3243,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3256,7 +3256,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3269,7 +3269,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3296,7 +3296,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Error", "inheritance": "", "abstract": false, @@ -3323,7 +3323,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -3336,7 +3336,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3349,7 +3349,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3362,7 +3362,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3375,7 +3375,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3388,7 +3388,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3401,7 +3401,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, diff --git a/tests/resources/generated/parsed_bingsearch_start.json b/tests/resources/generated/parsed_bingsearch_start.json index fef45b31..fcb03bac 100644 --- a/tests/resources/generated/parsed_bingsearch_start.json +++ b/tests/resources/generated/parsed_bingsearch_start.json @@ -29,7 +29,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -43,7 +43,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -56,7 +56,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -95,7 +95,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AdultOption", "inheritance": "", "abstract": false, @@ -108,7 +108,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "double", "inheritance": "", "abstract": false, @@ -121,7 +121,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "double", "inheritance": "", "abstract": false, @@ -134,7 +134,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "double", "inheritance": "", "abstract": false, @@ -147,7 +147,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfSearchOption", "inheritance": "", "abstract": false, @@ -173,7 +173,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WebRequest", "inheritance": "", "abstract": false, @@ -186,7 +186,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ImageRequest", "inheritance": "", "abstract": false, @@ -199,7 +199,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PhonebookRequest", "inheritance": "", "abstract": false, @@ -212,7 +212,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "VideoRequest", "inheritance": "", "abstract": false, @@ -225,7 +225,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NewsRequest", "inheritance": "", "abstract": false, @@ -238,7 +238,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MobileWebRequest", "inheritance": "", "abstract": false, @@ -251,7 +251,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TranslationRequest", "inheritance": "", "abstract": false, @@ -329,7 +329,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SearchOption", "inheritance": "", "abstract": false, @@ -386,7 +386,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SourceType", "inheritance": "", "abstract": false, @@ -547,7 +547,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -560,7 +560,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -573,7 +573,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -586,7 +586,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfWebSearchOption", "inheritance": "", "abstract": false, @@ -599,7 +599,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfString", "inheritance": "", "abstract": false, @@ -626,7 +626,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WebSearchOption", "inheritance": "", "abstract": false, @@ -699,7 +699,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "guid", "inheritance": "", "abstract": false, @@ -769,7 +769,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -796,7 +796,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -809,7 +809,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -822,7 +822,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfString", "inheritance": "", "abstract": false, @@ -849,7 +849,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -862,7 +862,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -875,7 +875,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -888,7 +888,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PhonebookSortOption", "inheritance": "", "abstract": false, @@ -901,7 +901,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -914,7 +914,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -979,7 +979,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -992,7 +992,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -1005,7 +1005,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfString", "inheritance": "", "abstract": false, @@ -1018,7 +1018,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "VideoSortOption", "inheritance": "", "abstract": false, @@ -1075,7 +1075,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -1088,7 +1088,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -1102,7 +1102,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1115,7 +1115,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1128,7 +1128,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NewsSortOption", "inheritance": "", "abstract": false, @@ -1185,7 +1185,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -1198,7 +1198,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -1211,7 +1211,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfMobileWebSearchOption", "inheritance": "", "abstract": false, @@ -1238,7 +1238,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MobileWebSearchOption", "inheritance": "", "abstract": false, @@ -1348,7 +1348,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Query", "inheritance": "", "abstract": false, @@ -1361,7 +1361,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SpellResponse", "inheritance": "", "abstract": false, @@ -1374,7 +1374,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WebResponse", "inheritance": "", "abstract": false, @@ -1387,7 +1387,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ImageResponse", "inheritance": "", "abstract": false, @@ -1400,7 +1400,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RelatedSearchResponse", "inheritance": "", "abstract": false, @@ -1413,7 +1413,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "VideoResponse", "inheritance": "", "abstract": false, @@ -1426,7 +1426,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "InstantAnswerResponse", "inheritance": "", "abstract": false, @@ -1439,7 +1439,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NewsResponse", "inheritance": "", "abstract": false, @@ -1452,7 +1452,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MobileWebResponse", "inheritance": "", "abstract": false, @@ -1465,7 +1465,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfError", "inheritance": "", "abstract": false, @@ -1505,7 +1505,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1518,7 +1518,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1531,7 +1531,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1558,7 +1558,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -1571,7 +1571,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfSpellResult", "inheritance": "", "abstract": false, @@ -1598,7 +1598,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SpellResult", "inheritance": "", "abstract": false, @@ -1625,7 +1625,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1652,7 +1652,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -1665,7 +1665,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -1678,7 +1678,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfWebResult", "inheritance": "", "abstract": false, @@ -1705,7 +1705,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WebResult", "inheritance": "", "abstract": false, @@ -1732,7 +1732,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1745,7 +1745,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1758,7 +1758,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1771,7 +1771,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1784,7 +1784,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1797,7 +1797,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1810,7 +1810,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfWebSearchTag", "inheritance": "", "abstract": false, @@ -1823,7 +1823,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfDeepLink", "inheritance": "", "abstract": false, @@ -1850,7 +1850,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WebSearchTag", "inheritance": "", "abstract": false, @@ -1877,7 +1877,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1890,7 +1890,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1917,7 +1917,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DeepLink", "inheritance": "", "abstract": false, @@ -1944,7 +1944,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1957,7 +1957,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1984,7 +1984,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -1997,7 +1997,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -2010,7 +2010,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfImageResult", "inheritance": "", "abstract": false, @@ -2037,7 +2037,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ImageResult", "inheritance": "", "abstract": false, @@ -2064,7 +2064,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2077,7 +2077,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2090,7 +2090,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2103,7 +2103,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2116,7 +2116,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -2129,7 +2129,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -2142,7 +2142,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -2155,7 +2155,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2168,7 +2168,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Thumbnail", "inheritance": "", "abstract": false, @@ -2195,7 +2195,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2208,7 +2208,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2221,7 +2221,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -2234,7 +2234,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -2247,7 +2247,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -2260,7 +2260,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -2287,7 +2287,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfRelatedSearchResult", "inheritance": "", "abstract": false, @@ -2314,7 +2314,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RelatedSearchResult", "inheritance": "", "abstract": false, @@ -2341,7 +2341,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2354,7 +2354,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2381,7 +2381,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -2394,7 +2394,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -2407,7 +2407,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfVideoResult", "inheritance": "", "abstract": false, @@ -2434,7 +2434,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "VideoResult", "inheritance": "", "abstract": false, @@ -2461,7 +2461,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2474,7 +2474,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2487,7 +2487,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2500,7 +2500,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -2513,7 +2513,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2526,7 +2526,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Thumbnail", "inheritance": "", "abstract": false, @@ -2553,7 +2553,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfInstantAnswerResult", "inheritance": "", "abstract": false, @@ -2580,7 +2580,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "InstantAnswerResult", "inheritance": "", "abstract": false, @@ -2607,7 +2607,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2620,7 +2620,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2633,7 +2633,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2646,7 +2646,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2659,7 +2659,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2672,7 +2672,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2699,7 +2699,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -2712,7 +2712,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -2725,7 +2725,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfNewsRelatedSearch", "inheritance": "", "abstract": false, @@ -2738,7 +2738,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfNewsResult", "inheritance": "", "abstract": false, @@ -2765,7 +2765,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NewsRelatedSearch", "inheritance": "", "abstract": false, @@ -2792,7 +2792,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2805,7 +2805,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2832,7 +2832,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NewsResult", "inheritance": "", "abstract": false, @@ -2859,7 +2859,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2872,7 +2872,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2885,7 +2885,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2898,7 +2898,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2911,7 +2911,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2924,7 +2924,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -2937,7 +2937,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfNewsCollection", "inheritance": "", "abstract": false, @@ -2964,7 +2964,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NewsCollection", "inheritance": "", "abstract": false, @@ -2991,7 +2991,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3004,7 +3004,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfNewsArticle", "inheritance": "", "abstract": false, @@ -3031,7 +3031,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NewsArticle", "inheritance": "", "abstract": false, @@ -3058,7 +3058,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3071,7 +3071,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3084,7 +3084,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3097,7 +3097,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3110,7 +3110,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3137,7 +3137,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -3150,7 +3150,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -3163,7 +3163,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfMobileWebResult", "inheritance": "", "abstract": false, @@ -3190,7 +3190,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MobileWebResult", "inheritance": "", "abstract": false, @@ -3217,7 +3217,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3230,7 +3230,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3243,7 +3243,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3256,7 +3256,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3269,7 +3269,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3296,7 +3296,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Error", "inheritance": "", "abstract": false, @@ -3323,7 +3323,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, @@ -3336,7 +3336,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3349,7 +3349,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3362,7 +3362,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3375,7 +3375,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3388,7 +3388,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3401,7 +3401,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "unsignedInt", "inheritance": "", "abstract": false, diff --git a/tests/resources/generated/parsed_deliveryservice_none.json b/tests/resources/generated/parsed_deliveryservice_none.json index 351243c7..10ea4928 100644 --- a/tests/resources/generated/parsed_deliveryservice_none.json +++ b/tests/resources/generated/parsed_deliveryservice_none.json @@ -733,7 +733,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -828,7 +828,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -840,7 +840,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "\u0421\u0432\u0420\u0430\u0439\u041c\u041e", "inheritance": "", "abstract": false, @@ -852,7 +852,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -864,7 +864,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -876,7 +876,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -888,7 +888,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -900,7 +900,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "\u0414\u043e\u043f\u0410\u0434\u0440\u042d\u043b", "inheritance": "", "abstract": false, @@ -927,7 +927,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -953,7 +953,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "\u041d\u043e\u043c\u0435\u0440", "inheritance": "", "abstract": false, @@ -1037,7 +1037,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1049,7 +1049,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1061,7 +1061,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1073,7 +1073,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1085,7 +1085,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1097,7 +1097,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "\u0414\u043e\u043f\u0410\u0434\u0440\u042d\u043b", "inheritance": "", "abstract": false, @@ -1188,7 +1188,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1225,7 +1225,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1238,7 +1238,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1251,7 +1251,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1264,7 +1264,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "address", "inheritance": "", "abstract": false, @@ -1277,7 +1277,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "phone", "inheritance": "", "abstract": false, @@ -1290,7 +1290,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "email", "inheritance": "", "abstract": false, @@ -1303,7 +1303,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1316,7 +1316,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1329,7 +1329,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "contact", "inheritance": "", "abstract": false, @@ -1358,7 +1358,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1371,7 +1371,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "\u041a\u043e\u043d\u0442\u0430\u043a\u0442\u043d\u0430\u044f\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f", "inheritance": "", "abstract": false, @@ -1384,7 +1384,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1397,7 +1397,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1410,7 +1410,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1423,7 +1423,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1436,7 +1436,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -1449,7 +1449,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -1462,7 +1462,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1475,7 +1475,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1488,7 +1488,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1501,7 +1501,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "country", "inheritance": "", "abstract": false, @@ -1530,7 +1530,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1543,7 +1543,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1556,7 +1556,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1569,7 +1569,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1582,7 +1582,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1595,7 +1595,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1708,7 +1708,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1746,7 +1746,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1778,7 +1778,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1826,7 +1826,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "markerList", "inheritance": "", "abstract": false, @@ -1855,7 +1855,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "marker", "inheritance": "", "abstract": false, @@ -1896,7 +1896,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1933,7 +1933,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1965,7 +1965,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2013,7 +2013,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "consigneeList", "inheritance": "", "abstract": false, @@ -2042,7 +2042,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "consignee", "inheritance": "", "abstract": false, @@ -2072,7 +2072,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2121,7 +2121,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2134,7 +2134,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2147,7 +2147,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2160,7 +2160,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "phone", "inheritance": "", "abstract": false, @@ -2174,7 +2174,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "email", "inheritance": "", "abstract": false, @@ -2188,7 +2188,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "address", "inheritance": "", "abstract": false, @@ -2254,7 +2254,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "shipper", "inheritance": "", "abstract": false, @@ -2319,7 +2319,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "consignee", "inheritance": "", "abstract": false, @@ -2396,7 +2396,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "marker", "inheritance": "", "abstract": false, @@ -2424,7 +2424,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2437,7 +2437,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2450,7 +2450,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2463,7 +2463,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2512,7 +2512,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2525,7 +2525,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -2538,7 +2538,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -2551,7 +2551,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "sealType", "inheritance": "", "abstract": false, @@ -2564,7 +2564,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2589,7 +2589,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "phone", "inheritance": "", "abstract": false, @@ -2602,7 +2602,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "email", "inheritance": "", "abstract": false, @@ -2615,7 +2615,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2628,7 +2628,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -2641,7 +2641,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -2678,7 +2678,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "pickupPoint", "inheritance": "", "abstract": false, @@ -2704,7 +2704,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "tracking", "inheritance": "", "abstract": false, @@ -2718,7 +2718,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "orderMarker", "inheritance": "", "abstract": false, @@ -2732,7 +2732,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "orderStatus", "inheritance": "", "abstract": false, @@ -2745,7 +2745,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -2758,7 +2758,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -2787,7 +2787,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2800,7 +2800,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2813,7 +2813,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2826,7 +2826,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "deliveryType", "inheritance": "", "abstract": false, @@ -2855,7 +2855,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2868,7 +2868,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2881,7 +2881,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2910,7 +2910,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2935,7 +2935,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2948,7 +2948,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2961,7 +2961,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2974,7 +2974,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2987,7 +2987,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3000,7 +3000,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3013,7 +3013,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3026,7 +3026,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3039,7 +3039,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3052,7 +3052,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3065,7 +3065,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "double", "inheritance": "", "abstract": false, @@ -3078,7 +3078,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "double", "inheritance": "", "abstract": false, @@ -3091,7 +3091,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3104,7 +3104,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3117,7 +3117,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3182,7 +3182,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3231,7 +3231,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -3244,7 +3244,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3271,7 +3271,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3284,7 +3284,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3321,7 +3321,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3334,7 +3334,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -3347,7 +3347,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -3360,7 +3360,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -3373,7 +3373,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -3386,7 +3386,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3399,7 +3399,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "productType", "inheritance": "", "abstract": false, @@ -3412,7 +3412,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "productPrice", "inheritance": "", "abstract": false, @@ -3425,7 +3425,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -3438,7 +3438,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -3451,7 +3451,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -3480,7 +3480,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -3543,7 +3543,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "payment", "inheritance": "", "abstract": false, @@ -3623,7 +3623,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3662,7 +3662,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3675,7 +3675,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -3688,7 +3688,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3715,7 +3715,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3779,7 +3779,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3843,7 +3843,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3886,7 +3886,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3924,7 +3924,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3956,7 +3956,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3978,7 +3978,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3990,7 +3990,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -4012,7 +4012,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "status", "inheritance": "", "abstract": false, @@ -4041,7 +4041,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "orderList", "inheritance": "", "abstract": false, @@ -4070,7 +4070,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "order", "inheritance": "", "abstract": false, @@ -4120,7 +4120,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -4152,7 +4152,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -4174,7 +4174,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -4186,7 +4186,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "productFilter", "inheritance": "", "abstract": false, @@ -4225,7 +4225,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "productList", "inheritance": "", "abstract": false, @@ -4254,7 +4254,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "product", "inheritance": "", "abstract": false, @@ -4320,7 +4320,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -4358,7 +4358,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -4370,7 +4370,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -4398,7 +4398,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "trackingResponse", "inheritance": "", "abstract": false, @@ -4427,7 +4427,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "trackHistory", "inheritance": "", "abstract": false, @@ -4439,7 +4439,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "operationHistory", "inheritance": "", "abstract": false, @@ -4467,7 +4467,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -4493,7 +4493,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "operationParameter", "inheritance": "", "abstract": false, @@ -4520,7 +4520,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "operation", "inheritance": "", "abstract": false, @@ -4532,7 +4532,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TrackingAddress", "inheritance": "", "abstract": false, @@ -4544,7 +4544,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TrackingAddress", "inheritance": "", "abstract": false, @@ -4688,7 +4688,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -4726,7 +4726,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -4774,7 +4774,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -4786,7 +4786,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -4798,7 +4798,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "productFilter", "inheritance": "", "abstract": false, @@ -4837,7 +4837,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -4885,7 +4885,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -4897,7 +4897,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -4925,7 +4925,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "trackingList", "inheritance": "", "abstract": false, @@ -4954,7 +4954,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "tracking", "inheritance": "", "abstract": false, @@ -5030,7 +5030,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "contractorList", "inheritance": "", "abstract": false, @@ -5059,7 +5059,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "contractor", "inheritance": "", "abstract": false, @@ -5089,7 +5089,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5102,7 +5102,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "entityType", "inheritance": "", "abstract": false, @@ -5115,7 +5115,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5128,7 +5128,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5141,7 +5141,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5154,7 +5154,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5167,7 +5167,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5180,7 +5180,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5193,7 +5193,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "vatRate", "inheritance": "", "abstract": false, @@ -5206,7 +5206,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "contact", "inheritance": "", "abstract": false, @@ -5219,7 +5219,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5285,7 +5285,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5297,7 +5297,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5309,7 +5309,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5321,7 +5321,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5333,7 +5333,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5345,7 +5345,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5357,7 +5357,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5369,7 +5369,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5381,7 +5381,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5393,7 +5393,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -5405,7 +5405,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -5417,7 +5417,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -5429,7 +5429,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -5441,7 +5441,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -5453,7 +5453,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -5465,7 +5465,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "carrierConstraintsType", "inheritance": "", "abstract": false, @@ -5477,7 +5477,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -5489,7 +5489,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -5515,7 +5515,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "deliveryTree", "inheritance": "", "abstract": false, @@ -5544,7 +5544,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "deliveryTreeItem", "inheritance": "", "abstract": false, @@ -5573,7 +5573,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "deliveryTypeContainer", "inheritance": "", "abstract": false, @@ -5585,7 +5585,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "deliveryRateContainer", "inheritance": "", "abstract": false, @@ -5612,7 +5612,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5624,7 +5624,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5636,7 +5636,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -5648,7 +5648,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -5660,7 +5660,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -5672,7 +5672,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -5684,7 +5684,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "postType", "inheritance": "", "abstract": false, @@ -5711,7 +5711,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "deliveryMethodContainer", "inheritance": "", "abstract": false, @@ -5723,7 +5723,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "quote", "inheritance": "", "abstract": false, @@ -5749,7 +5749,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5761,7 +5761,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5773,7 +5773,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "postType", "inheritance": "", "abstract": false, @@ -5799,7 +5799,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -5811,7 +5811,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -5823,7 +5823,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5835,7 +5835,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -5847,7 +5847,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -5859,7 +5859,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -5871,7 +5871,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -5883,7 +5883,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5895,7 +5895,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5907,7 +5907,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5919,7 +5919,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5931,7 +5931,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -5943,7 +5943,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -5955,7 +5955,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5968,7 +5968,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -5980,7 +5980,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -5992,7 +5992,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -6004,7 +6004,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -6118,7 +6118,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -6294,7 +6294,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "packingDimensions", "inheritance": "", "abstract": false, @@ -6451,7 +6451,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -6525,7 +6525,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -6617,7 +6617,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -6721,7 +6721,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "mutualSettlement", "inheritance": "", "abstract": false, @@ -6749,7 +6749,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -6762,7 +6762,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -6775,7 +6775,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -6788,7 +6788,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -6801,7 +6801,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "details", "inheritance": "", "abstract": false, @@ -7405,7 +7405,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "mutualSettlementDetailCalcCostShippingContent", "inheritance": "", "abstract": false, @@ -7418,7 +7418,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "items", "inheritance": "", "abstract": false, @@ -7447,7 +7447,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "mutualSettlementDetailCalcCostShippingItem", "inheritance": "", "abstract": false, @@ -7475,7 +7475,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -7488,7 +7488,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -7517,7 +7517,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -7530,7 +7530,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -7543,7 +7543,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -7556,7 +7556,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -7569,7 +7569,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -7582,7 +7582,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -7595,7 +7595,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "postType", "inheritance": "", "abstract": false, @@ -7608,7 +7608,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -7621,7 +7621,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -7634,7 +7634,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -7647,7 +7647,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -7660,7 +7660,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -7673,7 +7673,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -7686,7 +7686,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -7699,7 +7699,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -7712,7 +7712,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -7739,7 +7739,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -7752,7 +7752,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -7779,7 +7779,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "mutualSettlementDetailCashFlowContent", "inheritance": "", "abstract": false, @@ -7808,7 +7808,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -7821,7 +7821,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -7834,7 +7834,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -7847,7 +7847,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "cashFlowType", "inheritance": "", "abstract": false, @@ -7874,7 +7874,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "mutualSettlementDetailClientPaymentContent", "inheritance": "", "abstract": false, @@ -7887,7 +7887,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "items", "inheritance": "", "abstract": false, @@ -7916,7 +7916,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -7929,7 +7929,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -7956,7 +7956,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -7969,7 +7969,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -7982,7 +7982,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -7995,7 +7995,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -8008,7 +8008,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -8035,7 +8035,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "mutualSettlementDetailPostReturnRegistryContent", "inheritance": "", "abstract": false, @@ -8048,7 +8048,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "orders", "inheritance": "", "abstract": false, @@ -8077,7 +8077,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "mutualSettlementDetailPostReturnRegistryOrder", "inheritance": "", "abstract": false, @@ -8105,7 +8105,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -8118,7 +8118,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8145,7 +8145,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8158,7 +8158,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8171,7 +8171,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8184,7 +8184,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "items", "inheritance": "", "abstract": false, @@ -8211,7 +8211,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8224,7 +8224,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8237,7 +8237,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -8264,7 +8264,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "mutualSettlementDetailRouteListContent", "inheritance": "", "abstract": false, @@ -8277,7 +8277,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "documents", "inheritance": "", "abstract": false, @@ -8356,7 +8356,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -8369,7 +8369,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8396,7 +8396,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8409,7 +8409,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8422,7 +8422,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8451,7 +8451,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "items", "inheritance": "", "abstract": false, @@ -8478,7 +8478,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8491,7 +8491,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8504,7 +8504,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -8531,7 +8531,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8544,7 +8544,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8573,7 +8573,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "mutualSettlementDetailTrackNumberPaymentContent", "inheritance": "", "abstract": false, @@ -8586,7 +8586,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "orders", "inheritance": "", "abstract": false, @@ -8615,7 +8615,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8628,7 +8628,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8655,7 +8655,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8668,7 +8668,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8681,7 +8681,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8694,7 +8694,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "items", "inheritance": "", "abstract": false, @@ -8721,7 +8721,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8734,7 +8734,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8747,7 +8747,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8760,7 +8760,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -8787,7 +8787,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "mutualSettlementDetailServiceRegistrationContent", "inheritance": "", "abstract": false, @@ -8816,7 +8816,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -8829,7 +8829,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8842,7 +8842,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8855,7 +8855,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8882,7 +8882,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "mutualSettlementDetailAcceptanceRegistryContent", "inheritance": "", "abstract": false, @@ -8895,7 +8895,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "pickupRequests", "inheritance": "", "abstract": false, @@ -8924,7 +8924,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "mutualSettlementDetailAcceptanceRegistryPickupRequest", "inheritance": "", "abstract": false, @@ -8952,7 +8952,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -8965,7 +8965,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8992,7 +8992,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9005,7 +9005,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9018,7 +9018,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -9031,7 +9031,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "items", "inheritance": "", "abstract": false, @@ -9058,7 +9058,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9071,7 +9071,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9084,7 +9084,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -9111,7 +9111,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "mutualSettlementDetailAdditionalChargeFareContent", "inheritance": "", "abstract": false, @@ -9124,7 +9124,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "orders", "inheritance": "", "abstract": false, @@ -9153,7 +9153,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -9166,7 +9166,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9193,7 +9193,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9206,7 +9206,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9219,7 +9219,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9232,7 +9232,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "items", "inheritance": "", "abstract": false, @@ -9259,7 +9259,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9272,7 +9272,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9285,7 +9285,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -9312,7 +9312,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "mutualSettlementDetailOutgoingRequestToCarrierContent", "inheritance": "", "abstract": false, @@ -9325,7 +9325,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "orders", "inheritance": "", "abstract": false, @@ -9354,7 +9354,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -9367,7 +9367,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9394,7 +9394,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9407,7 +9407,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9420,7 +9420,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9433,7 +9433,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "items", "inheritance": "", "abstract": false, @@ -9460,7 +9460,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9473,7 +9473,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9486,7 +9486,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -9513,7 +9513,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "mutualSettlementDetailSMSInformationContent", "inheritance": "", "abstract": false, @@ -9542,7 +9542,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9555,7 +9555,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "smsMessageType", "inheritance": "", "abstract": false, @@ -9568,7 +9568,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9581,7 +9581,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9594,7 +9594,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9621,7 +9621,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "mutualSettlementDetailBuyerGoodsReturnContent", "inheritance": "", "abstract": false, @@ -9634,7 +9634,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "items", "inheritance": "", "abstract": false, @@ -9663,7 +9663,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -9676,7 +9676,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9689,7 +9689,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9702,7 +9702,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9715,7 +9715,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9742,7 +9742,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9755,7 +9755,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -9782,7 +9782,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "mutualSettlementDetailProductsPackagingContent", "inheritance": "", "abstract": false, @@ -9795,7 +9795,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "items", "inheritance": "", "abstract": false, @@ -9824,7 +9824,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -9837,7 +9837,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9850,7 +9850,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9863,7 +9863,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9876,7 +9876,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9889,7 +9889,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9916,7 +9916,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9929,7 +9929,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -9956,7 +9956,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "mutualSettlementDetailAdjustmentWriteRegistersContent", "inheritance": "", "abstract": false, @@ -9985,7 +9985,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -9998,7 +9998,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10025,7 +10025,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "mutualSettlementDetailSafeCustodyContent", "inheritance": "", "abstract": false, @@ -10054,7 +10054,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -10067,7 +10067,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10094,7 +10094,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "mutualSettlementDetailSafeCustodyCalculationContent", "inheritance": "", "abstract": false, @@ -10107,7 +10107,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "items", "inheritance": "", "abstract": false, @@ -10136,7 +10136,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -10149,7 +10149,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10162,7 +10162,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10175,7 +10175,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10188,7 +10188,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -10201,7 +10201,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "computations", "inheritance": "", "abstract": false, @@ -10228,7 +10228,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "mutualSettlementDetailSafeCustodyCalculationComputation", "inheritance": "", "abstract": false, @@ -10256,7 +10256,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10269,7 +10269,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10282,7 +10282,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10295,7 +10295,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -10322,7 +10322,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10335,7 +10335,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -10362,7 +10362,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "mutualSettlementDetailRegisterStorageContent", "inheritance": "", "abstract": false, @@ -10391,7 +10391,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -10404,7 +10404,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10467,7 +10467,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "productRemnantsOnStoreList", "inheritance": "", "abstract": false, @@ -10495,7 +10495,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "productRemnantsOnStore", "inheritance": "", "abstract": false, @@ -10524,7 +10524,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10536,7 +10536,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10548,7 +10548,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "productRemnants", "inheritance": "", "abstract": false, @@ -10575,7 +10575,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10588,7 +10588,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10735,7 +10735,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "product", "inheritance": "", "abstract": false, @@ -10774,7 +10774,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10806,7 +10806,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10854,7 +10854,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "shipperList", "inheritance": "", "abstract": false, @@ -10883,7 +10883,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "shipper", "inheritance": "", "abstract": false, @@ -10923,7 +10923,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10935,7 +10935,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10947,7 +10947,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10969,7 +10969,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "status", "inheritance": "", "abstract": false, @@ -10998,7 +10998,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11036,7 +11036,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11074,7 +11074,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11148,7 +11148,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "pickupPoint", "inheritance": "", "abstract": false, @@ -11187,7 +11187,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11225,7 +11225,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11289,7 +11289,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "order", "inheritance": "", "abstract": false, @@ -11344,7 +11344,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "countryList", "inheritance": "", "abstract": false, @@ -11373,7 +11373,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "country", "inheritance": "", "abstract": false, diff --git a/tests/resources/generated/parsed_deliveryservice_start.json b/tests/resources/generated/parsed_deliveryservice_start.json index 30f72dda..3edb8dcf 100644 --- a/tests/resources/generated/parsed_deliveryservice_start.json +++ b/tests/resources/generated/parsed_deliveryservice_start.json @@ -490,7 +490,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -585,7 +585,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -597,7 +597,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "\u0421\u0432\u0420\u0430\u0439\u041c\u041e", "inheritance": "", "abstract": false, @@ -609,7 +609,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -621,7 +621,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -633,7 +633,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -645,7 +645,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -657,7 +657,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "\u0414\u043e\u043f\u0410\u0434\u0440\u042d\u043b", "inheritance": "", "abstract": false, @@ -684,7 +684,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -710,7 +710,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "\u041d\u043e\u043c\u0435\u0440", "inheritance": "", "abstract": false, @@ -794,7 +794,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -806,7 +806,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -818,7 +818,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -830,7 +830,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -842,7 +842,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -854,7 +854,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "\u0414\u043e\u043f\u0410\u0434\u0440\u042d\u043b", "inheritance": "", "abstract": false, @@ -945,7 +945,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -982,7 +982,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -995,7 +995,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1008,7 +1008,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1021,7 +1021,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "address", "inheritance": "", "abstract": false, @@ -1034,7 +1034,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "phone", "inheritance": "", "abstract": false, @@ -1047,7 +1047,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "email", "inheritance": "", "abstract": false, @@ -1060,7 +1060,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1073,7 +1073,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1086,7 +1086,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "contact", "inheritance": "", "abstract": false, @@ -1115,7 +1115,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1128,7 +1128,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "\u041a\u043e\u043d\u0442\u0430\u043a\u0442\u043d\u0430\u044f\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f", "inheritance": "", "abstract": false, @@ -1141,7 +1141,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1154,7 +1154,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1167,7 +1167,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1180,7 +1180,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1193,7 +1193,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -1206,7 +1206,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -1219,7 +1219,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1232,7 +1232,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1245,7 +1245,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1258,7 +1258,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "country", "inheritance": "", "abstract": false, @@ -1287,7 +1287,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1300,7 +1300,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1313,7 +1313,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1326,7 +1326,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1339,7 +1339,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1352,7 +1352,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1465,7 +1465,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1503,7 +1503,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1535,7 +1535,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1583,7 +1583,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "markerList", "inheritance": "", "abstract": false, @@ -1612,7 +1612,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "marker", "inheritance": "", "abstract": false, @@ -1653,7 +1653,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1690,7 +1690,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1722,7 +1722,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1770,7 +1770,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "consigneeList", "inheritance": "", "abstract": false, @@ -1799,7 +1799,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "consignee", "inheritance": "", "abstract": false, @@ -1829,7 +1829,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1878,7 +1878,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1891,7 +1891,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1904,7 +1904,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1917,7 +1917,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "phone", "inheritance": "", "abstract": false, @@ -1931,7 +1931,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "email", "inheritance": "", "abstract": false, @@ -1945,7 +1945,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "address", "inheritance": "", "abstract": false, @@ -2011,7 +2011,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "shipper", "inheritance": "", "abstract": false, @@ -2076,7 +2076,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "consignee", "inheritance": "", "abstract": false, @@ -2153,7 +2153,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "marker", "inheritance": "", "abstract": false, @@ -2181,7 +2181,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2194,7 +2194,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2207,7 +2207,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2220,7 +2220,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2269,7 +2269,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2282,7 +2282,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -2295,7 +2295,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -2308,7 +2308,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "sealType", "inheritance": "", "abstract": false, @@ -2321,7 +2321,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2346,7 +2346,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "phone", "inheritance": "", "abstract": false, @@ -2359,7 +2359,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "email", "inheritance": "", "abstract": false, @@ -2372,7 +2372,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2385,7 +2385,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -2398,7 +2398,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -2435,7 +2435,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "pickupPoint", "inheritance": "", "abstract": false, @@ -2461,7 +2461,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "tracking", "inheritance": "", "abstract": false, @@ -2475,7 +2475,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "orderMarker", "inheritance": "", "abstract": false, @@ -2489,7 +2489,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "orderStatus", "inheritance": "", "abstract": false, @@ -2502,7 +2502,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -2515,7 +2515,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -2544,7 +2544,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2557,7 +2557,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2570,7 +2570,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2583,7 +2583,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "deliveryType", "inheritance": "", "abstract": false, @@ -2612,7 +2612,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2625,7 +2625,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2638,7 +2638,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2667,7 +2667,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2692,7 +2692,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2705,7 +2705,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2718,7 +2718,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2731,7 +2731,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2744,7 +2744,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2757,7 +2757,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2770,7 +2770,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2783,7 +2783,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2796,7 +2796,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2809,7 +2809,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2822,7 +2822,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "double", "inheritance": "", "abstract": false, @@ -2835,7 +2835,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "double", "inheritance": "", "abstract": false, @@ -2848,7 +2848,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2861,7 +2861,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2874,7 +2874,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2939,7 +2939,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2988,7 +2988,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -3001,7 +3001,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3028,7 +3028,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3041,7 +3041,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3078,7 +3078,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3091,7 +3091,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -3104,7 +3104,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -3117,7 +3117,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -3130,7 +3130,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -3143,7 +3143,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3156,7 +3156,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "productType", "inheritance": "", "abstract": false, @@ -3169,7 +3169,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "productPrice", "inheritance": "", "abstract": false, @@ -3182,7 +3182,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -3195,7 +3195,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -3208,7 +3208,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -3237,7 +3237,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -3300,7 +3300,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "payment", "inheritance": "", "abstract": false, @@ -3380,7 +3380,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3419,7 +3419,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3432,7 +3432,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -3445,7 +3445,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3472,7 +3472,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3536,7 +3536,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3600,7 +3600,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3643,7 +3643,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3681,7 +3681,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3713,7 +3713,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3735,7 +3735,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3747,7 +3747,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3769,7 +3769,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "status", "inheritance": "", "abstract": false, @@ -3798,7 +3798,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "orderList", "inheritance": "", "abstract": false, @@ -3827,7 +3827,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "order", "inheritance": "", "abstract": false, @@ -3877,7 +3877,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3909,7 +3909,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3931,7 +3931,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3943,7 +3943,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "productFilter", "inheritance": "", "abstract": false, @@ -3982,7 +3982,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "productList", "inheritance": "", "abstract": false, @@ -4011,7 +4011,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "product", "inheritance": "", "abstract": false, @@ -4077,7 +4077,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -4115,7 +4115,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -4127,7 +4127,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -4155,7 +4155,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "trackingResponse", "inheritance": "", "abstract": false, @@ -4184,7 +4184,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "trackHistory", "inheritance": "", "abstract": false, @@ -4196,7 +4196,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "operationHistory", "inheritance": "", "abstract": false, @@ -4224,7 +4224,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -4250,7 +4250,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "operationParameter", "inheritance": "", "abstract": false, @@ -4277,7 +4277,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "operation", "inheritance": "", "abstract": false, @@ -4289,7 +4289,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TrackingAddress", "inheritance": "", "abstract": false, @@ -4301,7 +4301,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TrackingAddress", "inheritance": "", "abstract": false, @@ -4445,7 +4445,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -4483,7 +4483,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -4531,7 +4531,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -4543,7 +4543,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -4555,7 +4555,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "productFilter", "inheritance": "", "abstract": false, @@ -4594,7 +4594,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -4642,7 +4642,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -4654,7 +4654,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -4682,7 +4682,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "trackingList", "inheritance": "", "abstract": false, @@ -4711,7 +4711,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "tracking", "inheritance": "", "abstract": false, @@ -4787,7 +4787,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "contractorList", "inheritance": "", "abstract": false, @@ -4816,7 +4816,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "contractor", "inheritance": "", "abstract": false, @@ -4846,7 +4846,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -4859,7 +4859,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "entityType", "inheritance": "", "abstract": false, @@ -4872,7 +4872,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -4885,7 +4885,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -4898,7 +4898,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -4911,7 +4911,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -4924,7 +4924,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -4937,7 +4937,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -4950,7 +4950,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "vatRate", "inheritance": "", "abstract": false, @@ -4963,7 +4963,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "contact", "inheritance": "", "abstract": false, @@ -4976,7 +4976,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5042,7 +5042,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5054,7 +5054,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5066,7 +5066,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5078,7 +5078,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5090,7 +5090,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5102,7 +5102,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5114,7 +5114,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5126,7 +5126,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5138,7 +5138,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5150,7 +5150,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -5162,7 +5162,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -5174,7 +5174,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -5186,7 +5186,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -5198,7 +5198,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -5210,7 +5210,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -5222,7 +5222,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "carrierConstraintsType", "inheritance": "", "abstract": false, @@ -5234,7 +5234,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -5246,7 +5246,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -5272,7 +5272,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "deliveryTree", "inheritance": "", "abstract": false, @@ -5301,7 +5301,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "deliveryTreeItem", "inheritance": "", "abstract": false, @@ -5330,7 +5330,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "deliveryTypeContainer", "inheritance": "", "abstract": false, @@ -5342,7 +5342,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "deliveryRateContainer", "inheritance": "", "abstract": false, @@ -5369,7 +5369,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5381,7 +5381,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5393,7 +5393,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -5405,7 +5405,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -5417,7 +5417,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -5429,7 +5429,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -5441,7 +5441,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "postType", "inheritance": "", "abstract": false, @@ -5468,7 +5468,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "deliveryMethodContainer", "inheritance": "", "abstract": false, @@ -5480,7 +5480,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "quote", "inheritance": "", "abstract": false, @@ -5506,7 +5506,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5518,7 +5518,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5530,7 +5530,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "postType", "inheritance": "", "abstract": false, @@ -5556,7 +5556,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -5568,7 +5568,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -5580,7 +5580,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5592,7 +5592,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -5604,7 +5604,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -5616,7 +5616,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -5628,7 +5628,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -5640,7 +5640,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5652,7 +5652,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5664,7 +5664,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5676,7 +5676,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5688,7 +5688,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -5700,7 +5700,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -5712,7 +5712,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5725,7 +5725,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -5737,7 +5737,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -5749,7 +5749,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -5761,7 +5761,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -5875,7 +5875,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -6051,7 +6051,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "packingDimensions", "inheritance": "", "abstract": false, @@ -6208,7 +6208,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -6282,7 +6282,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -6374,7 +6374,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -6478,7 +6478,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "mutualSettlement", "inheritance": "", "abstract": false, @@ -6506,7 +6506,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -6519,7 +6519,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -6532,7 +6532,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -6545,7 +6545,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -6558,7 +6558,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "details", "inheritance": "", "abstract": false, @@ -7162,7 +7162,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "mutualSettlementDetailCalcCostShippingContent", "inheritance": "", "abstract": false, @@ -7175,7 +7175,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "items", "inheritance": "", "abstract": false, @@ -7204,7 +7204,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "mutualSettlementDetailCalcCostShippingItem", "inheritance": "", "abstract": false, @@ -7232,7 +7232,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -7245,7 +7245,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -7274,7 +7274,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -7287,7 +7287,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -7300,7 +7300,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -7313,7 +7313,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -7326,7 +7326,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -7339,7 +7339,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -7352,7 +7352,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "postType", "inheritance": "", "abstract": false, @@ -7365,7 +7365,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -7378,7 +7378,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -7391,7 +7391,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -7404,7 +7404,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -7417,7 +7417,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -7430,7 +7430,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -7443,7 +7443,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -7456,7 +7456,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -7469,7 +7469,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -7496,7 +7496,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -7509,7 +7509,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -7536,7 +7536,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "mutualSettlementDetailCashFlowContent", "inheritance": "", "abstract": false, @@ -7565,7 +7565,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -7578,7 +7578,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -7591,7 +7591,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -7604,7 +7604,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "cashFlowType", "inheritance": "", "abstract": false, @@ -7631,7 +7631,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "mutualSettlementDetailClientPaymentContent", "inheritance": "", "abstract": false, @@ -7644,7 +7644,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "items", "inheritance": "", "abstract": false, @@ -7673,7 +7673,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -7686,7 +7686,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -7713,7 +7713,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -7726,7 +7726,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -7739,7 +7739,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -7752,7 +7752,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -7765,7 +7765,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -7792,7 +7792,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "mutualSettlementDetailPostReturnRegistryContent", "inheritance": "", "abstract": false, @@ -7805,7 +7805,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "orders", "inheritance": "", "abstract": false, @@ -7834,7 +7834,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "mutualSettlementDetailPostReturnRegistryOrder", "inheritance": "", "abstract": false, @@ -7862,7 +7862,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -7875,7 +7875,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -7902,7 +7902,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -7915,7 +7915,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -7928,7 +7928,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -7941,7 +7941,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "items", "inheritance": "", "abstract": false, @@ -7968,7 +7968,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -7981,7 +7981,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -7994,7 +7994,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -8021,7 +8021,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "mutualSettlementDetailRouteListContent", "inheritance": "", "abstract": false, @@ -8034,7 +8034,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "documents", "inheritance": "", "abstract": false, @@ -8113,7 +8113,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -8126,7 +8126,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8153,7 +8153,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8166,7 +8166,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8179,7 +8179,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8208,7 +8208,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "items", "inheritance": "", "abstract": false, @@ -8235,7 +8235,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8248,7 +8248,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8261,7 +8261,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -8288,7 +8288,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8301,7 +8301,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8330,7 +8330,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "mutualSettlementDetailTrackNumberPaymentContent", "inheritance": "", "abstract": false, @@ -8343,7 +8343,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "orders", "inheritance": "", "abstract": false, @@ -8372,7 +8372,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8385,7 +8385,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8412,7 +8412,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8425,7 +8425,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8438,7 +8438,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8451,7 +8451,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "items", "inheritance": "", "abstract": false, @@ -8478,7 +8478,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8491,7 +8491,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8504,7 +8504,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8517,7 +8517,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -8544,7 +8544,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "mutualSettlementDetailServiceRegistrationContent", "inheritance": "", "abstract": false, @@ -8573,7 +8573,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -8586,7 +8586,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8599,7 +8599,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8612,7 +8612,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8639,7 +8639,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "mutualSettlementDetailAcceptanceRegistryContent", "inheritance": "", "abstract": false, @@ -8652,7 +8652,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "pickupRequests", "inheritance": "", "abstract": false, @@ -8681,7 +8681,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "mutualSettlementDetailAcceptanceRegistryPickupRequest", "inheritance": "", "abstract": false, @@ -8709,7 +8709,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -8722,7 +8722,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8749,7 +8749,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8762,7 +8762,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8775,7 +8775,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -8788,7 +8788,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "items", "inheritance": "", "abstract": false, @@ -8815,7 +8815,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8828,7 +8828,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8841,7 +8841,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -8868,7 +8868,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "mutualSettlementDetailAdditionalChargeFareContent", "inheritance": "", "abstract": false, @@ -8881,7 +8881,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "orders", "inheritance": "", "abstract": false, @@ -8910,7 +8910,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -8923,7 +8923,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8950,7 +8950,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8963,7 +8963,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8976,7 +8976,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8989,7 +8989,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "items", "inheritance": "", "abstract": false, @@ -9016,7 +9016,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9029,7 +9029,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9042,7 +9042,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -9069,7 +9069,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "mutualSettlementDetailOutgoingRequestToCarrierContent", "inheritance": "", "abstract": false, @@ -9082,7 +9082,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "orders", "inheritance": "", "abstract": false, @@ -9111,7 +9111,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -9124,7 +9124,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9151,7 +9151,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9164,7 +9164,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9177,7 +9177,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9190,7 +9190,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "items", "inheritance": "", "abstract": false, @@ -9217,7 +9217,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9230,7 +9230,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9243,7 +9243,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -9270,7 +9270,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "mutualSettlementDetailSMSInformationContent", "inheritance": "", "abstract": false, @@ -9299,7 +9299,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9312,7 +9312,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "smsMessageType", "inheritance": "", "abstract": false, @@ -9325,7 +9325,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9338,7 +9338,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9351,7 +9351,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9378,7 +9378,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "mutualSettlementDetailBuyerGoodsReturnContent", "inheritance": "", "abstract": false, @@ -9391,7 +9391,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "items", "inheritance": "", "abstract": false, @@ -9420,7 +9420,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -9433,7 +9433,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9446,7 +9446,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9459,7 +9459,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9472,7 +9472,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9499,7 +9499,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9512,7 +9512,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -9539,7 +9539,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "mutualSettlementDetailProductsPackagingContent", "inheritance": "", "abstract": false, @@ -9552,7 +9552,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "items", "inheritance": "", "abstract": false, @@ -9581,7 +9581,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -9594,7 +9594,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9607,7 +9607,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9620,7 +9620,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9633,7 +9633,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9646,7 +9646,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9673,7 +9673,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9686,7 +9686,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -9713,7 +9713,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "mutualSettlementDetailAdjustmentWriteRegistersContent", "inheritance": "", "abstract": false, @@ -9742,7 +9742,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -9755,7 +9755,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9782,7 +9782,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "mutualSettlementDetailSafeCustodyContent", "inheritance": "", "abstract": false, @@ -9811,7 +9811,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -9824,7 +9824,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9851,7 +9851,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "mutualSettlementDetailSafeCustodyCalculationContent", "inheritance": "", "abstract": false, @@ -9864,7 +9864,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "items", "inheritance": "", "abstract": false, @@ -9893,7 +9893,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -9906,7 +9906,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9919,7 +9919,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9932,7 +9932,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9945,7 +9945,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -9958,7 +9958,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "computations", "inheritance": "", "abstract": false, @@ -9985,7 +9985,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "mutualSettlementDetailSafeCustodyCalculationComputation", "inheritance": "", "abstract": false, @@ -10013,7 +10013,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10026,7 +10026,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10039,7 +10039,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10052,7 +10052,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -10079,7 +10079,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10092,7 +10092,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -10119,7 +10119,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "mutualSettlementDetailRegisterStorageContent", "inheritance": "", "abstract": false, @@ -10148,7 +10148,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -10161,7 +10161,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10224,7 +10224,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "productRemnantsOnStoreList", "inheritance": "", "abstract": false, @@ -10252,7 +10252,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "productRemnantsOnStore", "inheritance": "", "abstract": false, @@ -10281,7 +10281,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10293,7 +10293,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10305,7 +10305,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "productRemnants", "inheritance": "", "abstract": false, @@ -10332,7 +10332,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10345,7 +10345,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10492,7 +10492,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "product", "inheritance": "", "abstract": false, @@ -10531,7 +10531,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10563,7 +10563,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10611,7 +10611,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "shipperList", "inheritance": "", "abstract": false, @@ -10640,7 +10640,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "shipper", "inheritance": "", "abstract": false, @@ -10680,7 +10680,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10692,7 +10692,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10704,7 +10704,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10726,7 +10726,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "status", "inheritance": "", "abstract": false, @@ -10755,7 +10755,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10793,7 +10793,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10831,7 +10831,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10905,7 +10905,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "pickupPoint", "inheritance": "", "abstract": false, @@ -10944,7 +10944,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10982,7 +10982,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11046,7 +11046,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "order", "inheritance": "", "abstract": false, @@ -11101,7 +11101,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "countryList", "inheritance": "", "abstract": false, @@ -11130,7 +11130,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "country", "inheritance": "", "abstract": false, diff --git a/tests/resources/generated/parsed_docdatapayments_none.json b/tests/resources/generated/parsed_docdatapayments_none.json index b4d7432a..c714f2cc 100644 --- a/tests/resources/generated/parsed_docdatapayments_none.json +++ b/tests/resources/generated/parsed_docdatapayments_none.json @@ -936,7 +936,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "css", "inheritance": "", "abstract": false, @@ -1064,7 +1064,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "parameter", "inheritance": "", "abstract": false, @@ -1185,7 +1185,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -1201,7 +1201,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -1233,7 +1233,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -1265,7 +1265,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -1341,7 +1341,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -1357,7 +1357,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -1373,7 +1373,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -1389,7 +1389,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -1405,7 +1405,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -1421,7 +1421,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -1437,7 +1437,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -1471,7 +1471,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -1487,7 +1487,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -1503,7 +1503,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -1519,7 +1519,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -1567,7 +1567,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -1583,7 +1583,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -1609,7 +1609,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -1716,7 +1716,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "plainDate", "inheritance": "", "abstract": false, @@ -1732,7 +1732,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "phoneNumber", "inheritance": "", "abstract": false, @@ -1748,7 +1748,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "phoneNumber", "inheritance": "", "abstract": false, @@ -1764,7 +1764,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -1882,7 +1882,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "exhortation", "inheritance": "", "abstract": false, @@ -1895,7 +1895,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -1938,7 +1938,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "exhortationPeriod", "inheritance": "", "abstract": false, @@ -2170,7 +2170,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "additionalRefund", "inheritance": "", "abstract": false, @@ -2183,7 +2183,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "itemLine", "inheritance": "", "abstract": false, @@ -2233,7 +2233,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string250", "inheritance": "", "abstract": false, @@ -2579,7 +2579,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "paymentSuccess", "inheritance": "", "abstract": false, @@ -2592,7 +2592,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "anyType", "inheritance": "", "abstract": false, @@ -2605,7 +2605,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "paymentError", "inheritance": "", "abstract": false, @@ -2713,7 +2713,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "authorizationStatus", "inheritance": "", "abstract": false, @@ -2726,7 +2726,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "paymentId", "inheritance": "", "abstract": false, @@ -2828,7 +2828,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string100", "inheritance": "", "abstract": false, @@ -3103,7 +3103,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string2048", "inheritance": "", "abstract": false, @@ -3679,7 +3679,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "securityCode", "inheritance": "", "abstract": false, @@ -3728,7 +3728,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -3741,7 +3741,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "bic", "inheritance": "", "abstract": false, @@ -3833,7 +3833,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "register", "inheritance": "", "abstract": false, @@ -3965,7 +3965,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "payment", "inheritance": "", "abstract": false, @@ -3978,7 +3978,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "consideredSafe", "inheritance": "", "abstract": false, @@ -4242,7 +4242,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "paymentInfo", "inheritance": "", "abstract": false, @@ -4279,7 +4279,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "riskCheck", "inheritance": "", "abstract": false, @@ -5008,7 +5008,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "check", "inheritance": "", "abstract": false, @@ -5110,7 +5110,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -5123,7 +5123,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -5136,7 +5136,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string250", "inheritance": "", "abstract": false, @@ -5149,7 +5149,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -5203,7 +5203,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -5216,7 +5216,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -5229,7 +5229,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string250", "inheritance": "", "abstract": false, @@ -5242,7 +5242,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -5296,7 +5296,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -5309,7 +5309,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -5322,7 +5322,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string250", "inheritance": "", "abstract": false, @@ -5335,7 +5335,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -5389,7 +5389,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -5402,7 +5402,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -5415,7 +5415,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string250", "inheritance": "", "abstract": false, @@ -5469,7 +5469,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -5482,7 +5482,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -5495,7 +5495,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string250", "inheritance": "", "abstract": false, @@ -5536,7 +5536,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -5549,7 +5549,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -5562,7 +5562,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "shopperBankAccount", "inheritance": "", "abstract": false, @@ -5603,7 +5603,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -5616,7 +5616,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "shopperBankAccount", "inheritance": "", "abstract": false, @@ -5657,7 +5657,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -5670,7 +5670,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -5683,7 +5683,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -5696,7 +5696,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -5709,7 +5709,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -5722,7 +5722,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -5735,7 +5735,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -5748,7 +5748,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "bic", "inheritance": "", "abstract": false, @@ -5761,7 +5761,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "iban", "inheritance": "", "abstract": false, @@ -5774,7 +5774,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "shopperBankAccount", "inheritance": "", "abstract": false, @@ -5859,7 +5859,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -5872,7 +5872,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -5913,7 +5913,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "bic", "inheritance": "", "abstract": false, @@ -5926,7 +5926,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "iban", "inheritance": "", "abstract": false, @@ -5952,7 +5952,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -5993,7 +5993,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -6006,7 +6006,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -6019,7 +6019,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "shopperBankAccount", "inheritance": "", "abstract": false, @@ -6060,7 +6060,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "pointOfSalePaymentReceipt", "inheritance": "", "abstract": false, @@ -6323,7 +6323,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "shopperBankAccount", "inheritance": "", "abstract": false, @@ -6364,7 +6364,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "iban", "inheritance": "", "abstract": false, @@ -6377,7 +6377,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "bic", "inheritance": "", "abstract": false, @@ -6431,7 +6431,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string250", "inheritance": "", "abstract": false, @@ -6470,7 +6470,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "capture", "inheritance": "", "abstract": false, @@ -6483,7 +6483,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "refund", "inheritance": "", "abstract": false, @@ -6496,7 +6496,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "chargeback", "inheritance": "", "abstract": false, @@ -6509,7 +6509,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "reversal", "inheritance": "", "abstract": false, @@ -6546,7 +6546,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -6622,7 +6622,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -6698,7 +6698,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -6964,7 +6964,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "menuPreferences", "inheritance": "", "abstract": false, @@ -7028,7 +7028,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string255", "inheritance": "", "abstract": false, @@ -7044,7 +7044,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -7060,7 +7060,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -7077,7 +7077,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "paymentRequest", "inheritance": "", "abstract": false, @@ -7093,7 +7093,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "invoice", "inheritance": "", "abstract": false, @@ -7106,7 +7106,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "technicalIntegrationInfo", "inheritance": "", "abstract": false, @@ -7119,7 +7119,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "salesPerson", "inheritance": "", "abstract": false, @@ -7282,7 +7282,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "paymentResponse", "inheritance": "", "abstract": false, @@ -7388,7 +7388,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -7453,7 +7453,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -7469,7 +7469,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "date", "inheritance": "", "abstract": false, @@ -7485,7 +7485,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "sepaBankAccount", "inheritance": "", "abstract": false, @@ -7501,7 +7501,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "technicalIntegrationInfo", "inheritance": "", "abstract": false, @@ -7742,7 +7742,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "technicalIntegrationInfo", "inheritance": "", "abstract": false, @@ -7992,7 +7992,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "amount", "inheritance": "", "abstract": false, @@ -8073,7 +8073,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string2048", "inheritance": "", "abstract": false, @@ -8089,7 +8089,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "shopperInfo", "inheritance": "", "abstract": false, @@ -8102,7 +8102,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "technicalIntegrationInfo", "inheritance": "", "abstract": false, @@ -8293,7 +8293,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "paymentRedirect", "inheritance": "", "abstract": false, @@ -8406,7 +8406,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "technicalIntegrationInfo", "inheritance": "", "abstract": false, @@ -8653,7 +8653,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -8669,7 +8669,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "amount", "inheritance": "", "abstract": false, @@ -8685,7 +8685,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -8701,7 +8701,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string250", "inheritance": "", "abstract": false, @@ -8717,7 +8717,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -8733,7 +8733,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -8749,7 +8749,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "date", "inheritance": "", "abstract": false, @@ -8765,7 +8765,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "technicalIntegrationInfo", "inheritance": "", "abstract": false, @@ -8993,7 +8993,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "technicalIntegrationInfo", "inheritance": "", "abstract": false, @@ -9147,7 +9147,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "technicalIntegrationInfo", "inheritance": "", "abstract": false, @@ -9587,7 +9587,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -9670,7 +9670,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -9707,7 +9707,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "register", "inheritance": "", "abstract": false, diff --git a/tests/resources/generated/parsed_docdatapayments_start.json b/tests/resources/generated/parsed_docdatapayments_start.json index 8bfd1212..11a47429 100644 --- a/tests/resources/generated/parsed_docdatapayments_start.json +++ b/tests/resources/generated/parsed_docdatapayments_start.json @@ -927,7 +927,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "css", "inheritance": "", "abstract": false, @@ -1055,7 +1055,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "parameter", "inheritance": "", "abstract": false, @@ -1176,7 +1176,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -1192,7 +1192,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -1224,7 +1224,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -1256,7 +1256,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -1332,7 +1332,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -1348,7 +1348,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -1364,7 +1364,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -1380,7 +1380,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -1396,7 +1396,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -1412,7 +1412,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -1428,7 +1428,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -1462,7 +1462,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -1478,7 +1478,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -1494,7 +1494,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -1510,7 +1510,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -1558,7 +1558,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -1574,7 +1574,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -1600,7 +1600,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -1707,7 +1707,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "plainDate", "inheritance": "", "abstract": false, @@ -1723,7 +1723,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "phoneNumber", "inheritance": "", "abstract": false, @@ -1739,7 +1739,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "phoneNumber", "inheritance": "", "abstract": false, @@ -1755,7 +1755,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -1873,7 +1873,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "exhortation", "inheritance": "", "abstract": false, @@ -1886,7 +1886,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -1929,7 +1929,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "exhortationPeriod", "inheritance": "", "abstract": false, @@ -2161,7 +2161,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "additionalRefund", "inheritance": "", "abstract": false, @@ -2174,7 +2174,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "itemLine", "inheritance": "", "abstract": false, @@ -2224,7 +2224,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string250", "inheritance": "", "abstract": false, @@ -2570,7 +2570,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "paymentSuccess", "inheritance": "", "abstract": false, @@ -2583,7 +2583,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "anyType", "inheritance": "", "abstract": false, @@ -2596,7 +2596,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "paymentError", "inheritance": "", "abstract": false, @@ -2704,7 +2704,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "authorizationStatus", "inheritance": "", "abstract": false, @@ -2717,7 +2717,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "paymentId", "inheritance": "", "abstract": false, @@ -2819,7 +2819,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string100", "inheritance": "", "abstract": false, @@ -3094,7 +3094,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string2048", "inheritance": "", "abstract": false, @@ -3670,7 +3670,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "securityCode", "inheritance": "", "abstract": false, @@ -3719,7 +3719,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -3732,7 +3732,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "bic", "inheritance": "", "abstract": false, @@ -3824,7 +3824,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "register", "inheritance": "", "abstract": false, @@ -3956,7 +3956,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "payment", "inheritance": "", "abstract": false, @@ -3969,7 +3969,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "consideredSafe", "inheritance": "", "abstract": false, @@ -4233,7 +4233,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "paymentInfo", "inheritance": "", "abstract": false, @@ -4270,7 +4270,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "riskCheck", "inheritance": "", "abstract": false, @@ -4999,7 +4999,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "check", "inheritance": "", "abstract": false, @@ -5101,7 +5101,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -5114,7 +5114,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -5127,7 +5127,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string250", "inheritance": "", "abstract": false, @@ -5140,7 +5140,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -5194,7 +5194,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -5207,7 +5207,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -5220,7 +5220,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string250", "inheritance": "", "abstract": false, @@ -5233,7 +5233,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -5287,7 +5287,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -5300,7 +5300,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -5313,7 +5313,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string250", "inheritance": "", "abstract": false, @@ -5326,7 +5326,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -5380,7 +5380,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -5393,7 +5393,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -5406,7 +5406,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string250", "inheritance": "", "abstract": false, @@ -5460,7 +5460,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -5473,7 +5473,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -5486,7 +5486,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string250", "inheritance": "", "abstract": false, @@ -5527,7 +5527,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -5540,7 +5540,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -5553,7 +5553,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "shopperBankAccount", "inheritance": "", "abstract": false, @@ -5594,7 +5594,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -5607,7 +5607,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "shopperBankAccount", "inheritance": "", "abstract": false, @@ -5648,7 +5648,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -5661,7 +5661,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -5674,7 +5674,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -5687,7 +5687,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -5700,7 +5700,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -5713,7 +5713,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -5726,7 +5726,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -5739,7 +5739,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "bic", "inheritance": "", "abstract": false, @@ -5752,7 +5752,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "iban", "inheritance": "", "abstract": false, @@ -5765,7 +5765,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "shopperBankAccount", "inheritance": "", "abstract": false, @@ -5850,7 +5850,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -5863,7 +5863,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -5904,7 +5904,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "bic", "inheritance": "", "abstract": false, @@ -5917,7 +5917,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "iban", "inheritance": "", "abstract": false, @@ -5943,7 +5943,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -5984,7 +5984,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -5997,7 +5997,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -6010,7 +6010,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "shopperBankAccount", "inheritance": "", "abstract": false, @@ -6051,7 +6051,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "pointOfSalePaymentReceipt", "inheritance": "", "abstract": false, @@ -6314,7 +6314,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "shopperBankAccount", "inheritance": "", "abstract": false, @@ -6355,7 +6355,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "iban", "inheritance": "", "abstract": false, @@ -6368,7 +6368,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "bic", "inheritance": "", "abstract": false, @@ -6422,7 +6422,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string250", "inheritance": "", "abstract": false, @@ -6461,7 +6461,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "capture", "inheritance": "", "abstract": false, @@ -6474,7 +6474,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "refund", "inheritance": "", "abstract": false, @@ -6487,7 +6487,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "chargeback", "inheritance": "", "abstract": false, @@ -6500,7 +6500,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "reversal", "inheritance": "", "abstract": false, @@ -6537,7 +6537,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -6613,7 +6613,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -6689,7 +6689,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -6955,7 +6955,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "menuPreferences", "inheritance": "", "abstract": false, @@ -7019,7 +7019,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string255", "inheritance": "", "abstract": false, @@ -7035,7 +7035,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -7051,7 +7051,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -7068,7 +7068,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "paymentRequest", "inheritance": "", "abstract": false, @@ -7084,7 +7084,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "invoice", "inheritance": "", "abstract": false, @@ -7097,7 +7097,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "technicalIntegrationInfo", "inheritance": "", "abstract": false, @@ -7110,7 +7110,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "salesPerson", "inheritance": "", "abstract": false, @@ -7273,7 +7273,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "paymentResponse", "inheritance": "", "abstract": false, @@ -7379,7 +7379,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -7444,7 +7444,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -7460,7 +7460,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "date", "inheritance": "", "abstract": false, @@ -7476,7 +7476,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "sepaBankAccount", "inheritance": "", "abstract": false, @@ -7492,7 +7492,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "technicalIntegrationInfo", "inheritance": "", "abstract": false, @@ -7733,7 +7733,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "technicalIntegrationInfo", "inheritance": "", "abstract": false, @@ -7983,7 +7983,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "amount", "inheritance": "", "abstract": false, @@ -8064,7 +8064,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string2048", "inheritance": "", "abstract": false, @@ -8080,7 +8080,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "shopperInfo", "inheritance": "", "abstract": false, @@ -8093,7 +8093,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "technicalIntegrationInfo", "inheritance": "", "abstract": false, @@ -8284,7 +8284,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "paymentRedirect", "inheritance": "", "abstract": false, @@ -8397,7 +8397,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "technicalIntegrationInfo", "inheritance": "", "abstract": false, @@ -8644,7 +8644,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -8660,7 +8660,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "amount", "inheritance": "", "abstract": false, @@ -8676,7 +8676,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -8692,7 +8692,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string250", "inheritance": "", "abstract": false, @@ -8708,7 +8708,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -8724,7 +8724,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -8740,7 +8740,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "date", "inheritance": "", "abstract": false, @@ -8756,7 +8756,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "technicalIntegrationInfo", "inheritance": "", "abstract": false, @@ -8984,7 +8984,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "technicalIntegrationInfo", "inheritance": "", "abstract": false, @@ -9138,7 +9138,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "technicalIntegrationInfo", "inheritance": "", "abstract": false, @@ -9578,7 +9578,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string35", "inheritance": "", "abstract": false, @@ -9661,7 +9661,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string50", "inheritance": "", "abstract": false, @@ -9698,7 +9698,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "register", "inheritance": "", "abstract": false, diff --git a/tests/resources/generated/parsed_ews_none.json b/tests/resources/generated/parsed_ews_none.json index 96ba45ec..3cb02a77 100644 --- a/tests/resources/generated/parsed_ews_none.json +++ b/tests/resources/generated/parsed_ews_none.json @@ -4272,7 +4272,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfRoleType", "inheritance": "", "abstract": false, @@ -4285,7 +4285,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfRoleType", "inheritance": "", "abstract": false, @@ -4410,7 +4410,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfGroupIdentifiersType", "inheritance": "", "abstract": false, @@ -4422,7 +4422,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfRestrictedGroupIdentifiersType", "inheritance": "", "abstract": false, @@ -4434,7 +4434,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5124,7 +5124,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5136,7 +5136,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyStringType", "inheritance": "", "abstract": false, @@ -5148,7 +5148,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyStringType", "inheritance": "", "abstract": false, @@ -5160,7 +5160,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MailboxTypeType", "inheritance": "", "abstract": false, @@ -5172,7 +5172,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -5184,7 +5184,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5214,7 +5214,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressType", "inheritance": "", "abstract": false, @@ -5241,7 +5241,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressType", "inheritance": "", "abstract": false, @@ -5281,7 +5281,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RoomType", "inheritance": "", "abstract": false, @@ -5448,7 +5448,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MeetingLocation", "inheritance": "", "abstract": false, @@ -5475,7 +5475,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AttendeeAvailability", "inheritance": "", "abstract": false, @@ -5602,7 +5602,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5628,7 +5628,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -5654,7 +5654,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5666,7 +5666,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -5692,7 +5692,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LocationConstraintItem", "inheritance": "", "abstract": false, @@ -5719,7 +5719,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AttendeeConstraintItem", "inheritance": "", "abstract": false, @@ -5746,7 +5746,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TimeSlot", "inheritance": "", "abstract": false, @@ -5773,7 +5773,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfAttendeeConstraintItems", "inheritance": "", "abstract": false, @@ -5799,7 +5799,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfLocationConstraintItems", "inheritance": "", "abstract": false, @@ -5811,7 +5811,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -5823,7 +5823,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -5849,7 +5849,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfTimeSlot", "inheritance": "", "abstract": false, @@ -5861,7 +5861,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -5873,7 +5873,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ActivityDomainType", "inheritance": "", "abstract": false, @@ -5899,7 +5899,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -5968,7 +5968,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -6033,7 +6033,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -6046,7 +6046,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ReminderGroupType", "inheritance": "", "abstract": false, @@ -6086,7 +6086,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ReminderType", "inheritance": "", "abstract": false, @@ -11121,7 +11121,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfPathsToElementType", "inheritance": "", "abstract": false, @@ -11157,7 +11157,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -11169,7 +11169,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BodyTypeResponseType", "inheritance": "", "abstract": false, @@ -11181,7 +11181,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BodyTypeResponseType", "inheritance": "", "abstract": false, @@ -11193,7 +11193,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BodyTypeResponseType", "inheritance": "", "abstract": false, @@ -11205,7 +11205,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -11218,7 +11218,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -11231,7 +11231,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11244,7 +11244,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -11257,7 +11257,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -11270,7 +11270,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -11283,7 +11283,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfPathsToElementType", "inheritance": "", "abstract": false, @@ -11309,7 +11309,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -11321,7 +11321,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BodyTypeResponseType", "inheritance": "", "abstract": false, @@ -11333,7 +11333,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -11346,7 +11346,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfPathsToElementType", "inheritance": "", "abstract": false, @@ -11382,7 +11382,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfPathsToElementType", "inheritance": "", "abstract": false, @@ -11418,7 +11418,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfPathsToElementType", "inheritance": "", "abstract": false, @@ -11609,7 +11609,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -13514,7 +13514,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AttachmentIdType", "inheritance": "", "abstract": false, @@ -13527,7 +13527,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -13540,7 +13540,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -13553,7 +13553,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -13566,7 +13566,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -13579,7 +13579,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -13592,7 +13592,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -13605,7 +13605,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -14516,7 +14516,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -14529,7 +14529,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "base64Binary", "inheritance": "", "abstract": false, @@ -14556,7 +14556,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -14569,7 +14569,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -14582,7 +14582,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -14595,7 +14595,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -14608,7 +14608,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -14621,7 +14621,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -14634,7 +14634,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -15049,7 +15049,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "XrmRelationshipBaseType", "inheritance": "", "abstract": false, @@ -15076,7 +15076,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "XrmGraphRelationshipType", "inheritance": "", "abstract": false, @@ -15695,7 +15695,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressType", "inheritance": "", "abstract": false, @@ -16029,7 +16029,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -16259,7 +16259,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfFoldersType", "inheritance": "", "abstract": false, @@ -16350,7 +16350,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FolderIdType", "inheritance": "", "abstract": false, @@ -16362,7 +16362,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FolderIdType", "inheritance": "", "abstract": false, @@ -16374,7 +16374,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16386,7 +16386,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16398,7 +16398,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -16410,7 +16410,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -16422,7 +16422,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ExtendedPropertyType", "inheritance": "", "abstract": false, @@ -16435,7 +16435,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ManagedFolderInformationType", "inheritance": "", "abstract": false, @@ -16447,7 +16447,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EffectiveRightsType", "inheritance": "", "abstract": false, @@ -16459,7 +16459,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DistinguishedFolderIdNameType", "inheritance": "", "abstract": false, @@ -16471,7 +16471,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RetentionTagType", "inheritance": "", "abstract": false, @@ -16483,7 +16483,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RetentionTagType", "inheritance": "", "abstract": false, @@ -16495,7 +16495,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -16521,7 +16521,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -16533,7 +16533,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -16545,7 +16545,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -16557,7 +16557,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -16569,7 +16569,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -16581,7 +16581,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16593,7 +16593,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16605,7 +16605,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -16617,7 +16617,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -16629,7 +16629,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16659,7 +16659,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PermissionSetType", "inheritance": "", "abstract": false, @@ -16671,7 +16671,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -16697,7 +16697,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CalendarPermissionReadAccessType", "inheritance": "", "abstract": false, @@ -16709,7 +16709,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CalendarPermissionSetType", "inheritance": "", "abstract": false, @@ -16791,7 +16791,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16845,7 +16845,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PermissionReadAccessType", "inheritance": "", "abstract": false, @@ -16857,7 +16857,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PermissionSetType", "inheritance": "", "abstract": false, @@ -16869,7 +16869,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16881,7 +16881,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16907,7 +16907,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SearchParametersType", "inheritance": "", "abstract": false, @@ -17395,7 +17395,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -17437,7 +17437,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -17962,7 +17962,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemClassType", "inheritance": "", "abstract": false, @@ -17974,7 +17974,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SensitivityChoicesType", "inheritance": "", "abstract": false, @@ -17986,7 +17986,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BodyType", "inheritance": "", "abstract": false, @@ -17998,7 +17998,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfAttachmentsType", "inheritance": "", "abstract": false, @@ -18010,7 +18010,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfInternetHeadersType", "inheritance": "", "abstract": false, @@ -18022,7 +18022,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SingleRecipientType", "inheritance": "", "abstract": false, @@ -18034,7 +18034,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfRecipientsType", "inheritance": "", "abstract": false, @@ -18046,7 +18046,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfRecipientsType", "inheritance": "", "abstract": false, @@ -18058,7 +18058,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfRecipientsType", "inheritance": "", "abstract": false, @@ -18070,7 +18070,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -18082,7 +18082,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -18094,7 +18094,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SingleRecipientType", "inheritance": "", "abstract": false, @@ -18106,7 +18106,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -18149,7 +18149,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18161,7 +18161,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BodyType", "inheritance": "", "abstract": false, @@ -18173,7 +18173,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfRecipientsType", "inheritance": "", "abstract": false, @@ -18185,7 +18185,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfRecipientsType", "inheritance": "", "abstract": false, @@ -18197,7 +18197,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfRecipientsType", "inheritance": "", "abstract": false, @@ -18209,7 +18209,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -18221,7 +18221,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -18233,7 +18233,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SingleRecipientType", "inheritance": "", "abstract": false, @@ -18245,7 +18245,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -18288,7 +18288,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BodyType", "inheritance": "", "abstract": false, @@ -18366,7 +18366,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -18535,7 +18535,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MimeContentType", "inheritance": "", "abstract": false, @@ -18547,7 +18547,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -18559,7 +18559,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FolderIdType", "inheritance": "", "abstract": false, @@ -18571,7 +18571,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemClassType", "inheritance": "", "abstract": false, @@ -18583,7 +18583,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18595,7 +18595,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SensitivityChoicesType", "inheritance": "", "abstract": false, @@ -18607,7 +18607,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BodyType", "inheritance": "", "abstract": false, @@ -18619,7 +18619,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfAttachmentsType", "inheritance": "", "abstract": false, @@ -18631,7 +18631,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -18643,7 +18643,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -18655,7 +18655,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -18667,7 +18667,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ImportanceChoicesType", "inheritance": "", "abstract": false, @@ -18679,7 +18679,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18691,7 +18691,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -18703,7 +18703,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -18715,7 +18715,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -18727,7 +18727,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -18739,7 +18739,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -18751,7 +18751,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfInternetHeadersType", "inheritance": "", "abstract": false, @@ -18763,7 +18763,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -18775,7 +18775,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -18787,7 +18787,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfResponseObjectsType", "inheritance": "", "abstract": false, @@ -18799,7 +18799,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -18811,7 +18811,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -18823,7 +18823,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -18835,7 +18835,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ReminderMinutesBeforeStartType", "inheritance": "", "abstract": false, @@ -18847,7 +18847,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18859,7 +18859,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18871,7 +18871,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -18883,7 +18883,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ExtendedPropertyType", "inheritance": "", "abstract": false, @@ -18896,7 +18896,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "language", "inheritance": "", "abstract": false, @@ -18908,7 +18908,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EffectiveRightsType", "inheritance": "", "abstract": false, @@ -18920,7 +18920,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18932,7 +18932,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -18944,7 +18944,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -18956,7 +18956,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18968,7 +18968,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18980,7 +18980,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -18992,7 +18992,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BodyType", "inheritance": "", "abstract": false, @@ -19004,7 +19004,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FlagType", "inheritance": "", "abstract": false, @@ -19016,7 +19016,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "base64Binary", "inheritance": "", "abstract": false, @@ -19028,7 +19028,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "base64Binary", "inheritance": "", "abstract": false, @@ -19040,7 +19040,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BodyType", "inheritance": "", "abstract": false, @@ -19052,7 +19052,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EntityExtractionResultType", "inheritance": "", "abstract": false, @@ -19064,7 +19064,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RetentionTagType", "inheritance": "", "abstract": false, @@ -19076,7 +19076,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RetentionTagType", "inheritance": "", "abstract": false, @@ -19088,7 +19088,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -19100,7 +19100,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19112,7 +19112,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RightsManagementLicenseDataType", "inheritance": "", "abstract": false, @@ -19124,7 +19124,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfPredictedActionReasonType", "inheritance": "", "abstract": false, @@ -19136,7 +19136,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -19148,7 +19148,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -19160,7 +19160,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -19172,7 +19172,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BodyType", "inheritance": "", "abstract": false, @@ -19184,7 +19184,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IconIndexType", "inheritance": "", "abstract": false, @@ -19196,7 +19196,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "base64Binary", "inheritance": "", "abstract": false, @@ -19208,7 +19208,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -19220,7 +19220,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -19232,7 +19232,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfRecipientsType", "inheritance": "", "abstract": false, @@ -19244,7 +19244,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -19256,7 +19256,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -19325,7 +19325,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -19337,7 +19337,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -19349,7 +19349,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -19563,7 +19563,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailPositionType", "inheritance": "", "abstract": false, @@ -19590,7 +19590,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19617,7 +19617,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressEntityType", "inheritance": "", "abstract": false, @@ -19644,7 +19644,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19670,7 +19670,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressEntityType", "inheritance": "", "abstract": false, @@ -19697,7 +19697,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19723,7 +19723,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UrlEntityType", "inheritance": "", "abstract": false, @@ -19750,7 +19750,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19802,7 +19802,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfEmailUsersType", "inheritance": "", "abstract": false, @@ -19815,7 +19815,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19827,7 +19827,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19839,7 +19839,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19851,7 +19851,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -19863,7 +19863,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -19915,7 +19915,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ContactType", "inheritance": "", "abstract": false, @@ -19942,7 +19942,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19954,7 +19954,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19966,7 +19966,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPhonesType", "inheritance": "", "abstract": false, @@ -19979,7 +19979,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfUrlsType", "inheritance": "", "abstract": false, @@ -19992,7 +19992,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfExtractedEmailAddresses", "inheritance": "", "abstract": false, @@ -20005,7 +20005,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfAddressesType", "inheritance": "", "abstract": false, @@ -20018,7 +20018,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20044,7 +20044,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20071,7 +20071,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PhoneType", "inheritance": "", "abstract": false, @@ -20098,7 +20098,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20110,7 +20110,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20122,7 +20122,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20148,7 +20148,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PhoneEntityType", "inheritance": "", "abstract": false, @@ -20175,7 +20175,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20187,7 +20187,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20199,7 +20199,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20271,7 +20271,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailUserType", "inheritance": "", "abstract": false, @@ -20298,7 +20298,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20310,7 +20310,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20336,7 +20336,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20348,7 +20348,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfEmailUsersType", "inheritance": "", "abstract": false, @@ -20375,7 +20375,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20402,7 +20402,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20414,7 +20414,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20426,7 +20426,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20438,7 +20438,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20450,7 +20450,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20462,7 +20462,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20474,7 +20474,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20486,7 +20486,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20498,7 +20498,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20510,7 +20510,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20522,7 +20522,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20534,7 +20534,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20546,7 +20546,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20558,7 +20558,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20570,7 +20570,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20582,7 +20582,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20594,7 +20594,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20606,7 +20606,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20618,7 +20618,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20630,7 +20630,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20642,7 +20642,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20668,7 +20668,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ParcelDeliveryEntityType", "inheritance": "", "abstract": false, @@ -20695,7 +20695,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20707,7 +20707,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20719,7 +20719,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20731,7 +20731,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20743,7 +20743,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20755,7 +20755,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20781,7 +20781,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FlightEntityType", "inheritance": "", "abstract": false, @@ -20808,7 +20808,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20820,7 +20820,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20832,7 +20832,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20844,7 +20844,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20856,7 +20856,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20868,7 +20868,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfFlightsType", "inheritance": "", "abstract": false, @@ -20895,7 +20895,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FlightReservationEntityType", "inheritance": "", "abstract": false, @@ -20922,7 +20922,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20949,7 +20949,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SenderAddInEntityType", "inheritance": "", "abstract": false, @@ -20976,7 +20976,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfAddressEntitiesType", "inheritance": "", "abstract": false, @@ -20989,7 +20989,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfMeetingSuggestionsType", "inheritance": "", "abstract": false, @@ -21002,7 +21002,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfTaskSuggestionsType", "inheritance": "", "abstract": false, @@ -21015,7 +21015,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfEmailAddressEntitiesType", "inheritance": "", "abstract": false, @@ -21028,7 +21028,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfContactsType", "inheritance": "", "abstract": false, @@ -21041,7 +21041,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfUrlEntitiesType", "inheritance": "", "abstract": false, @@ -21054,7 +21054,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPhoneEntitiesType", "inheritance": "", "abstract": false, @@ -21067,7 +21067,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfParcelDeliveryEntitiesType", "inheritance": "", "abstract": false, @@ -21080,7 +21080,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfFlightReservationsType", "inheritance": "", "abstract": false, @@ -21093,7 +21093,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfSenderAddInsType", "inheritance": "", "abstract": false, @@ -21120,7 +21120,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -21132,7 +21132,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21144,7 +21144,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21156,7 +21156,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21168,7 +21168,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -21180,7 +21180,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -21192,7 +21192,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -21204,7 +21204,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -21216,7 +21216,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -21228,7 +21228,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -21240,7 +21240,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -21252,7 +21252,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -21264,7 +21264,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -21276,7 +21276,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -21288,7 +21288,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21300,7 +21300,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21438,7 +21438,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TargetFolderIdType", "inheritance": "", "abstract": false, @@ -21451,7 +21451,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -21464,7 +21464,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -21477,7 +21477,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TargetFolderIdType", "inheritance": "", "abstract": false, @@ -21490,7 +21490,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -21503,7 +21503,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -21516,7 +21516,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -21529,7 +21529,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DisposalType", "inheritance": "", "abstract": false, @@ -21542,7 +21542,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RetentionType", "inheritance": "", "abstract": false, @@ -21555,7 +21555,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21568,7 +21568,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FlagType", "inheritance": "", "abstract": false, @@ -21581,7 +21581,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -21634,7 +21634,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -21646,7 +21646,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21658,7 +21658,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -21670,7 +21670,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -21682,7 +21682,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -21694,7 +21694,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -21706,7 +21706,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -21718,7 +21718,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -21730,7 +21730,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -21742,7 +21742,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -21754,7 +21754,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -21766,7 +21766,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -21778,7 +21778,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FlagStatusType", "inheritance": "", "abstract": false, @@ -21790,7 +21790,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FlagStatusType", "inheritance": "", "abstract": false, @@ -21802,7 +21802,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -21814,7 +21814,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -21826,7 +21826,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -21838,7 +21838,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -21850,7 +21850,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -21862,7 +21862,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -21874,7 +21874,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -21886,7 +21886,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -21898,7 +21898,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfItemClassType", "inheritance": "", "abstract": false, @@ -21910,7 +21910,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfItemClassType", "inheritance": "", "abstract": false, @@ -21922,7 +21922,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ImportanceChoicesType", "inheritance": "", "abstract": false, @@ -21934,7 +21934,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ImportanceChoicesType", "inheritance": "", "abstract": false, @@ -21946,7 +21946,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfBaseItemIdsType", "inheritance": "", "abstract": false, @@ -21958,7 +21958,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfBaseItemIdsType", "inheritance": "", "abstract": false, @@ -21970,7 +21970,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -21982,7 +21982,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "base64Binary", "inheritance": "", "abstract": false, @@ -21994,7 +21994,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22006,7 +22006,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MailboxSearchLocationType", "inheritance": "", "abstract": false, @@ -22018,7 +22018,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IconIndexType", "inheritance": "", "abstract": false, @@ -22030,7 +22030,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IconIndexType", "inheritance": "", "abstract": false, @@ -22042,7 +22042,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfBaseItemIdsType", "inheritance": "", "abstract": false, @@ -22054,7 +22054,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -22066,7 +22066,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -22078,7 +22078,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -22090,7 +22090,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -22102,7 +22102,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -22211,7 +22211,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "base64Binary", "inheritance": "", "abstract": false, @@ -22268,7 +22268,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22281,7 +22281,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22294,7 +22294,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfAllItemsType", "inheritance": "", "abstract": false, @@ -22364,7 +22364,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "base64Binary", "inheritance": "", "abstract": false, @@ -22377,7 +22377,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfConversationNodesType", "inheritance": "", "abstract": false, @@ -22450,7 +22450,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "HighlightTermType", "inheritance": "", "abstract": false, @@ -22516,7 +22516,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -22529,7 +22529,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -22542,7 +22542,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -22555,7 +22555,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FolderIdType", "inheritance": "", "abstract": false, @@ -22943,7 +22943,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22956,7 +22956,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22969,7 +22969,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22982,7 +22982,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22995,7 +22995,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23008,7 +23008,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23021,7 +23021,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23034,7 +23034,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "double", "inheritance": "", "abstract": false, @@ -23047,7 +23047,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "double", "inheritance": "", "abstract": false, @@ -23060,7 +23060,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "double", "inheritance": "", "abstract": false, @@ -23073,7 +23073,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "double", "inheritance": "", "abstract": false, @@ -23086,7 +23086,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "double", "inheritance": "", "abstract": false, @@ -23099,7 +23099,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23112,7 +23112,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23125,7 +23125,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LocationSourceType", "inheritance": "", "abstract": false, @@ -23232,7 +23232,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StringAttributedValueType", "inheritance": "", "abstract": false, @@ -23259,7 +23259,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StringArrayAttributedValueType", "inheritance": "", "abstract": false, @@ -23286,7 +23286,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BodyContentAttributedValueType", "inheritance": "", "abstract": false, @@ -23313,7 +23313,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressAttributedValueType", "inheritance": "", "abstract": false, @@ -23340,7 +23340,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PhoneNumberAttributedValueType", "inheritance": "", "abstract": false, @@ -23367,7 +23367,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PostalAddressAttributedValueType", "inheritance": "", "abstract": false, @@ -23394,7 +23394,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ExtendedPropertyAttributedValueType", "inheritance": "", "abstract": false, @@ -23421,7 +23421,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -23434,7 +23434,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -23447,7 +23447,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -23474,7 +23474,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23487,7 +23487,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -23514,7 +23514,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23541,7 +23541,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "double", "inheritance": "", "abstract": false, @@ -23554,7 +23554,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23567,7 +23567,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23580,7 +23580,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23593,7 +23593,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23606,7 +23606,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23619,7 +23619,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23632,7 +23632,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23645,7 +23645,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23658,7 +23658,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23685,7 +23685,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23698,7 +23698,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23711,7 +23711,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23724,7 +23724,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23737,7 +23737,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23750,7 +23750,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -23763,7 +23763,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UserProfilePicture", "inheritance": "", "abstract": false, @@ -23776,7 +23776,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23803,7 +23803,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -23816,7 +23816,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -23829,7 +23829,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23842,7 +23842,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23869,7 +23869,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23882,7 +23882,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23895,7 +23895,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23908,7 +23908,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23921,7 +23921,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23934,7 +23934,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23947,7 +23947,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23960,7 +23960,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -23973,7 +23973,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -24013,7 +24013,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24026,7 +24026,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24039,7 +24039,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24052,7 +24052,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24065,7 +24065,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24078,7 +24078,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24091,7 +24091,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24104,7 +24104,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24131,7 +24131,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24144,7 +24144,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24157,7 +24157,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24170,7 +24170,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24197,7 +24197,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24210,7 +24210,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24223,7 +24223,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -24236,7 +24236,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -24263,7 +24263,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24276,7 +24276,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -24303,7 +24303,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24316,7 +24316,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24329,7 +24329,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -24342,7 +24342,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -24355,7 +24355,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24368,7 +24368,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ProfileInsightValue", "inheritance": "", "abstract": false, @@ -24381,7 +24381,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfProfileInsightValue", "inheritance": "", "abstract": false, @@ -24408,7 +24408,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24421,7 +24421,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24434,7 +24434,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24447,7 +24447,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -24460,7 +24460,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24473,7 +24473,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ProfileInsightValue", "inheritance": "", "abstract": false, @@ -24486,7 +24486,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -24513,7 +24513,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "InsightValue", "inheritance": "", "abstract": false, @@ -24540,7 +24540,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SkillInsightValue", "inheritance": "", "abstract": false, @@ -24567,7 +24567,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ProfileInsightValue", "inheritance": "", "abstract": false, @@ -24594,7 +24594,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "JobInsightValue", "inheritance": "", "abstract": false, @@ -24621,7 +24621,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CompanyInsightValue", "inheritance": "", "abstract": false, @@ -24661,7 +24661,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "InsightValue", "inheritance": "", "abstract": false, @@ -24688,7 +24688,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfInsightValue", "inheritance": "", "abstract": false, @@ -24715,7 +24715,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24728,7 +24728,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "double", "inheritance": "", "abstract": false, @@ -24741,7 +24741,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "InsightContent", "inheritance": "", "abstract": false, @@ -24754,7 +24754,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24767,7 +24767,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfInsightValue", "inheritance": "", "abstract": false, @@ -24780,7 +24780,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -24847,7 +24847,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ComputedInsightValueProperty", "inheritance": "", "abstract": false, @@ -24874,7 +24874,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfComputedInsightValueProperty", "inheritance": "", "abstract": false, @@ -24901,7 +24901,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Insight", "inheritance": "", "abstract": false, @@ -24938,7 +24938,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfPathsToElementType", "inheritance": "", "abstract": false, @@ -24964,7 +24964,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24977,7 +24977,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24990,7 +24990,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25003,7 +25003,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25016,7 +25016,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25029,7 +25029,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25042,7 +25042,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25055,7 +25055,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25068,7 +25068,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25081,7 +25081,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfSkillInsightValue", "inheritance": "", "abstract": false, @@ -25094,7 +25094,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25107,7 +25107,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfProfileInsightValue", "inheritance": "", "abstract": false, @@ -25120,7 +25120,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfProfileInsightValue", "inheritance": "", "abstract": false, @@ -25133,7 +25133,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfProfileInsightValue", "inheritance": "", "abstract": false, @@ -25146,7 +25146,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25159,7 +25159,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfJobInsightValue", "inheritance": "", "abstract": false, @@ -25172,7 +25172,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25185,7 +25185,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25198,7 +25198,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25211,7 +25211,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfCompanyInsightValue", "inheritance": "", "abstract": false, @@ -25224,7 +25224,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25237,7 +25237,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25250,7 +25250,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfProfileInsightValue", "inheritance": "", "abstract": false, @@ -25263,7 +25263,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25276,7 +25276,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ProfileInsightValue", "inheritance": "", "abstract": false, @@ -25289,7 +25289,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfInsight", "inheritance": "", "abstract": false, @@ -25302,7 +25302,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UserProfilePicture", "inheritance": "", "abstract": false, @@ -25402,7 +25402,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -25415,7 +25415,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25482,7 +25482,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25495,7 +25495,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25508,7 +25508,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -25521,7 +25521,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfBodyContentAttributedValuesType", "inheritance": "", "abstract": false, @@ -25533,7 +25533,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25546,7 +25546,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25559,7 +25559,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25572,7 +25572,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25585,7 +25585,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25598,7 +25598,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25611,7 +25611,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25624,7 +25624,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25637,7 +25637,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25650,7 +25650,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25663,7 +25663,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25676,7 +25676,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25689,7 +25689,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25702,7 +25702,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25715,7 +25715,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25728,7 +25728,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25741,7 +25741,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25754,7 +25754,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25767,7 +25767,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25780,7 +25780,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25793,7 +25793,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25806,7 +25806,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25819,7 +25819,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25832,7 +25832,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25845,7 +25845,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25858,7 +25858,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressType", "inheritance": "", "abstract": false, @@ -25871,7 +25871,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfEmailAddressesType", "inheritance": "", "abstract": false, @@ -25884,7 +25884,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PersonaPhoneNumberType", "inheritance": "", "abstract": false, @@ -25897,7 +25897,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25910,7 +25910,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25923,7 +25923,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25936,7 +25936,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -25949,7 +25949,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "double", "inheritance": "", "abstract": false, @@ -25962,7 +25962,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfFolderIdType", "inheritance": "", "abstract": false, @@ -25975,7 +25975,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPersonaAttributionsType", "inheritance": "", "abstract": false, @@ -25988,7 +25988,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -26000,7 +26000,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -26012,7 +26012,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -26024,7 +26024,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -26036,7 +26036,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -26048,7 +26048,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -26060,7 +26060,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -26072,7 +26072,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -26084,7 +26084,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -26096,7 +26096,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -26108,7 +26108,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -26120,7 +26120,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -26132,7 +26132,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -26144,7 +26144,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPhoneNumberAttributedValuesType", "inheritance": "", "abstract": false, @@ -26156,7 +26156,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPhoneNumberAttributedValuesType", "inheritance": "", "abstract": false, @@ -26168,7 +26168,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPhoneNumberAttributedValuesType", "inheritance": "", "abstract": false, @@ -26180,7 +26180,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPhoneNumberAttributedValuesType", "inheritance": "", "abstract": false, @@ -26192,7 +26192,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPhoneNumberAttributedValuesType", "inheritance": "", "abstract": false, @@ -26204,7 +26204,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPhoneNumberAttributedValuesType", "inheritance": "", "abstract": false, @@ -26216,7 +26216,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPhoneNumberAttributedValuesType", "inheritance": "", "abstract": false, @@ -26228,7 +26228,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPhoneNumberAttributedValuesType", "inheritance": "", "abstract": false, @@ -26240,7 +26240,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPhoneNumberAttributedValuesType", "inheritance": "", "abstract": false, @@ -26252,7 +26252,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPhoneNumberAttributedValuesType", "inheritance": "", "abstract": false, @@ -26264,7 +26264,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPhoneNumberAttributedValuesType", "inheritance": "", "abstract": false, @@ -26276,7 +26276,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPhoneNumberAttributedValuesType", "inheritance": "", "abstract": false, @@ -26288,7 +26288,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPhoneNumberAttributedValuesType", "inheritance": "", "abstract": false, @@ -26300,7 +26300,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPhoneNumberAttributedValuesType", "inheritance": "", "abstract": false, @@ -26312,7 +26312,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPhoneNumberAttributedValuesType", "inheritance": "", "abstract": false, @@ -26324,7 +26324,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPhoneNumberAttributedValuesType", "inheritance": "", "abstract": false, @@ -26336,7 +26336,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPhoneNumberAttributedValuesType", "inheritance": "", "abstract": false, @@ -26348,7 +26348,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPhoneNumberAttributedValuesType", "inheritance": "", "abstract": false, @@ -26360,7 +26360,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPhoneNumberAttributedValuesType", "inheritance": "", "abstract": false, @@ -26372,7 +26372,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfEmailAddressAttributedValuesType", "inheritance": "", "abstract": false, @@ -26385,7 +26385,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfEmailAddressAttributedValuesType", "inheritance": "", "abstract": false, @@ -26398,7 +26398,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfEmailAddressAttributedValuesType", "inheritance": "", "abstract": false, @@ -26411,7 +26411,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -26423,7 +26423,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -26435,7 +26435,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -26447,7 +26447,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -26459,7 +26459,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -26471,7 +26471,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -26483,7 +26483,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPostalAddressAttributedValuesType", "inheritance": "", "abstract": false, @@ -26496,7 +26496,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPostalAddressAttributedValuesType", "inheritance": "", "abstract": false, @@ -26509,7 +26509,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPostalAddressAttributedValuesType", "inheritance": "", "abstract": false, @@ -26522,7 +26522,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -26534,7 +26534,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -26546,7 +26546,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -26558,7 +26558,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -26570,7 +26570,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -26582,7 +26582,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -26594,7 +26594,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -26606,7 +26606,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringArrayAttributedValuesType", "inheritance": "", "abstract": false, @@ -26618,7 +26618,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -26630,7 +26630,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -26642,7 +26642,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -26654,7 +26654,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -26666,7 +26666,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -26678,7 +26678,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfExtendedPropertyAttributedValueType", "inheritance": "", "abstract": false, @@ -26734,7 +26734,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -26747,7 +26747,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -26826,7 +26826,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -26839,7 +26839,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -26852,7 +26852,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -26865,7 +26865,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -26878,7 +26878,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -26918,7 +26918,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -26931,7 +26931,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -26944,7 +26944,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -26957,7 +26957,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ModernGroupTypeType", "inheritance": "", "abstract": false, @@ -26970,7 +26970,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -26983,7 +26983,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -26996,7 +26996,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27009,7 +27009,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27022,7 +27022,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27035,7 +27035,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27426,7 +27426,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfItemsType", "inheritance": "", "abstract": false, @@ -27439,7 +27439,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfConversationsType", "inheritance": "", "abstract": false, @@ -27452,7 +27452,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfCalendarItemsType", "inheritance": "", "abstract": false, @@ -27713,7 +27713,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -29398,7 +29398,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -29410,7 +29410,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -29514,7 +29514,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -29526,7 +29526,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BodyType", "inheritance": "", "abstract": false, @@ -29538,7 +29538,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -29581,7 +29581,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BodyType", "inheritance": "", "abstract": false, @@ -29839,7 +29839,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SingleRecipientType", "inheritance": "", "abstract": false, @@ -29851,7 +29851,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfRecipientsType", "inheritance": "", "abstract": false, @@ -29863,7 +29863,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfRecipientsType", "inheritance": "", "abstract": false, @@ -29875,7 +29875,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfRecipientsType", "inheritance": "", "abstract": false, @@ -29887,7 +29887,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -29899,7 +29899,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -29911,7 +29911,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "base64Binary", "inheritance": "", "abstract": false, @@ -29923,7 +29923,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -29935,7 +29935,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SingleRecipientType", "inheritance": "", "abstract": false, @@ -29947,7 +29947,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -29959,7 +29959,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -29971,7 +29971,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -29983,7 +29983,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -29995,7 +29995,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfRecipientsType", "inheritance": "", "abstract": false, @@ -30007,7 +30007,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SingleRecipientType", "inheritance": "", "abstract": false, @@ -30019,7 +30019,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SingleRecipientType", "inheritance": "", "abstract": false, @@ -30031,7 +30031,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ApprovalRequestDataType", "inheritance": "", "abstract": false, @@ -30043,7 +30043,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "VotingInformationType", "inheritance": "", "abstract": false, @@ -30055,7 +30055,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ReminderMessageDataType", "inheritance": "", "abstract": false, @@ -30197,7 +30197,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -30209,7 +30209,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -30221,7 +30221,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -30233,7 +30233,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -30245,7 +30245,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -30257,7 +30257,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -30269,7 +30269,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -30281,7 +30281,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TaskDelegateStateType", "inheritance": "", "abstract": false, @@ -30293,7 +30293,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -30305,7 +30305,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -30317,7 +30317,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -30329,7 +30329,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -30341,7 +30341,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -30353,7 +30353,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -30365,7 +30365,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -30377,7 +30377,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -30389,7 +30389,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "double", "inheritance": "", "abstract": false, @@ -30401,7 +30401,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TaskRecurrenceType", "inheritance": "", "abstract": false, @@ -30413,7 +30413,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -30425,7 +30425,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TaskStatusType", "inheritance": "", "abstract": false, @@ -30437,7 +30437,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -30449,7 +30449,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -30475,7 +30475,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "base64Binary", "inheritance": "", "abstract": false, @@ -30487,7 +30487,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -30499,7 +30499,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SingleRecipientType", "inheritance": "", "abstract": false, @@ -30511,7 +30511,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -30523,7 +30523,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -30535,7 +30535,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -30547,7 +30547,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -30559,7 +30559,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SingleRecipientType", "inheritance": "", "abstract": false, @@ -30887,7 +30887,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ContactItemType", "inheritance": "", "abstract": false, @@ -30913,7 +30913,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ResolutionType", "inheritance": "", "abstract": false, @@ -31005,7 +31005,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressType", "inheritance": "", "abstract": false, @@ -31672,7 +31672,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ResponseTypeType", "inheritance": "", "abstract": false, @@ -31684,7 +31684,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -31696,7 +31696,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -31708,7 +31708,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -31848,7 +31848,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfOccurrenceRangesType", "inheritance": "", "abstract": false, @@ -32481,7 +32481,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DayOfWeekType", "inheritance": "", "abstract": false, @@ -32592,7 +32592,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -32604,7 +32604,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PersonaPostalAddressType", "inheritance": "", "abstract": false, @@ -32998,7 +32998,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfTransitionsGroupsType", "inheritance": "", "abstract": false, @@ -33010,7 +33010,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfTransitionsType", "inheritance": "", "abstract": false, @@ -33652,7 +33652,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -33664,7 +33664,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -33676,7 +33676,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -33688,7 +33688,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -33700,7 +33700,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -33712,7 +33712,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -33724,7 +33724,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -33736,7 +33736,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LegacyFreeBusyType", "inheritance": "", "abstract": false, @@ -33748,7 +33748,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -33760,7 +33760,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -33772,7 +33772,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -33784,7 +33784,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -33796,7 +33796,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -33808,7 +33808,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -33820,7 +33820,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -33832,7 +33832,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CalendarItemTypeType", "inheritance": "", "abstract": false, @@ -33844,7 +33844,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ResponseTypeType", "inheritance": "", "abstract": false, @@ -33856,7 +33856,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SingleRecipientType", "inheritance": "", "abstract": false, @@ -33868,7 +33868,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfAttendeesType", "inheritance": "", "abstract": false, @@ -33880,7 +33880,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfAttendeesType", "inheritance": "", "abstract": false, @@ -33892,7 +33892,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfAttendeesType", "inheritance": "", "abstract": false, @@ -33904,7 +33904,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfInboxReminderType", "inheritance": "", "abstract": false, @@ -33916,7 +33916,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -33928,7 +33928,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -33940,7 +33940,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfAllItemsType", "inheritance": "", "abstract": false, @@ -33952,7 +33952,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfAllItemsType", "inheritance": "", "abstract": false, @@ -33964,7 +33964,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -33976,7 +33976,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -33988,7 +33988,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -34000,7 +34000,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -34012,7 +34012,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -34024,7 +34024,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RecurrenceType", "inheritance": "", "abstract": false, @@ -34036,7 +34036,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "OccurrenceInfoType", "inheritance": "", "abstract": false, @@ -34048,7 +34048,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "OccurrenceInfoType", "inheritance": "", "abstract": false, @@ -34060,7 +34060,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfOccurrenceInfoType", "inheritance": "", "abstract": false, @@ -34072,7 +34072,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfDeletedOccurrencesType", "inheritance": "", "abstract": false, @@ -34084,7 +34084,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TimeZoneType", "inheritance": "", "abstract": false, @@ -34096,7 +34096,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TimeZoneDefinitionType", "inheritance": "", "abstract": false, @@ -34109,7 +34109,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TimeZoneDefinitionType", "inheritance": "", "abstract": false, @@ -34122,7 +34122,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -34134,7 +34134,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -34146,7 +34146,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -34158,7 +34158,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -34170,7 +34170,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -34182,7 +34182,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EnhancedLocationType", "inheritance": "", "abstract": false, @@ -34194,7 +34194,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -34207,7 +34207,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -34220,7 +34220,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -34233,7 +34233,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -34246,7 +34246,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LegacyFreeBusyType", "inheritance": "", "abstract": false, @@ -34258,7 +34258,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -34271,7 +34271,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "OnlineMeetingSettingsType", "inheritance": "", "abstract": false, @@ -34284,7 +34284,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -34310,7 +34310,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -34322,7 +34322,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -34334,7 +34334,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -34346,7 +34346,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -34358,7 +34358,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ResponseTypeType", "inheritance": "", "abstract": false, @@ -34370,7 +34370,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -34382,7 +34382,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -34394,7 +34394,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -34406,7 +34406,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -34432,7 +34432,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -34444,7 +34444,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -34456,7 +34456,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -34468,7 +34468,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -34480,7 +34480,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -34492,7 +34492,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -34518,7 +34518,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MeetingRequestTypeType", "inheritance": "", "abstract": false, @@ -34530,7 +34530,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LegacyFreeBusyType", "inheritance": "", "abstract": false, @@ -34542,7 +34542,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -34554,7 +34554,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -34566,7 +34566,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -34578,7 +34578,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -34590,7 +34590,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LegacyFreeBusyType", "inheritance": "", "abstract": false, @@ -34602,7 +34602,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -34614,7 +34614,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -34626,7 +34626,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -34638,7 +34638,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -34650,7 +34650,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -34662,7 +34662,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -34674,7 +34674,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CalendarItemTypeType", "inheritance": "", "abstract": false, @@ -34686,7 +34686,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ResponseTypeType", "inheritance": "", "abstract": false, @@ -34698,7 +34698,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SingleRecipientType", "inheritance": "", "abstract": false, @@ -34710,7 +34710,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfAttendeesType", "inheritance": "", "abstract": false, @@ -34722,7 +34722,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfAttendeesType", "inheritance": "", "abstract": false, @@ -34734,7 +34734,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfAttendeesType", "inheritance": "", "abstract": false, @@ -34746,7 +34746,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -34758,7 +34758,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -34770,7 +34770,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfAllItemsType", "inheritance": "", "abstract": false, @@ -34782,7 +34782,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfAllItemsType", "inheritance": "", "abstract": false, @@ -34794,7 +34794,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -34806,7 +34806,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -34818,7 +34818,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -34830,7 +34830,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -34842,7 +34842,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -34854,7 +34854,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RecurrenceType", "inheritance": "", "abstract": false, @@ -34866,7 +34866,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "OccurrenceInfoType", "inheritance": "", "abstract": false, @@ -34878,7 +34878,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "OccurrenceInfoType", "inheritance": "", "abstract": false, @@ -34890,7 +34890,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfOccurrenceInfoType", "inheritance": "", "abstract": false, @@ -34902,7 +34902,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfDeletedOccurrencesType", "inheritance": "", "abstract": false, @@ -34914,7 +34914,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TimeZoneType", "inheritance": "", "abstract": false, @@ -34926,7 +34926,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TimeZoneDefinitionType", "inheritance": "", "abstract": false, @@ -34939,7 +34939,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TimeZoneDefinitionType", "inheritance": "", "abstract": false, @@ -34952,7 +34952,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -34964,7 +34964,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -34976,7 +34976,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -34988,7 +34988,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35000,7 +35000,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35012,7 +35012,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EnhancedLocationType", "inheritance": "", "abstract": false, @@ -35024,7 +35024,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ChangeHighlightsType", "inheritance": "", "abstract": false, @@ -35036,7 +35036,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -35049,7 +35049,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -35062,7 +35062,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35075,7 +35075,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35102,7 +35102,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -35114,7 +35114,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -35126,7 +35126,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35138,7 +35138,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RecurrenceType", "inheritance": "", "abstract": false, @@ -35150,7 +35150,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35162,7 +35162,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -35174,7 +35174,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -35186,7 +35186,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EnhancedLocationType", "inheritance": "", "abstract": false, @@ -35212,7 +35212,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -35224,7 +35224,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -35236,7 +35236,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35248,7 +35248,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RecurrenceType", "inheritance": "", "abstract": false, @@ -35260,7 +35260,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35272,7 +35272,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EnhancedLocationType", "inheritance": "", "abstract": false, @@ -36110,7 +36110,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36122,7 +36122,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36134,7 +36134,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36146,7 +36146,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36158,7 +36158,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36170,7 +36170,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36182,7 +36182,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36194,7 +36194,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36206,7 +36206,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36218,7 +36218,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36292,7 +36292,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36304,7 +36304,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36354,7 +36354,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -36366,7 +36366,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -36500,7 +36500,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36512,7 +36512,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36524,7 +36524,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36536,7 +36536,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36548,7 +36548,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36780,7 +36780,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MemberType", "inheritance": "", "abstract": false, @@ -36807,7 +36807,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressType", "inheritance": "", "abstract": false, @@ -36819,7 +36819,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MemberStatusType", "inheritance": "", "abstract": false, @@ -36857,7 +36857,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36869,7 +36869,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RoleMemberTypeType", "inheritance": "", "abstract": false, @@ -36881,7 +36881,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36907,7 +36907,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -36919,7 +36919,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36931,7 +36931,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36943,7 +36943,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36955,7 +36955,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -36967,7 +36967,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -36979,7 +36979,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36991,7 +36991,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37003,7 +37003,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37015,7 +37015,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37027,7 +37027,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37039,7 +37039,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37051,7 +37051,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37063,7 +37063,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37075,7 +37075,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -37087,7 +37087,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37099,7 +37099,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -37111,7 +37111,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37123,7 +37123,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -37135,7 +37135,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -37147,7 +37147,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37159,7 +37159,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37171,7 +37171,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37183,7 +37183,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -37195,7 +37195,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -37207,7 +37207,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -37219,7 +37219,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -37231,7 +37231,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37243,7 +37243,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "base64Binary", "inheritance": "", "abstract": false, @@ -37255,7 +37255,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37267,7 +37267,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -37293,7 +37293,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37305,7 +37305,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "GuidType", "inheritance": "", "abstract": false, @@ -37317,7 +37317,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfAbchPersonContactHandlesType", "inheritance": "", "abstract": false, @@ -37329,7 +37329,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -37341,7 +37341,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37353,7 +37353,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37365,7 +37365,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -37377,7 +37377,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -37403,7 +37403,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AbchPersonContactHandle", "inheritance": "", "abstract": false, @@ -37456,7 +37456,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37483,7 +37483,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "GuidType", "inheritance": "", "abstract": false, @@ -37495,7 +37495,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfItemIdsType", "inheritance": "", "abstract": false, @@ -37507,7 +37507,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37519,7 +37519,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37531,7 +37531,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37557,7 +37557,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37569,7 +37569,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FileAsMappingType", "inheritance": "", "abstract": false, @@ -37581,7 +37581,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37593,7 +37593,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37605,7 +37605,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37617,7 +37617,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37629,7 +37629,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37641,7 +37641,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CompleteNameType", "inheritance": "", "abstract": false, @@ -37653,7 +37653,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37665,7 +37665,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressDictionaryType", "inheritance": "", "abstract": false, @@ -37677,7 +37677,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AbchEmailAddressDictionaryType", "inheritance": "", "abstract": false, @@ -37689,7 +37689,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PhysicalAddressDictionaryType", "inheritance": "", "abstract": false, @@ -37701,7 +37701,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PhoneNumberDictionaryType", "inheritance": "", "abstract": false, @@ -37713,7 +37713,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37725,7 +37725,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -37737,7 +37737,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "anyURI", "inheritance": "", "abstract": false, @@ -37749,7 +37749,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -37761,7 +37761,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -37773,7 +37773,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ContactSourceType", "inheritance": "", "abstract": false, @@ -37785,7 +37785,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37797,7 +37797,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37809,7 +37809,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ImAddressDictionaryType", "inheritance": "", "abstract": false, @@ -37821,7 +37821,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37833,7 +37833,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37845,7 +37845,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37857,7 +37857,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37869,7 +37869,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PhysicalAddressIndexType", "inheritance": "", "abstract": false, @@ -37881,7 +37881,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37893,7 +37893,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37905,7 +37905,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37917,7 +37917,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -37929,7 +37929,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -37941,7 +37941,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37953,7 +37953,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37965,7 +37965,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37977,7 +37977,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37989,7 +37989,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38001,7 +38001,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "base64Binary", "inheritance": "", "abstract": false, @@ -38013,7 +38013,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfBinaryType", "inheritance": "", "abstract": false, @@ -38025,7 +38025,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfBinaryType", "inheritance": "", "abstract": false, @@ -38037,7 +38037,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38049,7 +38049,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SingleRecipientType", "inheritance": "", "abstract": false, @@ -38061,7 +38061,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfRecipientsType", "inheritance": "", "abstract": false, @@ -38073,7 +38073,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38085,7 +38085,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -38097,7 +38097,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -38109,7 +38109,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38121,7 +38121,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -38133,7 +38133,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38145,7 +38145,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38157,7 +38157,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -38169,7 +38169,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38181,7 +38181,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -38193,7 +38193,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -38205,7 +38205,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38217,7 +38217,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -38229,7 +38229,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38241,7 +38241,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ContactUrlDictionaryType", "inheritance": "", "abstract": false, @@ -38253,7 +38253,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -38265,7 +38265,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38277,7 +38277,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38289,7 +38289,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38301,7 +38301,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38313,7 +38313,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38325,7 +38325,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38337,7 +38337,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -38349,7 +38349,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -38361,7 +38361,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -38373,7 +38373,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -38385,7 +38385,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38397,7 +38397,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -38409,7 +38409,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -38421,7 +38421,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38433,7 +38433,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "GuidType", "inheritance": "", "abstract": false, @@ -38445,7 +38445,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -38457,7 +38457,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38469,7 +38469,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38481,7 +38481,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -38493,7 +38493,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38505,7 +38505,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38517,7 +38517,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -38529,7 +38529,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38541,7 +38541,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38567,7 +38567,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "base64Binary", "inheritance": "", "abstract": false, @@ -38594,7 +38594,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "GuidType", "inheritance": "", "abstract": false, @@ -38606,7 +38606,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -38618,7 +38618,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -38644,7 +38644,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "XrmOrganizationItemType", "inheritance": "", "abstract": false, @@ -38671,7 +38671,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38683,7 +38683,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38695,7 +38695,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ContactSourceType", "inheritance": "", "abstract": false, @@ -38707,7 +38707,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MembersListType", "inheritance": "", "abstract": false, @@ -39132,7 +39132,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "GroupedItemsType", "inheritance": "", "abstract": false, @@ -39879,7 +39879,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WatermarkType", "inheritance": "", "abstract": false, @@ -39973,7 +39973,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -40068,7 +40068,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WatermarkType", "inheritance": "", "abstract": false, @@ -40080,7 +40080,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -40424,7 +40424,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfBaseFolderIdsType", "inheritance": "", "abstract": false, @@ -40446,7 +40446,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WatermarkType", "inheritance": "", "abstract": false, @@ -40504,7 +40504,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -40555,7 +40555,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfBaseFolderIdsType", "inheritance": "", "abstract": false, @@ -40660,7 +40660,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NotificationType", "inheritance": "", "abstract": false, @@ -40896,7 +40896,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -41241,7 +41241,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "duration", "inheritance": "", "abstract": false, @@ -41391,7 +41391,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -41403,7 +41403,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -41415,7 +41415,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -41427,7 +41427,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -41440,7 +41440,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UnifiedGroupAccessType", "inheritance": "", "abstract": false, @@ -42206,7 +42206,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -42219,7 +42219,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -42232,7 +42232,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -42363,7 +42363,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CalendarEventDetails", "inheritance": "", "abstract": false, @@ -42390,7 +42390,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CalendarEvent", "inheritance": "", "abstract": false, @@ -42457,7 +42457,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -42483,7 +42483,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -42598,7 +42598,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -42611,7 +42611,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FreeBusyViewType", "inheritance": "", "abstract": false, @@ -42691,7 +42691,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WorkingPeriod", "inheritance": "", "abstract": false, @@ -42783,7 +42783,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -42916,7 +42916,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -42929,7 +42929,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfCalendarEvent", "inheritance": "", "abstract": false, @@ -42942,7 +42942,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WorkingHours", "inheritance": "", "abstract": false, @@ -42995,7 +42995,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -43096,7 +43096,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -43109,7 +43109,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -43122,7 +43122,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -43135,7 +43135,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -43148,7 +43148,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SuggestionQuality", "inheritance": "", "abstract": false, @@ -43174,7 +43174,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -43187,7 +43187,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -43487,7 +43487,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfAttendeeConflictData", "inheritance": "", "abstract": false, @@ -43514,7 +43514,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Suggestion", "inheritance": "", "abstract": false, @@ -43567,7 +43567,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfSuggestion", "inheritance": "", "abstract": false, @@ -43594,7 +43594,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SuggestionDayResult", "inheritance": "", "abstract": false, @@ -43697,7 +43697,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -43763,7 +43763,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Duration", "inheritance": "", "abstract": false, @@ -43776,7 +43776,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ReplyBody", "inheritance": "", "abstract": false, @@ -43789,7 +43789,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ReplyBody", "inheritance": "", "abstract": false, @@ -43856,7 +43856,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -43868,7 +43868,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -43880,7 +43880,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -43892,7 +43892,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -43918,7 +43918,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -43930,7 +43930,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -43942,7 +43942,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -43954,7 +43954,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -43966,7 +43966,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -44030,7 +44030,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -44042,7 +44042,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SendPromptType", "inheritance": "", "abstract": false, @@ -44068,7 +44068,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "VotingOptionDataType", "inheritance": "", "abstract": false, @@ -44095,7 +44095,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfVotingOptionDataType", "inheritance": "", "abstract": false, @@ -44107,7 +44107,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -44415,7 +44415,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -44428,7 +44428,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -44441,7 +44441,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -44454,7 +44454,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DistinguishedUserType", "inheritance": "", "abstract": false, @@ -44467,7 +44467,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -44703,7 +44703,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -44716,7 +44716,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -44729,7 +44729,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -44742,7 +44742,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -44755,7 +44755,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -44768,7 +44768,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PermissionActionType", "inheritance": "", "abstract": false, @@ -44781,7 +44781,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PermissionActionType", "inheritance": "", "abstract": false, @@ -44812,7 +44812,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PermissionReadAccessType", "inheritance": "", "abstract": false, @@ -44856,7 +44856,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CalendarPermissionReadAccessType", "inheritance": "", "abstract": false, @@ -45148,7 +45148,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfUnknownEntriesType", "inheritance": "", "abstract": false, @@ -45188,7 +45188,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfUnknownEntriesType", "inheritance": "", "abstract": false, @@ -45278,7 +45278,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -45418,7 +45418,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DelegatePermissionsType", "inheritance": "", "abstract": false, @@ -45431,7 +45431,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -45444,7 +45444,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -45471,7 +45471,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DelegateFolderPermissionLevelType", "inheritance": "", "abstract": false, @@ -45484,7 +45484,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DelegateFolderPermissionLevelType", "inheritance": "", "abstract": false, @@ -45497,7 +45497,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DelegateFolderPermissionLevelType", "inheritance": "", "abstract": false, @@ -45510,7 +45510,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DelegateFolderPermissionLevelType", "inheritance": "", "abstract": false, @@ -45523,7 +45523,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DelegateFolderPermissionLevelType", "inheritance": "", "abstract": false, @@ -45536,7 +45536,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DelegateFolderPermissionLevelType", "inheritance": "", "abstract": false, @@ -45769,7 +45769,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Duration", "inheritance": "", "abstract": false, @@ -45796,7 +45796,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SmtpDomain", "inheritance": "", "abstract": false, @@ -45887,7 +45887,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "OutOfOfficeMailTip", "inheritance": "", "abstract": false, @@ -45900,7 +45900,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -45913,7 +45913,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -45926,7 +45926,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -45939,7 +45939,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -45952,7 +45952,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -45965,7 +45965,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -45978,7 +45978,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -45991,7 +45991,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -46004,7 +46004,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -46466,7 +46466,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -46645,7 +46645,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -46658,7 +46658,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -47018,7 +47018,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UserConfigurationDictionaryEntryType", "inheritance": "", "abstract": false, @@ -47058,7 +47058,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -47071,7 +47071,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UserConfigurationDictionaryType", "inheritance": "", "abstract": false, @@ -47084,7 +47084,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "base64Binary", "inheritance": "", "abstract": false, @@ -47097,7 +47097,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "base64Binary", "inheritance": "", "abstract": false, @@ -47258,7 +47258,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ProtectionRuleType", "inheritance": "", "abstract": false, @@ -47743,7 +47743,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ProtectionRuleArgumentType", "inheritance": "", "abstract": false, @@ -47943,7 +47943,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressType", "inheritance": "", "abstract": false, @@ -47985,7 +47985,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyStringType", "inheritance": "", "abstract": false, @@ -47997,7 +47997,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyStringType", "inheritance": "", "abstract": false, @@ -48009,7 +48009,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfTrackingPropertiesType", "inheritance": "", "abstract": false, @@ -48135,7 +48135,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -48167,7 +48167,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -48179,7 +48179,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -48191,7 +48191,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyStringType", "inheritance": "", "abstract": false, @@ -48203,7 +48203,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyStringType", "inheritance": "", "abstract": false, @@ -48215,7 +48215,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfTrackingPropertiesType", "inheritance": "", "abstract": false, @@ -48241,7 +48241,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressType", "inheritance": "", "abstract": false, @@ -48253,7 +48253,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressType", "inheritance": "", "abstract": false, @@ -48265,7 +48265,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -48277,7 +48277,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -48289,7 +48289,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfEmailAddressesType", "inheritance": "", "abstract": false, @@ -48311,7 +48311,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfTrackingPropertiesType", "inheritance": "", "abstract": false, @@ -48350,7 +48350,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -48467,7 +48467,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -48480,7 +48480,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -48511,7 +48511,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -48524,7 +48524,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -48661,7 +48661,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -48674,7 +48674,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -48687,7 +48687,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -48700,7 +48700,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -48713,7 +48713,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -48726,7 +48726,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -48739,7 +48739,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -48752,7 +48752,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FlaggedForActionType", "inheritance": "", "abstract": false, @@ -48765,7 +48765,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfEmailAddressesType", "inheritance": "", "abstract": false, @@ -48778,7 +48778,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -48791,7 +48791,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -48804,7 +48804,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ImportanceChoicesType", "inheritance": "", "abstract": false, @@ -48817,7 +48817,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -48830,7 +48830,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -48843,7 +48843,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -48856,7 +48856,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -48869,7 +48869,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -48882,7 +48882,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -48895,7 +48895,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -48908,7 +48908,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -48921,7 +48921,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -48934,7 +48934,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -48947,7 +48947,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -48960,7 +48960,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -48973,7 +48973,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -48986,7 +48986,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -48999,7 +48999,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -49012,7 +49012,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -49025,7 +49025,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfEmailAddressesType", "inheritance": "", "abstract": false, @@ -49038,7 +49038,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -49051,7 +49051,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -49064,7 +49064,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SensitivityChoicesType", "inheritance": "", "abstract": false, @@ -49077,7 +49077,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RulePredicateDateRangeType", "inheritance": "", "abstract": false, @@ -49090,7 +49090,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RulePredicateSizeRangeType", "inheritance": "", "abstract": false, @@ -49121,7 +49121,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -49134,7 +49134,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TargetFolderIdType", "inheritance": "", "abstract": false, @@ -49147,7 +49147,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -49160,7 +49160,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfEmailAddressesType", "inheritance": "", "abstract": false, @@ -49173,7 +49173,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfEmailAddressesType", "inheritance": "", "abstract": false, @@ -49186,7 +49186,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ImportanceChoicesType", "inheritance": "", "abstract": false, @@ -49199,7 +49199,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -49212,7 +49212,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TargetFolderIdType", "inheritance": "", "abstract": false, @@ -49225,7 +49225,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -49238,7 +49238,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfEmailAddressesType", "inheritance": "", "abstract": false, @@ -49251,7 +49251,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfEmailAddressesType", "inheritance": "", "abstract": false, @@ -49264,7 +49264,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -49277,7 +49277,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -49308,7 +49308,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -49360,7 +49360,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -49373,7 +49373,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -49386,7 +49386,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RulePredicatesType", "inheritance": "", "abstract": false, @@ -49399,7 +49399,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RulePredicatesType", "inheritance": "", "abstract": false, @@ -49412,7 +49412,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RuleActionsType", "inheritance": "", "abstract": false, @@ -49443,7 +49443,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RuleType", "inheritance": "", "abstract": false, @@ -51083,7 +51083,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SearchableMailboxType", "inheritance": "", "abstract": false, @@ -51171,7 +51171,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "KeywordStatisticsSearchResultType", "inheritance": "", "abstract": false, @@ -51215,7 +51215,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "KeywordStatisticsSearchResultType", "inheritance": "", "abstract": false, @@ -51290,7 +51290,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ExtendedAttributeType", "inheritance": "", "abstract": false, @@ -51386,7 +51386,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfExtendedAttributesType", "inheritance": "", "abstract": false, @@ -51701,7 +51701,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfExtendedFieldURIsType", "inheritance": "", "abstract": false, @@ -51741,7 +51741,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PreviewItemMailboxType", "inheritance": "", "abstract": false, @@ -51754,7 +51754,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -51767,7 +51767,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemClassType", "inheritance": "", "abstract": false, @@ -51780,7 +51780,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -51793,7 +51793,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -51806,7 +51806,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -51819,7 +51819,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -51832,7 +51832,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfSmtpAddressType", "inheritance": "", "abstract": false, @@ -51845,7 +51845,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfSmtpAddressType", "inheritance": "", "abstract": false, @@ -51858,7 +51858,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfSmtpAddressType", "inheritance": "", "abstract": false, @@ -51871,7 +51871,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -51884,7 +51884,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -51897,7 +51897,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -51910,7 +51910,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -51923,7 +51923,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -51936,7 +51936,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -51949,7 +51949,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ImportanceChoicesType", "inheritance": "", "abstract": false, @@ -51962,7 +51962,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -51975,7 +51975,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -51988,7 +51988,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfExtendedPropertyType", "inheritance": "", "abstract": false, @@ -52019,7 +52019,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SearchPreviewItemType", "inheritance": "", "abstract": false, @@ -52120,7 +52120,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FailedSearchMailboxType", "inheritance": "", "abstract": false, @@ -52223,7 +52223,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfKeywordStatisticsSearchResultsType", "inheritance": "", "abstract": false, @@ -52235,7 +52235,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfSearchPreviewItemsType", "inheritance": "", "abstract": false, @@ -52247,7 +52247,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfFailedSearchMailboxesType", "inheritance": "", "abstract": false, @@ -52259,7 +52259,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfSearchRefinerItemsType", "inheritance": "", "abstract": false, @@ -52271,7 +52271,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfMailboxStatisticsItemsType", "inheritance": "", "abstract": false, @@ -52371,7 +52371,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SearchRefinerItemType", "inheritance": "", "abstract": false, @@ -52433,7 +52433,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -52446,7 +52446,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -52459,7 +52459,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -52472,7 +52472,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -52485,7 +52485,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -52498,7 +52498,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -52511,7 +52511,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -52552,7 +52552,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FileItemContext", "inheritance": "", "abstract": false, @@ -52596,7 +52596,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -52609,7 +52609,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -52622,7 +52622,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SingleRecipientType", "inheritance": "", "abstract": false, @@ -52635,7 +52635,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -52648,7 +52648,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -52661,7 +52661,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -52674,7 +52674,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -52687,7 +52687,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ImportanceChoicesType", "inheritance": "", "abstract": false, @@ -52700,7 +52700,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -52731,7 +52731,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -52744,7 +52744,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -52841,7 +52841,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MailboxStatisticsItemType", "inheritance": "", "abstract": false, @@ -52990,7 +52990,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -53021,7 +53021,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MailboxHoldStatusType", "inheritance": "", "abstract": false, @@ -53062,7 +53062,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -53155,7 +53155,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -53186,7 +53186,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonIndexableItemStatisticType", "inheritance": "", "abstract": false, @@ -53386,7 +53386,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -53399,7 +53399,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -53430,7 +53430,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonIndexableItemDetailType", "inheritance": "", "abstract": false, @@ -53461,7 +53461,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfNonIndexableItemDetailsType", "inheritance": "", "abstract": false, @@ -53473,7 +53473,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfFailedSearchMailboxesType", "inheritance": "", "abstract": false, @@ -53529,7 +53529,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfSearchableMailboxesType", "inheritance": "", "abstract": false, @@ -53542,7 +53542,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -53555,7 +53555,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -53568,7 +53568,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -53599,7 +53599,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DiscoverySearchConfigurationType", "inheritance": "", "abstract": false, @@ -54053,7 +54053,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -54123,7 +54123,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RetentionPolicyTagType", "inheritance": "", "abstract": false, @@ -54298,7 +54298,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -54311,7 +54311,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "base64Binary", "inheritance": "", "abstract": false, @@ -54458,7 +54458,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -54471,7 +54471,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -54522,7 +54522,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ClientExtensionType", "inheritance": "", "abstract": false, @@ -54587,7 +54587,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ClientExtensionType", "inheritance": "", "abstract": false, @@ -54723,7 +54723,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -54735,7 +54735,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfItemIdsType", "inheritance": "", "abstract": false, @@ -54747,7 +54747,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfExtendedPropertyType", "inheritance": "", "abstract": false, @@ -54759,7 +54759,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -54819,7 +54819,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfImGroupType", "inheritance": "", "abstract": false, @@ -54831,7 +54831,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPeopleType", "inheritance": "", "abstract": false, @@ -54956,7 +54956,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -54969,7 +54969,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -54982,7 +54982,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -54995,7 +54995,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -55008,7 +55008,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "GuidType", "inheritance": "", "abstract": false, @@ -55021,7 +55021,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -55047,7 +55047,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -55060,7 +55060,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -55086,7 +55086,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -55099,7 +55099,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -55112,7 +55112,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -55125,7 +55125,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -55138,7 +55138,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -55151,7 +55151,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -55164,7 +55164,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -55177,7 +55177,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -55190,7 +55190,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -55203,7 +55203,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -55216,7 +55216,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -55229,7 +55229,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -55242,7 +55242,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AudioQualityType", "inheritance": "", "abstract": false, @@ -55399,7 +55399,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -55556,7 +55556,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UMReportAudioMetricsAverageCountersType", "inheritance": "", "abstract": false, @@ -55583,7 +55583,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AudioMetricsAverageType", "inheritance": "", "abstract": false, @@ -55596,7 +55596,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AudioMetricsAverageType", "inheritance": "", "abstract": false, @@ -55609,7 +55609,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AudioMetricsAverageType", "inheritance": "", "abstract": false, @@ -55622,7 +55622,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AudioMetricsAverageType", "inheritance": "", "abstract": false, @@ -55635,7 +55635,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AudioMetricsAverageType", "inheritance": "", "abstract": false, @@ -55648,7 +55648,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AudioMetricsAverageType", "inheritance": "", "abstract": false, @@ -55796,7 +55796,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CDRDataType", "inheritance": "", "abstract": false, @@ -55823,7 +55823,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UMReportRawCountersType", "inheritance": "", "abstract": false, @@ -55850,7 +55850,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -56072,7 +56072,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -56201,7 +56201,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ClientIntentMeetingInquiryActionType", "inheritance": "", "abstract": false, @@ -56899,7 +56899,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -56912,7 +56912,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -56925,7 +56925,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MeetingSpaceTypeEnum", "inheritance": "", "abstract": false, @@ -56938,7 +56938,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -56951,7 +56951,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -56964,7 +56964,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -56977,7 +56977,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -56990,7 +56990,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -57003,7 +57003,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -57016,7 +57016,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -57250,7 +57250,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -57625,7 +57625,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -57638,7 +57638,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -57651,7 +57651,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -57664,7 +57664,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -57677,7 +57677,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -57690,7 +57690,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -57703,7 +57703,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -57716,7 +57716,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -57729,7 +57729,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -57742,7 +57742,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfParticipantActivities", "inheritance": "", "abstract": false, @@ -57755,7 +57755,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfContentActivities", "inheritance": "", "abstract": false, @@ -57836,7 +57836,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FolderIdType", "inheritance": "", "abstract": false, @@ -57849,7 +57849,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SharingInvitationPermissionLevel", "inheritance": "", "abstract": false, @@ -58609,7 +58609,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SearchFolderScopeType", "inheritance": "", "abstract": false, @@ -58622,7 +58622,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -58721,7 +58721,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "GuidType", "inheritance": "", "abstract": false, @@ -58839,7 +58839,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PrimaryMailboxSearchScopeType", "inheritance": "", "abstract": false, @@ -58852,7 +58852,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LargeArchiveSearchScopeType", "inheritance": "", "abstract": false, @@ -58865,7 +58865,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "GroupSearchScopeType", "inheritance": "", "abstract": false, @@ -58878,7 +58878,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CustomSearchScopeType", "inheritance": "", "abstract": false, @@ -58891,7 +58891,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SingleGroupSearchScopeType", "inheritance": "", "abstract": false, @@ -58904,7 +58904,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "OneDriveSearchScopeType", "inheritance": "", "abstract": false, @@ -58917,7 +58917,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SingleLargeArchiveSearchScopeType", "inheritance": "", "abstract": false, @@ -59023,7 +59023,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -59083,7 +59083,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -59198,7 +59198,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Suggestions", "inheritance": "", "abstract": false, @@ -59211,7 +59211,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SearchDiagnosticsType", "inheritance": "", "abstract": false, @@ -59238,7 +59238,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SuggestionType", "inheritance": "", "abstract": false, @@ -59278,7 +59278,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -59291,7 +59291,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SearchDiagnosticsType", "inheritance": "", "abstract": false, @@ -59318,7 +59318,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -59331,7 +59331,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -59344,7 +59344,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -59357,7 +59357,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AdditionalEntries", "inheritance": "", "abstract": false, @@ -59384,7 +59384,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -59553,7 +59553,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Items", "inheritance": "", "abstract": false, @@ -59566,7 +59566,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Conversations", "inheritance": "", "abstract": false, @@ -59579,7 +59579,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "People", "inheritance": "", "abstract": false, @@ -59618,7 +59618,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SearchRefiners", "inheritance": "", "abstract": false, @@ -59631,7 +59631,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SearchDiagnosticsType", "inheritance": "", "abstract": false, @@ -59644,7 +59644,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -59657,7 +59657,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -59670,7 +59670,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -59697,7 +59697,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemType", "inheritance": "", "abstract": false, @@ -59724,7 +59724,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ConversationType", "inheritance": "", "abstract": false, @@ -59751,7 +59751,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PersonaType", "inheritance": "", "abstract": false, @@ -59778,7 +59778,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SearchRefinerType", "inheritance": "", "abstract": false, @@ -59965,7 +59965,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -59978,7 +59978,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -59991,7 +59991,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -60004,7 +60004,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UnifiedGroupAccessType", "inheritance": "", "abstract": false, @@ -60035,7 +60035,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -60048,7 +60048,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -60061,7 +60061,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -60092,7 +60092,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UnifiedGroupType", "inheritance": "", "abstract": false, @@ -60119,7 +60119,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UnifiedGroupsFilterType", "inheritance": "", "abstract": false, @@ -60132,7 +60132,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -60145,7 +60145,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfUnifiedGroupsType", "inheritance": "", "abstract": false, @@ -60176,7 +60176,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UnifiedGroupsSetType", "inheritance": "", "abstract": false, @@ -60220,7 +60220,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UnifiedGroupsSortType", "inheritance": "", "abstract": false, @@ -60233,7 +60233,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SortDirectionType", "inheritance": "", "abstract": false, @@ -60246,7 +60246,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -60277,7 +60277,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RequestedUnifiedGroupsSetType", "inheritance": "", "abstract": false, @@ -60610,7 +60610,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -60623,7 +60623,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -60650,7 +60650,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UnifiedGroupResourceType", "inheritance": "", "abstract": false, @@ -60677,7 +60677,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CultureInfoDataType", "inheritance": "", "abstract": false, @@ -60704,7 +60704,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -60717,7 +60717,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -60730,7 +60730,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -60757,7 +60757,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -60770,7 +60770,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -60810,7 +60810,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfUnifiedGroupResourcesType", "inheritance": "", "abstract": false, @@ -60823,7 +60823,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UnifiedGroupMailboxSettingsType", "inheritance": "", "abstract": false, @@ -60836,7 +60836,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -60849,7 +60849,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -60862,7 +60862,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -60889,7 +60889,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PersonaType", "inheritance": "", "abstract": false, @@ -60902,7 +60902,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -60929,7 +60929,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UnifiedGroupMemberType", "inheritance": "", "abstract": false, @@ -60956,7 +60956,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -60969,7 +60969,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfUnifiedGroupMembersType", "inheritance": "", "abstract": false, @@ -61009,7 +61009,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -61036,7 +61036,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UnifiedGroupSenderRestrictionsDataType", "inheritance": "", "abstract": false, @@ -61063,7 +61063,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfUnifiedGroupSenderRestrictionsDataType", "inheritance": "", "abstract": false, @@ -61076,7 +61076,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfUnifiedGroupSenderRestrictionsDataType", "inheritance": "", "abstract": false, @@ -61089,7 +61089,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfUnifiedGroupSenderRestrictionsDataType", "inheritance": "", "abstract": false, @@ -61102,7 +61102,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfUnifiedGroupSenderRestrictionsDataType", "inheritance": "", "abstract": false, @@ -61142,7 +61142,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UnifiedGroupSenderRestrictionsType", "inheritance": "", "abstract": false, @@ -61507,7 +61507,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SocialActivityAggregatedNotificationType", "inheritance": "", "abstract": false, @@ -61722,7 +61722,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BookingMailboxType", "inheritance": "", "abstract": false, @@ -61749,7 +61749,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -61762,7 +61762,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -61775,7 +61775,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -61802,7 +61802,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BookingServiceType", "inheritance": "", "abstract": false, @@ -61859,7 +61859,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -61872,7 +61872,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -61885,7 +61885,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EnhancedLocationType", "inheritance": "", "abstract": false, @@ -61898,7 +61898,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -61911,7 +61911,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BookingServiceTypeEnum", "inheritance": "", "abstract": false, @@ -61924,7 +61924,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -61937,7 +61937,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -61950,7 +61950,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -61963,7 +61963,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -61976,7 +61976,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfItemIdsType", "inheritance": "", "abstract": false, @@ -61989,7 +61989,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -62002,7 +62002,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -62029,7 +62029,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BookingStaffMemberType", "inheritance": "", "abstract": false, @@ -62056,7 +62056,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -62069,7 +62069,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -62082,7 +62082,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -62095,7 +62095,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -62108,7 +62108,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -62121,7 +62121,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -62134,7 +62134,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -62147,7 +62147,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -62160,7 +62160,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -62173,7 +62173,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfWorkHours", "inheritance": "", "abstract": false, @@ -62200,7 +62200,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -62213,7 +62213,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -62226,7 +62226,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -62239,7 +62239,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -62252,7 +62252,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -62265,7 +62265,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -62278,7 +62278,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfWorkHours", "inheritance": "", "abstract": false, @@ -62305,7 +62305,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WorkHoursType", "inheritance": "", "abstract": false, @@ -62332,7 +62332,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SystemDayOfWeek", "inheritance": "", "abstract": false, @@ -62345,7 +62345,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfWorkTimeSlot", "inheritance": "", "abstract": false, @@ -62442,7 +62442,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WorkTimeSlot", "inheritance": "", "abstract": false, @@ -62721,7 +62721,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -62747,7 +62747,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -62760,7 +62760,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EntityFeedbackEntityAddSourceType", "inheritance": "", "abstract": false, @@ -62773,7 +62773,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -62800,7 +62800,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MeetingLocationItemType", "inheritance": "", "abstract": false, @@ -62879,7 +62879,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -62892,7 +62892,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "double", "inheritance": "", "abstract": false, @@ -62919,7 +62919,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "InboxReminderType", "inheritance": "", "abstract": false, @@ -62946,7 +62946,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "GuidType", "inheritance": "", "abstract": false, @@ -62959,7 +62959,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -62972,7 +62972,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -62985,7 +62985,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -62998,7 +62998,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailReminderChangeType", "inheritance": "", "abstract": false, @@ -63011,7 +63011,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailReminderSendOption", "inheritance": "", "abstract": false, @@ -63184,7 +63184,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -63197,7 +63197,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -63224,7 +63224,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "InsightContextItem", "inheritance": "", "abstract": false, @@ -63277,7 +63277,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -63290,7 +63290,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -63303,7 +63303,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -63316,7 +63316,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "InsightStatusType", "inheritance": "", "abstract": false, @@ -63329,7 +63329,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -63342,7 +63342,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfInsightContextItem", "inheritance": "", "abstract": false, @@ -63355,7 +63355,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -63368,7 +63368,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -63395,7 +63395,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "InsightItemType", "inheritance": "", "abstract": false, @@ -63422,7 +63422,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -63435,7 +63435,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "GuidType", "inheritance": "", "abstract": false, @@ -63461,7 +63461,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -63474,7 +63474,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "double", "inheritance": "", "abstract": false, @@ -63487,7 +63487,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -63500,7 +63500,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -63513,7 +63513,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -63526,7 +63526,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -63539,7 +63539,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -63552,7 +63552,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -63565,7 +63565,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -63578,7 +63578,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -63591,7 +63591,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -63604,7 +63604,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -63617,7 +63617,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -63630,7 +63630,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -63657,7 +63657,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "XrmDealType", "inheritance": "", "abstract": false, @@ -63714,7 +63714,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -63727,7 +63727,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -63740,7 +63740,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -63753,7 +63753,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "base64Binary", "inheritance": "", "abstract": false, @@ -63766,7 +63766,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -63779,7 +63779,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -63792,7 +63792,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -63805,7 +63805,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -63818,7 +63818,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "XrmActivityStreamFlagsType", "inheritance": "", "abstract": false, @@ -63831,7 +63831,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -63844,7 +63844,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -63871,7 +63871,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "XrmActivityStreamType", "inheritance": "", "abstract": false, @@ -63898,7 +63898,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -63910,7 +63910,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -63975,7 +63975,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BookingItemType", "inheritance": "", "abstract": false, @@ -64082,7 +64082,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StaffAvailabilityResponseType", "inheritance": "", "abstract": false, @@ -68194,7 +68194,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -68206,7 +68206,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ResponseCodeType", "inheritance": "", "abstract": false, @@ -68218,7 +68218,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -68230,7 +68230,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MessageXml", "inheritance": "", "abstract": false, @@ -75827,7 +75827,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -75893,7 +75893,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -75906,7 +75906,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "base64Binary", "inheritance": "", "abstract": false, @@ -76024,7 +76024,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RestrictionType", "inheritance": "", "abstract": false, @@ -76072,7 +76072,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfFoldersType", "inheritance": "", "abstract": false, @@ -76098,7 +76098,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FindFolderParentType", "inheritance": "", "abstract": false, @@ -76477,7 +76477,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TargetFolderIdType", "inheritance": "", "abstract": false, @@ -76684,7 +76684,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SocialActivityAggregatedNotificationType", "inheritance": "", "abstract": false, @@ -76802,7 +76802,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TargetFolderIdType", "inheritance": "", "abstract": false, @@ -76910,7 +76910,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ConflictResultsType", "inheritance": "", "abstract": false, @@ -76946,7 +76946,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfItemChangeDescriptionsType", "inheritance": "", "abstract": false, @@ -76958,7 +76958,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfAttachmentsType", "inheritance": "", "abstract": false, @@ -76970,7 +76970,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -76996,7 +76996,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfAttachmentsType", "inheritance": "", "abstract": false, @@ -77008,7 +77008,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ConflictResultsType", "inheritance": "", "abstract": false, @@ -77130,7 +77130,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RootItemIdType", "inheritance": "", "abstract": false, @@ -77176,7 +77176,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -77273,7 +77273,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TargetFolderIdType", "inheritance": "", "abstract": false, @@ -77528,7 +77528,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RestrictionType", "inheritance": "", "abstract": false, @@ -77540,7 +77540,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfFieldOrdersType", "inheritance": "", "abstract": false, @@ -77562,7 +77562,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "QueryStringType", "inheritance": "", "abstract": false, @@ -77635,7 +77635,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfFieldOrdersType", "inheritance": "", "abstract": false, @@ -77659,7 +77659,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MailboxSearchLocationType", "inheritance": "", "abstract": false, @@ -77672,7 +77672,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "QueryStringType", "inheritance": "", "abstract": false, @@ -77685,7 +77685,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ConversationResponseShapeType", "inheritance": "", "abstract": false, @@ -77736,7 +77736,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfConversationsType", "inheritance": "", "abstract": false, @@ -77748,7 +77748,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfHighlightTermsType", "inheritance": "", "abstract": false, @@ -77760,7 +77760,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -77772,7 +77772,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -77876,7 +77876,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfDistinguishedFolderIdType", "inheritance": "", "abstract": false, @@ -77889,7 +77889,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -77902,7 +77902,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -77929,7 +77929,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "InstantSearchPayloadType", "inheritance": "", "abstract": false, @@ -78037,7 +78037,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IdFormatType", "inheritance": "", "abstract": false, @@ -78092,7 +78092,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -78105,7 +78105,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SuggestionKindType", "inheritance": "", "abstract": false, @@ -78118,7 +78118,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -78131,7 +78131,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -78328,7 +78328,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AnalyzedQuery", "inheritance": "", "abstract": false, @@ -78341,7 +78341,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -78354,7 +78354,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -78367,7 +78367,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -78380,7 +78380,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -78393,7 +78393,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SearchRefiners", "inheritance": "", "abstract": false, @@ -78406,7 +78406,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -78419,7 +78419,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -78432,7 +78432,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IdFormatType", "inheritance": "", "abstract": false, @@ -78458,7 +78458,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SearchResultsPropertySetNameType", "inheritance": "", "abstract": false, @@ -78471,7 +78471,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RestrictionType", "inheritance": "", "abstract": false, @@ -78484,7 +78484,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -78629,7 +78629,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PersonaResponseShapeType", "inheritance": "", "abstract": false, @@ -78655,7 +78655,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RestrictionType", "inheritance": "", "abstract": false, @@ -78668,7 +78668,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RestrictionType", "inheritance": "", "abstract": false, @@ -78681,7 +78681,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfFieldOrdersType", "inheritance": "", "abstract": false, @@ -78694,7 +78694,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TargetFolderIdType", "inheritance": "", "abstract": false, @@ -78707,7 +78707,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -78720,7 +78720,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -78733,7 +78733,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -78746,7 +78746,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfContextProperty", "inheritance": "", "abstract": false, @@ -78759,7 +78759,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPeopleQuerySource", "inheritance": "", "abstract": false, @@ -78786,7 +78786,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPeopleType", "inheritance": "", "abstract": false, @@ -78798,7 +78798,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -78810,7 +78810,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -78822,7 +78822,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -78834,7 +78834,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "GuidType", "inheritance": "", "abstract": false, @@ -78860,7 +78860,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -78873,7 +78873,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressType", "inheritance": "", "abstract": false, @@ -78886,7 +78886,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TargetFolderIdType", "inheritance": "", "abstract": false, @@ -79003,7 +79003,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyStringType", "inheritance": "", "abstract": false, @@ -79016,7 +79016,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -79042,7 +79042,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "GroupMemberIdentifierType", "inheritance": "", "abstract": false, @@ -79055,7 +79055,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -79068,7 +79068,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -79081,7 +79081,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -79094,7 +79094,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -79107,7 +79107,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -79120,7 +79120,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -79133,7 +79133,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -79259,7 +79259,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AttachmentResponseShapeType", "inheritance": "", "abstract": false, @@ -79412,7 +79412,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FindItemParentType", "inheritance": "", "abstract": false, @@ -79424,7 +79424,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfHighlightTermsType", "inheritance": "", "abstract": false, @@ -79503,7 +79503,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ClientAccessTokenType", "inheritance": "", "abstract": false, @@ -79542,7 +79542,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfBaseFolderIdsType", "inheritance": "", "abstract": false, @@ -79612,7 +79612,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfResolutionType", "inheritance": "", "abstract": false, @@ -79651,7 +79651,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -79755,7 +79755,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfMailTipsResponseMessageType", "inheritance": "", "abstract": false, @@ -79809,7 +79809,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MailTips", "inheritance": "", "abstract": false, @@ -79876,7 +79876,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PhoneCallIdType", "inheritance": "", "abstract": false, @@ -79930,7 +79930,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PhoneCallInformationType", "inheritance": "", "abstract": false, @@ -80010,7 +80010,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -80156,7 +80156,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -80223,7 +80223,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "base64Binary", "inheritance": "", "abstract": false, @@ -80274,7 +80274,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfDLExpansionType", "inheritance": "", "abstract": false, @@ -80363,7 +80363,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfTimeZoneIdType", "inheritance": "", "abstract": false, @@ -80450,7 +80450,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressType", "inheritance": "", "abstract": false, @@ -80557,7 +80557,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SubscriptionIdType", "inheritance": "", "abstract": false, @@ -80569,7 +80569,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WatermarkType", "inheritance": "", "abstract": false, @@ -80679,7 +80679,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NotificationType", "inheritance": "", "abstract": false, @@ -80752,7 +80752,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfNotificationsType", "inheritance": "", "abstract": false, @@ -80764,7 +80764,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfSubscriptionIdsType", "inheritance": "", "abstract": false, @@ -80776,7 +80776,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ConnectionStatusType", "inheritance": "", "abstract": false, @@ -80955,7 +80955,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "GuidType", "inheritance": "", "abstract": false, @@ -80981,7 +80981,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfChannelEventsType", "inheritance": "", "abstract": false, @@ -80993,7 +80993,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ConnectionStatusType", "inheritance": "", "abstract": false, @@ -81107,7 +81107,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TargetFolderIdType", "inheritance": "", "abstract": false, @@ -81119,7 +81119,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -81145,7 +81145,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -81157,7 +81157,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -81169,7 +81169,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SyncFolderHierarchyChangesType", "inheritance": "", "abstract": false, @@ -81232,7 +81232,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -81244,7 +81244,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfBaseItemIdsType", "inheritance": "", "abstract": false, @@ -81268,7 +81268,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SyncFolderItemsScopeType", "inheritance": "", "abstract": false, @@ -81294,7 +81294,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -81306,7 +81306,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -81318,7 +81318,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SyncFolderItemsChangesType", "inheritance": "", "abstract": false, @@ -81357,7 +81357,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SerializableTimeZone", "inheritance": "", "abstract": false, @@ -81381,7 +81381,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FreeBusyViewOptionsType", "inheritance": "", "abstract": false, @@ -81395,7 +81395,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SuggestionsViewOptionsType", "inheritance": "", "abstract": false, @@ -81423,7 +81423,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ResponseMessageType", "inheritance": "", "abstract": false, @@ -81436,7 +81436,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FreeBusyView", "inheritance": "", "abstract": false, @@ -81463,7 +81463,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FreeBusyResponseType", "inheritance": "", "abstract": false, @@ -81490,7 +81490,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ResponseMessageType", "inheritance": "", "abstract": false, @@ -81503,7 +81503,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfSuggestionDayResult", "inheritance": "", "abstract": false, @@ -81530,7 +81530,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfFreeBusyResponse", "inheritance": "", "abstract": false, @@ -81543,7 +81543,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SuggestionsResponseType", "inheritance": "", "abstract": false, @@ -81613,7 +81613,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UserOofSettings", "inheritance": "", "abstract": false, @@ -81627,7 +81627,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ExternalAudience", "inheritance": "", "abstract": false, @@ -81700,7 +81700,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ResponseMessageType", "inheritance": "", "abstract": false, @@ -81789,7 +81789,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AlternateIdBaseType", "inheritance": "", "abstract": false, @@ -81820,7 +81820,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfUserIdType", "inheritance": "", "abstract": false, @@ -81859,7 +81859,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DeliverMeetingRequestsType", "inheritance": "", "abstract": false, @@ -81913,7 +81913,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DelegateUserType", "inheritance": "", "abstract": false, @@ -81950,7 +81950,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DeliverMeetingRequestsType", "inheritance": "", "abstract": false, @@ -81976,7 +81976,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfDelegateUserResponseMessageType", "inheritance": "", "abstract": false, @@ -82077,7 +82077,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfDelegateUserType", "inheritance": "", "abstract": false, @@ -82089,7 +82089,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DeliverMeetingRequestsType", "inheritance": "", "abstract": false, @@ -82253,7 +82253,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SharingDataType", "inheritance": "", "abstract": false, @@ -82266,7 +82266,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyStringType", "inheritance": "", "abstract": false, @@ -82433,7 +82433,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UserConfigurationType", "inheritance": "", "abstract": false, @@ -82618,7 +82618,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfEmailAddressesType", "inheritance": "", "abstract": false, @@ -82671,7 +82671,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfRoomsType", "inheritance": "", "abstract": false, @@ -82697,7 +82697,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -82710,7 +82710,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -82723,7 +82723,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MaxItems", "inheritance": "int", "abstract": false, @@ -82739,7 +82739,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ReminderType", "inheritance": "", "abstract": false, @@ -82928,7 +82928,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressType", "inheritance": "", "abstract": false, @@ -82954,7 +82954,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ConfigurationRequestDetailsType", "inheritance": "", "abstract": false, @@ -82981,7 +82981,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfServiceConfigurationResponseMessageType", "inheritance": "", "abstract": false, @@ -83035,7 +83035,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MailTipsServiceConfiguration", "inheritance": "", "abstract": false, @@ -83048,7 +83048,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UnifiedMessageServiceConfiguration", "inheritance": "", "abstract": false, @@ -83061,7 +83061,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ProtectionRulesServiceConfiguration", "inheritance": "", "abstract": false, @@ -83074,7 +83074,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PolicyNudgeRulesServiceConfiguration", "inheritance": "", "abstract": false, @@ -83121,7 +83121,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressType", "inheritance": "", "abstract": false, @@ -83133,7 +83133,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressType", "inheritance": "", "abstract": false, @@ -83145,7 +83145,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressType", "inheritance": "", "abstract": false, @@ -83157,7 +83157,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -83169,7 +83169,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -83181,7 +83181,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -83193,7 +83193,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyStringType", "inheritance": "", "abstract": false, @@ -83205,7 +83205,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressType", "inheritance": "", "abstract": false, @@ -83217,7 +83217,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -83229,7 +83229,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -83241,7 +83241,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfTrackingPropertiesType", "inheritance": "", "abstract": false, @@ -83267,7 +83267,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -83279,7 +83279,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfFindMessageTrackingSearchResultType", "inheritance": "", "abstract": false, @@ -83291,7 +83291,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -83303,7 +83303,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfArraysOfTrackingPropertiesType", "inheritance": "", "abstract": false, @@ -83315,7 +83315,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfTrackingPropertiesType", "inheritance": "", "abstract": false, @@ -83361,7 +83361,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressType", "inheritance": "", "abstract": false, @@ -83383,7 +83383,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -83395,7 +83395,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -83407,7 +83407,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfTrackingPropertiesType", "inheritance": "", "abstract": false, @@ -83433,7 +83433,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MessageTrackingReportType", "inheritance": "", "abstract": false, @@ -83445,7 +83445,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -83457,7 +83457,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfArraysOfTrackingPropertiesType", "inheritance": "", "abstract": false, @@ -83469,7 +83469,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfTrackingPropertiesType", "inheritance": "", "abstract": false, @@ -83495,7 +83495,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -83522,7 +83522,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -83535,7 +83535,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfRulesType", "inheritance": "", "abstract": false, @@ -83562,7 +83562,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -83575,7 +83575,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -83615,7 +83615,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfRuleOperationErrorsType", "inheritance": "", "abstract": false, @@ -83666,7 +83666,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -83678,7 +83678,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfSmtpAddressType", "inheritance": "", "abstract": false, @@ -83690,7 +83690,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfSmtpAddressType", "inheritance": "", "abstract": false, @@ -83702,7 +83702,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -83714,7 +83714,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -83726,7 +83726,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfSearchItemKindsType", "inheritance": "", "abstract": false, @@ -83738,7 +83738,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -83750,7 +83750,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -83762,7 +83762,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -83837,7 +83837,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -83849,7 +83849,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -83889,7 +83889,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfFailedSearchMailboxesType", "inheritance": "", "abstract": false, @@ -83943,7 +83943,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PreviewItemResponseShapeType", "inheritance": "", "abstract": false, @@ -83955,7 +83955,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FieldOrderType", "inheritance": "", "abstract": false, @@ -83967,7 +83967,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -83979,7 +83979,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -83991,7 +83991,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -84003,7 +84003,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -84015,7 +84015,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SearchPageDirectionType", "inheritance": "", "abstract": false, @@ -84062,7 +84062,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SearchMailboxesResultType", "inheritance": "", "abstract": false, @@ -84092,7 +84092,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -84104,7 +84104,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -84116,7 +84116,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -84204,7 +84204,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MailboxHoldResultType", "inheritance": "", "abstract": false, @@ -84270,7 +84270,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -84282,7 +84282,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -84294,7 +84294,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -84306,7 +84306,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -84318,7 +84318,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -84330,7 +84330,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -84360,7 +84360,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MailboxHoldResultType", "inheritance": "", "abstract": false, @@ -84402,7 +84402,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -84432,7 +84432,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfNonIndexableItemStatisticsType", "inheritance": "", "abstract": false, @@ -84475,7 +84475,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -84487,7 +84487,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -84499,7 +84499,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SearchPageDirectionType", "inheritance": "", "abstract": false, @@ -84511,7 +84511,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -84541,7 +84541,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonIndexableItemDetailResultType", "inheritance": "", "abstract": false, @@ -84647,7 +84647,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfBaseFolderIdsType", "inheritance": "", "abstract": false, @@ -84660,7 +84660,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -84673,7 +84673,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ConversationNodeSortOrder", "inheritance": "", "abstract": false, @@ -84686,7 +84686,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MailboxSearchLocationType", "inheritance": "", "abstract": false, @@ -84725,7 +84725,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ConversationResponseType", "inheritance": "", "abstract": false, @@ -84764,7 +84764,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -84777,7 +84777,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "GetClientExtensionUserParametersType", "inheritance": "", "abstract": false, @@ -84790,7 +84790,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -84817,7 +84817,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfClientExtensionsType", "inheritance": "", "abstract": false, @@ -84830,7 +84830,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -84870,7 +84870,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -84883,7 +84883,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -84896,7 +84896,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -84909,7 +84909,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -84922,7 +84922,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -84962,7 +84962,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -85029,7 +85029,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -85042,7 +85042,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -85055,7 +85055,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -85068,7 +85068,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -85081,7 +85081,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -85121,7 +85121,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -85200,7 +85200,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "base64Binary", "inheritance": "", "abstract": false, @@ -85240,7 +85240,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -85331,7 +85331,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -85501,7 +85501,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyStringType", "inheritance": "", "abstract": false, @@ -85513,7 +85513,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -85539,7 +85539,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PersonaType", "inheritance": "", "abstract": false, @@ -85595,7 +85595,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -85621,7 +85621,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PersonaType", "inheritance": "", "abstract": false, @@ -85657,7 +85657,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -85767,7 +85767,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ImGroupType", "inheritance": "", "abstract": false, @@ -85827,7 +85827,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ImGroupType", "inheritance": "", "abstract": false, @@ -85853,7 +85853,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfExtendedFieldURIs", "inheritance": "", "abstract": false, @@ -85879,7 +85879,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ImItemListType", "inheritance": "", "abstract": false, @@ -85905,7 +85905,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfBaseItemIdsType", "inheritance": "", "abstract": false, @@ -85917,7 +85917,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfBaseItemIdsType", "inheritance": "", "abstract": false, @@ -85929,7 +85929,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfExtendedFieldURIs", "inheritance": "", "abstract": false, @@ -85955,7 +85955,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ImItemListType", "inheritance": "", "abstract": false, @@ -86274,7 +86274,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "base64Binary", "inheritance": "", "abstract": false, @@ -86380,7 +86380,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RecognitionIdType", "inheritance": "", "abstract": false, @@ -86447,7 +86447,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RecognitionResultType", "inheritance": "", "abstract": false, @@ -86514,7 +86514,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -86527,7 +86527,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -86540,7 +86540,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -86553,7 +86553,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -86566,7 +86566,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -86606,7 +86606,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfUMCallDataRecordsType", "inheritance": "", "abstract": false, @@ -86685,7 +86685,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfUMReportRawCountersType", "inheritance": "", "abstract": false, @@ -86777,7 +86777,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PinInfoType", "inheritance": "", "abstract": false, @@ -86974,7 +86974,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ClientIntentType", "inheritance": "", "abstract": false, @@ -87066,7 +87066,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "base64Binary", "inheritance": "", "abstract": false, @@ -87079,7 +87079,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -87172,7 +87172,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -87279,7 +87279,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UnseenDataType", "inheritance": "", "abstract": false, @@ -87743,7 +87743,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MeetingSpaceType", "inheritance": "", "abstract": false, @@ -87931,7 +87931,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MeetingInstanceType", "inheritance": "", "abstract": false, @@ -87944,7 +87944,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfContentActivities", "inheritance": "", "abstract": false, @@ -87957,7 +87957,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfParticipantActivities", "inheritance": "", "abstract": false, @@ -88185,7 +88185,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfSmtpAddressType", "inheritance": "", "abstract": false, @@ -88217,7 +88217,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -88229,7 +88229,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -88241,7 +88241,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -88253,7 +88253,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ActivityDomainType", "inheritance": "", "abstract": false, @@ -88346,7 +88346,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PersonResponseShapeType", "inheritance": "", "abstract": false, @@ -88359,7 +88359,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -88372,7 +88372,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "InsightFiltersType", "inheritance": "", "abstract": false, @@ -88385,7 +88385,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -88398,7 +88398,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfPeopleTokenType", "inheritance": "", "abstract": false, @@ -88425,7 +88425,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPersonType", "inheritance": "", "abstract": false, @@ -88504,7 +88504,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfRequestedUnifiedGroupsSetsType", "inheritance": "", "abstract": false, @@ -88517,7 +88517,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -88674,7 +88674,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UnifiedGroupMembersResponseType", "inheritance": "", "abstract": false, @@ -88687,7 +88687,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UnifiedGroupMembersResponseType", "inheritance": "", "abstract": false, @@ -88714,7 +88714,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -88820,7 +88820,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BodyContentType", "inheritance": "", "abstract": false, @@ -88884,7 +88884,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -88897,7 +88897,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -88910,7 +88910,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -89037,7 +89037,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -89050,7 +89050,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -89090,7 +89090,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -89130,7 +89130,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -89143,7 +89143,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPeopleType", "inheritance": "", "abstract": false, @@ -89463,7 +89463,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -89538,7 +89538,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfUnifiedGroupMembers", "inheritance": "", "abstract": false, @@ -89551,7 +89551,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfUnifiedGroupMembers", "inheritance": "", "abstract": false, @@ -89591,7 +89591,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -89604,7 +89604,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -89617,7 +89617,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -89630,7 +89630,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -89643,7 +89643,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -89656,7 +89656,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -89669,7 +89669,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -89803,7 +89803,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -90042,7 +90042,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -90069,7 +90069,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -90136,7 +90136,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressType", "inheritance": "", "abstract": false, @@ -90311,7 +90311,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PersonaResponseShapeType", "inheritance": "", "abstract": false, @@ -90337,7 +90337,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RestrictionType", "inheritance": "", "abstract": false, @@ -90350,7 +90350,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RestrictionType", "inheritance": "", "abstract": false, @@ -90363,7 +90363,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfFieldOrdersType", "inheritance": "", "abstract": false, @@ -90376,7 +90376,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -90389,7 +90389,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -90402,7 +90402,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -90415,7 +90415,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfContextProperty", "inheritance": "", "abstract": false, @@ -90442,7 +90442,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPeopleType", "inheritance": "", "abstract": false, @@ -90454,7 +90454,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -90466,7 +90466,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -90478,7 +90478,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -90490,7 +90490,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "GuidType", "inheritance": "", "abstract": false, @@ -90691,7 +90691,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "base64Binary", "inheritance": "", "abstract": false, @@ -90730,7 +90730,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "base64Binary", "inheritance": "", "abstract": false, @@ -90877,7 +90877,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -90917,7 +90917,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -90930,7 +90930,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -90943,7 +90943,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -90956,7 +90956,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -90969,7 +90969,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -90982,7 +90982,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -91274,7 +91274,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -91408,7 +91408,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FindMeetingTimesAttendeeConstraints", "inheritance": "", "abstract": false, @@ -91420,7 +91420,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FindMeetingTimesLocationConstraints", "inheritance": "", "abstract": false, @@ -91432,7 +91432,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FindMeetingTimesSearchConstraints", "inheritance": "", "abstract": false, @@ -91444,7 +91444,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FindMeetingTimesConstraints", "inheritance": "", "abstract": false, @@ -91551,7 +91551,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RestrictionType", "inheritance": "", "abstract": false, @@ -91564,7 +91564,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IndexedPageViewType", "inheritance": "", "abstract": false, @@ -91833,7 +91833,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RestrictionType", "inheritance": "", "abstract": false, @@ -91846,7 +91846,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IndexedPageViewType", "inheritance": "", "abstract": false, @@ -92115,7 +92115,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RestrictionType", "inheritance": "", "abstract": false, @@ -92128,7 +92128,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IndexedPageViewType", "inheritance": "", "abstract": false, @@ -92249,7 +92249,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "XrmActivityStreamType", "inheritance": "", "abstract": false, @@ -92303,7 +92303,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "XrmActivityStreamType", "inheritance": "", "abstract": false, @@ -92370,7 +92370,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "XrmActivityStreamType", "inheritance": "", "abstract": false, @@ -92397,7 +92397,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RestrictionType", "inheritance": "", "abstract": false, @@ -92410,7 +92410,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IndexedPageViewType", "inheritance": "", "abstract": false, diff --git a/tests/resources/generated/parsed_ews_start.json b/tests/resources/generated/parsed_ews_start.json index 75775d5f..ee95822b 100644 --- a/tests/resources/generated/parsed_ews_start.json +++ b/tests/resources/generated/parsed_ews_start.json @@ -3642,7 +3642,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfRoleType", "inheritance": "", "abstract": false, @@ -3655,7 +3655,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfRoleType", "inheritance": "", "abstract": false, @@ -3780,7 +3780,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfGroupIdentifiersType", "inheritance": "", "abstract": false, @@ -3792,7 +3792,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfRestrictedGroupIdentifiersType", "inheritance": "", "abstract": false, @@ -3804,7 +3804,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -4494,7 +4494,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -4506,7 +4506,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyStringType", "inheritance": "", "abstract": false, @@ -4518,7 +4518,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyStringType", "inheritance": "", "abstract": false, @@ -4530,7 +4530,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MailboxTypeType", "inheritance": "", "abstract": false, @@ -4542,7 +4542,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -4554,7 +4554,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -4584,7 +4584,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressType", "inheritance": "", "abstract": false, @@ -4611,7 +4611,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressType", "inheritance": "", "abstract": false, @@ -4651,7 +4651,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RoomType", "inheritance": "", "abstract": false, @@ -4818,7 +4818,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MeetingLocation", "inheritance": "", "abstract": false, @@ -4845,7 +4845,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AttendeeAvailability", "inheritance": "", "abstract": false, @@ -4972,7 +4972,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -4998,7 +4998,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -5024,7 +5024,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5036,7 +5036,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -5062,7 +5062,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LocationConstraintItem", "inheritance": "", "abstract": false, @@ -5089,7 +5089,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AttendeeConstraintItem", "inheritance": "", "abstract": false, @@ -5116,7 +5116,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TimeSlot", "inheritance": "", "abstract": false, @@ -5143,7 +5143,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfAttendeeConstraintItems", "inheritance": "", "abstract": false, @@ -5169,7 +5169,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfLocationConstraintItems", "inheritance": "", "abstract": false, @@ -5181,7 +5181,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -5193,7 +5193,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -5219,7 +5219,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfTimeSlot", "inheritance": "", "abstract": false, @@ -5231,7 +5231,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -5243,7 +5243,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ActivityDomainType", "inheritance": "", "abstract": false, @@ -5269,7 +5269,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -5338,7 +5338,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5403,7 +5403,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -5416,7 +5416,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ReminderGroupType", "inheritance": "", "abstract": false, @@ -5456,7 +5456,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ReminderType", "inheritance": "", "abstract": false, @@ -10491,7 +10491,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfPathsToElementType", "inheritance": "", "abstract": false, @@ -10527,7 +10527,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -10539,7 +10539,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BodyTypeResponseType", "inheritance": "", "abstract": false, @@ -10551,7 +10551,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BodyTypeResponseType", "inheritance": "", "abstract": false, @@ -10563,7 +10563,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BodyTypeResponseType", "inheritance": "", "abstract": false, @@ -10575,7 +10575,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -10588,7 +10588,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -10601,7 +10601,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10614,7 +10614,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -10627,7 +10627,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -10640,7 +10640,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -10653,7 +10653,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfPathsToElementType", "inheritance": "", "abstract": false, @@ -10679,7 +10679,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -10691,7 +10691,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BodyTypeResponseType", "inheritance": "", "abstract": false, @@ -10703,7 +10703,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -10716,7 +10716,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfPathsToElementType", "inheritance": "", "abstract": false, @@ -10752,7 +10752,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfPathsToElementType", "inheritance": "", "abstract": false, @@ -10788,7 +10788,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfPathsToElementType", "inheritance": "", "abstract": false, @@ -10979,7 +10979,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -12884,7 +12884,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AttachmentIdType", "inheritance": "", "abstract": false, @@ -12897,7 +12897,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -12910,7 +12910,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -12923,7 +12923,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -12936,7 +12936,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -12949,7 +12949,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -12962,7 +12962,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -12975,7 +12975,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -13886,7 +13886,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -13899,7 +13899,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "base64Binary", "inheritance": "", "abstract": false, @@ -13926,7 +13926,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -13939,7 +13939,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -13952,7 +13952,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -13965,7 +13965,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -13978,7 +13978,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -13991,7 +13991,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -14004,7 +14004,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -14419,7 +14419,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "XrmRelationshipBaseType", "inheritance": "", "abstract": false, @@ -14446,7 +14446,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "XrmGraphRelationshipType", "inheritance": "", "abstract": false, @@ -15065,7 +15065,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressType", "inheritance": "", "abstract": false, @@ -15399,7 +15399,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -15629,7 +15629,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfFoldersType", "inheritance": "", "abstract": false, @@ -15720,7 +15720,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FolderIdType", "inheritance": "", "abstract": false, @@ -15732,7 +15732,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FolderIdType", "inheritance": "", "abstract": false, @@ -15744,7 +15744,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -15756,7 +15756,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -15768,7 +15768,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -15780,7 +15780,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -15792,7 +15792,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ExtendedPropertyType", "inheritance": "", "abstract": false, @@ -15805,7 +15805,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ManagedFolderInformationType", "inheritance": "", "abstract": false, @@ -15817,7 +15817,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EffectiveRightsType", "inheritance": "", "abstract": false, @@ -15829,7 +15829,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DistinguishedFolderIdNameType", "inheritance": "", "abstract": false, @@ -15841,7 +15841,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RetentionTagType", "inheritance": "", "abstract": false, @@ -15853,7 +15853,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RetentionTagType", "inheritance": "", "abstract": false, @@ -15865,7 +15865,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -15891,7 +15891,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -15903,7 +15903,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -15915,7 +15915,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -15927,7 +15927,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -15939,7 +15939,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -15951,7 +15951,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -15963,7 +15963,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -15975,7 +15975,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -15987,7 +15987,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -15999,7 +15999,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16029,7 +16029,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PermissionSetType", "inheritance": "", "abstract": false, @@ -16041,7 +16041,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -16067,7 +16067,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CalendarPermissionReadAccessType", "inheritance": "", "abstract": false, @@ -16079,7 +16079,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CalendarPermissionSetType", "inheritance": "", "abstract": false, @@ -16161,7 +16161,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16215,7 +16215,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PermissionReadAccessType", "inheritance": "", "abstract": false, @@ -16227,7 +16227,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PermissionSetType", "inheritance": "", "abstract": false, @@ -16239,7 +16239,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16251,7 +16251,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16277,7 +16277,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SearchParametersType", "inheritance": "", "abstract": false, @@ -16765,7 +16765,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -16807,7 +16807,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -17332,7 +17332,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemClassType", "inheritance": "", "abstract": false, @@ -17344,7 +17344,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SensitivityChoicesType", "inheritance": "", "abstract": false, @@ -17356,7 +17356,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BodyType", "inheritance": "", "abstract": false, @@ -17368,7 +17368,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfAttachmentsType", "inheritance": "", "abstract": false, @@ -17380,7 +17380,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfInternetHeadersType", "inheritance": "", "abstract": false, @@ -17392,7 +17392,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SingleRecipientType", "inheritance": "", "abstract": false, @@ -17404,7 +17404,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfRecipientsType", "inheritance": "", "abstract": false, @@ -17416,7 +17416,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfRecipientsType", "inheritance": "", "abstract": false, @@ -17428,7 +17428,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfRecipientsType", "inheritance": "", "abstract": false, @@ -17440,7 +17440,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -17452,7 +17452,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -17464,7 +17464,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SingleRecipientType", "inheritance": "", "abstract": false, @@ -17476,7 +17476,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -17519,7 +17519,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -17531,7 +17531,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BodyType", "inheritance": "", "abstract": false, @@ -17543,7 +17543,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfRecipientsType", "inheritance": "", "abstract": false, @@ -17555,7 +17555,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfRecipientsType", "inheritance": "", "abstract": false, @@ -17567,7 +17567,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfRecipientsType", "inheritance": "", "abstract": false, @@ -17579,7 +17579,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -17591,7 +17591,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -17603,7 +17603,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SingleRecipientType", "inheritance": "", "abstract": false, @@ -17615,7 +17615,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -17658,7 +17658,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BodyType", "inheritance": "", "abstract": false, @@ -17736,7 +17736,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -17905,7 +17905,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MimeContentType", "inheritance": "", "abstract": false, @@ -17917,7 +17917,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -17929,7 +17929,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FolderIdType", "inheritance": "", "abstract": false, @@ -17941,7 +17941,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemClassType", "inheritance": "", "abstract": false, @@ -17953,7 +17953,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -17965,7 +17965,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SensitivityChoicesType", "inheritance": "", "abstract": false, @@ -17977,7 +17977,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BodyType", "inheritance": "", "abstract": false, @@ -17989,7 +17989,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfAttachmentsType", "inheritance": "", "abstract": false, @@ -18001,7 +18001,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -18013,7 +18013,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -18025,7 +18025,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -18037,7 +18037,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ImportanceChoicesType", "inheritance": "", "abstract": false, @@ -18049,7 +18049,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18061,7 +18061,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -18073,7 +18073,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -18085,7 +18085,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -18097,7 +18097,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -18109,7 +18109,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -18121,7 +18121,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfInternetHeadersType", "inheritance": "", "abstract": false, @@ -18133,7 +18133,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -18145,7 +18145,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -18157,7 +18157,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfResponseObjectsType", "inheritance": "", "abstract": false, @@ -18169,7 +18169,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -18181,7 +18181,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -18193,7 +18193,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -18205,7 +18205,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ReminderMinutesBeforeStartType", "inheritance": "", "abstract": false, @@ -18217,7 +18217,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18229,7 +18229,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18241,7 +18241,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -18253,7 +18253,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ExtendedPropertyType", "inheritance": "", "abstract": false, @@ -18266,7 +18266,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "language", "inheritance": "", "abstract": false, @@ -18278,7 +18278,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EffectiveRightsType", "inheritance": "", "abstract": false, @@ -18290,7 +18290,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18302,7 +18302,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -18314,7 +18314,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -18326,7 +18326,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18338,7 +18338,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18350,7 +18350,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -18362,7 +18362,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BodyType", "inheritance": "", "abstract": false, @@ -18374,7 +18374,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FlagType", "inheritance": "", "abstract": false, @@ -18386,7 +18386,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "base64Binary", "inheritance": "", "abstract": false, @@ -18398,7 +18398,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "base64Binary", "inheritance": "", "abstract": false, @@ -18410,7 +18410,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BodyType", "inheritance": "", "abstract": false, @@ -18422,7 +18422,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EntityExtractionResultType", "inheritance": "", "abstract": false, @@ -18434,7 +18434,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RetentionTagType", "inheritance": "", "abstract": false, @@ -18446,7 +18446,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RetentionTagType", "inheritance": "", "abstract": false, @@ -18458,7 +18458,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -18470,7 +18470,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18482,7 +18482,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RightsManagementLicenseDataType", "inheritance": "", "abstract": false, @@ -18494,7 +18494,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfPredictedActionReasonType", "inheritance": "", "abstract": false, @@ -18506,7 +18506,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -18518,7 +18518,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -18530,7 +18530,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -18542,7 +18542,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BodyType", "inheritance": "", "abstract": false, @@ -18554,7 +18554,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IconIndexType", "inheritance": "", "abstract": false, @@ -18566,7 +18566,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "base64Binary", "inheritance": "", "abstract": false, @@ -18578,7 +18578,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -18590,7 +18590,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -18602,7 +18602,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfRecipientsType", "inheritance": "", "abstract": false, @@ -18614,7 +18614,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -18626,7 +18626,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -18695,7 +18695,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -18707,7 +18707,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -18719,7 +18719,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -18933,7 +18933,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailPositionType", "inheritance": "", "abstract": false, @@ -18960,7 +18960,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18987,7 +18987,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressEntityType", "inheritance": "", "abstract": false, @@ -19014,7 +19014,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19040,7 +19040,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressEntityType", "inheritance": "", "abstract": false, @@ -19067,7 +19067,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19093,7 +19093,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UrlEntityType", "inheritance": "", "abstract": false, @@ -19120,7 +19120,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19172,7 +19172,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfEmailUsersType", "inheritance": "", "abstract": false, @@ -19185,7 +19185,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19197,7 +19197,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19209,7 +19209,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19221,7 +19221,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -19233,7 +19233,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -19285,7 +19285,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ContactType", "inheritance": "", "abstract": false, @@ -19312,7 +19312,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19324,7 +19324,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19336,7 +19336,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPhonesType", "inheritance": "", "abstract": false, @@ -19349,7 +19349,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfUrlsType", "inheritance": "", "abstract": false, @@ -19362,7 +19362,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfExtractedEmailAddresses", "inheritance": "", "abstract": false, @@ -19375,7 +19375,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfAddressesType", "inheritance": "", "abstract": false, @@ -19388,7 +19388,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19414,7 +19414,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19441,7 +19441,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PhoneType", "inheritance": "", "abstract": false, @@ -19468,7 +19468,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19480,7 +19480,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19492,7 +19492,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19518,7 +19518,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PhoneEntityType", "inheritance": "", "abstract": false, @@ -19545,7 +19545,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19557,7 +19557,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19569,7 +19569,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19641,7 +19641,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailUserType", "inheritance": "", "abstract": false, @@ -19668,7 +19668,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19680,7 +19680,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19706,7 +19706,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19718,7 +19718,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfEmailUsersType", "inheritance": "", "abstract": false, @@ -19745,7 +19745,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19772,7 +19772,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19784,7 +19784,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19796,7 +19796,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19808,7 +19808,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19820,7 +19820,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19832,7 +19832,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19844,7 +19844,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19856,7 +19856,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19868,7 +19868,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19880,7 +19880,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19892,7 +19892,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19904,7 +19904,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19916,7 +19916,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19928,7 +19928,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19940,7 +19940,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19952,7 +19952,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19964,7 +19964,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19976,7 +19976,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19988,7 +19988,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20000,7 +20000,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20012,7 +20012,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20038,7 +20038,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ParcelDeliveryEntityType", "inheritance": "", "abstract": false, @@ -20065,7 +20065,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20077,7 +20077,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20089,7 +20089,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20101,7 +20101,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20113,7 +20113,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20125,7 +20125,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20151,7 +20151,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FlightEntityType", "inheritance": "", "abstract": false, @@ -20178,7 +20178,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20190,7 +20190,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20202,7 +20202,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20214,7 +20214,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20226,7 +20226,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20238,7 +20238,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfFlightsType", "inheritance": "", "abstract": false, @@ -20265,7 +20265,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FlightReservationEntityType", "inheritance": "", "abstract": false, @@ -20292,7 +20292,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20319,7 +20319,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SenderAddInEntityType", "inheritance": "", "abstract": false, @@ -20346,7 +20346,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfAddressEntitiesType", "inheritance": "", "abstract": false, @@ -20359,7 +20359,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfMeetingSuggestionsType", "inheritance": "", "abstract": false, @@ -20372,7 +20372,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfTaskSuggestionsType", "inheritance": "", "abstract": false, @@ -20385,7 +20385,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfEmailAddressEntitiesType", "inheritance": "", "abstract": false, @@ -20398,7 +20398,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfContactsType", "inheritance": "", "abstract": false, @@ -20411,7 +20411,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfUrlEntitiesType", "inheritance": "", "abstract": false, @@ -20424,7 +20424,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPhoneEntitiesType", "inheritance": "", "abstract": false, @@ -20437,7 +20437,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfParcelDeliveryEntitiesType", "inheritance": "", "abstract": false, @@ -20450,7 +20450,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfFlightReservationsType", "inheritance": "", "abstract": false, @@ -20463,7 +20463,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfSenderAddInsType", "inheritance": "", "abstract": false, @@ -20490,7 +20490,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -20502,7 +20502,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20514,7 +20514,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20526,7 +20526,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20538,7 +20538,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -20550,7 +20550,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -20562,7 +20562,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -20574,7 +20574,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -20586,7 +20586,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -20598,7 +20598,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -20610,7 +20610,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -20622,7 +20622,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -20634,7 +20634,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -20646,7 +20646,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -20658,7 +20658,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20670,7 +20670,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20808,7 +20808,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TargetFolderIdType", "inheritance": "", "abstract": false, @@ -20821,7 +20821,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -20834,7 +20834,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -20847,7 +20847,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TargetFolderIdType", "inheritance": "", "abstract": false, @@ -20860,7 +20860,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -20873,7 +20873,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -20886,7 +20886,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -20899,7 +20899,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DisposalType", "inheritance": "", "abstract": false, @@ -20912,7 +20912,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RetentionType", "inheritance": "", "abstract": false, @@ -20925,7 +20925,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20938,7 +20938,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FlagType", "inheritance": "", "abstract": false, @@ -20951,7 +20951,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -21004,7 +21004,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -21016,7 +21016,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21028,7 +21028,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -21040,7 +21040,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -21052,7 +21052,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -21064,7 +21064,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -21076,7 +21076,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -21088,7 +21088,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -21100,7 +21100,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -21112,7 +21112,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -21124,7 +21124,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -21136,7 +21136,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -21148,7 +21148,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FlagStatusType", "inheritance": "", "abstract": false, @@ -21160,7 +21160,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FlagStatusType", "inheritance": "", "abstract": false, @@ -21172,7 +21172,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -21184,7 +21184,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -21196,7 +21196,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -21208,7 +21208,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -21220,7 +21220,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -21232,7 +21232,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -21244,7 +21244,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -21256,7 +21256,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -21268,7 +21268,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfItemClassType", "inheritance": "", "abstract": false, @@ -21280,7 +21280,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfItemClassType", "inheritance": "", "abstract": false, @@ -21292,7 +21292,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ImportanceChoicesType", "inheritance": "", "abstract": false, @@ -21304,7 +21304,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ImportanceChoicesType", "inheritance": "", "abstract": false, @@ -21316,7 +21316,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfBaseItemIdsType", "inheritance": "", "abstract": false, @@ -21328,7 +21328,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfBaseItemIdsType", "inheritance": "", "abstract": false, @@ -21340,7 +21340,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -21352,7 +21352,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "base64Binary", "inheritance": "", "abstract": false, @@ -21364,7 +21364,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21376,7 +21376,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MailboxSearchLocationType", "inheritance": "", "abstract": false, @@ -21388,7 +21388,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IconIndexType", "inheritance": "", "abstract": false, @@ -21400,7 +21400,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IconIndexType", "inheritance": "", "abstract": false, @@ -21412,7 +21412,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfBaseItemIdsType", "inheritance": "", "abstract": false, @@ -21424,7 +21424,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -21436,7 +21436,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -21448,7 +21448,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -21460,7 +21460,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -21472,7 +21472,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -21581,7 +21581,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "base64Binary", "inheritance": "", "abstract": false, @@ -21638,7 +21638,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21651,7 +21651,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21664,7 +21664,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfAllItemsType", "inheritance": "", "abstract": false, @@ -21734,7 +21734,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "base64Binary", "inheritance": "", "abstract": false, @@ -21747,7 +21747,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfConversationNodesType", "inheritance": "", "abstract": false, @@ -21820,7 +21820,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "HighlightTermType", "inheritance": "", "abstract": false, @@ -21886,7 +21886,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -21899,7 +21899,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -21912,7 +21912,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -21925,7 +21925,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FolderIdType", "inheritance": "", "abstract": false, @@ -22313,7 +22313,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22326,7 +22326,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22339,7 +22339,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22352,7 +22352,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22365,7 +22365,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22378,7 +22378,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22391,7 +22391,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22404,7 +22404,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "double", "inheritance": "", "abstract": false, @@ -22417,7 +22417,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "double", "inheritance": "", "abstract": false, @@ -22430,7 +22430,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "double", "inheritance": "", "abstract": false, @@ -22443,7 +22443,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "double", "inheritance": "", "abstract": false, @@ -22456,7 +22456,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "double", "inheritance": "", "abstract": false, @@ -22469,7 +22469,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22482,7 +22482,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22495,7 +22495,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LocationSourceType", "inheritance": "", "abstract": false, @@ -22602,7 +22602,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StringAttributedValueType", "inheritance": "", "abstract": false, @@ -22629,7 +22629,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StringArrayAttributedValueType", "inheritance": "", "abstract": false, @@ -22656,7 +22656,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BodyContentAttributedValueType", "inheritance": "", "abstract": false, @@ -22683,7 +22683,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressAttributedValueType", "inheritance": "", "abstract": false, @@ -22710,7 +22710,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PhoneNumberAttributedValueType", "inheritance": "", "abstract": false, @@ -22737,7 +22737,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PostalAddressAttributedValueType", "inheritance": "", "abstract": false, @@ -22764,7 +22764,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ExtendedPropertyAttributedValueType", "inheritance": "", "abstract": false, @@ -22791,7 +22791,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -22804,7 +22804,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -22817,7 +22817,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -22844,7 +22844,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22857,7 +22857,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -22884,7 +22884,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22911,7 +22911,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "double", "inheritance": "", "abstract": false, @@ -22924,7 +22924,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22937,7 +22937,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22950,7 +22950,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22963,7 +22963,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22976,7 +22976,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22989,7 +22989,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23002,7 +23002,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23015,7 +23015,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23028,7 +23028,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23055,7 +23055,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23068,7 +23068,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23081,7 +23081,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23094,7 +23094,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23107,7 +23107,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23120,7 +23120,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -23133,7 +23133,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UserProfilePicture", "inheritance": "", "abstract": false, @@ -23146,7 +23146,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23173,7 +23173,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -23186,7 +23186,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -23199,7 +23199,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23212,7 +23212,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23239,7 +23239,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23252,7 +23252,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23265,7 +23265,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23278,7 +23278,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23291,7 +23291,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23304,7 +23304,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23317,7 +23317,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23330,7 +23330,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -23343,7 +23343,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -23383,7 +23383,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23396,7 +23396,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23409,7 +23409,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23422,7 +23422,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23435,7 +23435,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23448,7 +23448,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23461,7 +23461,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23474,7 +23474,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23501,7 +23501,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23514,7 +23514,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23527,7 +23527,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23540,7 +23540,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23567,7 +23567,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23580,7 +23580,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23593,7 +23593,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -23606,7 +23606,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -23633,7 +23633,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23646,7 +23646,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -23673,7 +23673,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23686,7 +23686,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23699,7 +23699,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -23712,7 +23712,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -23725,7 +23725,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23738,7 +23738,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ProfileInsightValue", "inheritance": "", "abstract": false, @@ -23751,7 +23751,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfProfileInsightValue", "inheritance": "", "abstract": false, @@ -23778,7 +23778,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23791,7 +23791,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23804,7 +23804,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23817,7 +23817,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -23830,7 +23830,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23843,7 +23843,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ProfileInsightValue", "inheritance": "", "abstract": false, @@ -23856,7 +23856,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -23883,7 +23883,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "InsightValue", "inheritance": "", "abstract": false, @@ -23910,7 +23910,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SkillInsightValue", "inheritance": "", "abstract": false, @@ -23937,7 +23937,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ProfileInsightValue", "inheritance": "", "abstract": false, @@ -23964,7 +23964,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "JobInsightValue", "inheritance": "", "abstract": false, @@ -23991,7 +23991,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CompanyInsightValue", "inheritance": "", "abstract": false, @@ -24031,7 +24031,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "InsightValue", "inheritance": "", "abstract": false, @@ -24058,7 +24058,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfInsightValue", "inheritance": "", "abstract": false, @@ -24085,7 +24085,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24098,7 +24098,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "double", "inheritance": "", "abstract": false, @@ -24111,7 +24111,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "InsightContent", "inheritance": "", "abstract": false, @@ -24124,7 +24124,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24137,7 +24137,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfInsightValue", "inheritance": "", "abstract": false, @@ -24150,7 +24150,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -24217,7 +24217,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ComputedInsightValueProperty", "inheritance": "", "abstract": false, @@ -24244,7 +24244,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfComputedInsightValueProperty", "inheritance": "", "abstract": false, @@ -24271,7 +24271,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Insight", "inheritance": "", "abstract": false, @@ -24308,7 +24308,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfPathsToElementType", "inheritance": "", "abstract": false, @@ -24334,7 +24334,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24347,7 +24347,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24360,7 +24360,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24373,7 +24373,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24386,7 +24386,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24399,7 +24399,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24412,7 +24412,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24425,7 +24425,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24438,7 +24438,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24451,7 +24451,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfSkillInsightValue", "inheritance": "", "abstract": false, @@ -24464,7 +24464,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24477,7 +24477,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfProfileInsightValue", "inheritance": "", "abstract": false, @@ -24490,7 +24490,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfProfileInsightValue", "inheritance": "", "abstract": false, @@ -24503,7 +24503,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfProfileInsightValue", "inheritance": "", "abstract": false, @@ -24516,7 +24516,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24529,7 +24529,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfJobInsightValue", "inheritance": "", "abstract": false, @@ -24542,7 +24542,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24555,7 +24555,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24568,7 +24568,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24581,7 +24581,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfCompanyInsightValue", "inheritance": "", "abstract": false, @@ -24594,7 +24594,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24607,7 +24607,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24620,7 +24620,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfProfileInsightValue", "inheritance": "", "abstract": false, @@ -24633,7 +24633,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24646,7 +24646,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ProfileInsightValue", "inheritance": "", "abstract": false, @@ -24659,7 +24659,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfInsight", "inheritance": "", "abstract": false, @@ -24672,7 +24672,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UserProfilePicture", "inheritance": "", "abstract": false, @@ -24772,7 +24772,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -24785,7 +24785,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24852,7 +24852,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24865,7 +24865,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24878,7 +24878,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -24891,7 +24891,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfBodyContentAttributedValuesType", "inheritance": "", "abstract": false, @@ -24903,7 +24903,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24916,7 +24916,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24929,7 +24929,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24942,7 +24942,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24955,7 +24955,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24968,7 +24968,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24981,7 +24981,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24994,7 +24994,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25007,7 +25007,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25020,7 +25020,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25033,7 +25033,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25046,7 +25046,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25059,7 +25059,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25072,7 +25072,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25085,7 +25085,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25098,7 +25098,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25111,7 +25111,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25124,7 +25124,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25137,7 +25137,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25150,7 +25150,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25163,7 +25163,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25176,7 +25176,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25189,7 +25189,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25202,7 +25202,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25215,7 +25215,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25228,7 +25228,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressType", "inheritance": "", "abstract": false, @@ -25241,7 +25241,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfEmailAddressesType", "inheritance": "", "abstract": false, @@ -25254,7 +25254,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PersonaPhoneNumberType", "inheritance": "", "abstract": false, @@ -25267,7 +25267,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25280,7 +25280,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25293,7 +25293,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25306,7 +25306,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -25319,7 +25319,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "double", "inheritance": "", "abstract": false, @@ -25332,7 +25332,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfFolderIdType", "inheritance": "", "abstract": false, @@ -25345,7 +25345,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPersonaAttributionsType", "inheritance": "", "abstract": false, @@ -25358,7 +25358,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -25370,7 +25370,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -25382,7 +25382,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -25394,7 +25394,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -25406,7 +25406,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -25418,7 +25418,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -25430,7 +25430,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -25442,7 +25442,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -25454,7 +25454,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -25466,7 +25466,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -25478,7 +25478,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -25490,7 +25490,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -25502,7 +25502,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -25514,7 +25514,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPhoneNumberAttributedValuesType", "inheritance": "", "abstract": false, @@ -25526,7 +25526,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPhoneNumberAttributedValuesType", "inheritance": "", "abstract": false, @@ -25538,7 +25538,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPhoneNumberAttributedValuesType", "inheritance": "", "abstract": false, @@ -25550,7 +25550,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPhoneNumberAttributedValuesType", "inheritance": "", "abstract": false, @@ -25562,7 +25562,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPhoneNumberAttributedValuesType", "inheritance": "", "abstract": false, @@ -25574,7 +25574,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPhoneNumberAttributedValuesType", "inheritance": "", "abstract": false, @@ -25586,7 +25586,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPhoneNumberAttributedValuesType", "inheritance": "", "abstract": false, @@ -25598,7 +25598,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPhoneNumberAttributedValuesType", "inheritance": "", "abstract": false, @@ -25610,7 +25610,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPhoneNumberAttributedValuesType", "inheritance": "", "abstract": false, @@ -25622,7 +25622,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPhoneNumberAttributedValuesType", "inheritance": "", "abstract": false, @@ -25634,7 +25634,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPhoneNumberAttributedValuesType", "inheritance": "", "abstract": false, @@ -25646,7 +25646,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPhoneNumberAttributedValuesType", "inheritance": "", "abstract": false, @@ -25658,7 +25658,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPhoneNumberAttributedValuesType", "inheritance": "", "abstract": false, @@ -25670,7 +25670,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPhoneNumberAttributedValuesType", "inheritance": "", "abstract": false, @@ -25682,7 +25682,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPhoneNumberAttributedValuesType", "inheritance": "", "abstract": false, @@ -25694,7 +25694,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPhoneNumberAttributedValuesType", "inheritance": "", "abstract": false, @@ -25706,7 +25706,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPhoneNumberAttributedValuesType", "inheritance": "", "abstract": false, @@ -25718,7 +25718,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPhoneNumberAttributedValuesType", "inheritance": "", "abstract": false, @@ -25730,7 +25730,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPhoneNumberAttributedValuesType", "inheritance": "", "abstract": false, @@ -25742,7 +25742,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfEmailAddressAttributedValuesType", "inheritance": "", "abstract": false, @@ -25755,7 +25755,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfEmailAddressAttributedValuesType", "inheritance": "", "abstract": false, @@ -25768,7 +25768,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfEmailAddressAttributedValuesType", "inheritance": "", "abstract": false, @@ -25781,7 +25781,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -25793,7 +25793,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -25805,7 +25805,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -25817,7 +25817,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -25829,7 +25829,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -25841,7 +25841,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -25853,7 +25853,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPostalAddressAttributedValuesType", "inheritance": "", "abstract": false, @@ -25866,7 +25866,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPostalAddressAttributedValuesType", "inheritance": "", "abstract": false, @@ -25879,7 +25879,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPostalAddressAttributedValuesType", "inheritance": "", "abstract": false, @@ -25892,7 +25892,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -25904,7 +25904,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -25916,7 +25916,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -25928,7 +25928,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -25940,7 +25940,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -25952,7 +25952,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -25964,7 +25964,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -25976,7 +25976,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringArrayAttributedValuesType", "inheritance": "", "abstract": false, @@ -25988,7 +25988,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -26000,7 +26000,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -26012,7 +26012,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -26024,7 +26024,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -26036,7 +26036,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringAttributedValuesType", "inheritance": "", "abstract": false, @@ -26048,7 +26048,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfExtendedPropertyAttributedValueType", "inheritance": "", "abstract": false, @@ -26104,7 +26104,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -26117,7 +26117,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -26196,7 +26196,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -26209,7 +26209,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -26222,7 +26222,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -26235,7 +26235,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -26248,7 +26248,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -26288,7 +26288,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -26301,7 +26301,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -26314,7 +26314,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -26327,7 +26327,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ModernGroupTypeType", "inheritance": "", "abstract": false, @@ -26340,7 +26340,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -26353,7 +26353,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -26366,7 +26366,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -26379,7 +26379,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -26392,7 +26392,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -26405,7 +26405,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -26796,7 +26796,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfItemsType", "inheritance": "", "abstract": false, @@ -26809,7 +26809,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfConversationsType", "inheritance": "", "abstract": false, @@ -26822,7 +26822,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfCalendarItemsType", "inheritance": "", "abstract": false, @@ -27083,7 +27083,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -28768,7 +28768,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -28780,7 +28780,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -28884,7 +28884,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -28896,7 +28896,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BodyType", "inheritance": "", "abstract": false, @@ -28908,7 +28908,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -28951,7 +28951,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BodyType", "inheritance": "", "abstract": false, @@ -29209,7 +29209,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SingleRecipientType", "inheritance": "", "abstract": false, @@ -29221,7 +29221,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfRecipientsType", "inheritance": "", "abstract": false, @@ -29233,7 +29233,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfRecipientsType", "inheritance": "", "abstract": false, @@ -29245,7 +29245,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfRecipientsType", "inheritance": "", "abstract": false, @@ -29257,7 +29257,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -29269,7 +29269,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -29281,7 +29281,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "base64Binary", "inheritance": "", "abstract": false, @@ -29293,7 +29293,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -29305,7 +29305,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SingleRecipientType", "inheritance": "", "abstract": false, @@ -29317,7 +29317,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -29329,7 +29329,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -29341,7 +29341,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -29353,7 +29353,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -29365,7 +29365,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfRecipientsType", "inheritance": "", "abstract": false, @@ -29377,7 +29377,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SingleRecipientType", "inheritance": "", "abstract": false, @@ -29389,7 +29389,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SingleRecipientType", "inheritance": "", "abstract": false, @@ -29401,7 +29401,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ApprovalRequestDataType", "inheritance": "", "abstract": false, @@ -29413,7 +29413,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "VotingInformationType", "inheritance": "", "abstract": false, @@ -29425,7 +29425,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ReminderMessageDataType", "inheritance": "", "abstract": false, @@ -29567,7 +29567,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -29579,7 +29579,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -29591,7 +29591,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -29603,7 +29603,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -29615,7 +29615,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -29627,7 +29627,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -29639,7 +29639,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -29651,7 +29651,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TaskDelegateStateType", "inheritance": "", "abstract": false, @@ -29663,7 +29663,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -29675,7 +29675,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -29687,7 +29687,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -29699,7 +29699,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -29711,7 +29711,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -29723,7 +29723,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -29735,7 +29735,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -29747,7 +29747,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -29759,7 +29759,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "double", "inheritance": "", "abstract": false, @@ -29771,7 +29771,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TaskRecurrenceType", "inheritance": "", "abstract": false, @@ -29783,7 +29783,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -29795,7 +29795,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TaskStatusType", "inheritance": "", "abstract": false, @@ -29807,7 +29807,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -29819,7 +29819,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -29845,7 +29845,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "base64Binary", "inheritance": "", "abstract": false, @@ -29857,7 +29857,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -29869,7 +29869,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SingleRecipientType", "inheritance": "", "abstract": false, @@ -29881,7 +29881,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -29893,7 +29893,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -29905,7 +29905,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -29917,7 +29917,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -29929,7 +29929,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SingleRecipientType", "inheritance": "", "abstract": false, @@ -30257,7 +30257,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ContactItemType", "inheritance": "", "abstract": false, @@ -30283,7 +30283,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ResolutionType", "inheritance": "", "abstract": false, @@ -30375,7 +30375,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressType", "inheritance": "", "abstract": false, @@ -31042,7 +31042,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ResponseTypeType", "inheritance": "", "abstract": false, @@ -31054,7 +31054,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -31066,7 +31066,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -31078,7 +31078,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -31218,7 +31218,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfOccurrenceRangesType", "inheritance": "", "abstract": false, @@ -31851,7 +31851,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DayOfWeekType", "inheritance": "", "abstract": false, @@ -31962,7 +31962,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -31974,7 +31974,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PersonaPostalAddressType", "inheritance": "", "abstract": false, @@ -32368,7 +32368,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfTransitionsGroupsType", "inheritance": "", "abstract": false, @@ -32380,7 +32380,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfTransitionsType", "inheritance": "", "abstract": false, @@ -33022,7 +33022,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -33034,7 +33034,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -33046,7 +33046,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -33058,7 +33058,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -33070,7 +33070,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -33082,7 +33082,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -33094,7 +33094,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -33106,7 +33106,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LegacyFreeBusyType", "inheritance": "", "abstract": false, @@ -33118,7 +33118,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -33130,7 +33130,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -33142,7 +33142,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -33154,7 +33154,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -33166,7 +33166,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -33178,7 +33178,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -33190,7 +33190,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -33202,7 +33202,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CalendarItemTypeType", "inheritance": "", "abstract": false, @@ -33214,7 +33214,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ResponseTypeType", "inheritance": "", "abstract": false, @@ -33226,7 +33226,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SingleRecipientType", "inheritance": "", "abstract": false, @@ -33238,7 +33238,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfAttendeesType", "inheritance": "", "abstract": false, @@ -33250,7 +33250,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfAttendeesType", "inheritance": "", "abstract": false, @@ -33262,7 +33262,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfAttendeesType", "inheritance": "", "abstract": false, @@ -33274,7 +33274,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfInboxReminderType", "inheritance": "", "abstract": false, @@ -33286,7 +33286,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -33298,7 +33298,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -33310,7 +33310,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfAllItemsType", "inheritance": "", "abstract": false, @@ -33322,7 +33322,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfAllItemsType", "inheritance": "", "abstract": false, @@ -33334,7 +33334,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -33346,7 +33346,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -33358,7 +33358,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -33370,7 +33370,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -33382,7 +33382,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -33394,7 +33394,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RecurrenceType", "inheritance": "", "abstract": false, @@ -33406,7 +33406,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "OccurrenceInfoType", "inheritance": "", "abstract": false, @@ -33418,7 +33418,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "OccurrenceInfoType", "inheritance": "", "abstract": false, @@ -33430,7 +33430,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfOccurrenceInfoType", "inheritance": "", "abstract": false, @@ -33442,7 +33442,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfDeletedOccurrencesType", "inheritance": "", "abstract": false, @@ -33454,7 +33454,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TimeZoneType", "inheritance": "", "abstract": false, @@ -33466,7 +33466,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TimeZoneDefinitionType", "inheritance": "", "abstract": false, @@ -33479,7 +33479,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TimeZoneDefinitionType", "inheritance": "", "abstract": false, @@ -33492,7 +33492,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -33504,7 +33504,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -33516,7 +33516,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -33528,7 +33528,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -33540,7 +33540,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -33552,7 +33552,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EnhancedLocationType", "inheritance": "", "abstract": false, @@ -33564,7 +33564,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -33577,7 +33577,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -33590,7 +33590,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -33603,7 +33603,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -33616,7 +33616,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LegacyFreeBusyType", "inheritance": "", "abstract": false, @@ -33628,7 +33628,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -33641,7 +33641,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "OnlineMeetingSettingsType", "inheritance": "", "abstract": false, @@ -33654,7 +33654,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -33680,7 +33680,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -33692,7 +33692,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -33704,7 +33704,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -33716,7 +33716,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -33728,7 +33728,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ResponseTypeType", "inheritance": "", "abstract": false, @@ -33740,7 +33740,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -33752,7 +33752,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -33764,7 +33764,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -33776,7 +33776,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -33802,7 +33802,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -33814,7 +33814,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -33826,7 +33826,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -33838,7 +33838,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -33850,7 +33850,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -33862,7 +33862,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -33888,7 +33888,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MeetingRequestTypeType", "inheritance": "", "abstract": false, @@ -33900,7 +33900,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LegacyFreeBusyType", "inheritance": "", "abstract": false, @@ -33912,7 +33912,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -33924,7 +33924,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -33936,7 +33936,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -33948,7 +33948,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -33960,7 +33960,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LegacyFreeBusyType", "inheritance": "", "abstract": false, @@ -33972,7 +33972,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -33984,7 +33984,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -33996,7 +33996,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -34008,7 +34008,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -34020,7 +34020,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -34032,7 +34032,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -34044,7 +34044,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CalendarItemTypeType", "inheritance": "", "abstract": false, @@ -34056,7 +34056,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ResponseTypeType", "inheritance": "", "abstract": false, @@ -34068,7 +34068,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SingleRecipientType", "inheritance": "", "abstract": false, @@ -34080,7 +34080,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfAttendeesType", "inheritance": "", "abstract": false, @@ -34092,7 +34092,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfAttendeesType", "inheritance": "", "abstract": false, @@ -34104,7 +34104,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfAttendeesType", "inheritance": "", "abstract": false, @@ -34116,7 +34116,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -34128,7 +34128,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -34140,7 +34140,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfAllItemsType", "inheritance": "", "abstract": false, @@ -34152,7 +34152,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfAllItemsType", "inheritance": "", "abstract": false, @@ -34164,7 +34164,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -34176,7 +34176,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -34188,7 +34188,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -34200,7 +34200,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -34212,7 +34212,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -34224,7 +34224,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RecurrenceType", "inheritance": "", "abstract": false, @@ -34236,7 +34236,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "OccurrenceInfoType", "inheritance": "", "abstract": false, @@ -34248,7 +34248,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "OccurrenceInfoType", "inheritance": "", "abstract": false, @@ -34260,7 +34260,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfOccurrenceInfoType", "inheritance": "", "abstract": false, @@ -34272,7 +34272,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfDeletedOccurrencesType", "inheritance": "", "abstract": false, @@ -34284,7 +34284,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TimeZoneType", "inheritance": "", "abstract": false, @@ -34296,7 +34296,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TimeZoneDefinitionType", "inheritance": "", "abstract": false, @@ -34309,7 +34309,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TimeZoneDefinitionType", "inheritance": "", "abstract": false, @@ -34322,7 +34322,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -34334,7 +34334,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -34346,7 +34346,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -34358,7 +34358,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -34370,7 +34370,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -34382,7 +34382,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EnhancedLocationType", "inheritance": "", "abstract": false, @@ -34394,7 +34394,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ChangeHighlightsType", "inheritance": "", "abstract": false, @@ -34406,7 +34406,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -34419,7 +34419,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -34432,7 +34432,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -34445,7 +34445,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -34472,7 +34472,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -34484,7 +34484,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -34496,7 +34496,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -34508,7 +34508,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RecurrenceType", "inheritance": "", "abstract": false, @@ -34520,7 +34520,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -34532,7 +34532,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -34544,7 +34544,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -34556,7 +34556,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EnhancedLocationType", "inheritance": "", "abstract": false, @@ -34582,7 +34582,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -34594,7 +34594,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -34606,7 +34606,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -34618,7 +34618,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RecurrenceType", "inheritance": "", "abstract": false, @@ -34630,7 +34630,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -34642,7 +34642,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EnhancedLocationType", "inheritance": "", "abstract": false, @@ -35480,7 +35480,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35492,7 +35492,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35504,7 +35504,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35516,7 +35516,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35528,7 +35528,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35540,7 +35540,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35552,7 +35552,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35564,7 +35564,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35576,7 +35576,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35588,7 +35588,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35662,7 +35662,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35674,7 +35674,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35724,7 +35724,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -35736,7 +35736,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -35870,7 +35870,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35882,7 +35882,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35894,7 +35894,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35906,7 +35906,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35918,7 +35918,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36150,7 +36150,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MemberType", "inheritance": "", "abstract": false, @@ -36177,7 +36177,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressType", "inheritance": "", "abstract": false, @@ -36189,7 +36189,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MemberStatusType", "inheritance": "", "abstract": false, @@ -36227,7 +36227,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36239,7 +36239,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RoleMemberTypeType", "inheritance": "", "abstract": false, @@ -36251,7 +36251,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36277,7 +36277,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -36289,7 +36289,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36301,7 +36301,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36313,7 +36313,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36325,7 +36325,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -36337,7 +36337,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -36349,7 +36349,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36361,7 +36361,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36373,7 +36373,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36385,7 +36385,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36397,7 +36397,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36409,7 +36409,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36421,7 +36421,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36433,7 +36433,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36445,7 +36445,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -36457,7 +36457,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36469,7 +36469,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -36481,7 +36481,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36493,7 +36493,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -36505,7 +36505,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -36517,7 +36517,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36529,7 +36529,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36541,7 +36541,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36553,7 +36553,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -36565,7 +36565,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -36577,7 +36577,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -36589,7 +36589,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -36601,7 +36601,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36613,7 +36613,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "base64Binary", "inheritance": "", "abstract": false, @@ -36625,7 +36625,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36637,7 +36637,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -36663,7 +36663,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36675,7 +36675,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "GuidType", "inheritance": "", "abstract": false, @@ -36687,7 +36687,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfAbchPersonContactHandlesType", "inheritance": "", "abstract": false, @@ -36699,7 +36699,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -36711,7 +36711,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36723,7 +36723,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36735,7 +36735,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -36747,7 +36747,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -36773,7 +36773,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AbchPersonContactHandle", "inheritance": "", "abstract": false, @@ -36826,7 +36826,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36853,7 +36853,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "GuidType", "inheritance": "", "abstract": false, @@ -36865,7 +36865,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfItemIdsType", "inheritance": "", "abstract": false, @@ -36877,7 +36877,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36889,7 +36889,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36901,7 +36901,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36927,7 +36927,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36939,7 +36939,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FileAsMappingType", "inheritance": "", "abstract": false, @@ -36951,7 +36951,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36963,7 +36963,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36975,7 +36975,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36987,7 +36987,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36999,7 +36999,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37011,7 +37011,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CompleteNameType", "inheritance": "", "abstract": false, @@ -37023,7 +37023,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37035,7 +37035,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressDictionaryType", "inheritance": "", "abstract": false, @@ -37047,7 +37047,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AbchEmailAddressDictionaryType", "inheritance": "", "abstract": false, @@ -37059,7 +37059,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PhysicalAddressDictionaryType", "inheritance": "", "abstract": false, @@ -37071,7 +37071,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PhoneNumberDictionaryType", "inheritance": "", "abstract": false, @@ -37083,7 +37083,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37095,7 +37095,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -37107,7 +37107,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "anyURI", "inheritance": "", "abstract": false, @@ -37119,7 +37119,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -37131,7 +37131,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -37143,7 +37143,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ContactSourceType", "inheritance": "", "abstract": false, @@ -37155,7 +37155,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37167,7 +37167,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37179,7 +37179,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ImAddressDictionaryType", "inheritance": "", "abstract": false, @@ -37191,7 +37191,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37203,7 +37203,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37215,7 +37215,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37227,7 +37227,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37239,7 +37239,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PhysicalAddressIndexType", "inheritance": "", "abstract": false, @@ -37251,7 +37251,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37263,7 +37263,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37275,7 +37275,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37287,7 +37287,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -37299,7 +37299,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -37311,7 +37311,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37323,7 +37323,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37335,7 +37335,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37347,7 +37347,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37359,7 +37359,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37371,7 +37371,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "base64Binary", "inheritance": "", "abstract": false, @@ -37383,7 +37383,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfBinaryType", "inheritance": "", "abstract": false, @@ -37395,7 +37395,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfBinaryType", "inheritance": "", "abstract": false, @@ -37407,7 +37407,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37419,7 +37419,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SingleRecipientType", "inheritance": "", "abstract": false, @@ -37431,7 +37431,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfRecipientsType", "inheritance": "", "abstract": false, @@ -37443,7 +37443,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37455,7 +37455,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -37467,7 +37467,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -37479,7 +37479,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37491,7 +37491,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -37503,7 +37503,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37515,7 +37515,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37527,7 +37527,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -37539,7 +37539,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37551,7 +37551,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -37563,7 +37563,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -37575,7 +37575,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37587,7 +37587,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -37599,7 +37599,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37611,7 +37611,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ContactUrlDictionaryType", "inheritance": "", "abstract": false, @@ -37623,7 +37623,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -37635,7 +37635,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37647,7 +37647,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37659,7 +37659,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37671,7 +37671,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37683,7 +37683,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37695,7 +37695,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37707,7 +37707,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -37719,7 +37719,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -37731,7 +37731,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -37743,7 +37743,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -37755,7 +37755,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37767,7 +37767,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -37779,7 +37779,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -37791,7 +37791,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37803,7 +37803,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "GuidType", "inheritance": "", "abstract": false, @@ -37815,7 +37815,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -37827,7 +37827,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37839,7 +37839,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37851,7 +37851,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -37863,7 +37863,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37875,7 +37875,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37887,7 +37887,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -37899,7 +37899,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37911,7 +37911,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37937,7 +37937,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "base64Binary", "inheritance": "", "abstract": false, @@ -37964,7 +37964,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "GuidType", "inheritance": "", "abstract": false, @@ -37976,7 +37976,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -37988,7 +37988,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -38014,7 +38014,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "XrmOrganizationItemType", "inheritance": "", "abstract": false, @@ -38041,7 +38041,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38053,7 +38053,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38065,7 +38065,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ContactSourceType", "inheritance": "", "abstract": false, @@ -38077,7 +38077,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MembersListType", "inheritance": "", "abstract": false, @@ -38502,7 +38502,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "GroupedItemsType", "inheritance": "", "abstract": false, @@ -39249,7 +39249,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WatermarkType", "inheritance": "", "abstract": false, @@ -39343,7 +39343,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -39438,7 +39438,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WatermarkType", "inheritance": "", "abstract": false, @@ -39450,7 +39450,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -39794,7 +39794,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfBaseFolderIdsType", "inheritance": "", "abstract": false, @@ -39816,7 +39816,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WatermarkType", "inheritance": "", "abstract": false, @@ -39874,7 +39874,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -39925,7 +39925,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfBaseFolderIdsType", "inheritance": "", "abstract": false, @@ -40030,7 +40030,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NotificationType", "inheritance": "", "abstract": false, @@ -40266,7 +40266,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -40611,7 +40611,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "duration", "inheritance": "", "abstract": false, @@ -40761,7 +40761,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -40773,7 +40773,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -40785,7 +40785,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -40797,7 +40797,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -40810,7 +40810,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UnifiedGroupAccessType", "inheritance": "", "abstract": false, @@ -41576,7 +41576,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -41589,7 +41589,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -41602,7 +41602,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -41733,7 +41733,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CalendarEventDetails", "inheritance": "", "abstract": false, @@ -41760,7 +41760,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CalendarEvent", "inheritance": "", "abstract": false, @@ -41827,7 +41827,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -41853,7 +41853,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -41968,7 +41968,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -41981,7 +41981,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FreeBusyViewType", "inheritance": "", "abstract": false, @@ -42061,7 +42061,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WorkingPeriod", "inheritance": "", "abstract": false, @@ -42153,7 +42153,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -42286,7 +42286,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -42299,7 +42299,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfCalendarEvent", "inheritance": "", "abstract": false, @@ -42312,7 +42312,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WorkingHours", "inheritance": "", "abstract": false, @@ -42365,7 +42365,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -42466,7 +42466,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -42479,7 +42479,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -42492,7 +42492,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -42505,7 +42505,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -42518,7 +42518,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SuggestionQuality", "inheritance": "", "abstract": false, @@ -42544,7 +42544,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -42557,7 +42557,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -42857,7 +42857,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfAttendeeConflictData", "inheritance": "", "abstract": false, @@ -42884,7 +42884,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Suggestion", "inheritance": "", "abstract": false, @@ -42937,7 +42937,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfSuggestion", "inheritance": "", "abstract": false, @@ -42964,7 +42964,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SuggestionDayResult", "inheritance": "", "abstract": false, @@ -43067,7 +43067,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -43133,7 +43133,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Duration", "inheritance": "", "abstract": false, @@ -43146,7 +43146,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ReplyBody", "inheritance": "", "abstract": false, @@ -43159,7 +43159,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ReplyBody", "inheritance": "", "abstract": false, @@ -43226,7 +43226,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -43238,7 +43238,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -43250,7 +43250,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -43262,7 +43262,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -43288,7 +43288,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -43300,7 +43300,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -43312,7 +43312,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -43324,7 +43324,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -43336,7 +43336,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -43400,7 +43400,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -43412,7 +43412,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SendPromptType", "inheritance": "", "abstract": false, @@ -43438,7 +43438,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "VotingOptionDataType", "inheritance": "", "abstract": false, @@ -43465,7 +43465,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfVotingOptionDataType", "inheritance": "", "abstract": false, @@ -43477,7 +43477,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -43785,7 +43785,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -43798,7 +43798,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -43811,7 +43811,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -43824,7 +43824,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DistinguishedUserType", "inheritance": "", "abstract": false, @@ -43837,7 +43837,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -44073,7 +44073,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -44086,7 +44086,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -44099,7 +44099,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -44112,7 +44112,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -44125,7 +44125,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -44138,7 +44138,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PermissionActionType", "inheritance": "", "abstract": false, @@ -44151,7 +44151,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PermissionActionType", "inheritance": "", "abstract": false, @@ -44182,7 +44182,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PermissionReadAccessType", "inheritance": "", "abstract": false, @@ -44226,7 +44226,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CalendarPermissionReadAccessType", "inheritance": "", "abstract": false, @@ -44518,7 +44518,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfUnknownEntriesType", "inheritance": "", "abstract": false, @@ -44558,7 +44558,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfUnknownEntriesType", "inheritance": "", "abstract": false, @@ -44648,7 +44648,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -44788,7 +44788,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DelegatePermissionsType", "inheritance": "", "abstract": false, @@ -44801,7 +44801,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -44814,7 +44814,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -44841,7 +44841,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DelegateFolderPermissionLevelType", "inheritance": "", "abstract": false, @@ -44854,7 +44854,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DelegateFolderPermissionLevelType", "inheritance": "", "abstract": false, @@ -44867,7 +44867,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DelegateFolderPermissionLevelType", "inheritance": "", "abstract": false, @@ -44880,7 +44880,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DelegateFolderPermissionLevelType", "inheritance": "", "abstract": false, @@ -44893,7 +44893,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DelegateFolderPermissionLevelType", "inheritance": "", "abstract": false, @@ -44906,7 +44906,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DelegateFolderPermissionLevelType", "inheritance": "", "abstract": false, @@ -45139,7 +45139,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Duration", "inheritance": "", "abstract": false, @@ -45166,7 +45166,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SmtpDomain", "inheritance": "", "abstract": false, @@ -45257,7 +45257,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "OutOfOfficeMailTip", "inheritance": "", "abstract": false, @@ -45270,7 +45270,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -45283,7 +45283,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -45296,7 +45296,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -45309,7 +45309,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -45322,7 +45322,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -45335,7 +45335,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -45348,7 +45348,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -45361,7 +45361,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -45374,7 +45374,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -45836,7 +45836,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -46015,7 +46015,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -46028,7 +46028,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -46388,7 +46388,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UserConfigurationDictionaryEntryType", "inheritance": "", "abstract": false, @@ -46428,7 +46428,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -46441,7 +46441,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UserConfigurationDictionaryType", "inheritance": "", "abstract": false, @@ -46454,7 +46454,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "base64Binary", "inheritance": "", "abstract": false, @@ -46467,7 +46467,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "base64Binary", "inheritance": "", "abstract": false, @@ -46628,7 +46628,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ProtectionRuleType", "inheritance": "", "abstract": false, @@ -47113,7 +47113,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ProtectionRuleArgumentType", "inheritance": "", "abstract": false, @@ -47313,7 +47313,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressType", "inheritance": "", "abstract": false, @@ -47355,7 +47355,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyStringType", "inheritance": "", "abstract": false, @@ -47367,7 +47367,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyStringType", "inheritance": "", "abstract": false, @@ -47379,7 +47379,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfTrackingPropertiesType", "inheritance": "", "abstract": false, @@ -47505,7 +47505,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -47537,7 +47537,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -47549,7 +47549,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -47561,7 +47561,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyStringType", "inheritance": "", "abstract": false, @@ -47573,7 +47573,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyStringType", "inheritance": "", "abstract": false, @@ -47585,7 +47585,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfTrackingPropertiesType", "inheritance": "", "abstract": false, @@ -47611,7 +47611,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressType", "inheritance": "", "abstract": false, @@ -47623,7 +47623,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressType", "inheritance": "", "abstract": false, @@ -47635,7 +47635,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -47647,7 +47647,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -47659,7 +47659,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfEmailAddressesType", "inheritance": "", "abstract": false, @@ -47681,7 +47681,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfTrackingPropertiesType", "inheritance": "", "abstract": false, @@ -47720,7 +47720,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -47837,7 +47837,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -47850,7 +47850,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -47881,7 +47881,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -47894,7 +47894,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -48031,7 +48031,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -48044,7 +48044,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -48057,7 +48057,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -48070,7 +48070,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -48083,7 +48083,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -48096,7 +48096,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -48109,7 +48109,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -48122,7 +48122,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FlaggedForActionType", "inheritance": "", "abstract": false, @@ -48135,7 +48135,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfEmailAddressesType", "inheritance": "", "abstract": false, @@ -48148,7 +48148,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -48161,7 +48161,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -48174,7 +48174,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ImportanceChoicesType", "inheritance": "", "abstract": false, @@ -48187,7 +48187,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -48200,7 +48200,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -48213,7 +48213,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -48226,7 +48226,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -48239,7 +48239,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -48252,7 +48252,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -48265,7 +48265,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -48278,7 +48278,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -48291,7 +48291,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -48304,7 +48304,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -48317,7 +48317,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -48330,7 +48330,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -48343,7 +48343,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -48356,7 +48356,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -48369,7 +48369,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -48382,7 +48382,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -48395,7 +48395,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfEmailAddressesType", "inheritance": "", "abstract": false, @@ -48408,7 +48408,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -48421,7 +48421,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -48434,7 +48434,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SensitivityChoicesType", "inheritance": "", "abstract": false, @@ -48447,7 +48447,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RulePredicateDateRangeType", "inheritance": "", "abstract": false, @@ -48460,7 +48460,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RulePredicateSizeRangeType", "inheritance": "", "abstract": false, @@ -48491,7 +48491,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -48504,7 +48504,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TargetFolderIdType", "inheritance": "", "abstract": false, @@ -48517,7 +48517,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -48530,7 +48530,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfEmailAddressesType", "inheritance": "", "abstract": false, @@ -48543,7 +48543,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfEmailAddressesType", "inheritance": "", "abstract": false, @@ -48556,7 +48556,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ImportanceChoicesType", "inheritance": "", "abstract": false, @@ -48569,7 +48569,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -48582,7 +48582,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TargetFolderIdType", "inheritance": "", "abstract": false, @@ -48595,7 +48595,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -48608,7 +48608,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfEmailAddressesType", "inheritance": "", "abstract": false, @@ -48621,7 +48621,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfEmailAddressesType", "inheritance": "", "abstract": false, @@ -48634,7 +48634,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -48647,7 +48647,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -48678,7 +48678,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -48730,7 +48730,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -48743,7 +48743,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -48756,7 +48756,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RulePredicatesType", "inheritance": "", "abstract": false, @@ -48769,7 +48769,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RulePredicatesType", "inheritance": "", "abstract": false, @@ -48782,7 +48782,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RuleActionsType", "inheritance": "", "abstract": false, @@ -48813,7 +48813,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RuleType", "inheritance": "", "abstract": false, @@ -50453,7 +50453,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SearchableMailboxType", "inheritance": "", "abstract": false, @@ -50541,7 +50541,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "KeywordStatisticsSearchResultType", "inheritance": "", "abstract": false, @@ -50585,7 +50585,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "KeywordStatisticsSearchResultType", "inheritance": "", "abstract": false, @@ -50660,7 +50660,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ExtendedAttributeType", "inheritance": "", "abstract": false, @@ -50756,7 +50756,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfExtendedAttributesType", "inheritance": "", "abstract": false, @@ -51071,7 +51071,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfExtendedFieldURIsType", "inheritance": "", "abstract": false, @@ -51111,7 +51111,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PreviewItemMailboxType", "inheritance": "", "abstract": false, @@ -51124,7 +51124,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -51137,7 +51137,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemClassType", "inheritance": "", "abstract": false, @@ -51150,7 +51150,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -51163,7 +51163,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -51176,7 +51176,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -51189,7 +51189,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -51202,7 +51202,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfSmtpAddressType", "inheritance": "", "abstract": false, @@ -51215,7 +51215,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfSmtpAddressType", "inheritance": "", "abstract": false, @@ -51228,7 +51228,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfSmtpAddressType", "inheritance": "", "abstract": false, @@ -51241,7 +51241,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -51254,7 +51254,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -51267,7 +51267,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -51280,7 +51280,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -51293,7 +51293,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -51306,7 +51306,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -51319,7 +51319,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ImportanceChoicesType", "inheritance": "", "abstract": false, @@ -51332,7 +51332,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -51345,7 +51345,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -51358,7 +51358,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfExtendedPropertyType", "inheritance": "", "abstract": false, @@ -51389,7 +51389,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SearchPreviewItemType", "inheritance": "", "abstract": false, @@ -51490,7 +51490,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FailedSearchMailboxType", "inheritance": "", "abstract": false, @@ -51593,7 +51593,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfKeywordStatisticsSearchResultsType", "inheritance": "", "abstract": false, @@ -51605,7 +51605,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfSearchPreviewItemsType", "inheritance": "", "abstract": false, @@ -51617,7 +51617,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfFailedSearchMailboxesType", "inheritance": "", "abstract": false, @@ -51629,7 +51629,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfSearchRefinerItemsType", "inheritance": "", "abstract": false, @@ -51641,7 +51641,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfMailboxStatisticsItemsType", "inheritance": "", "abstract": false, @@ -51741,7 +51741,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SearchRefinerItemType", "inheritance": "", "abstract": false, @@ -51803,7 +51803,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -51816,7 +51816,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -51829,7 +51829,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -51842,7 +51842,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -51855,7 +51855,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -51868,7 +51868,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -51881,7 +51881,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -51922,7 +51922,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FileItemContext", "inheritance": "", "abstract": false, @@ -51966,7 +51966,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -51979,7 +51979,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -51992,7 +51992,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SingleRecipientType", "inheritance": "", "abstract": false, @@ -52005,7 +52005,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -52018,7 +52018,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -52031,7 +52031,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -52044,7 +52044,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -52057,7 +52057,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ImportanceChoicesType", "inheritance": "", "abstract": false, @@ -52070,7 +52070,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -52101,7 +52101,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -52114,7 +52114,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -52211,7 +52211,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MailboxStatisticsItemType", "inheritance": "", "abstract": false, @@ -52360,7 +52360,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -52391,7 +52391,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MailboxHoldStatusType", "inheritance": "", "abstract": false, @@ -52432,7 +52432,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -52525,7 +52525,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -52556,7 +52556,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonIndexableItemStatisticType", "inheritance": "", "abstract": false, @@ -52756,7 +52756,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -52769,7 +52769,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -52800,7 +52800,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonIndexableItemDetailType", "inheritance": "", "abstract": false, @@ -52831,7 +52831,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfNonIndexableItemDetailsType", "inheritance": "", "abstract": false, @@ -52843,7 +52843,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfFailedSearchMailboxesType", "inheritance": "", "abstract": false, @@ -52899,7 +52899,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfSearchableMailboxesType", "inheritance": "", "abstract": false, @@ -52912,7 +52912,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -52925,7 +52925,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -52938,7 +52938,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -52969,7 +52969,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DiscoverySearchConfigurationType", "inheritance": "", "abstract": false, @@ -53423,7 +53423,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -53493,7 +53493,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RetentionPolicyTagType", "inheritance": "", "abstract": false, @@ -53668,7 +53668,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -53681,7 +53681,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "base64Binary", "inheritance": "", "abstract": false, @@ -53828,7 +53828,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -53841,7 +53841,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -53892,7 +53892,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ClientExtensionType", "inheritance": "", "abstract": false, @@ -53957,7 +53957,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ClientExtensionType", "inheritance": "", "abstract": false, @@ -54093,7 +54093,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -54105,7 +54105,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfItemIdsType", "inheritance": "", "abstract": false, @@ -54117,7 +54117,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfExtendedPropertyType", "inheritance": "", "abstract": false, @@ -54129,7 +54129,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -54189,7 +54189,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfImGroupType", "inheritance": "", "abstract": false, @@ -54201,7 +54201,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPeopleType", "inheritance": "", "abstract": false, @@ -54326,7 +54326,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -54339,7 +54339,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -54352,7 +54352,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -54365,7 +54365,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -54378,7 +54378,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "GuidType", "inheritance": "", "abstract": false, @@ -54391,7 +54391,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -54417,7 +54417,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -54430,7 +54430,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -54456,7 +54456,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -54469,7 +54469,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -54482,7 +54482,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -54495,7 +54495,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -54508,7 +54508,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -54521,7 +54521,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -54534,7 +54534,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -54547,7 +54547,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -54560,7 +54560,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -54573,7 +54573,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -54586,7 +54586,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -54599,7 +54599,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -54612,7 +54612,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AudioQualityType", "inheritance": "", "abstract": false, @@ -54769,7 +54769,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -54926,7 +54926,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UMReportAudioMetricsAverageCountersType", "inheritance": "", "abstract": false, @@ -54953,7 +54953,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AudioMetricsAverageType", "inheritance": "", "abstract": false, @@ -54966,7 +54966,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AudioMetricsAverageType", "inheritance": "", "abstract": false, @@ -54979,7 +54979,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AudioMetricsAverageType", "inheritance": "", "abstract": false, @@ -54992,7 +54992,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AudioMetricsAverageType", "inheritance": "", "abstract": false, @@ -55005,7 +55005,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AudioMetricsAverageType", "inheritance": "", "abstract": false, @@ -55018,7 +55018,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AudioMetricsAverageType", "inheritance": "", "abstract": false, @@ -55166,7 +55166,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CDRDataType", "inheritance": "", "abstract": false, @@ -55193,7 +55193,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UMReportRawCountersType", "inheritance": "", "abstract": false, @@ -55220,7 +55220,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -55442,7 +55442,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -55571,7 +55571,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ClientIntentMeetingInquiryActionType", "inheritance": "", "abstract": false, @@ -56269,7 +56269,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -56282,7 +56282,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -56295,7 +56295,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MeetingSpaceTypeEnum", "inheritance": "", "abstract": false, @@ -56308,7 +56308,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -56321,7 +56321,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -56334,7 +56334,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -56347,7 +56347,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -56360,7 +56360,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -56373,7 +56373,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -56386,7 +56386,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -56620,7 +56620,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -56995,7 +56995,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -57008,7 +57008,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -57021,7 +57021,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -57034,7 +57034,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -57047,7 +57047,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -57060,7 +57060,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -57073,7 +57073,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -57086,7 +57086,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -57099,7 +57099,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -57112,7 +57112,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfParticipantActivities", "inheritance": "", "abstract": false, @@ -57125,7 +57125,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfContentActivities", "inheritance": "", "abstract": false, @@ -57206,7 +57206,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FolderIdType", "inheritance": "", "abstract": false, @@ -57219,7 +57219,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SharingInvitationPermissionLevel", "inheritance": "", "abstract": false, @@ -57979,7 +57979,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SearchFolderScopeType", "inheritance": "", "abstract": false, @@ -57992,7 +57992,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -58091,7 +58091,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "GuidType", "inheritance": "", "abstract": false, @@ -58209,7 +58209,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PrimaryMailboxSearchScopeType", "inheritance": "", "abstract": false, @@ -58222,7 +58222,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LargeArchiveSearchScopeType", "inheritance": "", "abstract": false, @@ -58235,7 +58235,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "GroupSearchScopeType", "inheritance": "", "abstract": false, @@ -58248,7 +58248,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CustomSearchScopeType", "inheritance": "", "abstract": false, @@ -58261,7 +58261,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SingleGroupSearchScopeType", "inheritance": "", "abstract": false, @@ -58274,7 +58274,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "OneDriveSearchScopeType", "inheritance": "", "abstract": false, @@ -58287,7 +58287,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SingleLargeArchiveSearchScopeType", "inheritance": "", "abstract": false, @@ -58393,7 +58393,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -58453,7 +58453,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -58568,7 +58568,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Suggestions", "inheritance": "", "abstract": false, @@ -58581,7 +58581,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SearchDiagnosticsType", "inheritance": "", "abstract": false, @@ -58608,7 +58608,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SuggestionType", "inheritance": "", "abstract": false, @@ -58648,7 +58648,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -58661,7 +58661,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SearchDiagnosticsType", "inheritance": "", "abstract": false, @@ -58688,7 +58688,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -58701,7 +58701,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -58714,7 +58714,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -58727,7 +58727,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AdditionalEntries", "inheritance": "", "abstract": false, @@ -58754,7 +58754,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -58923,7 +58923,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Items", "inheritance": "", "abstract": false, @@ -58936,7 +58936,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Conversations", "inheritance": "", "abstract": false, @@ -58949,7 +58949,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "People", "inheritance": "", "abstract": false, @@ -58988,7 +58988,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SearchRefiners", "inheritance": "", "abstract": false, @@ -59001,7 +59001,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SearchDiagnosticsType", "inheritance": "", "abstract": false, @@ -59014,7 +59014,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -59027,7 +59027,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -59040,7 +59040,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -59067,7 +59067,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemType", "inheritance": "", "abstract": false, @@ -59094,7 +59094,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ConversationType", "inheritance": "", "abstract": false, @@ -59121,7 +59121,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PersonaType", "inheritance": "", "abstract": false, @@ -59148,7 +59148,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SearchRefinerType", "inheritance": "", "abstract": false, @@ -59335,7 +59335,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -59348,7 +59348,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -59361,7 +59361,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -59374,7 +59374,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UnifiedGroupAccessType", "inheritance": "", "abstract": false, @@ -59405,7 +59405,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -59418,7 +59418,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -59431,7 +59431,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -59462,7 +59462,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UnifiedGroupType", "inheritance": "", "abstract": false, @@ -59489,7 +59489,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UnifiedGroupsFilterType", "inheritance": "", "abstract": false, @@ -59502,7 +59502,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -59515,7 +59515,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfUnifiedGroupsType", "inheritance": "", "abstract": false, @@ -59546,7 +59546,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UnifiedGroupsSetType", "inheritance": "", "abstract": false, @@ -59590,7 +59590,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UnifiedGroupsSortType", "inheritance": "", "abstract": false, @@ -59603,7 +59603,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SortDirectionType", "inheritance": "", "abstract": false, @@ -59616,7 +59616,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -59647,7 +59647,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RequestedUnifiedGroupsSetType", "inheritance": "", "abstract": false, @@ -59980,7 +59980,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -59993,7 +59993,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -60020,7 +60020,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UnifiedGroupResourceType", "inheritance": "", "abstract": false, @@ -60047,7 +60047,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CultureInfoDataType", "inheritance": "", "abstract": false, @@ -60074,7 +60074,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -60087,7 +60087,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -60100,7 +60100,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -60127,7 +60127,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -60140,7 +60140,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -60180,7 +60180,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfUnifiedGroupResourcesType", "inheritance": "", "abstract": false, @@ -60193,7 +60193,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UnifiedGroupMailboxSettingsType", "inheritance": "", "abstract": false, @@ -60206,7 +60206,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -60219,7 +60219,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -60232,7 +60232,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -60259,7 +60259,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PersonaType", "inheritance": "", "abstract": false, @@ -60272,7 +60272,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -60299,7 +60299,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UnifiedGroupMemberType", "inheritance": "", "abstract": false, @@ -60326,7 +60326,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -60339,7 +60339,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfUnifiedGroupMembersType", "inheritance": "", "abstract": false, @@ -60379,7 +60379,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -60406,7 +60406,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UnifiedGroupSenderRestrictionsDataType", "inheritance": "", "abstract": false, @@ -60433,7 +60433,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfUnifiedGroupSenderRestrictionsDataType", "inheritance": "", "abstract": false, @@ -60446,7 +60446,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfUnifiedGroupSenderRestrictionsDataType", "inheritance": "", "abstract": false, @@ -60459,7 +60459,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfUnifiedGroupSenderRestrictionsDataType", "inheritance": "", "abstract": false, @@ -60472,7 +60472,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfUnifiedGroupSenderRestrictionsDataType", "inheritance": "", "abstract": false, @@ -60512,7 +60512,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UnifiedGroupSenderRestrictionsType", "inheritance": "", "abstract": false, @@ -60877,7 +60877,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SocialActivityAggregatedNotificationType", "inheritance": "", "abstract": false, @@ -61092,7 +61092,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BookingMailboxType", "inheritance": "", "abstract": false, @@ -61119,7 +61119,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -61132,7 +61132,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -61145,7 +61145,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -61172,7 +61172,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BookingServiceType", "inheritance": "", "abstract": false, @@ -61229,7 +61229,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -61242,7 +61242,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -61255,7 +61255,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EnhancedLocationType", "inheritance": "", "abstract": false, @@ -61268,7 +61268,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -61281,7 +61281,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BookingServiceTypeEnum", "inheritance": "", "abstract": false, @@ -61294,7 +61294,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -61307,7 +61307,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -61320,7 +61320,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -61333,7 +61333,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -61346,7 +61346,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfItemIdsType", "inheritance": "", "abstract": false, @@ -61359,7 +61359,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -61372,7 +61372,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -61399,7 +61399,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BookingStaffMemberType", "inheritance": "", "abstract": false, @@ -61426,7 +61426,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -61439,7 +61439,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -61452,7 +61452,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -61465,7 +61465,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -61478,7 +61478,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -61491,7 +61491,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -61504,7 +61504,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -61517,7 +61517,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -61530,7 +61530,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -61543,7 +61543,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfWorkHours", "inheritance": "", "abstract": false, @@ -61570,7 +61570,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -61583,7 +61583,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -61596,7 +61596,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -61609,7 +61609,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -61622,7 +61622,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -61635,7 +61635,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -61648,7 +61648,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfWorkHours", "inheritance": "", "abstract": false, @@ -61675,7 +61675,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WorkHoursType", "inheritance": "", "abstract": false, @@ -61702,7 +61702,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SystemDayOfWeek", "inheritance": "", "abstract": false, @@ -61715,7 +61715,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfWorkTimeSlot", "inheritance": "", "abstract": false, @@ -61812,7 +61812,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WorkTimeSlot", "inheritance": "", "abstract": false, @@ -62091,7 +62091,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -62117,7 +62117,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -62130,7 +62130,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EntityFeedbackEntityAddSourceType", "inheritance": "", "abstract": false, @@ -62143,7 +62143,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -62170,7 +62170,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MeetingLocationItemType", "inheritance": "", "abstract": false, @@ -62249,7 +62249,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -62262,7 +62262,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "double", "inheritance": "", "abstract": false, @@ -62289,7 +62289,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "InboxReminderType", "inheritance": "", "abstract": false, @@ -62316,7 +62316,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "GuidType", "inheritance": "", "abstract": false, @@ -62329,7 +62329,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -62342,7 +62342,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -62355,7 +62355,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -62368,7 +62368,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailReminderChangeType", "inheritance": "", "abstract": false, @@ -62381,7 +62381,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailReminderSendOption", "inheritance": "", "abstract": false, @@ -62554,7 +62554,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -62567,7 +62567,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -62594,7 +62594,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "InsightContextItem", "inheritance": "", "abstract": false, @@ -62647,7 +62647,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -62660,7 +62660,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -62673,7 +62673,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -62686,7 +62686,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "InsightStatusType", "inheritance": "", "abstract": false, @@ -62699,7 +62699,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -62712,7 +62712,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfInsightContextItem", "inheritance": "", "abstract": false, @@ -62725,7 +62725,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -62738,7 +62738,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -62765,7 +62765,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "InsightItemType", "inheritance": "", "abstract": false, @@ -62792,7 +62792,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -62805,7 +62805,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "GuidType", "inheritance": "", "abstract": false, @@ -62831,7 +62831,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -62844,7 +62844,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "double", "inheritance": "", "abstract": false, @@ -62857,7 +62857,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -62870,7 +62870,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -62883,7 +62883,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -62896,7 +62896,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -62909,7 +62909,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -62922,7 +62922,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -62935,7 +62935,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -62948,7 +62948,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -62961,7 +62961,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -62974,7 +62974,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -62987,7 +62987,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -63000,7 +63000,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -63027,7 +63027,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "XrmDealType", "inheritance": "", "abstract": false, @@ -63084,7 +63084,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -63097,7 +63097,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -63110,7 +63110,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -63123,7 +63123,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "base64Binary", "inheritance": "", "abstract": false, @@ -63136,7 +63136,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -63149,7 +63149,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -63162,7 +63162,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -63175,7 +63175,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -63188,7 +63188,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "XrmActivityStreamFlagsType", "inheritance": "", "abstract": false, @@ -63201,7 +63201,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -63214,7 +63214,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -63241,7 +63241,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "XrmActivityStreamType", "inheritance": "", "abstract": false, @@ -63268,7 +63268,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -63280,7 +63280,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -63345,7 +63345,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BookingItemType", "inheritance": "", "abstract": false, @@ -63452,7 +63452,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StaffAvailabilityResponseType", "inheritance": "", "abstract": false, @@ -67564,7 +67564,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -67576,7 +67576,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ResponseCodeType", "inheritance": "", "abstract": false, @@ -67588,7 +67588,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -67600,7 +67600,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MessageXml", "inheritance": "", "abstract": false, @@ -75197,7 +75197,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -75263,7 +75263,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -75276,7 +75276,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "base64Binary", "inheritance": "", "abstract": false, @@ -75394,7 +75394,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RestrictionType", "inheritance": "", "abstract": false, @@ -75442,7 +75442,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfFoldersType", "inheritance": "", "abstract": false, @@ -75468,7 +75468,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FindFolderParentType", "inheritance": "", "abstract": false, @@ -75847,7 +75847,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TargetFolderIdType", "inheritance": "", "abstract": false, @@ -76054,7 +76054,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SocialActivityAggregatedNotificationType", "inheritance": "", "abstract": false, @@ -76172,7 +76172,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TargetFolderIdType", "inheritance": "", "abstract": false, @@ -76280,7 +76280,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ConflictResultsType", "inheritance": "", "abstract": false, @@ -76316,7 +76316,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfItemChangeDescriptionsType", "inheritance": "", "abstract": false, @@ -76328,7 +76328,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfAttachmentsType", "inheritance": "", "abstract": false, @@ -76340,7 +76340,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -76366,7 +76366,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfAttachmentsType", "inheritance": "", "abstract": false, @@ -76378,7 +76378,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ConflictResultsType", "inheritance": "", "abstract": false, @@ -76500,7 +76500,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RootItemIdType", "inheritance": "", "abstract": false, @@ -76546,7 +76546,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -76643,7 +76643,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TargetFolderIdType", "inheritance": "", "abstract": false, @@ -76898,7 +76898,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RestrictionType", "inheritance": "", "abstract": false, @@ -76910,7 +76910,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfFieldOrdersType", "inheritance": "", "abstract": false, @@ -76932,7 +76932,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "QueryStringType", "inheritance": "", "abstract": false, @@ -77005,7 +77005,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfFieldOrdersType", "inheritance": "", "abstract": false, @@ -77029,7 +77029,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MailboxSearchLocationType", "inheritance": "", "abstract": false, @@ -77042,7 +77042,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "QueryStringType", "inheritance": "", "abstract": false, @@ -77055,7 +77055,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ConversationResponseShapeType", "inheritance": "", "abstract": false, @@ -77106,7 +77106,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfConversationsType", "inheritance": "", "abstract": false, @@ -77118,7 +77118,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfHighlightTermsType", "inheritance": "", "abstract": false, @@ -77130,7 +77130,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -77142,7 +77142,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -77246,7 +77246,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfDistinguishedFolderIdType", "inheritance": "", "abstract": false, @@ -77259,7 +77259,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -77272,7 +77272,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -77299,7 +77299,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "InstantSearchPayloadType", "inheritance": "", "abstract": false, @@ -77407,7 +77407,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IdFormatType", "inheritance": "", "abstract": false, @@ -77462,7 +77462,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -77475,7 +77475,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SuggestionKindType", "inheritance": "", "abstract": false, @@ -77488,7 +77488,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -77501,7 +77501,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -77698,7 +77698,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AnalyzedQuery", "inheritance": "", "abstract": false, @@ -77711,7 +77711,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -77724,7 +77724,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -77737,7 +77737,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -77750,7 +77750,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -77763,7 +77763,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SearchRefiners", "inheritance": "", "abstract": false, @@ -77776,7 +77776,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -77789,7 +77789,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -77802,7 +77802,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IdFormatType", "inheritance": "", "abstract": false, @@ -77828,7 +77828,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SearchResultsPropertySetNameType", "inheritance": "", "abstract": false, @@ -77841,7 +77841,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RestrictionType", "inheritance": "", "abstract": false, @@ -77854,7 +77854,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -77999,7 +77999,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PersonaResponseShapeType", "inheritance": "", "abstract": false, @@ -78025,7 +78025,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RestrictionType", "inheritance": "", "abstract": false, @@ -78038,7 +78038,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RestrictionType", "inheritance": "", "abstract": false, @@ -78051,7 +78051,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfFieldOrdersType", "inheritance": "", "abstract": false, @@ -78064,7 +78064,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TargetFolderIdType", "inheritance": "", "abstract": false, @@ -78077,7 +78077,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -78090,7 +78090,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -78103,7 +78103,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -78116,7 +78116,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfContextProperty", "inheritance": "", "abstract": false, @@ -78129,7 +78129,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPeopleQuerySource", "inheritance": "", "abstract": false, @@ -78156,7 +78156,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPeopleType", "inheritance": "", "abstract": false, @@ -78168,7 +78168,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -78180,7 +78180,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -78192,7 +78192,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -78204,7 +78204,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "GuidType", "inheritance": "", "abstract": false, @@ -78230,7 +78230,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -78243,7 +78243,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressType", "inheritance": "", "abstract": false, @@ -78256,7 +78256,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TargetFolderIdType", "inheritance": "", "abstract": false, @@ -78373,7 +78373,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyStringType", "inheritance": "", "abstract": false, @@ -78386,7 +78386,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -78412,7 +78412,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "GroupMemberIdentifierType", "inheritance": "", "abstract": false, @@ -78425,7 +78425,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -78438,7 +78438,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -78451,7 +78451,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -78464,7 +78464,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -78477,7 +78477,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -78490,7 +78490,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -78503,7 +78503,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -78629,7 +78629,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AttachmentResponseShapeType", "inheritance": "", "abstract": false, @@ -78782,7 +78782,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FindItemParentType", "inheritance": "", "abstract": false, @@ -78794,7 +78794,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfHighlightTermsType", "inheritance": "", "abstract": false, @@ -78873,7 +78873,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ClientAccessTokenType", "inheritance": "", "abstract": false, @@ -78912,7 +78912,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfBaseFolderIdsType", "inheritance": "", "abstract": false, @@ -78982,7 +78982,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfResolutionType", "inheritance": "", "abstract": false, @@ -79021,7 +79021,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -79125,7 +79125,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfMailTipsResponseMessageType", "inheritance": "", "abstract": false, @@ -79179,7 +79179,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MailTips", "inheritance": "", "abstract": false, @@ -79246,7 +79246,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PhoneCallIdType", "inheritance": "", "abstract": false, @@ -79300,7 +79300,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PhoneCallInformationType", "inheritance": "", "abstract": false, @@ -79380,7 +79380,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -79526,7 +79526,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -79593,7 +79593,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "base64Binary", "inheritance": "", "abstract": false, @@ -79644,7 +79644,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfDLExpansionType", "inheritance": "", "abstract": false, @@ -79733,7 +79733,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfTimeZoneIdType", "inheritance": "", "abstract": false, @@ -79820,7 +79820,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressType", "inheritance": "", "abstract": false, @@ -79927,7 +79927,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SubscriptionIdType", "inheritance": "", "abstract": false, @@ -79939,7 +79939,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WatermarkType", "inheritance": "", "abstract": false, @@ -80049,7 +80049,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NotificationType", "inheritance": "", "abstract": false, @@ -80122,7 +80122,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfNotificationsType", "inheritance": "", "abstract": false, @@ -80134,7 +80134,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfSubscriptionIdsType", "inheritance": "", "abstract": false, @@ -80146,7 +80146,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ConnectionStatusType", "inheritance": "", "abstract": false, @@ -80325,7 +80325,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "GuidType", "inheritance": "", "abstract": false, @@ -80351,7 +80351,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfChannelEventsType", "inheritance": "", "abstract": false, @@ -80363,7 +80363,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ConnectionStatusType", "inheritance": "", "abstract": false, @@ -80477,7 +80477,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TargetFolderIdType", "inheritance": "", "abstract": false, @@ -80489,7 +80489,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -80515,7 +80515,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -80527,7 +80527,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -80539,7 +80539,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SyncFolderHierarchyChangesType", "inheritance": "", "abstract": false, @@ -80602,7 +80602,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -80614,7 +80614,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfBaseItemIdsType", "inheritance": "", "abstract": false, @@ -80638,7 +80638,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SyncFolderItemsScopeType", "inheritance": "", "abstract": false, @@ -80664,7 +80664,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -80676,7 +80676,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -80688,7 +80688,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SyncFolderItemsChangesType", "inheritance": "", "abstract": false, @@ -80727,7 +80727,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SerializableTimeZone", "inheritance": "", "abstract": false, @@ -80751,7 +80751,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FreeBusyViewOptionsType", "inheritance": "", "abstract": false, @@ -80765,7 +80765,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SuggestionsViewOptionsType", "inheritance": "", "abstract": false, @@ -80793,7 +80793,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ResponseMessageType", "inheritance": "", "abstract": false, @@ -80806,7 +80806,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FreeBusyView", "inheritance": "", "abstract": false, @@ -80833,7 +80833,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FreeBusyResponseType", "inheritance": "", "abstract": false, @@ -80860,7 +80860,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ResponseMessageType", "inheritance": "", "abstract": false, @@ -80873,7 +80873,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfSuggestionDayResult", "inheritance": "", "abstract": false, @@ -80900,7 +80900,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfFreeBusyResponse", "inheritance": "", "abstract": false, @@ -80913,7 +80913,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SuggestionsResponseType", "inheritance": "", "abstract": false, @@ -80983,7 +80983,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UserOofSettings", "inheritance": "", "abstract": false, @@ -80997,7 +80997,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ExternalAudience", "inheritance": "", "abstract": false, @@ -81070,7 +81070,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ResponseMessageType", "inheritance": "", "abstract": false, @@ -81159,7 +81159,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AlternateIdBaseType", "inheritance": "", "abstract": false, @@ -81190,7 +81190,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfUserIdType", "inheritance": "", "abstract": false, @@ -81229,7 +81229,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DeliverMeetingRequestsType", "inheritance": "", "abstract": false, @@ -81283,7 +81283,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DelegateUserType", "inheritance": "", "abstract": false, @@ -81320,7 +81320,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DeliverMeetingRequestsType", "inheritance": "", "abstract": false, @@ -81346,7 +81346,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfDelegateUserResponseMessageType", "inheritance": "", "abstract": false, @@ -81447,7 +81447,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfDelegateUserType", "inheritance": "", "abstract": false, @@ -81459,7 +81459,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DeliverMeetingRequestsType", "inheritance": "", "abstract": false, @@ -81623,7 +81623,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SharingDataType", "inheritance": "", "abstract": false, @@ -81636,7 +81636,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyStringType", "inheritance": "", "abstract": false, @@ -81803,7 +81803,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UserConfigurationType", "inheritance": "", "abstract": false, @@ -81988,7 +81988,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfEmailAddressesType", "inheritance": "", "abstract": false, @@ -82041,7 +82041,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfRoomsType", "inheritance": "", "abstract": false, @@ -82067,7 +82067,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -82080,7 +82080,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -82093,7 +82093,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MaxItems", "inheritance": "int", "abstract": false, @@ -82109,7 +82109,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ReminderType", "inheritance": "", "abstract": false, @@ -82298,7 +82298,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressType", "inheritance": "", "abstract": false, @@ -82324,7 +82324,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ConfigurationRequestDetailsType", "inheritance": "", "abstract": false, @@ -82351,7 +82351,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfServiceConfigurationResponseMessageType", "inheritance": "", "abstract": false, @@ -82405,7 +82405,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MailTipsServiceConfiguration", "inheritance": "", "abstract": false, @@ -82418,7 +82418,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UnifiedMessageServiceConfiguration", "inheritance": "", "abstract": false, @@ -82431,7 +82431,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ProtectionRulesServiceConfiguration", "inheritance": "", "abstract": false, @@ -82444,7 +82444,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PolicyNudgeRulesServiceConfiguration", "inheritance": "", "abstract": false, @@ -82491,7 +82491,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressType", "inheritance": "", "abstract": false, @@ -82503,7 +82503,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressType", "inheritance": "", "abstract": false, @@ -82515,7 +82515,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressType", "inheritance": "", "abstract": false, @@ -82527,7 +82527,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -82539,7 +82539,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -82551,7 +82551,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -82563,7 +82563,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyStringType", "inheritance": "", "abstract": false, @@ -82575,7 +82575,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressType", "inheritance": "", "abstract": false, @@ -82587,7 +82587,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -82599,7 +82599,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -82611,7 +82611,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfTrackingPropertiesType", "inheritance": "", "abstract": false, @@ -82637,7 +82637,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -82649,7 +82649,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfFindMessageTrackingSearchResultType", "inheritance": "", "abstract": false, @@ -82661,7 +82661,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -82673,7 +82673,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfArraysOfTrackingPropertiesType", "inheritance": "", "abstract": false, @@ -82685,7 +82685,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfTrackingPropertiesType", "inheritance": "", "abstract": false, @@ -82731,7 +82731,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressType", "inheritance": "", "abstract": false, @@ -82753,7 +82753,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -82765,7 +82765,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -82777,7 +82777,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfTrackingPropertiesType", "inheritance": "", "abstract": false, @@ -82803,7 +82803,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MessageTrackingReportType", "inheritance": "", "abstract": false, @@ -82815,7 +82815,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -82827,7 +82827,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfArraysOfTrackingPropertiesType", "inheritance": "", "abstract": false, @@ -82839,7 +82839,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfTrackingPropertiesType", "inheritance": "", "abstract": false, @@ -82865,7 +82865,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -82892,7 +82892,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -82905,7 +82905,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfRulesType", "inheritance": "", "abstract": false, @@ -82932,7 +82932,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -82945,7 +82945,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -82985,7 +82985,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfRuleOperationErrorsType", "inheritance": "", "abstract": false, @@ -83036,7 +83036,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -83048,7 +83048,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfSmtpAddressType", "inheritance": "", "abstract": false, @@ -83060,7 +83060,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfSmtpAddressType", "inheritance": "", "abstract": false, @@ -83072,7 +83072,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -83084,7 +83084,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -83096,7 +83096,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfSearchItemKindsType", "inheritance": "", "abstract": false, @@ -83108,7 +83108,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -83120,7 +83120,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -83132,7 +83132,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -83207,7 +83207,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -83219,7 +83219,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -83259,7 +83259,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfFailedSearchMailboxesType", "inheritance": "", "abstract": false, @@ -83313,7 +83313,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PreviewItemResponseShapeType", "inheritance": "", "abstract": false, @@ -83325,7 +83325,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FieldOrderType", "inheritance": "", "abstract": false, @@ -83337,7 +83337,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -83349,7 +83349,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -83361,7 +83361,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -83373,7 +83373,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -83385,7 +83385,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SearchPageDirectionType", "inheritance": "", "abstract": false, @@ -83432,7 +83432,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SearchMailboxesResultType", "inheritance": "", "abstract": false, @@ -83462,7 +83462,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -83474,7 +83474,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -83486,7 +83486,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -83574,7 +83574,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MailboxHoldResultType", "inheritance": "", "abstract": false, @@ -83640,7 +83640,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -83652,7 +83652,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -83664,7 +83664,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -83676,7 +83676,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -83688,7 +83688,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -83700,7 +83700,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -83730,7 +83730,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MailboxHoldResultType", "inheritance": "", "abstract": false, @@ -83772,7 +83772,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -83802,7 +83802,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfNonIndexableItemStatisticsType", "inheritance": "", "abstract": false, @@ -83845,7 +83845,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -83857,7 +83857,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -83869,7 +83869,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SearchPageDirectionType", "inheritance": "", "abstract": false, @@ -83881,7 +83881,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -83911,7 +83911,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonIndexableItemDetailResultType", "inheritance": "", "abstract": false, @@ -84017,7 +84017,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfBaseFolderIdsType", "inheritance": "", "abstract": false, @@ -84030,7 +84030,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -84043,7 +84043,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ConversationNodeSortOrder", "inheritance": "", "abstract": false, @@ -84056,7 +84056,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MailboxSearchLocationType", "inheritance": "", "abstract": false, @@ -84095,7 +84095,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ConversationResponseType", "inheritance": "", "abstract": false, @@ -84134,7 +84134,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -84147,7 +84147,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "GetClientExtensionUserParametersType", "inheritance": "", "abstract": false, @@ -84160,7 +84160,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -84187,7 +84187,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfClientExtensionsType", "inheritance": "", "abstract": false, @@ -84200,7 +84200,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -84240,7 +84240,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -84253,7 +84253,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -84266,7 +84266,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -84279,7 +84279,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -84292,7 +84292,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -84332,7 +84332,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -84399,7 +84399,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -84412,7 +84412,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -84425,7 +84425,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -84438,7 +84438,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -84451,7 +84451,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -84491,7 +84491,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -84570,7 +84570,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "base64Binary", "inheritance": "", "abstract": false, @@ -84610,7 +84610,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -84701,7 +84701,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -84871,7 +84871,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyStringType", "inheritance": "", "abstract": false, @@ -84883,7 +84883,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -84909,7 +84909,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PersonaType", "inheritance": "", "abstract": false, @@ -84965,7 +84965,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -84991,7 +84991,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PersonaType", "inheritance": "", "abstract": false, @@ -85027,7 +85027,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIdType", "inheritance": "", "abstract": false, @@ -85137,7 +85137,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ImGroupType", "inheritance": "", "abstract": false, @@ -85197,7 +85197,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ImGroupType", "inheritance": "", "abstract": false, @@ -85223,7 +85223,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfExtendedFieldURIs", "inheritance": "", "abstract": false, @@ -85249,7 +85249,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ImItemListType", "inheritance": "", "abstract": false, @@ -85275,7 +85275,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfBaseItemIdsType", "inheritance": "", "abstract": false, @@ -85287,7 +85287,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfBaseItemIdsType", "inheritance": "", "abstract": false, @@ -85299,7 +85299,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfExtendedFieldURIs", "inheritance": "", "abstract": false, @@ -85325,7 +85325,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ImItemListType", "inheritance": "", "abstract": false, @@ -85644,7 +85644,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "base64Binary", "inheritance": "", "abstract": false, @@ -85750,7 +85750,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RecognitionIdType", "inheritance": "", "abstract": false, @@ -85817,7 +85817,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RecognitionResultType", "inheritance": "", "abstract": false, @@ -85884,7 +85884,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -85897,7 +85897,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -85910,7 +85910,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -85923,7 +85923,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -85936,7 +85936,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -85976,7 +85976,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfUMCallDataRecordsType", "inheritance": "", "abstract": false, @@ -86055,7 +86055,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfUMReportRawCountersType", "inheritance": "", "abstract": false, @@ -86147,7 +86147,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PinInfoType", "inheritance": "", "abstract": false, @@ -86344,7 +86344,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ClientIntentType", "inheritance": "", "abstract": false, @@ -86436,7 +86436,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "base64Binary", "inheritance": "", "abstract": false, @@ -86449,7 +86449,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -86542,7 +86542,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -86649,7 +86649,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UnseenDataType", "inheritance": "", "abstract": false, @@ -87113,7 +87113,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MeetingSpaceType", "inheritance": "", "abstract": false, @@ -87301,7 +87301,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MeetingInstanceType", "inheritance": "", "abstract": false, @@ -87314,7 +87314,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfContentActivities", "inheritance": "", "abstract": false, @@ -87327,7 +87327,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfParticipantActivities", "inheritance": "", "abstract": false, @@ -87555,7 +87555,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfSmtpAddressType", "inheritance": "", "abstract": false, @@ -87587,7 +87587,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -87599,7 +87599,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -87611,7 +87611,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -87623,7 +87623,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ActivityDomainType", "inheritance": "", "abstract": false, @@ -87716,7 +87716,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PersonResponseShapeType", "inheritance": "", "abstract": false, @@ -87729,7 +87729,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -87742,7 +87742,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "InsightFiltersType", "inheritance": "", "abstract": false, @@ -87755,7 +87755,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -87768,7 +87768,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfPeopleTokenType", "inheritance": "", "abstract": false, @@ -87795,7 +87795,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPersonType", "inheritance": "", "abstract": false, @@ -87874,7 +87874,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfRequestedUnifiedGroupsSetsType", "inheritance": "", "abstract": false, @@ -87887,7 +87887,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -88044,7 +88044,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UnifiedGroupMembersResponseType", "inheritance": "", "abstract": false, @@ -88057,7 +88057,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UnifiedGroupMembersResponseType", "inheritance": "", "abstract": false, @@ -88084,7 +88084,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -88190,7 +88190,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BodyContentType", "inheritance": "", "abstract": false, @@ -88254,7 +88254,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -88267,7 +88267,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -88280,7 +88280,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -88407,7 +88407,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -88420,7 +88420,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -88460,7 +88460,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -88500,7 +88500,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -88513,7 +88513,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPeopleType", "inheritance": "", "abstract": false, @@ -88833,7 +88833,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -88908,7 +88908,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfUnifiedGroupMembers", "inheritance": "", "abstract": false, @@ -88921,7 +88921,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfUnifiedGroupMembers", "inheritance": "", "abstract": false, @@ -88961,7 +88961,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -88974,7 +88974,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -88987,7 +88987,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -89000,7 +89000,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -89013,7 +89013,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -89026,7 +89026,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -89039,7 +89039,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -89173,7 +89173,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -89412,7 +89412,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -89439,7 +89439,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfStringsType", "inheritance": "", "abstract": false, @@ -89506,7 +89506,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressType", "inheritance": "", "abstract": false, @@ -89681,7 +89681,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PersonaResponseShapeType", "inheritance": "", "abstract": false, @@ -89707,7 +89707,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RestrictionType", "inheritance": "", "abstract": false, @@ -89720,7 +89720,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RestrictionType", "inheritance": "", "abstract": false, @@ -89733,7 +89733,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NonEmptyArrayOfFieldOrdersType", "inheritance": "", "abstract": false, @@ -89746,7 +89746,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -89759,7 +89759,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -89772,7 +89772,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -89785,7 +89785,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfContextProperty", "inheritance": "", "abstract": false, @@ -89812,7 +89812,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfPeopleType", "inheritance": "", "abstract": false, @@ -89824,7 +89824,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -89836,7 +89836,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -89848,7 +89848,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -89860,7 +89860,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "GuidType", "inheritance": "", "abstract": false, @@ -90061,7 +90061,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "base64Binary", "inheritance": "", "abstract": false, @@ -90100,7 +90100,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "base64Binary", "inheritance": "", "abstract": false, @@ -90247,7 +90247,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -90287,7 +90287,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -90300,7 +90300,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -90313,7 +90313,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -90326,7 +90326,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -90339,7 +90339,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -90352,7 +90352,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -90644,7 +90644,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -90778,7 +90778,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FindMeetingTimesAttendeeConstraints", "inheritance": "", "abstract": false, @@ -90790,7 +90790,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FindMeetingTimesLocationConstraints", "inheritance": "", "abstract": false, @@ -90802,7 +90802,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FindMeetingTimesSearchConstraints", "inheritance": "", "abstract": false, @@ -90814,7 +90814,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FindMeetingTimesConstraints", "inheritance": "", "abstract": false, @@ -90921,7 +90921,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RestrictionType", "inheritance": "", "abstract": false, @@ -90934,7 +90934,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IndexedPageViewType", "inheritance": "", "abstract": false, @@ -91203,7 +91203,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RestrictionType", "inheritance": "", "abstract": false, @@ -91216,7 +91216,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IndexedPageViewType", "inheritance": "", "abstract": false, @@ -91485,7 +91485,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RestrictionType", "inheritance": "", "abstract": false, @@ -91498,7 +91498,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IndexedPageViewType", "inheritance": "", "abstract": false, @@ -91619,7 +91619,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "XrmActivityStreamType", "inheritance": "", "abstract": false, @@ -91673,7 +91673,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "XrmActivityStreamType", "inheritance": "", "abstract": false, @@ -91740,7 +91740,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "XrmActivityStreamType", "inheritance": "", "abstract": false, @@ -91767,7 +91767,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RestrictionType", "inheritance": "", "abstract": false, @@ -91780,7 +91780,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IndexedPageViewType", "inheritance": "", "abstract": false, diff --git a/tests/resources/generated/parsed_myboard_none.json b/tests/resources/generated/parsed_myboard_none.json index 49a84821..a000e11f 100644 --- a/tests/resources/generated/parsed_myboard_none.json +++ b/tests/resources/generated/parsed_myboard_none.json @@ -2567,7 +2567,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -3059,7 +3059,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -3246,7 +3246,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -3512,7 +3512,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Module", "inheritance": "", "abstract": false, @@ -3524,7 +3524,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Rights", "inheritance": "", "abstract": false, @@ -3576,7 +3576,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -3588,7 +3588,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -4178,7 +4178,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -4190,7 +4190,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -4202,7 +4202,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -4846,7 +4846,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -4858,7 +4858,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -4870,7 +4870,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -4882,7 +4882,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -4894,7 +4894,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -5269,7 +5269,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -5281,7 +5281,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -5386,7 +5386,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -5398,7 +5398,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -5410,7 +5410,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -6134,7 +6134,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -6552,7 +6552,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -6564,7 +6564,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Rights", "inheritance": "", "abstract": false, @@ -6698,7 +6698,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -6710,7 +6710,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -6752,7 +6752,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Module", "inheritance": "", "abstract": false, @@ -6869,7 +6869,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -6881,7 +6881,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Rights", "inheritance": "", "abstract": false, @@ -6893,7 +6893,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -6922,7 +6922,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -6934,7 +6934,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -6963,7 +6963,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Access", "inheritance": "", "abstract": false, @@ -6975,7 +6975,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -6987,7 +6987,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -6999,7 +6999,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -7028,7 +7028,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -7053,7 +7053,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -7082,7 +7082,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -7094,7 +7094,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RecordState", "inheritance": "", "abstract": false, @@ -7842,7 +7842,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -7957,7 +7957,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -8698,7 +8698,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -8823,7 +8823,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -8861,7 +8861,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "double", "inheritance": "", "abstract": false, @@ -8873,7 +8873,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "double", "inheritance": "", "abstract": false, @@ -8933,7 +8933,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -8945,7 +8945,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -8957,7 +8957,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UrgencyRating", "inheritance": "", "abstract": false, @@ -9073,7 +9073,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -9111,7 +9111,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -9197,7 +9197,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -9209,7 +9209,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -9269,7 +9269,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -9294,7 +9294,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -9345,7 +9345,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -9357,7 +9357,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -9369,7 +9369,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -9381,7 +9381,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -9406,7 +9406,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -9431,7 +9431,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -9482,7 +9482,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -9507,7 +9507,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -9681,7 +9681,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -9732,7 +9732,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -9744,7 +9744,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -9817,7 +9817,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -9842,7 +9842,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "double", "inheritance": "", "abstract": false, @@ -9867,7 +9867,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -9931,7 +9931,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -9956,7 +9956,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -10029,7 +10029,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -10154,7 +10154,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -10227,7 +10227,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -10252,7 +10252,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -10264,7 +10264,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -10276,7 +10276,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -10336,7 +10336,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ActionStatus", "inheritance": "", "abstract": false, @@ -10387,7 +10387,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -10399,7 +10399,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -10411,7 +10411,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -10453,7 +10453,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AttendanceType", "inheritance": "", "abstract": false, @@ -10465,7 +10465,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -10516,7 +10516,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -10528,7 +10528,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -10540,7 +10540,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -10565,7 +10565,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AttendeeResponse", "inheritance": "", "abstract": false, @@ -10590,7 +10590,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -10681,7 +10681,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -10693,7 +10693,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -10783,7 +10783,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "double", "inheritance": "", "abstract": false, @@ -10795,7 +10795,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -10807,7 +10807,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -10858,7 +10858,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -10883,7 +10883,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -10925,7 +10925,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -10954,7 +10954,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -11014,7 +11014,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -11065,7 +11065,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -11129,7 +11129,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DocumentPrivileges", "inheritance": "", "abstract": false, @@ -11154,7 +11154,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -11289,7 +11289,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -11301,7 +11301,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -11326,7 +11326,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DocumentPrivileges", "inheritance": "", "abstract": false, diff --git a/tests/resources/generated/parsed_myboard_start.json b/tests/resources/generated/parsed_myboard_start.json index d36c6cda..718697f3 100644 --- a/tests/resources/generated/parsed_myboard_start.json +++ b/tests/resources/generated/parsed_myboard_start.json @@ -1685,7 +1685,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -2177,7 +2177,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -2364,7 +2364,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -2630,7 +2630,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Module", "inheritance": "", "abstract": false, @@ -2642,7 +2642,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Rights", "inheritance": "", "abstract": false, @@ -2694,7 +2694,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -2706,7 +2706,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -3296,7 +3296,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -3308,7 +3308,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -3320,7 +3320,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -3964,7 +3964,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -3976,7 +3976,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -3988,7 +3988,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -4000,7 +4000,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -4012,7 +4012,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -4387,7 +4387,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -4399,7 +4399,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -4504,7 +4504,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -4516,7 +4516,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -4528,7 +4528,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -5252,7 +5252,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -5670,7 +5670,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -5682,7 +5682,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Rights", "inheritance": "", "abstract": false, @@ -5816,7 +5816,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -5828,7 +5828,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -5870,7 +5870,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Module", "inheritance": "", "abstract": false, @@ -5987,7 +5987,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -5999,7 +5999,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Rights", "inheritance": "", "abstract": false, @@ -6011,7 +6011,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -6040,7 +6040,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -6052,7 +6052,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -6081,7 +6081,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Access", "inheritance": "", "abstract": false, @@ -6093,7 +6093,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -6105,7 +6105,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -6117,7 +6117,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -6146,7 +6146,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -6171,7 +6171,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -6200,7 +6200,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -6212,7 +6212,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RecordState", "inheritance": "", "abstract": false, @@ -6960,7 +6960,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -7075,7 +7075,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -7816,7 +7816,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -7941,7 +7941,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -7979,7 +7979,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "double", "inheritance": "", "abstract": false, @@ -7991,7 +7991,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "double", "inheritance": "", "abstract": false, @@ -8051,7 +8051,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -8063,7 +8063,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -8075,7 +8075,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UrgencyRating", "inheritance": "", "abstract": false, @@ -8191,7 +8191,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -8229,7 +8229,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -8315,7 +8315,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -8327,7 +8327,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -8387,7 +8387,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -8412,7 +8412,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -8463,7 +8463,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -8475,7 +8475,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -8487,7 +8487,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -8499,7 +8499,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -8524,7 +8524,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -8549,7 +8549,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -8600,7 +8600,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -8625,7 +8625,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -8799,7 +8799,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -8850,7 +8850,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -8862,7 +8862,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -8935,7 +8935,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -8960,7 +8960,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "double", "inheritance": "", "abstract": false, @@ -8985,7 +8985,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -9049,7 +9049,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -9074,7 +9074,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -9147,7 +9147,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -9272,7 +9272,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -9345,7 +9345,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -9370,7 +9370,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -9382,7 +9382,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -9394,7 +9394,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -9454,7 +9454,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ActionStatus", "inheritance": "", "abstract": false, @@ -9505,7 +9505,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -9517,7 +9517,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -9529,7 +9529,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -9571,7 +9571,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AttendanceType", "inheritance": "", "abstract": false, @@ -9583,7 +9583,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -9634,7 +9634,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -9646,7 +9646,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -9658,7 +9658,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -9683,7 +9683,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AttendeeResponse", "inheritance": "", "abstract": false, @@ -9708,7 +9708,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -9799,7 +9799,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -9811,7 +9811,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -9901,7 +9901,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "double", "inheritance": "", "abstract": false, @@ -9913,7 +9913,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -9925,7 +9925,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -9976,7 +9976,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -10001,7 +10001,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -10043,7 +10043,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -10072,7 +10072,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -10132,7 +10132,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -10183,7 +10183,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -10247,7 +10247,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DocumentPrivileges", "inheritance": "", "abstract": false, @@ -10272,7 +10272,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -10407,7 +10407,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -10419,7 +10419,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -10444,7 +10444,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DocumentPrivileges", "inheritance": "", "abstract": false, diff --git a/tests/resources/generated/parsed_odigeo_none.json b/tests/resources/generated/parsed_odigeo_none.json index 5d1013b3..c2536f55 100644 --- a/tests/resources/generated/parsed_odigeo_none.json +++ b/tests/resources/generated/parsed_odigeo_none.json @@ -408,7 +408,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "searchStatusResponse", "inheritance": "", "abstract": false, @@ -436,7 +436,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "searchResultsPage", "inheritance": "", "abstract": false, @@ -449,7 +449,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "itinerariesLegend", "inheritance": "", "abstract": false, @@ -502,7 +502,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "messageResponse", "inheritance": "", "abstract": false, @@ -529,7 +529,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "messageResponse", "inheritance": "", "abstract": false, @@ -542,7 +542,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fareItinerary", "inheritance": "", "abstract": false, @@ -555,7 +555,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -643,7 +643,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, diff --git a/tests/resources/generated/parsed_odigeo_start.json b/tests/resources/generated/parsed_odigeo_start.json index ad83e1ff..0c9a8e29 100644 --- a/tests/resources/generated/parsed_odigeo_start.json +++ b/tests/resources/generated/parsed_odigeo_start.json @@ -408,7 +408,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "searchStatusResponse", "inheritance": "", "abstract": false, @@ -436,7 +436,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "searchResultsPage", "inheritance": "", "abstract": false, @@ -449,7 +449,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "itinerariesLegend", "inheritance": "", "abstract": false, @@ -502,7 +502,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "messageResponse", "inheritance": "", "abstract": false, @@ -529,7 +529,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "messageResponse", "inheritance": "", "abstract": false, @@ -542,7 +542,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fareItinerary", "inheritance": "", "abstract": false, @@ -555,7 +555,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -643,7 +643,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, diff --git a/tests/resources/generated/parsed_ordercontract_none.json b/tests/resources/generated/parsed_ordercontract_none.json index e929b70c..68ac7afd 100644 --- a/tests/resources/generated/parsed_ordercontract_none.json +++ b/tests/resources/generated/parsed_ordercontract_none.json @@ -221,7 +221,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ReferenceParametersType", "inheritance": "", "abstract": false, @@ -234,7 +234,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MetadataType", "inheritance": "", "abstract": false, @@ -608,7 +608,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AttributedURIType", "inheritance": "", "abstract": false, @@ -621,7 +621,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "anyURI", "inheritance": "", "abstract": false, @@ -826,7 +826,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "OrderID", "inheritance": "string", "abstract": false, @@ -841,7 +841,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "OrderActionID", "inheritance": "string", "abstract": false, @@ -856,7 +856,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ServiceType", "inheritance": "string", "abstract": false, @@ -871,7 +871,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ServiceID", "inheritance": "string", "abstract": false, @@ -886,7 +886,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "InstallationAddressID", "inheritance": "string", "abstract": false, @@ -901,7 +901,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -944,7 +944,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "OrderActionStatus", "inheritance": "string", "abstract": false, @@ -973,7 +973,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "anyType", "inheritance": "", "abstract": false, @@ -1131,7 +1131,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Payload", "inheritance": "", "abstract": false, @@ -1171,7 +1171,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ISPName", "inheritance": "string", "abstract": false, @@ -4128,7 +4128,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ResultMsgCode", "inheritance": "string", "abstract": false, @@ -4143,7 +4143,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ResultMsg", "inheritance": "string", "abstract": false, diff --git a/tests/resources/generated/parsed_ordercontract_start.json b/tests/resources/generated/parsed_ordercontract_start.json index 277155b1..079d6aad 100644 --- a/tests/resources/generated/parsed_ordercontract_start.json +++ b/tests/resources/generated/parsed_ordercontract_start.json @@ -203,7 +203,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ReferenceParametersType", "inheritance": "", "abstract": false, @@ -216,7 +216,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MetadataType", "inheritance": "", "abstract": false, @@ -590,7 +590,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AttributedURIType", "inheritance": "", "abstract": false, @@ -603,7 +603,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "anyURI", "inheritance": "", "abstract": false, @@ -808,7 +808,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "OrderID", "inheritance": "string", "abstract": false, @@ -823,7 +823,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "OrderActionID", "inheritance": "string", "abstract": false, @@ -838,7 +838,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ServiceType", "inheritance": "string", "abstract": false, @@ -853,7 +853,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ServiceID", "inheritance": "string", "abstract": false, @@ -868,7 +868,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "InstallationAddressID", "inheritance": "string", "abstract": false, @@ -883,7 +883,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -926,7 +926,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "OrderActionStatus", "inheritance": "string", "abstract": false, @@ -955,7 +955,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "anyType", "inheritance": "", "abstract": false, @@ -1113,7 +1113,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Payload", "inheritance": "", "abstract": false, @@ -1153,7 +1153,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ISPName", "inheritance": "string", "abstract": false, @@ -4110,7 +4110,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ResultMsgCode", "inheritance": "string", "abstract": false, @@ -4125,7 +4125,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ResultMsg", "inheritance": "string", "abstract": false, diff --git a/tests/resources/generated/parsed_paypal_none.json b/tests/resources/generated/parsed_paypal_none.json index 68a202ff..5344f986 100644 --- a/tests/resources/generated/parsed_paypal_none.json +++ b/tests/resources/generated/parsed_paypal_none.json @@ -6830,7 +6830,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -6845,7 +6845,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -6860,7 +6860,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AmountType", "inheritance": "", "abstract": false, @@ -6875,7 +6875,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PromotionItemPriceTypeCodeType", "inheritance": "", "abstract": false, @@ -6887,7 +6887,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PromotionItemSelectionCodeType", "inheritance": "", "abstract": false, @@ -6899,7 +6899,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -6914,7 +6914,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ListingTypeCodeType", "inheritance": "", "abstract": false, @@ -7006,7 +7006,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -7021,7 +7021,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -7066,7 +7066,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AccountStateCodeType", "inheritance": "", "abstract": false, @@ -7099,7 +7099,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AdditionalAccountType", "inheritance": "", "abstract": false, @@ -7168,7 +7168,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AmountType", "inheritance": "", "abstract": false, @@ -7676,7 +7676,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressType", "inheritance": "", "abstract": false, @@ -7717,7 +7717,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CurrencyCodeType", "inheritance": "", "abstract": false, @@ -7807,7 +7807,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressType", "inheritance": "", "abstract": false, @@ -7820,7 +7820,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SchedulingInfoType", "inheritance": "", "abstract": false, @@ -7844,7 +7844,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "anyURI", "inheritance": "", "abstract": false, @@ -7874,7 +7874,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -7886,7 +7886,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AmountType", "inheritance": "", "abstract": false, @@ -7946,7 +7946,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AmountType", "inheritance": "", "abstract": false, @@ -7961,7 +7961,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AmountType", "inheritance": "", "abstract": false, @@ -7974,7 +7974,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "InsuranceOptionCodeType", "inheritance": "", "abstract": false, @@ -7987,7 +7987,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AmountType", "inheritance": "", "abstract": false, @@ -8002,7 +8002,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8047,7 +8047,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8062,7 +8062,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -8077,7 +8077,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ShippingCarrierDetailsType", "inheritance": "", "abstract": false, @@ -8093,7 +8093,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ShippingPackageCodeType", "inheritance": "", "abstract": false, @@ -8108,7 +8108,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MeasureType", "inheritance": "", "abstract": false, @@ -8123,7 +8123,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MeasureType", "inheritance": "", "abstract": false, @@ -8152,7 +8152,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AmountType", "inheritance": "", "abstract": false, @@ -8167,7 +8167,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AmountType", "inheritance": "", "abstract": false, @@ -8179,7 +8179,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AmountType", "inheritance": "", "abstract": false, @@ -8192,7 +8192,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "InsuranceOptionCodeType", "inheritance": "", "abstract": false, @@ -8205,7 +8205,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ShippingServiceCodeType", "inheritance": "", "abstract": false, @@ -8232,7 +8232,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -8247,7 +8247,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8262,7 +8262,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -8291,7 +8291,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -8306,7 +8306,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CalculatedShippingRateType", "inheritance": "", "abstract": false, @@ -8321,7 +8321,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -8336,7 +8336,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FlatShippingRateType", "inheritance": "", "abstract": false, @@ -8352,7 +8352,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AmountType", "inheritance": "", "abstract": false, @@ -8367,7 +8367,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -8382,7 +8382,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8397,7 +8397,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SalesTaxType", "inheritance": "", "abstract": false, @@ -8412,7 +8412,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8445,7 +8445,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "anyURI", "inheritance": "", "abstract": false, @@ -8461,7 +8461,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PhotoDisplayCodeType", "inheritance": "", "abstract": false, @@ -8476,7 +8476,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "GalleryTypeCodeType", "inheritance": "", "abstract": false, @@ -8505,7 +8505,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "anyURI", "inheritance": "", "abstract": false, @@ -8520,7 +8520,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "anyURI", "inheritance": "", "abstract": false, @@ -8535,7 +8535,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "GalleryTypeCodeType", "inheritance": "", "abstract": false, @@ -8713,7 +8713,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -8725,7 +8725,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -8737,7 +8737,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -8759,7 +8759,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -8771,7 +8771,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8783,7 +8783,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8796,7 +8796,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8809,7 +8809,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8825,7 +8825,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -8837,7 +8837,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -8849,7 +8849,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -8861,7 +8861,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -8903,7 +8903,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "anyURI", "inheritance": "", "abstract": false, @@ -8936,7 +8936,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -8951,7 +8951,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -8966,7 +8966,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -8999,7 +8999,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9011,7 +9011,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -9023,7 +9023,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -9053,7 +9053,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -9068,7 +9068,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AmountType", "inheritance": "", "abstract": false, @@ -9083,7 +9083,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AmountType", "inheritance": "", "abstract": false, @@ -9112,7 +9112,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UserType", "inheritance": "", "abstract": false, @@ -9125,7 +9125,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -9140,7 +9140,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AmountType", "inheritance": "", "abstract": false, @@ -9169,7 +9169,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -9184,7 +9184,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -9229,7 +9229,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -9244,7 +9244,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -9259,7 +9259,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -9274,7 +9274,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -9307,7 +9307,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -9319,7 +9319,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -9331,7 +9331,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -9343,7 +9343,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AmountType", "inheritance": "", "abstract": false, @@ -9358,7 +9358,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AmountType", "inheritance": "", "abstract": false, @@ -9373,7 +9373,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AmountType", "inheritance": "", "abstract": false, @@ -9388,7 +9388,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -9400,7 +9400,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9412,7 +9412,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIDType", "inheritance": "", "abstract": false, @@ -9427,7 +9427,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIDType", "inheritance": "", "abstract": false, @@ -9442,7 +9442,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -9457,7 +9457,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -9472,7 +9472,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "anyURI", "inheritance": "", "abstract": false, @@ -9502,7 +9502,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9517,7 +9517,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ListOfAttributeSetType", "inheritance": "", "abstract": false, @@ -9532,7 +9532,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -9547,7 +9547,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BuyerProtectionCodeType", "inheritance": "", "abstract": false, @@ -9562,7 +9562,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AmountType", "inheritance": "", "abstract": false, @@ -9577,7 +9577,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CharityType", "inheritance": "", "abstract": false, @@ -9592,7 +9592,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CountryCodeType", "inheritance": "", "abstract": false, @@ -9605,7 +9605,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CrossPromotionsType", "inheritance": "", "abstract": false, @@ -9620,7 +9620,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CurrencyCodeType", "inheritance": "", "abstract": false, @@ -9633,7 +9633,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9648,7 +9648,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EscrowCodeType", "inheritance": "", "abstract": false, @@ -9663,7 +9663,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -9678,7 +9678,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "GiftServicesCodeType", "inheritance": "", "abstract": false, @@ -9694,7 +9694,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "HitCounterCodeType", "inheritance": "", "abstract": false, @@ -9709,7 +9709,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIDType", "inheritance": "", "abstract": false, @@ -9722,7 +9722,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ListingDetailsType", "inheritance": "", "abstract": false, @@ -9737,7 +9737,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ListingDesignerType", "inheritance": "", "abstract": false, @@ -9752,7 +9752,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ListingDurationCodeType", "inheritance": "", "abstract": false, @@ -9765,7 +9765,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ListingEnhancementsCodeType", "inheritance": "", "abstract": false, @@ -9781,7 +9781,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ListingTypeCodeType", "inheritance": "", "abstract": false, @@ -9796,7 +9796,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9811,7 +9811,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9826,7 +9826,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9841,7 +9841,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BuyerPaymentMethodCodeType", "inheritance": "", "abstract": false, @@ -9855,7 +9855,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9870,7 +9870,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CategoryType", "inheritance": "", "abstract": false, @@ -9885,7 +9885,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -9900,7 +9900,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -9915,7 +9915,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9928,7 +9928,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -9943,7 +9943,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AmountType", "inheritance": "", "abstract": false, @@ -9958,7 +9958,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ReviseStatusType", "inheritance": "", "abstract": false, @@ -9971,7 +9971,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -9983,7 +9983,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CategoryType", "inheritance": "", "abstract": false, @@ -9998,7 +9998,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SiteHostedPictureType", "inheritance": "", "abstract": false, @@ -10013,7 +10013,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UserType", "inheritance": "", "abstract": false, @@ -10026,7 +10026,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SellingStatusType", "inheritance": "", "abstract": false, @@ -10039,7 +10039,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ShippingOptionCodeType", "inheritance": "", "abstract": false, @@ -10054,7 +10054,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ShippingDetailsType", "inheritance": "", "abstract": false, @@ -10067,7 +10067,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ShippingRegionCodeType", "inheritance": "", "abstract": false, @@ -10081,7 +10081,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ShippingTermsCodeType", "inheritance": "", "abstract": false, @@ -10096,7 +10096,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SiteCodeType", "inheritance": "", "abstract": false, @@ -10109,7 +10109,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AmountType", "inheritance": "", "abstract": false, @@ -10124,7 +10124,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StorefrontType", "inheritance": "", "abstract": false, @@ -10139,7 +10139,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10154,7 +10154,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "duration", "inheritance": "", "abstract": false, @@ -10169,7 +10169,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10184,7 +10184,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UUIDType", "inheritance": "", "abstract": false, @@ -10197,7 +10197,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "VATDetailsType", "inheritance": "", "abstract": false, @@ -10212,7 +10212,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "VendorHostedPictureType", "inheritance": "", "abstract": false, @@ -10288,7 +10288,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AmountType", "inheritance": "", "abstract": false, @@ -10301,7 +10301,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UserType", "inheritance": "", "abstract": false, @@ -10316,7 +10316,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ShippingDetailsType", "inheritance": "", "abstract": false, @@ -10329,7 +10329,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AmountType", "inheritance": "", "abstract": false, @@ -10344,7 +10344,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AmountType", "inheritance": "", "abstract": false, @@ -10359,7 +10359,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -10374,7 +10374,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DepositTypeCodeType", "inheritance": "", "abstract": false, @@ -10389,7 +10389,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemType", "inheritance": "", "abstract": false, @@ -10404,7 +10404,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -10419,7 +10419,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AmountType", "inheritance": "", "abstract": false, @@ -10434,7 +10434,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TransactionStatusType", "inheritance": "", "abstract": false, @@ -10449,7 +10449,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10462,7 +10462,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10475,7 +10475,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AmountType", "inheritance": "", "abstract": false, @@ -10490,7 +10490,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "decimal", "inheritance": "", "abstract": false, @@ -10593,7 +10593,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -10608,7 +10608,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -10623,7 +10623,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -10638,7 +10638,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BuyerPaymentMethodCodeType", "inheritance": "", "abstract": false, @@ -10653,7 +10653,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -10682,7 +10682,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -10694,7 +10694,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10718,7 +10718,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -10731,7 +10731,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -10743,7 +10743,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FeedbackRatingStarCodeType", "inheritance": "", "abstract": false, @@ -10755,7 +10755,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -10767,7 +10767,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -10779,7 +10779,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressType", "inheritance": "", "abstract": false, @@ -10792,7 +10792,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -10804,7 +10804,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SiteCodeType", "inheritance": "", "abstract": false, @@ -10817,7 +10817,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UserStatusCodeType", "inheritance": "", "abstract": false, @@ -10829,7 +10829,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UserIDType", "inheritance": "", "abstract": false, @@ -10842,7 +10842,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -10854,7 +10854,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -10866,7 +10866,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "VATStatusCodeType", "inheritance": "", "abstract": false, @@ -10881,7 +10881,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BuyerType", "inheritance": "", "abstract": false, @@ -10893,7 +10893,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SellerType", "inheritance": "", "abstract": false, @@ -10923,7 +10923,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -10935,7 +10935,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -10947,7 +10947,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -10977,7 +10977,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -10989,7 +10989,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -11001,7 +11001,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -11031,7 +11031,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemType", "inheritance": "", "abstract": false, @@ -11059,7 +11059,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CategoryType", "inheritance": "", "abstract": false, @@ -11087,7 +11087,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -11099,7 +11099,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -11125,7 +11125,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11137,7 +11137,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ModifyCodeType", "inheritance": "", "abstract": false, @@ -11163,7 +11163,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -11175,7 +11175,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -11253,7 +11253,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11293,7 +11293,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ErrorParameterType", "inheritance": "", "abstract": false, @@ -11351,7 +11351,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11377,7 +11377,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DetailLevelCodeType", "inheritance": "", "abstract": false, @@ -11393,7 +11393,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11450,7 +11450,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -11479,7 +11479,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11494,7 +11494,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ErrorType", "inheritance": "", "abstract": false, @@ -11563,7 +11563,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11578,7 +11578,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11593,7 +11593,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11622,7 +11622,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11637,7 +11637,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11652,7 +11652,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11667,7 +11667,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11682,7 +11682,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11697,7 +11697,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CountryCodeType", "inheritance": "", "abstract": false, @@ -11710,7 +11710,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11723,7 +11723,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11738,7 +11738,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11750,7 +11750,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11765,7 +11765,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressOwnerCodeType", "inheritance": "", "abstract": false, @@ -11780,7 +11780,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11795,7 +11795,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11810,7 +11810,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11825,7 +11825,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11840,7 +11840,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressStatusCodeType", "inheritance": "", "abstract": false, @@ -11855,7 +11855,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressNormalizationStatusCodeType", "inheritance": "", "abstract": false, @@ -15095,7 +15095,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SalutationType", "inheritance": "", "abstract": false, @@ -15107,7 +15107,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NameType", "inheritance": "", "abstract": false, @@ -15119,7 +15119,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NameType", "inheritance": "", "abstract": false, @@ -15131,7 +15131,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NameType", "inheritance": "", "abstract": false, @@ -15143,7 +15143,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SuffixType", "inheritance": "", "abstract": false, @@ -15995,7 +15995,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16007,7 +16007,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16019,7 +16019,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -16031,7 +16031,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16057,7 +16057,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16069,7 +16069,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16081,7 +16081,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16093,7 +16093,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IncentiveTypeCodeType", "inheritance": "", "abstract": false, @@ -16105,7 +16105,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16117,7 +16117,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IncentiveAppliedToType", "inheritance": "", "abstract": false, @@ -16130,7 +16130,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16142,7 +16142,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16168,7 +16168,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16180,7 +16180,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -16192,7 +16192,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16204,7 +16204,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -16216,7 +16216,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integer", "inheritance": "", "abstract": false, @@ -16242,7 +16242,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IncentiveItemType", "inheritance": "", "abstract": false, @@ -16255,7 +16255,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16267,7 +16267,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16279,7 +16279,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16291,7 +16291,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -16303,7 +16303,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -16315,7 +16315,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -16327,7 +16327,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -16339,7 +16339,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -16365,7 +16365,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16377,7 +16377,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IncentiveRequestCodeType", "inheritance": "", "abstract": false, @@ -16389,7 +16389,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IncentiveRequestDetailLevelCodeType", "inheritance": "", "abstract": false, @@ -16415,7 +16415,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16428,7 +16428,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16441,7 +16441,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IncentiveApplyIndicationType", "inheritance": "", "abstract": false, @@ -16454,7 +16454,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IncentiveBucketType", "inheritance": "", "abstract": false, @@ -16467,7 +16467,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -16480,7 +16480,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IncentiveRequestDetailsType", "inheritance": "", "abstract": false, @@ -16507,7 +16507,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IncentiveDetailType", "inheritance": "", "abstract": false, @@ -16520,7 +16520,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16547,7 +16547,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -16590,7 +16590,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16605,7 +16605,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16620,7 +16620,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16635,7 +16635,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16650,7 +16650,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ExpressCheckoutTokenType", "inheritance": "", "abstract": false, @@ -16665,7 +16665,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -16680,7 +16680,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16695,7 +16695,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16710,7 +16710,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16725,7 +16725,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16740,7 +16740,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16755,7 +16755,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressType", "inheritance": "", "abstract": false, @@ -16770,7 +16770,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16785,7 +16785,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16800,7 +16800,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16815,7 +16815,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16830,7 +16830,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16845,7 +16845,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16860,7 +16860,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16875,7 +16875,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16890,7 +16890,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16905,7 +16905,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16920,7 +16920,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressType", "inheritance": "", "abstract": false, @@ -16935,7 +16935,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PaymentActionCodeType", "inheritance": "", "abstract": false, @@ -16950,7 +16950,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SolutionTypeType", "inheritance": "", "abstract": false, @@ -16965,7 +16965,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LandingPageType", "inheritance": "", "abstract": false, @@ -16980,7 +16980,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressType", "inheritance": "", "abstract": false, @@ -16995,7 +16995,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ChannelType", "inheritance": "", "abstract": false, @@ -17007,7 +17007,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BillingAgreementDetailsType", "inheritance": "", "abstract": false, @@ -17020,7 +17020,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -17036,7 +17036,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -17052,7 +17052,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ProductCategoryType", "inheritance": "", "abstract": false, @@ -17065,7 +17065,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ShippingServiceCodeType", "inheritance": "", "abstract": false, @@ -17078,7 +17078,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -17094,7 +17094,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -17110,7 +17110,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FundingSourceDetailsType", "inheritance": "", "abstract": false, @@ -17126,7 +17126,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -17142,7 +17142,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -17158,7 +17158,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EnhancedCheckoutDataType", "inheritance": "", "abstract": false, @@ -17174,7 +17174,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "OtherPaymentMethodDetailsType", "inheritance": "", "abstract": false, @@ -17190,7 +17190,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BuyerDetailsType", "inheritance": "", "abstract": false, @@ -17206,7 +17206,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PaymentDetailsType", "inheritance": "", "abstract": false, @@ -17222,7 +17222,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ShippingOptionType", "inheritance": "", "abstract": false, @@ -17238,7 +17238,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -17254,7 +17254,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -17270,7 +17270,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -17286,7 +17286,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -17302,7 +17302,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -17318,7 +17318,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -17334,7 +17334,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -17350,7 +17350,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -17366,7 +17366,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -17382,7 +17382,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -17398,7 +17398,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -17414,7 +17414,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -17430,7 +17430,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TotalType", "inheritance": "", "abstract": false, @@ -17442,7 +17442,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -17458,7 +17458,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IncentiveInfoType", "inheritance": "", "abstract": false, @@ -17474,7 +17474,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -17490,7 +17490,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ExternalRememberMeOptInDetailsType", "inheritance": "", "abstract": false, @@ -17506,7 +17506,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FlowControlDetailsType", "inheritance": "", "abstract": false, @@ -17522,7 +17522,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DisplayControlDetailsType", "inheritance": "", "abstract": false, @@ -17538,7 +17538,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ExternalPartnerTrackingDetailsType", "inheritance": "", "abstract": false, @@ -17554,7 +17554,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CoupledBucketsType", "inheritance": "", "abstract": false, @@ -17584,7 +17584,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ExpressCheckoutTokenType", "inheritance": "", "abstract": false, @@ -17615,7 +17615,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AuthorizationRequestType", "inheritance": "", "abstract": false, @@ -17727,7 +17727,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BillingApprovalDetailsType", "inheritance": "", "abstract": false, @@ -17743,7 +17743,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BuyerDetailType", "inheritance": "", "abstract": false, @@ -17759,7 +17759,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "InfoSharingDirectivesType", "inheritance": "", "abstract": false, @@ -17775,7 +17775,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -17791,7 +17791,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UserChannelCodeType", "inheritance": "", "abstract": false, @@ -17807,7 +17807,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -17823,7 +17823,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PaymentDetailsType", "inheritance": "", "abstract": false, @@ -17839,7 +17839,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ExternalPartnerTrackingDetailsType", "inheritance": "", "abstract": false, @@ -17855,7 +17855,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -17927,7 +17927,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ApprovalSubTypeType", "inheritance": "", "abstract": false, @@ -17942,7 +17942,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "OrderDetailsType", "inheritance": "", "abstract": false, @@ -17957,7 +17957,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PaymentDirectivesType", "inheritance": "", "abstract": false, @@ -17972,7 +17972,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18001,7 +18001,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18030,7 +18030,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18045,7 +18045,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -18074,7 +18074,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MerchantPullPaymentCodeType", "inheritance": "", "abstract": false, @@ -18103,7 +18103,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IdentificationInfoType", "inheritance": "", "abstract": false, @@ -18118,7 +18118,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18134,7 +18134,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18164,7 +18164,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MobileIDInfoType", "inheritance": "", "abstract": false, @@ -18179,7 +18179,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RememberMeIDInfoType", "inheritance": "", "abstract": false, @@ -18195,7 +18195,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IdentityTokenInfoType", "inheritance": "", "abstract": false, @@ -18253,7 +18253,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18313,7 +18313,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18329,7 +18329,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UserSelectedFundingSourceType", "inheritance": "", "abstract": false, @@ -18372,7 +18372,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18388,7 +18388,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MerchantPullPaymentCodeType", "inheritance": "", "abstract": false, @@ -18401,7 +18401,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18459,7 +18459,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18474,7 +18474,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18489,7 +18489,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18504,7 +18504,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -18517,7 +18517,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18530,7 +18530,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressType", "inheritance": "", "abstract": false, @@ -18545,7 +18545,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18561,7 +18561,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18577,7 +18577,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -18593,7 +18593,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PaymentDetailsType", "inheritance": "", "abstract": false, @@ -18609,7 +18609,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UserSelectedOptionType", "inheritance": "", "abstract": false, @@ -18625,7 +18625,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IncentiveDetailsType", "inheritance": "", "abstract": false, @@ -18641,7 +18641,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18657,7 +18657,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18673,7 +18673,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18689,7 +18689,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -18705,7 +18705,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18721,7 +18721,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18737,7 +18737,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18753,7 +18753,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PaymentRequestInfoType", "inheritance": "", "abstract": false, @@ -18769,7 +18769,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ExternalRememberMeStatusDetailsType", "inheritance": "", "abstract": false, @@ -18785,7 +18785,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RefreshTokenStatusDetailsType", "inheritance": "", "abstract": false, @@ -18801,7 +18801,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PaymentInfoType", "inheritance": "", "abstract": false, @@ -18817,7 +18817,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18833,7 +18833,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "InstrumentDetailsType", "inheritance": "", "abstract": false, @@ -18874,7 +18874,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AuthorizationResponseType", "inheritance": "", "abstract": false, @@ -18900,7 +18900,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ExpressCheckoutTokenType", "inheritance": "", "abstract": false, @@ -18916,7 +18916,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressType", "inheritance": "", "abstract": false, @@ -18929,7 +18929,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ErrorType", "inheritance": "", "abstract": false, @@ -18971,7 +18971,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ErrorType", "inheritance": "", "abstract": false, @@ -18998,7 +18998,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PaymentActionCodeType", "inheritance": "", "abstract": false, @@ -19042,7 +19042,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19058,7 +19058,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19074,7 +19074,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PaymentDetailsType", "inheritance": "", "abstract": false, @@ -19090,7 +19090,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19106,7 +19106,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19122,7 +19122,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EnhancedDataType", "inheritance": "", "abstract": false, @@ -19138,7 +19138,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19153,7 +19153,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UserSelectedOptionType", "inheritance": "", "abstract": false, @@ -19169,7 +19169,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19185,7 +19185,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19201,7 +19201,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19217,7 +19217,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -19233,7 +19233,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19249,7 +19249,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19265,7 +19265,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19281,7 +19281,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19296,7 +19296,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -19312,7 +19312,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19328,7 +19328,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CoupledBucketsType", "inheritance": "", "abstract": false, @@ -19344,7 +19344,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19360,7 +19360,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19404,7 +19404,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PaymentInfoType", "inheritance": "", "abstract": false, @@ -19420,7 +19420,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19433,7 +19433,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19446,7 +19446,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19462,7 +19462,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19478,7 +19478,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19494,7 +19494,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UserSelectedOptionType", "inheritance": "", "abstract": false, @@ -19510,7 +19510,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CoupledPaymentInfoType", "inheritance": "", "abstract": false, @@ -19540,7 +19540,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19567,7 +19567,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19583,7 +19583,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19673,7 +19673,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19688,7 +19688,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -19701,7 +19701,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19717,7 +19717,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19803,7 +19803,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19818,7 +19818,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PhoneNumberType", "inheritance": "", "abstract": false, @@ -19847,7 +19847,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -19862,7 +19862,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -19877,7 +19877,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19892,7 +19892,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19907,7 +19907,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19922,7 +19922,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19937,7 +19937,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integer", "inheritance": "", "abstract": false, @@ -19952,7 +19952,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integer", "inheritance": "", "abstract": false, @@ -20051,7 +20051,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20066,7 +20066,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20081,7 +20081,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20096,7 +20096,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20111,7 +20111,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20126,7 +20126,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20141,7 +20141,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20156,7 +20156,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20171,7 +20171,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20186,7 +20186,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20201,7 +20201,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20216,7 +20216,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20231,7 +20231,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20246,7 +20246,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20261,7 +20261,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressType", "inheritance": "", "abstract": false, @@ -20290,7 +20290,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20305,7 +20305,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20320,7 +20320,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20405,7 +20405,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20420,7 +20420,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20435,7 +20435,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20451,7 +20451,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20467,7 +20467,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20482,7 +20482,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20497,7 +20497,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20512,7 +20512,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20527,7 +20527,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20542,7 +20542,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20557,7 +20557,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20572,7 +20572,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20587,7 +20587,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressType", "inheritance": "", "abstract": false, @@ -20616,7 +20616,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20631,7 +20631,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20646,7 +20646,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20661,7 +20661,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20677,7 +20677,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20734,7 +20734,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20760,7 +20760,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20786,7 +20786,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -20799,7 +20799,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressType", "inheritance": "", "abstract": false, @@ -20916,7 +20916,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20931,7 +20931,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20946,7 +20946,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20961,7 +20961,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20976,7 +20976,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21302,7 +21302,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MerchantPullPaymentCodeType", "inheritance": "", "abstract": false, @@ -21317,7 +21317,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21332,7 +21332,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21347,7 +21347,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -21362,7 +21362,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -21377,7 +21377,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -21392,7 +21392,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21407,7 +21407,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21422,7 +21422,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21437,7 +21437,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21452,7 +21452,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21467,7 +21467,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21528,7 +21528,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21558,7 +21558,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PaymentItemInfoType", "inheritance": "", "abstract": false, @@ -21573,7 +21573,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "OfferCouponInfoType", "inheritance": "", "abstract": false, @@ -21588,7 +21588,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressType", "inheritance": "", "abstract": false, @@ -21603,7 +21603,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UserSelectedOptionType", "inheritance": "", "abstract": false, @@ -21619,7 +21619,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21635,7 +21635,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21651,7 +21651,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21667,7 +21667,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -21683,7 +21683,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21699,7 +21699,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21715,7 +21715,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21809,7 +21809,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressType", "inheritance": "", "abstract": false, @@ -21824,7 +21824,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UserIDType", "inheritance": "", "abstract": false, @@ -21839,7 +21839,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PayPalUserStatusCodeType", "inheritance": "", "abstract": false, @@ -21868,7 +21868,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CountryCodeType", "inheritance": "", "abstract": false, @@ -21883,7 +21883,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21898,7 +21898,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressType", "inheritance": "", "abstract": false, @@ -21913,7 +21913,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21928,7 +21928,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WalletItemsType", "inheritance": "", "abstract": false, @@ -21944,7 +21944,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TaxIdDetailsType", "inheritance": "", "abstract": false, @@ -21960,7 +21960,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EnhancedPayerInfoType", "inheritance": "", "abstract": false, @@ -21994,7 +21994,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22009,7 +22009,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22042,7 +22042,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22075,7 +22075,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22090,7 +22090,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BMLOfferInfoType", "inheritance": "", "abstract": false, @@ -22123,7 +22123,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22136,7 +22136,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22149,7 +22149,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TransactionId", "inheritance": "", "abstract": false, @@ -22164,7 +22164,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22191,7 +22191,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PaymentCodeType", "inheritance": "", "abstract": false, @@ -22206,7 +22206,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RefundSourceCodeType", "inheritance": "", "abstract": false, @@ -22221,7 +22221,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -22236,7 +22236,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -22251,7 +22251,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -22266,7 +22266,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -22281,7 +22281,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -22296,7 +22296,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -22311,7 +22311,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -22326,7 +22326,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22341,7 +22341,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22353,7 +22353,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -22368,7 +22368,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -22383,7 +22383,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22412,7 +22412,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PendingStatusCodeType", "inheritance": "", "abstract": false, @@ -22427,7 +22427,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ReversalReasonCodeType", "inheritance": "", "abstract": false, @@ -22442,7 +22442,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22457,7 +22457,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22472,7 +22472,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22487,7 +22487,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22502,7 +22502,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22517,7 +22517,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "POSTransactionCodeType", "inheritance": "", "abstract": false, @@ -22532,7 +22532,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22547,7 +22547,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22562,7 +22562,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22577,7 +22577,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22592,7 +22592,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22607,7 +22607,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22622,7 +22622,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22637,7 +22637,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SellerDetailsType", "inheritance": "", "abstract": false, @@ -22653,7 +22653,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22668,7 +22668,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FMFDetailsType", "inheritance": "", "abstract": false, @@ -22684,7 +22684,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EnhancedPaymentInfoType", "inheritance": "", "abstract": false, @@ -22700,7 +22700,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ErrorType", "inheritance": "", "abstract": false, @@ -22716,7 +22716,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "InstrumentDetailsType", "inheritance": "", "abstract": false, @@ -22731,7 +22731,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "OfferDetailsType", "inheritance": "", "abstract": false, @@ -22746,7 +22746,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22761,7 +22761,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22776,7 +22776,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22864,7 +22864,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -22879,7 +22879,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -22894,7 +22894,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -22909,7 +22909,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22924,7 +22924,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22939,7 +22939,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22954,7 +22954,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SubscriptionTermsType", "inheritance": "", "abstract": false, @@ -23013,7 +23013,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23028,7 +23028,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -23115,7 +23115,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23130,7 +23130,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23145,7 +23145,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23160,7 +23160,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23193,7 +23193,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23208,7 +23208,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23223,7 +23223,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integer", "inheritance": "", "abstract": false, @@ -23238,7 +23238,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -23253,7 +23253,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -23268,7 +23268,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EbayItemPaymentDetailsItemType", "inheritance": "", "abstract": false, @@ -23283,7 +23283,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23299,7 +23299,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ProductCategoryType", "inheritance": "", "abstract": false, @@ -23312,7 +23312,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23328,7 +23328,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MeasureType", "inheritance": "", "abstract": false, @@ -23344,7 +23344,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MeasureType", "inheritance": "", "abstract": false, @@ -23360,7 +23360,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MeasureType", "inheritance": "", "abstract": false, @@ -23376,7 +23376,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MeasureType", "inheritance": "", "abstract": false, @@ -23392,7 +23392,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23408,7 +23408,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EnhancedItemDataType", "inheritance": "", "abstract": false, @@ -23424,7 +23424,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemCategoryType", "inheritance": "", "abstract": false, @@ -23458,7 +23458,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23473,7 +23473,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23488,7 +23488,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23503,7 +23503,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23518,7 +23518,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23533,7 +23533,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23548,7 +23548,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23563,7 +23563,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "InvoiceItemType", "inheritance": "", "abstract": false, @@ -23578,7 +23578,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23593,7 +23593,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23608,7 +23608,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23623,7 +23623,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23638,7 +23638,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23653,7 +23653,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -23668,7 +23668,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "OptionType", "inheritance": "", "abstract": false, @@ -23702,7 +23702,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23717,7 +23717,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23732,7 +23732,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23747,7 +23747,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23762,7 +23762,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PaymentItemType", "inheritance": "", "abstract": false, @@ -23778,7 +23778,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SubscriptionInfoType", "inheritance": "", "abstract": false, @@ -23793,7 +23793,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AuctionInfoType", "inheritance": "", "abstract": false, @@ -23826,7 +23826,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23841,7 +23841,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23856,7 +23856,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23871,7 +23871,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23904,7 +23904,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -23919,7 +23919,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -23934,7 +23934,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -23949,7 +23949,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -23964,7 +23964,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -23979,7 +23979,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23994,7 +23994,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24009,7 +24009,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24024,7 +24024,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24039,7 +24039,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24054,7 +24054,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressType", "inheritance": "", "abstract": false, @@ -24069,7 +24069,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24084,7 +24084,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24100,7 +24100,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressType", "inheritance": "", "abstract": false, @@ -24113,7 +24113,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PaymentCategoryType", "inheritance": "", "abstract": false, @@ -24126,7 +24126,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LocationType", "inheritance": "", "abstract": false, @@ -24139,7 +24139,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ShippingServiceCodeType", "inheritance": "", "abstract": false, @@ -24152,7 +24152,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -24168,7 +24168,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PaymentDetailsItemType", "inheritance": "", "abstract": false, @@ -24184,7 +24184,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -24200,7 +24200,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -24216,7 +24216,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24232,7 +24232,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AllowedPaymentMethodType", "inheritance": "", "abstract": false, @@ -24248,7 +24248,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EnhancedPaymentDataType", "inheritance": "", "abstract": false, @@ -24264,7 +24264,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SellerDetailsType", "inheritance": "", "abstract": false, @@ -24280,7 +24280,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24296,7 +24296,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24312,7 +24312,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PaymentActionCodeType", "inheritance": "", "abstract": false, @@ -24328,7 +24328,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24343,7 +24343,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24359,7 +24359,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24375,7 +24375,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integer", "inheritance": "", "abstract": false, @@ -24391,7 +24391,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "OfferDetailsType", "inheritance": "", "abstract": false, @@ -24407,7 +24407,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RecurringFlagType", "inheritance": "", "abstract": false, @@ -24423,7 +24423,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PaymentReasonType", "inheritance": "", "abstract": false, @@ -24439,7 +24439,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24454,7 +24454,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DiscountInfoType", "inheritance": "", "abstract": false, @@ -24470,7 +24470,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DiscountInfoType", "inheritance": "", "abstract": false, @@ -24486,7 +24486,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MerchantDataType", "inheritance": "", "abstract": false, @@ -24520,7 +24520,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24536,7 +24536,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IncentiveSiteAppliedOnType", "inheritance": "", "abstract": false, @@ -24552,7 +24552,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -24568,7 +24568,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IncentiveAppliedStatusType", "inheritance": "", "abstract": false, @@ -24584,7 +24584,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integer", "inheritance": "", "abstract": false, @@ -24600,7 +24600,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IncentiveAppliedDetailsType", "inheritance": "", "abstract": false, @@ -24634,7 +24634,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24650,7 +24650,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24666,7 +24666,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24682,7 +24682,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -24698,7 +24698,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24731,7 +24731,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24747,7 +24747,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24763,7 +24763,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -24779,7 +24779,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24795,7 +24795,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UserIDType", "inheritance": "", "abstract": false, @@ -24829,7 +24829,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24845,7 +24845,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24861,7 +24861,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24877,7 +24877,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24893,7 +24893,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24909,7 +24909,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24925,7 +24925,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24941,7 +24941,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -24975,7 +24975,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24990,7 +24990,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25005,7 +25005,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -25020,7 +25020,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TaxIdDetailsType", "inheritance": "", "abstract": false, @@ -25036,7 +25036,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IdentificationInfoType", "inheritance": "", "abstract": false, @@ -25070,7 +25070,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25085,7 +25085,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25118,7 +25118,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25130,7 +25130,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25142,7 +25142,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25154,7 +25154,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25166,7 +25166,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25196,7 +25196,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25208,7 +25208,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25238,7 +25238,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ThreeDSecureRequestType", "inheritance": "", "abstract": false, @@ -25250,7 +25250,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ThreeDSecureResponseType", "inheritance": "", "abstract": false, @@ -25280,7 +25280,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CreditCardTypeType", "inheritance": "", "abstract": false, @@ -25292,7 +25292,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25304,7 +25304,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -25316,7 +25316,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -25328,7 +25328,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PayerInfoType", "inheritance": "", "abstract": false, @@ -25340,7 +25340,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25352,7 +25352,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -25364,7 +25364,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -25376,7 +25376,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25388,7 +25388,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ThreeDSecureRequestType", "inheritance": "", "abstract": false, @@ -25418,7 +25418,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25431,7 +25431,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -25444,7 +25444,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25475,7 +25475,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25488,7 +25488,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25501,7 +25501,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25514,7 +25514,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -25527,7 +25527,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25540,7 +25540,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25553,7 +25553,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25584,7 +25584,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CreditCardTypeType", "inheritance": "", "abstract": false, @@ -25597,7 +25597,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25624,7 +25624,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CreditCardNumberTypeType", "inheritance": "", "abstract": false, @@ -25637,7 +25637,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -25650,7 +25650,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -25663,7 +25663,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PersonNameType", "inheritance": "", "abstract": false, @@ -25676,7 +25676,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressType", "inheritance": "", "abstract": false, @@ -25689,7 +25689,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25702,7 +25702,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -25715,7 +25715,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -25728,7 +25728,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27511,7 +27511,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27523,7 +27523,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27535,7 +27535,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UserIdPasswordType", "inheritance": "", "abstract": false, @@ -27565,7 +27565,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27577,7 +27577,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27589,7 +27589,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27629,7 +27629,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27644,7 +27644,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27659,7 +27659,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27727,7 +27727,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27740,7 +27740,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27753,7 +27753,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27766,7 +27766,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27779,7 +27779,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27792,7 +27792,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27805,7 +27805,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressType", "inheritance": "", "abstract": false, @@ -27818,7 +27818,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27860,7 +27860,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressType", "inheritance": "", "abstract": false, @@ -27889,7 +27889,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27918,7 +27918,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DeviceDetailsType", "inheritance": "", "abstract": false, @@ -27970,7 +27970,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MerchantPullPaymentCodeType", "inheritance": "", "abstract": false, @@ -27996,7 +27996,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ReferenceCreditCardDetailsType", "inheritance": "", "abstract": false, @@ -28009,7 +28009,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -28022,7 +28022,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -28038,7 +28038,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -28051,7 +28051,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -28064,7 +28064,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -28077,7 +28077,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -28090,7 +28090,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SenderDetailsType", "inheritance": "", "abstract": false, @@ -28103,7 +28103,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -28133,7 +28133,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -28146,7 +28146,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PaymentInfoType", "inheritance": "", "abstract": false, @@ -28159,7 +28159,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -28172,7 +28172,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -28185,7 +28185,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -28198,7 +28198,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TransactionId", "inheritance": "", "abstract": false, @@ -28211,7 +28211,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -28227,7 +28227,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -28267,7 +28267,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -28279,7 +28279,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -28291,7 +28291,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -28313,7 +28313,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -28325,7 +28325,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -28413,7 +28413,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -28428,7 +28428,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -28443,7 +28443,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MarketingCategoryType", "inheritance": "", "abstract": false, @@ -28458,7 +28458,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BusinessInfoType", "inheritance": "", "abstract": false, @@ -28473,7 +28473,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BusinessOwnerInfoType", "inheritance": "", "abstract": false, @@ -28488,7 +28488,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BankAccountDetailsType", "inheritance": "", "abstract": false, @@ -28703,7 +28703,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BusinessTypeType", "inheritance": "", "abstract": false, @@ -28718,7 +28718,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NameType", "inheritance": "", "abstract": false, @@ -28733,7 +28733,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressType", "inheritance": "", "abstract": false, @@ -28748,7 +28748,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -28763,7 +28763,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BusinessCategoryType", "inheritance": "", "abstract": false, @@ -28778,7 +28778,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BusinessSubCategoryType", "inheritance": "", "abstract": false, @@ -28793,7 +28793,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AverageTransactionPriceType", "inheritance": "", "abstract": false, @@ -28808,7 +28808,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AverageMonthlyVolumeType", "inheritance": "", "abstract": false, @@ -28823,7 +28823,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SalesVenueType", "inheritance": "", "abstract": false, @@ -28838,7 +28838,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -28853,7 +28853,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PercentageRevenueFromOnlineSalesType", "inheritance": "", "abstract": false, @@ -28868,7 +28868,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -28883,7 +28883,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressType", "inheritance": "", "abstract": false, @@ -28898,7 +28898,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -31721,7 +31721,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PayerInfoType", "inheritance": "", "abstract": false, @@ -31736,7 +31736,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -31751,7 +31751,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -31766,7 +31766,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -31964,7 +31964,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -31999,7 +31999,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -32011,7 +32011,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UserWithdrawalLimitTypeType", "inheritance": "", "abstract": false, @@ -32026,7 +32026,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -32041,7 +32041,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PayerInfoType", "inheritance": "", "abstract": false, @@ -32056,7 +32056,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "APICredentialsType", "inheritance": "", "abstract": false, @@ -32071,7 +32071,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -32086,7 +32086,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -32101,7 +32101,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -32116,7 +32116,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -32265,7 +32265,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -32280,7 +32280,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -32369,7 +32369,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PhoneNumberType", "inheritance": "", "abstract": false, @@ -32399,7 +32399,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -32414,7 +32414,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -32444,7 +32444,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -32459,7 +32459,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -32474,7 +32474,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -32504,7 +32504,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -32519,7 +32519,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -32534,7 +32534,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -32549,7 +32549,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressType", "inheritance": "", "abstract": false, @@ -32564,7 +32564,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressType", "inheritance": "", "abstract": false, @@ -32593,7 +32593,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -32608,7 +32608,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -32847,7 +32847,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PhoneNumberType", "inheritance": "", "abstract": false, @@ -32862,7 +32862,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -32877,7 +32877,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -32892,7 +32892,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -32907,7 +32907,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -33148,7 +33148,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -33213,7 +33213,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -33226,7 +33226,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -33266,7 +33266,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FailedPaymentActionType", "inheritance": "", "abstract": false, @@ -33387,7 +33387,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -33419,7 +33419,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -33435,7 +33435,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -33465,7 +33465,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BillingPeriodType", "inheritance": "", "abstract": false, @@ -33481,7 +33481,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -33497,7 +33497,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -33513,7 +33513,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -33529,7 +33529,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -33545,7 +33545,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -33591,7 +33591,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BillingPeriodDetailsType", "inheritance": "", "abstract": false, @@ -33620,7 +33620,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -33636,7 +33636,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ActivationDetailsType", "inheritance": "", "abstract": false, @@ -33649,7 +33649,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AutoBillType", "inheritance": "", "abstract": false, @@ -33676,7 +33676,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -33692,7 +33692,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressType", "inheritance": "", "abstract": false, @@ -33724,7 +33724,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -33754,7 +33754,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -33770,7 +33770,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CreditCardDetailsType", "inheritance": "", "abstract": false, @@ -33818,7 +33818,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PaymentDetailsItemType", "inheritance": "", "abstract": false, @@ -33834,7 +33834,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -33850,7 +33850,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -33896,7 +33896,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RecurringPaymentsProfileStatusType", "inheritance": "", "abstract": false, @@ -33912,7 +33912,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -33928,7 +33928,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -33944,7 +33944,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -34055,7 +34055,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BillingPeriodDetailsType", "inheritance": "", "abstract": false, @@ -34081,7 +34081,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CreditCardDetailsType", "inheritance": "", "abstract": false, @@ -34094,7 +34094,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BillingPeriodDetailsType", "inheritance": "", "abstract": false, @@ -34107,7 +34107,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BillingPeriodDetailsType", "inheritance": "", "abstract": false, @@ -34120,7 +34120,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -34133,7 +34133,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -34146,7 +34146,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -34159,7 +34159,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -34172,7 +34172,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -34185,7 +34185,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -34201,7 +34201,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -34257,7 +34257,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -34324,7 +34324,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -34337,7 +34337,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -34404,7 +34404,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -34417,7 +34417,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -34430,7 +34430,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -34443,7 +34443,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressType", "inheritance": "", "abstract": false, @@ -34456,7 +34456,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -34469,7 +34469,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -34482,7 +34482,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -34495,7 +34495,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -34508,7 +34508,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -34521,7 +34521,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -34534,7 +34534,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AutoBillType", "inheritance": "", "abstract": false, @@ -34547,7 +34547,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -34560,7 +34560,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CreditCardDetailsType", "inheritance": "", "abstract": false, @@ -34576,7 +34576,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -34592,7 +34592,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BillingPeriodDetailsType_Update", "inheritance": "", "abstract": false, @@ -34608,7 +34608,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BillingPeriodDetailsType_Update", "inheritance": "", "abstract": false, @@ -34750,7 +34750,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RiskFilterListType", "inheritance": "", "abstract": false, @@ -34763,7 +34763,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RiskFilterListType", "inheritance": "", "abstract": false, @@ -34776,7 +34776,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RiskFilterListType", "inheritance": "", "abstract": false, @@ -34789,7 +34789,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RiskFilterListType", "inheritance": "", "abstract": false, @@ -35110,7 +35110,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AirlineItineraryType", "inheritance": "", "abstract": false, @@ -35141,7 +35141,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35153,7 +35153,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35165,7 +35165,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35177,7 +35177,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35189,7 +35189,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35201,7 +35201,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35213,7 +35213,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35225,7 +35225,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -35237,7 +35237,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -35249,7 +35249,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -35261,7 +35261,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35273,7 +35273,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35285,7 +35285,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35297,7 +35297,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FlightDetailsType", "inheritance": "", "abstract": false, @@ -35328,7 +35328,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35340,7 +35340,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35352,7 +35352,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35364,7 +35364,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35376,7 +35376,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35388,7 +35388,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35400,7 +35400,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35412,7 +35412,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35424,7 +35424,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35436,7 +35436,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35448,7 +35448,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35460,7 +35460,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35472,7 +35472,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35484,7 +35484,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -35496,7 +35496,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -35508,7 +35508,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -35520,7 +35520,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35564,7 +35564,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PendingStatusCodeType", "inheritance": "", "abstract": false, @@ -35579,7 +35579,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35594,7 +35594,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36041,7 +36041,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36057,7 +36057,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36073,7 +36073,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36089,7 +36089,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36105,7 +36105,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36121,7 +36121,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36151,7 +36151,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36167,7 +36167,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36183,7 +36183,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36199,7 +36199,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36215,7 +36215,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36245,7 +36245,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36258,7 +36258,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36271,7 +36271,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36284,7 +36284,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -36357,7 +36357,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TransactionId", "inheritance": "", "abstract": false, @@ -36568,7 +36568,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36584,7 +36584,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IncentiveApplyIndicationType", "inheritance": "", "abstract": false, @@ -36618,7 +36618,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36634,7 +36634,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36668,7 +36668,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36684,7 +36684,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36700,7 +36700,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ErrorType", "inheritance": "", "abstract": false, @@ -36734,7 +36734,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36750,7 +36750,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36784,7 +36784,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36800,7 +36800,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ExternalRememberMeOwnerDetailsType", "inheritance": "", "abstract": false, @@ -36834,7 +36834,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36850,7 +36850,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36900,7 +36900,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36950,7 +36950,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36966,7 +36966,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37000,7 +37000,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37034,7 +37034,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37084,7 +37084,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37114,7 +37114,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37127,7 +37127,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -37154,7 +37154,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37170,7 +37170,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37202,7 +37202,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RedeemedOfferType", "inheritance": "", "abstract": false, @@ -37218,7 +37218,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37252,7 +37252,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37268,7 +37268,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37284,7 +37284,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37300,7 +37300,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37316,7 +37316,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37332,7 +37332,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -37348,7 +37348,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -37364,7 +37364,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "double", "inheritance": "", "abstract": false, @@ -37380,7 +37380,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UnitOfMeasure", "inheritance": "", "abstract": false, @@ -37396,7 +37396,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DiscountType", "inheritance": "", "abstract": false, @@ -37412,7 +37412,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -37428,7 +37428,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "double", "inheritance": "", "abstract": false, @@ -37444,7 +37444,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AdditionalFeeType", "inheritance": "", "abstract": false, @@ -37460,7 +37460,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -37476,7 +37476,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37492,7 +37492,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37508,7 +37508,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37524,7 +37524,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37540,7 +37540,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37574,7 +37574,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PaymentStatusCodeType", "inheritance": "", "abstract": false, @@ -37590,7 +37590,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PendingStatusCodeType", "inheritance": "", "abstract": false, @@ -37624,7 +37624,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CoupleType", "inheritance": "", "abstract": false, @@ -37640,7 +37640,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37837,7 +37837,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37937,7 +37937,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TupleType", "inheritance": "", "abstract": false, @@ -37968,7 +37968,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WalletItemType", "inheritance": "", "abstract": false, @@ -37984,7 +37984,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38000,7 +38000,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38080,7 +38080,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38096,7 +38096,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38112,7 +38112,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -38128,7 +38128,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RedeemedOfferType", "inheritance": "", "abstract": false, @@ -38144,7 +38144,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38160,7 +38160,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "decimal", "inheritance": "", "abstract": false, @@ -38361,7 +38361,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BillingPeriodType", "inheritance": "", "abstract": false, @@ -38377,7 +38377,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -38393,7 +38393,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -38409,7 +38409,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38425,7 +38425,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38441,7 +38441,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38487,7 +38487,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38503,7 +38503,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "OptionTypeListType", "inheritance": "", "abstract": false, @@ -38519,7 +38519,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "InstallmentDetailsType", "inheritance": "", "abstract": false, @@ -38562,7 +38562,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "OptionSelectionDetailsType", "inheritance": "", "abstract": false, @@ -38615,7 +38615,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ButtonTypeType", "inheritance": "", "abstract": false, @@ -38631,7 +38631,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ButtonCodeType", "inheritance": "", "abstract": false, @@ -38647,7 +38647,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ButtonSubTypeType", "inheritance": "", "abstract": false, @@ -38663,7 +38663,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38679,7 +38679,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "OptionDetailsType", "inheritance": "", "abstract": false, @@ -38692,7 +38692,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38708,7 +38708,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ButtonImageType", "inheritance": "", "abstract": false, @@ -38724,7 +38724,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38740,7 +38740,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BuyNowTextType", "inheritance": "", "abstract": false, @@ -38756,7 +38756,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SubscribeTextType", "inheritance": "", "abstract": false, @@ -38772,7 +38772,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CountryCodeType", "inheritance": "", "abstract": false, @@ -38788,7 +38788,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38831,7 +38831,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38844,7 +38844,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38857,7 +38857,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38926,7 +38926,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ButtonTypeType", "inheritance": "", "abstract": false, @@ -38942,7 +38942,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ButtonCodeType", "inheritance": "", "abstract": false, @@ -38958,7 +38958,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ButtonSubTypeType", "inheritance": "", "abstract": false, @@ -38974,7 +38974,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38990,7 +38990,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "OptionDetailsType", "inheritance": "", "abstract": false, @@ -39003,7 +39003,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -39019,7 +39019,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ButtonImageType", "inheritance": "", "abstract": false, @@ -39035,7 +39035,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -39051,7 +39051,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BuyNowTextType", "inheritance": "", "abstract": false, @@ -39067,7 +39067,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SubscribeTextType", "inheritance": "", "abstract": false, @@ -39083,7 +39083,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CountryCodeType", "inheritance": "", "abstract": false, @@ -39099,7 +39099,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -39142,7 +39142,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -39155,7 +39155,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -39168,7 +39168,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -39221,7 +39221,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -39237,7 +39237,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ButtonStatusType", "inheritance": "", "abstract": false, @@ -39336,7 +39336,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -39349,7 +39349,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -39362,7 +39362,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -39375,7 +39375,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -39388,7 +39388,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ButtonTypeType", "inheritance": "", "abstract": false, @@ -39404,7 +39404,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ButtonCodeType", "inheritance": "", "abstract": false, @@ -39420,7 +39420,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ButtonSubTypeType", "inheritance": "", "abstract": false, @@ -39436,7 +39436,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -39452,7 +39452,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "OptionDetailsType", "inheritance": "", "abstract": false, @@ -39465,7 +39465,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -39481,7 +39481,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ButtonImageType", "inheritance": "", "abstract": false, @@ -39497,7 +39497,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -39513,7 +39513,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BuyNowTextType", "inheritance": "", "abstract": false, @@ -39529,7 +39529,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SubscribeTextType", "inheritance": "", "abstract": false, @@ -39545,7 +39545,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CountryCodeType", "inheritance": "", "abstract": false, @@ -39561,7 +39561,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -39665,7 +39665,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemTrackingDetailsType", "inheritance": "", "abstract": false, @@ -39679,7 +39679,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -39695,7 +39695,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "OptionTrackingDetailsType", "inheritance": "", "abstract": false, @@ -39709,7 +39709,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -39725,7 +39725,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -39741,7 +39741,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -39757,7 +39757,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -39895,7 +39895,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemTrackingDetailsType", "inheritance": "", "abstract": false, @@ -39909,7 +39909,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -39922,7 +39922,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -39935,7 +39935,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "OptionTrackingDetailsType", "inheritance": "", "abstract": false, @@ -39949,7 +39949,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -39962,7 +39962,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -40015,7 +40015,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -40031,7 +40031,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -40061,7 +40061,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ButtonSearchResultType", "inheritance": "", "abstract": false, @@ -40115,7 +40115,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TransactionId", "inheritance": "", "abstract": false, @@ -40131,7 +40131,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UserIDType", "inheritance": "", "abstract": false, @@ -40147,7 +40147,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -40163,7 +40163,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RefundType", "inheritance": "", "abstract": false, @@ -40179,7 +40179,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -40195,7 +40195,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -40211,7 +40211,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -40227,7 +40227,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -40243,7 +40243,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -40259,7 +40259,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RefundSourceCodeType", "inheritance": "", "abstract": false, @@ -40275,7 +40275,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -40291,7 +40291,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MerchantStoreDetailsType", "inheritance": "", "abstract": false, @@ -40305,7 +40305,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "InvoiceItemType", "inheritance": "", "abstract": false, @@ -40319,7 +40319,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -40335,7 +40335,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MerchantDataType", "inheritance": "", "abstract": false, @@ -40386,7 +40386,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -40402,7 +40402,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -40418,7 +40418,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -40434,7 +40434,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -40450,7 +40450,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RefundInfoType", "inheritance": "", "abstract": false, @@ -40464,7 +40464,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -40480,7 +40480,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -40860,7 +40860,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -40902,7 +40902,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FMFDetailsType", "inheritance": "", "abstract": false, @@ -40971,7 +40971,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -40986,7 +40986,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressType", "inheritance": "", "abstract": false, @@ -41002,7 +41002,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressType", "inheritance": "", "abstract": false, @@ -41018,7 +41018,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -41034,7 +41034,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TransactionId", "inheritance": "", "abstract": false, @@ -41050,7 +41050,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -41066,7 +41066,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PersonNameType", "inheritance": "", "abstract": false, @@ -41082,7 +41082,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -41098,7 +41098,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -41114,7 +41114,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -41127,7 +41127,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PaymentTransactionClassCodeType", "inheritance": "", "abstract": false, @@ -41143,7 +41143,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -41159,7 +41159,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CurrencyCodeType", "inheritance": "", "abstract": false, @@ -41175,7 +41175,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PaymentTransactionStatusCodeType", "inheritance": "", "abstract": false, @@ -41205,7 +41205,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PaymentTransactionSearchResultType", "inheritance": "", "abstract": false, @@ -41263,7 +41263,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -41279,7 +41279,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ReceiverInfoCodeType", "inheritance": "", "abstract": false, @@ -41295,7 +41295,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -41354,7 +41354,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressType", "inheritance": "", "abstract": false, @@ -41370,7 +41370,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -41386,7 +41386,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UserIDType", "inheritance": "", "abstract": false, @@ -41418,7 +41418,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -41434,7 +41434,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -41507,7 +41507,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -41520,7 +41520,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MerchantPullStatusCodeType", "inheritance": "", "abstract": false, @@ -41533,7 +41533,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -41706,7 +41706,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MatchStatusCodeType", "inheritance": "", "abstract": false, @@ -41722,7 +41722,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CountryCodeType", "inheritance": "", "abstract": false, @@ -41738,7 +41738,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -42494,7 +42494,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ExpressCheckoutTokenType", "inheritance": "", "abstract": false, @@ -42730,7 +42730,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -42774,7 +42774,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FMFDetailsType", "inheritance": "", "abstract": false, @@ -42934,7 +42934,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TransactionId", "inheritance": "", "abstract": false, @@ -42947,7 +42947,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -43014,7 +43014,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -43092,7 +43092,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TransactionId", "inheritance": "", "abstract": false, @@ -43108,7 +43108,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PendingStatusCodeType", "inheritance": "", "abstract": false, @@ -43123,7 +43123,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PaymentStatusCodeType", "inheritance": "", "abstract": false, @@ -43138,7 +43138,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FMFDetailsType", "inheritance": "", "abstract": false, @@ -43151,7 +43151,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ThreeDSecureResponseType", "inheritance": "", "abstract": false, @@ -43164,7 +43164,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -43252,7 +43252,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -43282,7 +43282,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -43386,7 +43386,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -43402,7 +43402,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -43418,7 +43418,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EnhancedDataType", "inheritance": "", "abstract": false, @@ -43432,7 +43432,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -43448,7 +43448,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MerchantStoreDetailsType", "inheritance": "", "abstract": false, @@ -43462,7 +43462,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -43478,7 +43478,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MerchantDataType", "inheritance": "", "abstract": false, @@ -43598,7 +43598,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -43644,7 +43644,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AuthorizationInfoType", "inheritance": "", "abstract": false, @@ -43658,7 +43658,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -43730,7 +43730,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -43746,7 +43746,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -43776,7 +43776,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -43792,7 +43792,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -43864,7 +43864,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TransactionEntityType", "inheritance": "", "abstract": false, @@ -43896,7 +43896,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressType", "inheritance": "", "abstract": false, @@ -43910,7 +43910,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PaymentDetailsItemType", "inheritance": "", "abstract": false, @@ -43924,7 +43924,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -43940,7 +43940,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -43956,7 +43956,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -43972,7 +43972,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -43988,7 +43988,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -44004,7 +44004,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -44020,7 +44020,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -44036,7 +44036,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -44052,7 +44052,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -44068,7 +44068,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -44084,7 +44084,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -44119,7 +44119,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -44135,7 +44135,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -44151,7 +44151,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AuthorizationInfoType", "inheritance": "", "abstract": false, @@ -44165,7 +44165,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -44237,7 +44237,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressType", "inheritance": "", "abstract": false, @@ -44251,7 +44251,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -44267,7 +44267,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -44301,7 +44301,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -44317,7 +44317,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AuthorizationInfoType", "inheritance": "", "abstract": false, @@ -44385,7 +44385,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TransactionEntityType", "inheritance": "", "abstract": false, @@ -44417,7 +44417,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -44433,7 +44433,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -44497,7 +44497,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -44513,7 +44513,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -44920,7 +44920,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -44973,7 +44973,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -45282,7 +45282,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -45326,7 +45326,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FMFDetailsType", "inheritance": "", "abstract": false, @@ -46029,7 +46029,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ExternalRememberMeOwnerDetailsType", "inheritance": "", "abstract": false, diff --git a/tests/resources/generated/parsed_paypal_start.json b/tests/resources/generated/parsed_paypal_start.json index dba0d1a4..b2c1ebaf 100644 --- a/tests/resources/generated/parsed_paypal_start.json +++ b/tests/resources/generated/parsed_paypal_start.json @@ -6533,7 +6533,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -6548,7 +6548,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -6563,7 +6563,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AmountType", "inheritance": "", "abstract": false, @@ -6578,7 +6578,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PromotionItemPriceTypeCodeType", "inheritance": "", "abstract": false, @@ -6590,7 +6590,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PromotionItemSelectionCodeType", "inheritance": "", "abstract": false, @@ -6602,7 +6602,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -6617,7 +6617,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ListingTypeCodeType", "inheritance": "", "abstract": false, @@ -6709,7 +6709,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -6724,7 +6724,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -6769,7 +6769,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AccountStateCodeType", "inheritance": "", "abstract": false, @@ -6802,7 +6802,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AdditionalAccountType", "inheritance": "", "abstract": false, @@ -6871,7 +6871,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AmountType", "inheritance": "", "abstract": false, @@ -7379,7 +7379,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressType", "inheritance": "", "abstract": false, @@ -7420,7 +7420,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CurrencyCodeType", "inheritance": "", "abstract": false, @@ -7510,7 +7510,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressType", "inheritance": "", "abstract": false, @@ -7523,7 +7523,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SchedulingInfoType", "inheritance": "", "abstract": false, @@ -7547,7 +7547,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "anyURI", "inheritance": "", "abstract": false, @@ -7577,7 +7577,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -7589,7 +7589,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AmountType", "inheritance": "", "abstract": false, @@ -7649,7 +7649,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AmountType", "inheritance": "", "abstract": false, @@ -7664,7 +7664,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AmountType", "inheritance": "", "abstract": false, @@ -7677,7 +7677,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "InsuranceOptionCodeType", "inheritance": "", "abstract": false, @@ -7690,7 +7690,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AmountType", "inheritance": "", "abstract": false, @@ -7705,7 +7705,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -7750,7 +7750,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -7765,7 +7765,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -7780,7 +7780,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ShippingCarrierDetailsType", "inheritance": "", "abstract": false, @@ -7796,7 +7796,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ShippingPackageCodeType", "inheritance": "", "abstract": false, @@ -7811,7 +7811,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MeasureType", "inheritance": "", "abstract": false, @@ -7826,7 +7826,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MeasureType", "inheritance": "", "abstract": false, @@ -7855,7 +7855,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AmountType", "inheritance": "", "abstract": false, @@ -7870,7 +7870,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AmountType", "inheritance": "", "abstract": false, @@ -7882,7 +7882,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AmountType", "inheritance": "", "abstract": false, @@ -7895,7 +7895,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "InsuranceOptionCodeType", "inheritance": "", "abstract": false, @@ -7908,7 +7908,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ShippingServiceCodeType", "inheritance": "", "abstract": false, @@ -7935,7 +7935,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -7950,7 +7950,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -7965,7 +7965,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -7994,7 +7994,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -8009,7 +8009,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CalculatedShippingRateType", "inheritance": "", "abstract": false, @@ -8024,7 +8024,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -8039,7 +8039,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FlatShippingRateType", "inheritance": "", "abstract": false, @@ -8055,7 +8055,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AmountType", "inheritance": "", "abstract": false, @@ -8070,7 +8070,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -8085,7 +8085,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8100,7 +8100,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SalesTaxType", "inheritance": "", "abstract": false, @@ -8115,7 +8115,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8148,7 +8148,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "anyURI", "inheritance": "", "abstract": false, @@ -8164,7 +8164,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PhotoDisplayCodeType", "inheritance": "", "abstract": false, @@ -8179,7 +8179,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "GalleryTypeCodeType", "inheritance": "", "abstract": false, @@ -8208,7 +8208,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "anyURI", "inheritance": "", "abstract": false, @@ -8223,7 +8223,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "anyURI", "inheritance": "", "abstract": false, @@ -8238,7 +8238,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "GalleryTypeCodeType", "inheritance": "", "abstract": false, @@ -8416,7 +8416,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -8428,7 +8428,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -8440,7 +8440,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -8462,7 +8462,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -8474,7 +8474,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8486,7 +8486,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8499,7 +8499,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8512,7 +8512,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8528,7 +8528,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -8540,7 +8540,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -8552,7 +8552,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -8564,7 +8564,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -8606,7 +8606,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "anyURI", "inheritance": "", "abstract": false, @@ -8639,7 +8639,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -8654,7 +8654,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -8669,7 +8669,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -8702,7 +8702,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8714,7 +8714,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -8726,7 +8726,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -8756,7 +8756,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -8771,7 +8771,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AmountType", "inheritance": "", "abstract": false, @@ -8786,7 +8786,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AmountType", "inheritance": "", "abstract": false, @@ -8815,7 +8815,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UserType", "inheritance": "", "abstract": false, @@ -8828,7 +8828,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -8843,7 +8843,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AmountType", "inheritance": "", "abstract": false, @@ -8872,7 +8872,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -8887,7 +8887,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -8932,7 +8932,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -8947,7 +8947,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -8962,7 +8962,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -8977,7 +8977,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -9010,7 +9010,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -9022,7 +9022,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -9034,7 +9034,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -9046,7 +9046,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AmountType", "inheritance": "", "abstract": false, @@ -9061,7 +9061,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AmountType", "inheritance": "", "abstract": false, @@ -9076,7 +9076,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AmountType", "inheritance": "", "abstract": false, @@ -9091,7 +9091,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -9103,7 +9103,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9115,7 +9115,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIDType", "inheritance": "", "abstract": false, @@ -9130,7 +9130,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIDType", "inheritance": "", "abstract": false, @@ -9145,7 +9145,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -9160,7 +9160,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -9175,7 +9175,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "anyURI", "inheritance": "", "abstract": false, @@ -9205,7 +9205,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9220,7 +9220,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ListOfAttributeSetType", "inheritance": "", "abstract": false, @@ -9235,7 +9235,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -9250,7 +9250,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BuyerProtectionCodeType", "inheritance": "", "abstract": false, @@ -9265,7 +9265,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AmountType", "inheritance": "", "abstract": false, @@ -9280,7 +9280,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CharityType", "inheritance": "", "abstract": false, @@ -9295,7 +9295,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CountryCodeType", "inheritance": "", "abstract": false, @@ -9308,7 +9308,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CrossPromotionsType", "inheritance": "", "abstract": false, @@ -9323,7 +9323,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CurrencyCodeType", "inheritance": "", "abstract": false, @@ -9336,7 +9336,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9351,7 +9351,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EscrowCodeType", "inheritance": "", "abstract": false, @@ -9366,7 +9366,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -9381,7 +9381,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "GiftServicesCodeType", "inheritance": "", "abstract": false, @@ -9397,7 +9397,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "HitCounterCodeType", "inheritance": "", "abstract": false, @@ -9412,7 +9412,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemIDType", "inheritance": "", "abstract": false, @@ -9425,7 +9425,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ListingDetailsType", "inheritance": "", "abstract": false, @@ -9440,7 +9440,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ListingDesignerType", "inheritance": "", "abstract": false, @@ -9455,7 +9455,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ListingDurationCodeType", "inheritance": "", "abstract": false, @@ -9468,7 +9468,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ListingEnhancementsCodeType", "inheritance": "", "abstract": false, @@ -9484,7 +9484,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ListingTypeCodeType", "inheritance": "", "abstract": false, @@ -9499,7 +9499,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9514,7 +9514,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9529,7 +9529,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9544,7 +9544,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BuyerPaymentMethodCodeType", "inheritance": "", "abstract": false, @@ -9558,7 +9558,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9573,7 +9573,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CategoryType", "inheritance": "", "abstract": false, @@ -9588,7 +9588,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -9603,7 +9603,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -9618,7 +9618,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9631,7 +9631,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -9646,7 +9646,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AmountType", "inheritance": "", "abstract": false, @@ -9661,7 +9661,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ReviseStatusType", "inheritance": "", "abstract": false, @@ -9674,7 +9674,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -9686,7 +9686,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CategoryType", "inheritance": "", "abstract": false, @@ -9701,7 +9701,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SiteHostedPictureType", "inheritance": "", "abstract": false, @@ -9716,7 +9716,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UserType", "inheritance": "", "abstract": false, @@ -9729,7 +9729,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SellingStatusType", "inheritance": "", "abstract": false, @@ -9742,7 +9742,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ShippingOptionCodeType", "inheritance": "", "abstract": false, @@ -9757,7 +9757,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ShippingDetailsType", "inheritance": "", "abstract": false, @@ -9770,7 +9770,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ShippingRegionCodeType", "inheritance": "", "abstract": false, @@ -9784,7 +9784,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ShippingTermsCodeType", "inheritance": "", "abstract": false, @@ -9799,7 +9799,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SiteCodeType", "inheritance": "", "abstract": false, @@ -9812,7 +9812,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AmountType", "inheritance": "", "abstract": false, @@ -9827,7 +9827,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StorefrontType", "inheritance": "", "abstract": false, @@ -9842,7 +9842,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9857,7 +9857,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "duration", "inheritance": "", "abstract": false, @@ -9872,7 +9872,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9887,7 +9887,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UUIDType", "inheritance": "", "abstract": false, @@ -9900,7 +9900,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "VATDetailsType", "inheritance": "", "abstract": false, @@ -9915,7 +9915,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "VendorHostedPictureType", "inheritance": "", "abstract": false, @@ -9991,7 +9991,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AmountType", "inheritance": "", "abstract": false, @@ -10004,7 +10004,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UserType", "inheritance": "", "abstract": false, @@ -10019,7 +10019,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ShippingDetailsType", "inheritance": "", "abstract": false, @@ -10032,7 +10032,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AmountType", "inheritance": "", "abstract": false, @@ -10047,7 +10047,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AmountType", "inheritance": "", "abstract": false, @@ -10062,7 +10062,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -10077,7 +10077,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DepositTypeCodeType", "inheritance": "", "abstract": false, @@ -10092,7 +10092,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemType", "inheritance": "", "abstract": false, @@ -10107,7 +10107,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -10122,7 +10122,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AmountType", "inheritance": "", "abstract": false, @@ -10137,7 +10137,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TransactionStatusType", "inheritance": "", "abstract": false, @@ -10152,7 +10152,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10165,7 +10165,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10178,7 +10178,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AmountType", "inheritance": "", "abstract": false, @@ -10193,7 +10193,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "decimal", "inheritance": "", "abstract": false, @@ -10296,7 +10296,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -10311,7 +10311,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -10326,7 +10326,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -10341,7 +10341,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BuyerPaymentMethodCodeType", "inheritance": "", "abstract": false, @@ -10356,7 +10356,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -10385,7 +10385,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -10397,7 +10397,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10421,7 +10421,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -10434,7 +10434,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -10446,7 +10446,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FeedbackRatingStarCodeType", "inheritance": "", "abstract": false, @@ -10458,7 +10458,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -10470,7 +10470,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -10482,7 +10482,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressType", "inheritance": "", "abstract": false, @@ -10495,7 +10495,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -10507,7 +10507,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SiteCodeType", "inheritance": "", "abstract": false, @@ -10520,7 +10520,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UserStatusCodeType", "inheritance": "", "abstract": false, @@ -10532,7 +10532,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UserIDType", "inheritance": "", "abstract": false, @@ -10545,7 +10545,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -10557,7 +10557,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -10569,7 +10569,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "VATStatusCodeType", "inheritance": "", "abstract": false, @@ -10584,7 +10584,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BuyerType", "inheritance": "", "abstract": false, @@ -10596,7 +10596,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SellerType", "inheritance": "", "abstract": false, @@ -10626,7 +10626,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -10638,7 +10638,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -10650,7 +10650,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "float", "inheritance": "", "abstract": false, @@ -10680,7 +10680,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -10692,7 +10692,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -10704,7 +10704,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -10734,7 +10734,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemType", "inheritance": "", "abstract": false, @@ -10762,7 +10762,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CategoryType", "inheritance": "", "abstract": false, @@ -10790,7 +10790,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -10802,7 +10802,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -10828,7 +10828,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10840,7 +10840,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ModifyCodeType", "inheritance": "", "abstract": false, @@ -10866,7 +10866,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -10878,7 +10878,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -10956,7 +10956,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10996,7 +10996,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ErrorParameterType", "inheritance": "", "abstract": false, @@ -11054,7 +11054,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11080,7 +11080,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DetailLevelCodeType", "inheritance": "", "abstract": false, @@ -11096,7 +11096,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11153,7 +11153,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -11182,7 +11182,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11197,7 +11197,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ErrorType", "inheritance": "", "abstract": false, @@ -11266,7 +11266,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11281,7 +11281,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11296,7 +11296,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11325,7 +11325,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11340,7 +11340,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11355,7 +11355,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11370,7 +11370,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11385,7 +11385,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11400,7 +11400,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CountryCodeType", "inheritance": "", "abstract": false, @@ -11413,7 +11413,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11426,7 +11426,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11441,7 +11441,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11453,7 +11453,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11468,7 +11468,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressOwnerCodeType", "inheritance": "", "abstract": false, @@ -11483,7 +11483,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11498,7 +11498,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11513,7 +11513,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11528,7 +11528,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11543,7 +11543,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressStatusCodeType", "inheritance": "", "abstract": false, @@ -11558,7 +11558,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressNormalizationStatusCodeType", "inheritance": "", "abstract": false, @@ -14798,7 +14798,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SalutationType", "inheritance": "", "abstract": false, @@ -14810,7 +14810,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NameType", "inheritance": "", "abstract": false, @@ -14822,7 +14822,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NameType", "inheritance": "", "abstract": false, @@ -14834,7 +14834,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NameType", "inheritance": "", "abstract": false, @@ -14846,7 +14846,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SuffixType", "inheritance": "", "abstract": false, @@ -15698,7 +15698,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -15710,7 +15710,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -15722,7 +15722,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -15734,7 +15734,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -15760,7 +15760,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -15772,7 +15772,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -15784,7 +15784,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -15796,7 +15796,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IncentiveTypeCodeType", "inheritance": "", "abstract": false, @@ -15808,7 +15808,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -15820,7 +15820,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IncentiveAppliedToType", "inheritance": "", "abstract": false, @@ -15833,7 +15833,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -15845,7 +15845,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -15871,7 +15871,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -15883,7 +15883,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -15895,7 +15895,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -15907,7 +15907,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -15919,7 +15919,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integer", "inheritance": "", "abstract": false, @@ -15945,7 +15945,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IncentiveItemType", "inheritance": "", "abstract": false, @@ -15958,7 +15958,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -15970,7 +15970,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -15982,7 +15982,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -15994,7 +15994,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -16006,7 +16006,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -16018,7 +16018,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -16030,7 +16030,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -16042,7 +16042,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -16068,7 +16068,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16080,7 +16080,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IncentiveRequestCodeType", "inheritance": "", "abstract": false, @@ -16092,7 +16092,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IncentiveRequestDetailLevelCodeType", "inheritance": "", "abstract": false, @@ -16118,7 +16118,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16131,7 +16131,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16144,7 +16144,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IncentiveApplyIndicationType", "inheritance": "", "abstract": false, @@ -16157,7 +16157,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IncentiveBucketType", "inheritance": "", "abstract": false, @@ -16170,7 +16170,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -16183,7 +16183,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IncentiveRequestDetailsType", "inheritance": "", "abstract": false, @@ -16210,7 +16210,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IncentiveDetailType", "inheritance": "", "abstract": false, @@ -16223,7 +16223,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16250,7 +16250,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -16293,7 +16293,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16308,7 +16308,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16323,7 +16323,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16338,7 +16338,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16353,7 +16353,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ExpressCheckoutTokenType", "inheritance": "", "abstract": false, @@ -16368,7 +16368,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -16383,7 +16383,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16398,7 +16398,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16413,7 +16413,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16428,7 +16428,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16443,7 +16443,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16458,7 +16458,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressType", "inheritance": "", "abstract": false, @@ -16473,7 +16473,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16488,7 +16488,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16503,7 +16503,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16518,7 +16518,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16533,7 +16533,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16548,7 +16548,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16563,7 +16563,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16578,7 +16578,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16593,7 +16593,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16608,7 +16608,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16623,7 +16623,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressType", "inheritance": "", "abstract": false, @@ -16638,7 +16638,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PaymentActionCodeType", "inheritance": "", "abstract": false, @@ -16653,7 +16653,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SolutionTypeType", "inheritance": "", "abstract": false, @@ -16668,7 +16668,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LandingPageType", "inheritance": "", "abstract": false, @@ -16683,7 +16683,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressType", "inheritance": "", "abstract": false, @@ -16698,7 +16698,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ChannelType", "inheritance": "", "abstract": false, @@ -16710,7 +16710,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BillingAgreementDetailsType", "inheritance": "", "abstract": false, @@ -16723,7 +16723,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16739,7 +16739,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16755,7 +16755,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ProductCategoryType", "inheritance": "", "abstract": false, @@ -16768,7 +16768,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ShippingServiceCodeType", "inheritance": "", "abstract": false, @@ -16781,7 +16781,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -16797,7 +16797,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16813,7 +16813,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FundingSourceDetailsType", "inheritance": "", "abstract": false, @@ -16829,7 +16829,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16845,7 +16845,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16861,7 +16861,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EnhancedCheckoutDataType", "inheritance": "", "abstract": false, @@ -16877,7 +16877,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "OtherPaymentMethodDetailsType", "inheritance": "", "abstract": false, @@ -16893,7 +16893,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BuyerDetailsType", "inheritance": "", "abstract": false, @@ -16909,7 +16909,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PaymentDetailsType", "inheritance": "", "abstract": false, @@ -16925,7 +16925,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ShippingOptionType", "inheritance": "", "abstract": false, @@ -16941,7 +16941,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16957,7 +16957,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16973,7 +16973,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -16989,7 +16989,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -17005,7 +17005,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -17021,7 +17021,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -17037,7 +17037,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -17053,7 +17053,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -17069,7 +17069,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -17085,7 +17085,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -17101,7 +17101,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -17117,7 +17117,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -17133,7 +17133,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TotalType", "inheritance": "", "abstract": false, @@ -17145,7 +17145,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -17161,7 +17161,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IncentiveInfoType", "inheritance": "", "abstract": false, @@ -17177,7 +17177,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -17193,7 +17193,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ExternalRememberMeOptInDetailsType", "inheritance": "", "abstract": false, @@ -17209,7 +17209,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FlowControlDetailsType", "inheritance": "", "abstract": false, @@ -17225,7 +17225,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DisplayControlDetailsType", "inheritance": "", "abstract": false, @@ -17241,7 +17241,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ExternalPartnerTrackingDetailsType", "inheritance": "", "abstract": false, @@ -17257,7 +17257,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CoupledBucketsType", "inheritance": "", "abstract": false, @@ -17287,7 +17287,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ExpressCheckoutTokenType", "inheritance": "", "abstract": false, @@ -17318,7 +17318,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AuthorizationRequestType", "inheritance": "", "abstract": false, @@ -17430,7 +17430,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BillingApprovalDetailsType", "inheritance": "", "abstract": false, @@ -17446,7 +17446,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BuyerDetailType", "inheritance": "", "abstract": false, @@ -17462,7 +17462,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "InfoSharingDirectivesType", "inheritance": "", "abstract": false, @@ -17478,7 +17478,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -17494,7 +17494,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UserChannelCodeType", "inheritance": "", "abstract": false, @@ -17510,7 +17510,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -17526,7 +17526,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PaymentDetailsType", "inheritance": "", "abstract": false, @@ -17542,7 +17542,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ExternalPartnerTrackingDetailsType", "inheritance": "", "abstract": false, @@ -17558,7 +17558,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -17630,7 +17630,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ApprovalSubTypeType", "inheritance": "", "abstract": false, @@ -17645,7 +17645,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "OrderDetailsType", "inheritance": "", "abstract": false, @@ -17660,7 +17660,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PaymentDirectivesType", "inheritance": "", "abstract": false, @@ -17675,7 +17675,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -17704,7 +17704,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -17733,7 +17733,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -17748,7 +17748,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -17777,7 +17777,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MerchantPullPaymentCodeType", "inheritance": "", "abstract": false, @@ -17806,7 +17806,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IdentificationInfoType", "inheritance": "", "abstract": false, @@ -17821,7 +17821,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -17837,7 +17837,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -17867,7 +17867,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MobileIDInfoType", "inheritance": "", "abstract": false, @@ -17882,7 +17882,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RememberMeIDInfoType", "inheritance": "", "abstract": false, @@ -17898,7 +17898,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IdentityTokenInfoType", "inheritance": "", "abstract": false, @@ -17956,7 +17956,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18016,7 +18016,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18032,7 +18032,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UserSelectedFundingSourceType", "inheritance": "", "abstract": false, @@ -18075,7 +18075,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18091,7 +18091,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MerchantPullPaymentCodeType", "inheritance": "", "abstract": false, @@ -18104,7 +18104,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18162,7 +18162,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18177,7 +18177,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18192,7 +18192,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18207,7 +18207,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -18220,7 +18220,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18233,7 +18233,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressType", "inheritance": "", "abstract": false, @@ -18248,7 +18248,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18264,7 +18264,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18280,7 +18280,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -18296,7 +18296,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PaymentDetailsType", "inheritance": "", "abstract": false, @@ -18312,7 +18312,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UserSelectedOptionType", "inheritance": "", "abstract": false, @@ -18328,7 +18328,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IncentiveDetailsType", "inheritance": "", "abstract": false, @@ -18344,7 +18344,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18360,7 +18360,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18376,7 +18376,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18392,7 +18392,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -18408,7 +18408,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18424,7 +18424,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18440,7 +18440,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18456,7 +18456,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PaymentRequestInfoType", "inheritance": "", "abstract": false, @@ -18472,7 +18472,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ExternalRememberMeStatusDetailsType", "inheritance": "", "abstract": false, @@ -18488,7 +18488,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RefreshTokenStatusDetailsType", "inheritance": "", "abstract": false, @@ -18504,7 +18504,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PaymentInfoType", "inheritance": "", "abstract": false, @@ -18520,7 +18520,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18536,7 +18536,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "InstrumentDetailsType", "inheritance": "", "abstract": false, @@ -18577,7 +18577,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AuthorizationResponseType", "inheritance": "", "abstract": false, @@ -18603,7 +18603,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ExpressCheckoutTokenType", "inheritance": "", "abstract": false, @@ -18619,7 +18619,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressType", "inheritance": "", "abstract": false, @@ -18632,7 +18632,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ErrorType", "inheritance": "", "abstract": false, @@ -18674,7 +18674,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ErrorType", "inheritance": "", "abstract": false, @@ -18701,7 +18701,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PaymentActionCodeType", "inheritance": "", "abstract": false, @@ -18745,7 +18745,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18761,7 +18761,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18777,7 +18777,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PaymentDetailsType", "inheritance": "", "abstract": false, @@ -18793,7 +18793,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18809,7 +18809,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18825,7 +18825,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EnhancedDataType", "inheritance": "", "abstract": false, @@ -18841,7 +18841,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18856,7 +18856,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UserSelectedOptionType", "inheritance": "", "abstract": false, @@ -18872,7 +18872,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18888,7 +18888,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18904,7 +18904,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18920,7 +18920,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -18936,7 +18936,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18952,7 +18952,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18968,7 +18968,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18984,7 +18984,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -18999,7 +18999,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -19015,7 +19015,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19031,7 +19031,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CoupledBucketsType", "inheritance": "", "abstract": false, @@ -19047,7 +19047,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19063,7 +19063,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19107,7 +19107,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PaymentInfoType", "inheritance": "", "abstract": false, @@ -19123,7 +19123,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19136,7 +19136,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19149,7 +19149,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19165,7 +19165,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19181,7 +19181,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19197,7 +19197,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UserSelectedOptionType", "inheritance": "", "abstract": false, @@ -19213,7 +19213,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CoupledPaymentInfoType", "inheritance": "", "abstract": false, @@ -19243,7 +19243,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19270,7 +19270,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19286,7 +19286,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19376,7 +19376,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19391,7 +19391,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -19404,7 +19404,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19420,7 +19420,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19506,7 +19506,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19521,7 +19521,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PhoneNumberType", "inheritance": "", "abstract": false, @@ -19550,7 +19550,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -19565,7 +19565,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -19580,7 +19580,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19595,7 +19595,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19610,7 +19610,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19625,7 +19625,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19640,7 +19640,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integer", "inheritance": "", "abstract": false, @@ -19655,7 +19655,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integer", "inheritance": "", "abstract": false, @@ -19754,7 +19754,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19769,7 +19769,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19784,7 +19784,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19799,7 +19799,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19814,7 +19814,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19829,7 +19829,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19844,7 +19844,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19859,7 +19859,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19874,7 +19874,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19889,7 +19889,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19904,7 +19904,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19919,7 +19919,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19934,7 +19934,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19949,7 +19949,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -19964,7 +19964,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressType", "inheritance": "", "abstract": false, @@ -19993,7 +19993,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20008,7 +20008,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20023,7 +20023,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20108,7 +20108,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20123,7 +20123,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20138,7 +20138,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20154,7 +20154,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20170,7 +20170,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20185,7 +20185,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20200,7 +20200,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20215,7 +20215,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20230,7 +20230,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20245,7 +20245,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20260,7 +20260,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20275,7 +20275,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20290,7 +20290,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressType", "inheritance": "", "abstract": false, @@ -20319,7 +20319,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20334,7 +20334,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20349,7 +20349,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20364,7 +20364,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20380,7 +20380,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20437,7 +20437,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20463,7 +20463,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20489,7 +20489,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -20502,7 +20502,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressType", "inheritance": "", "abstract": false, @@ -20619,7 +20619,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20634,7 +20634,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20649,7 +20649,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20664,7 +20664,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -20679,7 +20679,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21005,7 +21005,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MerchantPullPaymentCodeType", "inheritance": "", "abstract": false, @@ -21020,7 +21020,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21035,7 +21035,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21050,7 +21050,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -21065,7 +21065,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -21080,7 +21080,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -21095,7 +21095,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21110,7 +21110,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21125,7 +21125,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21140,7 +21140,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21155,7 +21155,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21170,7 +21170,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21231,7 +21231,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21261,7 +21261,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PaymentItemInfoType", "inheritance": "", "abstract": false, @@ -21276,7 +21276,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "OfferCouponInfoType", "inheritance": "", "abstract": false, @@ -21291,7 +21291,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressType", "inheritance": "", "abstract": false, @@ -21306,7 +21306,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UserSelectedOptionType", "inheritance": "", "abstract": false, @@ -21322,7 +21322,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21338,7 +21338,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21354,7 +21354,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21370,7 +21370,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -21386,7 +21386,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21402,7 +21402,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21418,7 +21418,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21512,7 +21512,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressType", "inheritance": "", "abstract": false, @@ -21527,7 +21527,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UserIDType", "inheritance": "", "abstract": false, @@ -21542,7 +21542,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PayPalUserStatusCodeType", "inheritance": "", "abstract": false, @@ -21571,7 +21571,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CountryCodeType", "inheritance": "", "abstract": false, @@ -21586,7 +21586,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21601,7 +21601,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressType", "inheritance": "", "abstract": false, @@ -21616,7 +21616,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21631,7 +21631,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WalletItemsType", "inheritance": "", "abstract": false, @@ -21647,7 +21647,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TaxIdDetailsType", "inheritance": "", "abstract": false, @@ -21663,7 +21663,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EnhancedPayerInfoType", "inheritance": "", "abstract": false, @@ -21697,7 +21697,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21712,7 +21712,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21745,7 +21745,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21778,7 +21778,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21793,7 +21793,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BMLOfferInfoType", "inheritance": "", "abstract": false, @@ -21826,7 +21826,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21839,7 +21839,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21852,7 +21852,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TransactionId", "inheritance": "", "abstract": false, @@ -21867,7 +21867,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -21894,7 +21894,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PaymentCodeType", "inheritance": "", "abstract": false, @@ -21909,7 +21909,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RefundSourceCodeType", "inheritance": "", "abstract": false, @@ -21924,7 +21924,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -21939,7 +21939,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -21954,7 +21954,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -21969,7 +21969,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -21984,7 +21984,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -21999,7 +21999,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -22014,7 +22014,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -22029,7 +22029,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22044,7 +22044,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22056,7 +22056,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -22071,7 +22071,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -22086,7 +22086,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22115,7 +22115,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PendingStatusCodeType", "inheritance": "", "abstract": false, @@ -22130,7 +22130,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ReversalReasonCodeType", "inheritance": "", "abstract": false, @@ -22145,7 +22145,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22160,7 +22160,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22175,7 +22175,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22190,7 +22190,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22205,7 +22205,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22220,7 +22220,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "POSTransactionCodeType", "inheritance": "", "abstract": false, @@ -22235,7 +22235,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22250,7 +22250,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22265,7 +22265,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22280,7 +22280,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22295,7 +22295,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22310,7 +22310,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22325,7 +22325,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22340,7 +22340,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SellerDetailsType", "inheritance": "", "abstract": false, @@ -22356,7 +22356,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22371,7 +22371,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FMFDetailsType", "inheritance": "", "abstract": false, @@ -22387,7 +22387,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EnhancedPaymentInfoType", "inheritance": "", "abstract": false, @@ -22403,7 +22403,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ErrorType", "inheritance": "", "abstract": false, @@ -22419,7 +22419,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "InstrumentDetailsType", "inheritance": "", "abstract": false, @@ -22434,7 +22434,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "OfferDetailsType", "inheritance": "", "abstract": false, @@ -22449,7 +22449,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22464,7 +22464,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22479,7 +22479,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22567,7 +22567,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -22582,7 +22582,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -22597,7 +22597,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -22612,7 +22612,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22627,7 +22627,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22642,7 +22642,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22657,7 +22657,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SubscriptionTermsType", "inheritance": "", "abstract": false, @@ -22716,7 +22716,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22731,7 +22731,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -22818,7 +22818,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22833,7 +22833,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22848,7 +22848,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22863,7 +22863,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22896,7 +22896,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22911,7 +22911,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22926,7 +22926,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integer", "inheritance": "", "abstract": false, @@ -22941,7 +22941,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -22956,7 +22956,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -22971,7 +22971,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EbayItemPaymentDetailsItemType", "inheritance": "", "abstract": false, @@ -22986,7 +22986,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23002,7 +23002,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ProductCategoryType", "inheritance": "", "abstract": false, @@ -23015,7 +23015,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23031,7 +23031,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MeasureType", "inheritance": "", "abstract": false, @@ -23047,7 +23047,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MeasureType", "inheritance": "", "abstract": false, @@ -23063,7 +23063,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MeasureType", "inheritance": "", "abstract": false, @@ -23079,7 +23079,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MeasureType", "inheritance": "", "abstract": false, @@ -23095,7 +23095,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23111,7 +23111,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EnhancedItemDataType", "inheritance": "", "abstract": false, @@ -23127,7 +23127,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemCategoryType", "inheritance": "", "abstract": false, @@ -23161,7 +23161,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23176,7 +23176,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23191,7 +23191,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23206,7 +23206,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23221,7 +23221,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23236,7 +23236,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23251,7 +23251,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23266,7 +23266,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "InvoiceItemType", "inheritance": "", "abstract": false, @@ -23281,7 +23281,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23296,7 +23296,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23311,7 +23311,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23326,7 +23326,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23341,7 +23341,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23356,7 +23356,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -23371,7 +23371,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "OptionType", "inheritance": "", "abstract": false, @@ -23405,7 +23405,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23420,7 +23420,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23435,7 +23435,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23450,7 +23450,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23465,7 +23465,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PaymentItemType", "inheritance": "", "abstract": false, @@ -23481,7 +23481,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SubscriptionInfoType", "inheritance": "", "abstract": false, @@ -23496,7 +23496,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AuctionInfoType", "inheritance": "", "abstract": false, @@ -23529,7 +23529,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23544,7 +23544,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23559,7 +23559,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23574,7 +23574,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23607,7 +23607,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -23622,7 +23622,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -23637,7 +23637,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -23652,7 +23652,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -23667,7 +23667,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -23682,7 +23682,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23697,7 +23697,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23712,7 +23712,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23727,7 +23727,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23742,7 +23742,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23757,7 +23757,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressType", "inheritance": "", "abstract": false, @@ -23772,7 +23772,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23787,7 +23787,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23803,7 +23803,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressType", "inheritance": "", "abstract": false, @@ -23816,7 +23816,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PaymentCategoryType", "inheritance": "", "abstract": false, @@ -23829,7 +23829,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LocationType", "inheritance": "", "abstract": false, @@ -23842,7 +23842,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ShippingServiceCodeType", "inheritance": "", "abstract": false, @@ -23855,7 +23855,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -23871,7 +23871,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PaymentDetailsItemType", "inheritance": "", "abstract": false, @@ -23887,7 +23887,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -23903,7 +23903,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -23919,7 +23919,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23935,7 +23935,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AllowedPaymentMethodType", "inheritance": "", "abstract": false, @@ -23951,7 +23951,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EnhancedPaymentDataType", "inheritance": "", "abstract": false, @@ -23967,7 +23967,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SellerDetailsType", "inheritance": "", "abstract": false, @@ -23983,7 +23983,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -23999,7 +23999,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24015,7 +24015,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PaymentActionCodeType", "inheritance": "", "abstract": false, @@ -24031,7 +24031,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24046,7 +24046,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24062,7 +24062,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24078,7 +24078,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integer", "inheritance": "", "abstract": false, @@ -24094,7 +24094,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "OfferDetailsType", "inheritance": "", "abstract": false, @@ -24110,7 +24110,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RecurringFlagType", "inheritance": "", "abstract": false, @@ -24126,7 +24126,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PaymentReasonType", "inheritance": "", "abstract": false, @@ -24142,7 +24142,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24157,7 +24157,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DiscountInfoType", "inheritance": "", "abstract": false, @@ -24173,7 +24173,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DiscountInfoType", "inheritance": "", "abstract": false, @@ -24189,7 +24189,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MerchantDataType", "inheritance": "", "abstract": false, @@ -24223,7 +24223,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24239,7 +24239,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IncentiveSiteAppliedOnType", "inheritance": "", "abstract": false, @@ -24255,7 +24255,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -24271,7 +24271,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IncentiveAppliedStatusType", "inheritance": "", "abstract": false, @@ -24287,7 +24287,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integer", "inheritance": "", "abstract": false, @@ -24303,7 +24303,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IncentiveAppliedDetailsType", "inheritance": "", "abstract": false, @@ -24337,7 +24337,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24353,7 +24353,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24369,7 +24369,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24385,7 +24385,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -24401,7 +24401,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24434,7 +24434,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24450,7 +24450,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24466,7 +24466,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -24482,7 +24482,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24498,7 +24498,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UserIDType", "inheritance": "", "abstract": false, @@ -24532,7 +24532,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24548,7 +24548,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24564,7 +24564,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24580,7 +24580,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24596,7 +24596,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24612,7 +24612,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24628,7 +24628,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24644,7 +24644,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -24678,7 +24678,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24693,7 +24693,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24708,7 +24708,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -24723,7 +24723,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TaxIdDetailsType", "inheritance": "", "abstract": false, @@ -24739,7 +24739,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IdentificationInfoType", "inheritance": "", "abstract": false, @@ -24773,7 +24773,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24788,7 +24788,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24821,7 +24821,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24833,7 +24833,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24845,7 +24845,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24857,7 +24857,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24869,7 +24869,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24899,7 +24899,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24911,7 +24911,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -24941,7 +24941,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ThreeDSecureRequestType", "inheritance": "", "abstract": false, @@ -24953,7 +24953,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ThreeDSecureResponseType", "inheritance": "", "abstract": false, @@ -24983,7 +24983,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CreditCardTypeType", "inheritance": "", "abstract": false, @@ -24995,7 +24995,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25007,7 +25007,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -25019,7 +25019,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -25031,7 +25031,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PayerInfoType", "inheritance": "", "abstract": false, @@ -25043,7 +25043,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25055,7 +25055,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -25067,7 +25067,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -25079,7 +25079,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25091,7 +25091,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ThreeDSecureRequestType", "inheritance": "", "abstract": false, @@ -25121,7 +25121,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25134,7 +25134,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -25147,7 +25147,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25178,7 +25178,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25191,7 +25191,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25204,7 +25204,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25217,7 +25217,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -25230,7 +25230,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25243,7 +25243,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25256,7 +25256,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25287,7 +25287,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CreditCardTypeType", "inheritance": "", "abstract": false, @@ -25300,7 +25300,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25327,7 +25327,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CreditCardNumberTypeType", "inheritance": "", "abstract": false, @@ -25340,7 +25340,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -25353,7 +25353,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -25366,7 +25366,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PersonNameType", "inheritance": "", "abstract": false, @@ -25379,7 +25379,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressType", "inheritance": "", "abstract": false, @@ -25392,7 +25392,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -25405,7 +25405,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -25418,7 +25418,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -25431,7 +25431,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27214,7 +27214,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27226,7 +27226,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27238,7 +27238,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UserIdPasswordType", "inheritance": "", "abstract": false, @@ -27268,7 +27268,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27280,7 +27280,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27292,7 +27292,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27332,7 +27332,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27347,7 +27347,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27362,7 +27362,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27430,7 +27430,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27443,7 +27443,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27456,7 +27456,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27469,7 +27469,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27482,7 +27482,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27495,7 +27495,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27508,7 +27508,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressType", "inheritance": "", "abstract": false, @@ -27521,7 +27521,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27563,7 +27563,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressType", "inheritance": "", "abstract": false, @@ -27592,7 +27592,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27621,7 +27621,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DeviceDetailsType", "inheritance": "", "abstract": false, @@ -27673,7 +27673,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MerchantPullPaymentCodeType", "inheritance": "", "abstract": false, @@ -27699,7 +27699,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ReferenceCreditCardDetailsType", "inheritance": "", "abstract": false, @@ -27712,7 +27712,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27725,7 +27725,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27741,7 +27741,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27754,7 +27754,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27767,7 +27767,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27780,7 +27780,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27793,7 +27793,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SenderDetailsType", "inheritance": "", "abstract": false, @@ -27806,7 +27806,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27836,7 +27836,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27849,7 +27849,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PaymentInfoType", "inheritance": "", "abstract": false, @@ -27862,7 +27862,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -27875,7 +27875,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27888,7 +27888,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27901,7 +27901,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TransactionId", "inheritance": "", "abstract": false, @@ -27914,7 +27914,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27930,7 +27930,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27970,7 +27970,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -27982,7 +27982,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -27994,7 +27994,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -28016,7 +28016,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -28028,7 +28028,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -28116,7 +28116,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -28131,7 +28131,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -28146,7 +28146,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MarketingCategoryType", "inheritance": "", "abstract": false, @@ -28161,7 +28161,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BusinessInfoType", "inheritance": "", "abstract": false, @@ -28176,7 +28176,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BusinessOwnerInfoType", "inheritance": "", "abstract": false, @@ -28191,7 +28191,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BankAccountDetailsType", "inheritance": "", "abstract": false, @@ -28406,7 +28406,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BusinessTypeType", "inheritance": "", "abstract": false, @@ -28421,7 +28421,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NameType", "inheritance": "", "abstract": false, @@ -28436,7 +28436,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressType", "inheritance": "", "abstract": false, @@ -28451,7 +28451,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -28466,7 +28466,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BusinessCategoryType", "inheritance": "", "abstract": false, @@ -28481,7 +28481,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BusinessSubCategoryType", "inheritance": "", "abstract": false, @@ -28496,7 +28496,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AverageTransactionPriceType", "inheritance": "", "abstract": false, @@ -28511,7 +28511,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AverageMonthlyVolumeType", "inheritance": "", "abstract": false, @@ -28526,7 +28526,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SalesVenueType", "inheritance": "", "abstract": false, @@ -28541,7 +28541,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -28556,7 +28556,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PercentageRevenueFromOnlineSalesType", "inheritance": "", "abstract": false, @@ -28571,7 +28571,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -28586,7 +28586,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressType", "inheritance": "", "abstract": false, @@ -28601,7 +28601,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -31424,7 +31424,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PayerInfoType", "inheritance": "", "abstract": false, @@ -31439,7 +31439,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -31454,7 +31454,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -31469,7 +31469,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -31667,7 +31667,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -31702,7 +31702,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -31714,7 +31714,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UserWithdrawalLimitTypeType", "inheritance": "", "abstract": false, @@ -31729,7 +31729,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -31744,7 +31744,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PayerInfoType", "inheritance": "", "abstract": false, @@ -31759,7 +31759,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "APICredentialsType", "inheritance": "", "abstract": false, @@ -31774,7 +31774,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -31789,7 +31789,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -31804,7 +31804,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -31819,7 +31819,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -31968,7 +31968,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -31983,7 +31983,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -32072,7 +32072,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PhoneNumberType", "inheritance": "", "abstract": false, @@ -32102,7 +32102,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -32117,7 +32117,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -32147,7 +32147,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -32162,7 +32162,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -32177,7 +32177,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -32207,7 +32207,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -32222,7 +32222,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -32237,7 +32237,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -32252,7 +32252,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressType", "inheritance": "", "abstract": false, @@ -32267,7 +32267,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressType", "inheritance": "", "abstract": false, @@ -32296,7 +32296,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -32311,7 +32311,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -32550,7 +32550,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PhoneNumberType", "inheritance": "", "abstract": false, @@ -32565,7 +32565,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -32580,7 +32580,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -32595,7 +32595,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -32610,7 +32610,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -32851,7 +32851,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -32916,7 +32916,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -32929,7 +32929,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -32969,7 +32969,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FailedPaymentActionType", "inheritance": "", "abstract": false, @@ -33090,7 +33090,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -33122,7 +33122,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -33138,7 +33138,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -33168,7 +33168,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BillingPeriodType", "inheritance": "", "abstract": false, @@ -33184,7 +33184,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -33200,7 +33200,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -33216,7 +33216,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -33232,7 +33232,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -33248,7 +33248,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -33294,7 +33294,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BillingPeriodDetailsType", "inheritance": "", "abstract": false, @@ -33323,7 +33323,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -33339,7 +33339,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ActivationDetailsType", "inheritance": "", "abstract": false, @@ -33352,7 +33352,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AutoBillType", "inheritance": "", "abstract": false, @@ -33379,7 +33379,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -33395,7 +33395,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressType", "inheritance": "", "abstract": false, @@ -33427,7 +33427,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -33457,7 +33457,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -33473,7 +33473,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CreditCardDetailsType", "inheritance": "", "abstract": false, @@ -33521,7 +33521,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PaymentDetailsItemType", "inheritance": "", "abstract": false, @@ -33537,7 +33537,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -33553,7 +33553,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -33599,7 +33599,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RecurringPaymentsProfileStatusType", "inheritance": "", "abstract": false, @@ -33615,7 +33615,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -33631,7 +33631,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -33647,7 +33647,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -33758,7 +33758,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BillingPeriodDetailsType", "inheritance": "", "abstract": false, @@ -33784,7 +33784,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CreditCardDetailsType", "inheritance": "", "abstract": false, @@ -33797,7 +33797,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BillingPeriodDetailsType", "inheritance": "", "abstract": false, @@ -33810,7 +33810,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BillingPeriodDetailsType", "inheritance": "", "abstract": false, @@ -33823,7 +33823,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -33836,7 +33836,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -33849,7 +33849,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -33862,7 +33862,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -33875,7 +33875,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -33888,7 +33888,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -33904,7 +33904,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -33960,7 +33960,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -34027,7 +34027,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -34040,7 +34040,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -34107,7 +34107,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -34120,7 +34120,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -34133,7 +34133,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -34146,7 +34146,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressType", "inheritance": "", "abstract": false, @@ -34159,7 +34159,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -34172,7 +34172,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -34185,7 +34185,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -34198,7 +34198,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -34211,7 +34211,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -34224,7 +34224,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -34237,7 +34237,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AutoBillType", "inheritance": "", "abstract": false, @@ -34250,7 +34250,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -34263,7 +34263,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CreditCardDetailsType", "inheritance": "", "abstract": false, @@ -34279,7 +34279,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -34295,7 +34295,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BillingPeriodDetailsType_Update", "inheritance": "", "abstract": false, @@ -34311,7 +34311,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BillingPeriodDetailsType_Update", "inheritance": "", "abstract": false, @@ -34453,7 +34453,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RiskFilterListType", "inheritance": "", "abstract": false, @@ -34466,7 +34466,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RiskFilterListType", "inheritance": "", "abstract": false, @@ -34479,7 +34479,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RiskFilterListType", "inheritance": "", "abstract": false, @@ -34492,7 +34492,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RiskFilterListType", "inheritance": "", "abstract": false, @@ -34813,7 +34813,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AirlineItineraryType", "inheritance": "", "abstract": false, @@ -34844,7 +34844,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -34856,7 +34856,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -34868,7 +34868,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -34880,7 +34880,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -34892,7 +34892,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -34904,7 +34904,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -34916,7 +34916,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -34928,7 +34928,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -34940,7 +34940,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -34952,7 +34952,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -34964,7 +34964,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -34976,7 +34976,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -34988,7 +34988,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35000,7 +35000,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FlightDetailsType", "inheritance": "", "abstract": false, @@ -35031,7 +35031,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35043,7 +35043,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35055,7 +35055,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35067,7 +35067,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35079,7 +35079,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35091,7 +35091,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35103,7 +35103,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35115,7 +35115,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35127,7 +35127,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35139,7 +35139,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35151,7 +35151,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35163,7 +35163,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35175,7 +35175,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35187,7 +35187,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -35199,7 +35199,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -35211,7 +35211,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -35223,7 +35223,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35267,7 +35267,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PendingStatusCodeType", "inheritance": "", "abstract": false, @@ -35282,7 +35282,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35297,7 +35297,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35744,7 +35744,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35760,7 +35760,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35776,7 +35776,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35792,7 +35792,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35808,7 +35808,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35824,7 +35824,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35854,7 +35854,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35870,7 +35870,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35886,7 +35886,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35902,7 +35902,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35918,7 +35918,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35948,7 +35948,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35961,7 +35961,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35974,7 +35974,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35987,7 +35987,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -36060,7 +36060,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TransactionId", "inheritance": "", "abstract": false, @@ -36271,7 +36271,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36287,7 +36287,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IncentiveApplyIndicationType", "inheritance": "", "abstract": false, @@ -36321,7 +36321,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36337,7 +36337,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36371,7 +36371,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36387,7 +36387,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36403,7 +36403,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ErrorType", "inheritance": "", "abstract": false, @@ -36437,7 +36437,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36453,7 +36453,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36487,7 +36487,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36503,7 +36503,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ExternalRememberMeOwnerDetailsType", "inheritance": "", "abstract": false, @@ -36537,7 +36537,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36553,7 +36553,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36603,7 +36603,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36653,7 +36653,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36669,7 +36669,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36703,7 +36703,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36737,7 +36737,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36787,7 +36787,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36817,7 +36817,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36830,7 +36830,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -36857,7 +36857,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36873,7 +36873,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36905,7 +36905,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RedeemedOfferType", "inheritance": "", "abstract": false, @@ -36921,7 +36921,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36955,7 +36955,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36971,7 +36971,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -36987,7 +36987,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37003,7 +37003,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37019,7 +37019,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37035,7 +37035,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -37051,7 +37051,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -37067,7 +37067,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "double", "inheritance": "", "abstract": false, @@ -37083,7 +37083,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UnitOfMeasure", "inheritance": "", "abstract": false, @@ -37099,7 +37099,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DiscountType", "inheritance": "", "abstract": false, @@ -37115,7 +37115,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -37131,7 +37131,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "double", "inheritance": "", "abstract": false, @@ -37147,7 +37147,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AdditionalFeeType", "inheritance": "", "abstract": false, @@ -37163,7 +37163,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -37179,7 +37179,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37195,7 +37195,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37211,7 +37211,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37227,7 +37227,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37243,7 +37243,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37277,7 +37277,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PaymentStatusCodeType", "inheritance": "", "abstract": false, @@ -37293,7 +37293,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PendingStatusCodeType", "inheritance": "", "abstract": false, @@ -37327,7 +37327,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CoupleType", "inheritance": "", "abstract": false, @@ -37343,7 +37343,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37540,7 +37540,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37640,7 +37640,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TupleType", "inheritance": "", "abstract": false, @@ -37671,7 +37671,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WalletItemType", "inheritance": "", "abstract": false, @@ -37687,7 +37687,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37703,7 +37703,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37783,7 +37783,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37799,7 +37799,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37815,7 +37815,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -37831,7 +37831,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RedeemedOfferType", "inheritance": "", "abstract": false, @@ -37847,7 +37847,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37863,7 +37863,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "decimal", "inheritance": "", "abstract": false, @@ -38064,7 +38064,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BillingPeriodType", "inheritance": "", "abstract": false, @@ -38080,7 +38080,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -38096,7 +38096,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -38112,7 +38112,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38128,7 +38128,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38144,7 +38144,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38190,7 +38190,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38206,7 +38206,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "OptionTypeListType", "inheritance": "", "abstract": false, @@ -38222,7 +38222,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "InstallmentDetailsType", "inheritance": "", "abstract": false, @@ -38265,7 +38265,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "OptionSelectionDetailsType", "inheritance": "", "abstract": false, @@ -38318,7 +38318,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ButtonTypeType", "inheritance": "", "abstract": false, @@ -38334,7 +38334,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ButtonCodeType", "inheritance": "", "abstract": false, @@ -38350,7 +38350,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ButtonSubTypeType", "inheritance": "", "abstract": false, @@ -38366,7 +38366,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38382,7 +38382,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "OptionDetailsType", "inheritance": "", "abstract": false, @@ -38395,7 +38395,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38411,7 +38411,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ButtonImageType", "inheritance": "", "abstract": false, @@ -38427,7 +38427,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38443,7 +38443,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BuyNowTextType", "inheritance": "", "abstract": false, @@ -38459,7 +38459,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SubscribeTextType", "inheritance": "", "abstract": false, @@ -38475,7 +38475,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CountryCodeType", "inheritance": "", "abstract": false, @@ -38491,7 +38491,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38534,7 +38534,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38547,7 +38547,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38560,7 +38560,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38629,7 +38629,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ButtonTypeType", "inheritance": "", "abstract": false, @@ -38645,7 +38645,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ButtonCodeType", "inheritance": "", "abstract": false, @@ -38661,7 +38661,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ButtonSubTypeType", "inheritance": "", "abstract": false, @@ -38677,7 +38677,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38693,7 +38693,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "OptionDetailsType", "inheritance": "", "abstract": false, @@ -38706,7 +38706,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38722,7 +38722,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ButtonImageType", "inheritance": "", "abstract": false, @@ -38738,7 +38738,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38754,7 +38754,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BuyNowTextType", "inheritance": "", "abstract": false, @@ -38770,7 +38770,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SubscribeTextType", "inheritance": "", "abstract": false, @@ -38786,7 +38786,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CountryCodeType", "inheritance": "", "abstract": false, @@ -38802,7 +38802,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38845,7 +38845,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38858,7 +38858,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38871,7 +38871,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38924,7 +38924,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -38940,7 +38940,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ButtonStatusType", "inheritance": "", "abstract": false, @@ -39039,7 +39039,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -39052,7 +39052,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -39065,7 +39065,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -39078,7 +39078,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -39091,7 +39091,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ButtonTypeType", "inheritance": "", "abstract": false, @@ -39107,7 +39107,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ButtonCodeType", "inheritance": "", "abstract": false, @@ -39123,7 +39123,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ButtonSubTypeType", "inheritance": "", "abstract": false, @@ -39139,7 +39139,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -39155,7 +39155,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "OptionDetailsType", "inheritance": "", "abstract": false, @@ -39168,7 +39168,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -39184,7 +39184,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ButtonImageType", "inheritance": "", "abstract": false, @@ -39200,7 +39200,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -39216,7 +39216,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BuyNowTextType", "inheritance": "", "abstract": false, @@ -39232,7 +39232,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SubscribeTextType", "inheritance": "", "abstract": false, @@ -39248,7 +39248,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CountryCodeType", "inheritance": "", "abstract": false, @@ -39264,7 +39264,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -39368,7 +39368,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemTrackingDetailsType", "inheritance": "", "abstract": false, @@ -39382,7 +39382,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -39398,7 +39398,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "OptionTrackingDetailsType", "inheritance": "", "abstract": false, @@ -39412,7 +39412,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -39428,7 +39428,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -39444,7 +39444,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -39460,7 +39460,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -39598,7 +39598,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ItemTrackingDetailsType", "inheritance": "", "abstract": false, @@ -39612,7 +39612,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -39625,7 +39625,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -39638,7 +39638,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "OptionTrackingDetailsType", "inheritance": "", "abstract": false, @@ -39652,7 +39652,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -39665,7 +39665,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -39718,7 +39718,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -39734,7 +39734,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -39764,7 +39764,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ButtonSearchResultType", "inheritance": "", "abstract": false, @@ -39818,7 +39818,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TransactionId", "inheritance": "", "abstract": false, @@ -39834,7 +39834,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UserIDType", "inheritance": "", "abstract": false, @@ -39850,7 +39850,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -39866,7 +39866,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RefundType", "inheritance": "", "abstract": false, @@ -39882,7 +39882,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -39898,7 +39898,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -39914,7 +39914,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -39930,7 +39930,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -39946,7 +39946,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -39962,7 +39962,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RefundSourceCodeType", "inheritance": "", "abstract": false, @@ -39978,7 +39978,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -39994,7 +39994,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MerchantStoreDetailsType", "inheritance": "", "abstract": false, @@ -40008,7 +40008,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "InvoiceItemType", "inheritance": "", "abstract": false, @@ -40022,7 +40022,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -40038,7 +40038,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MerchantDataType", "inheritance": "", "abstract": false, @@ -40089,7 +40089,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -40105,7 +40105,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -40121,7 +40121,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -40137,7 +40137,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -40153,7 +40153,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RefundInfoType", "inheritance": "", "abstract": false, @@ -40167,7 +40167,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -40183,7 +40183,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -40563,7 +40563,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -40605,7 +40605,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FMFDetailsType", "inheritance": "", "abstract": false, @@ -40674,7 +40674,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dateTime", "inheritance": "", "abstract": false, @@ -40689,7 +40689,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressType", "inheritance": "", "abstract": false, @@ -40705,7 +40705,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressType", "inheritance": "", "abstract": false, @@ -40721,7 +40721,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -40737,7 +40737,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TransactionId", "inheritance": "", "abstract": false, @@ -40753,7 +40753,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -40769,7 +40769,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PersonNameType", "inheritance": "", "abstract": false, @@ -40785,7 +40785,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -40801,7 +40801,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -40817,7 +40817,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -40830,7 +40830,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PaymentTransactionClassCodeType", "inheritance": "", "abstract": false, @@ -40846,7 +40846,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -40862,7 +40862,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CurrencyCodeType", "inheritance": "", "abstract": false, @@ -40878,7 +40878,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PaymentTransactionStatusCodeType", "inheritance": "", "abstract": false, @@ -40908,7 +40908,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PaymentTransactionSearchResultType", "inheritance": "", "abstract": false, @@ -40966,7 +40966,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -40982,7 +40982,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ReceiverInfoCodeType", "inheritance": "", "abstract": false, @@ -40998,7 +40998,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -41057,7 +41057,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAddressType", "inheritance": "", "abstract": false, @@ -41073,7 +41073,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -41089,7 +41089,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UserIDType", "inheritance": "", "abstract": false, @@ -41121,7 +41121,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -41137,7 +41137,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -41210,7 +41210,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -41223,7 +41223,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MerchantPullStatusCodeType", "inheritance": "", "abstract": false, @@ -41236,7 +41236,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -41409,7 +41409,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MatchStatusCodeType", "inheritance": "", "abstract": false, @@ -41425,7 +41425,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CountryCodeType", "inheritance": "", "abstract": false, @@ -41441,7 +41441,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -42197,7 +42197,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ExpressCheckoutTokenType", "inheritance": "", "abstract": false, @@ -42433,7 +42433,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -42477,7 +42477,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FMFDetailsType", "inheritance": "", "abstract": false, @@ -42637,7 +42637,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TransactionId", "inheritance": "", "abstract": false, @@ -42650,7 +42650,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -42717,7 +42717,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -42795,7 +42795,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TransactionId", "inheritance": "", "abstract": false, @@ -42811,7 +42811,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PendingStatusCodeType", "inheritance": "", "abstract": false, @@ -42826,7 +42826,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PaymentStatusCodeType", "inheritance": "", "abstract": false, @@ -42841,7 +42841,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FMFDetailsType", "inheritance": "", "abstract": false, @@ -42854,7 +42854,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ThreeDSecureResponseType", "inheritance": "", "abstract": false, @@ -42867,7 +42867,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -42955,7 +42955,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -42985,7 +42985,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -43089,7 +43089,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -43105,7 +43105,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -43121,7 +43121,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EnhancedDataType", "inheritance": "", "abstract": false, @@ -43135,7 +43135,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -43151,7 +43151,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MerchantStoreDetailsType", "inheritance": "", "abstract": false, @@ -43165,7 +43165,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -43181,7 +43181,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MerchantDataType", "inheritance": "", "abstract": false, @@ -43301,7 +43301,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -43347,7 +43347,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AuthorizationInfoType", "inheritance": "", "abstract": false, @@ -43361,7 +43361,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -43433,7 +43433,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -43449,7 +43449,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -43479,7 +43479,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -43495,7 +43495,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -43567,7 +43567,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TransactionEntityType", "inheritance": "", "abstract": false, @@ -43599,7 +43599,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressType", "inheritance": "", "abstract": false, @@ -43613,7 +43613,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PaymentDetailsItemType", "inheritance": "", "abstract": false, @@ -43627,7 +43627,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -43643,7 +43643,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -43659,7 +43659,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -43675,7 +43675,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -43691,7 +43691,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -43707,7 +43707,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -43723,7 +43723,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -43739,7 +43739,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -43755,7 +43755,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -43771,7 +43771,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -43787,7 +43787,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -43822,7 +43822,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -43838,7 +43838,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -43854,7 +43854,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AuthorizationInfoType", "inheritance": "", "abstract": false, @@ -43868,7 +43868,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -43940,7 +43940,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressType", "inheritance": "", "abstract": false, @@ -43954,7 +43954,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -43970,7 +43970,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -44004,7 +44004,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -44020,7 +44020,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AuthorizationInfoType", "inheritance": "", "abstract": false, @@ -44088,7 +44088,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TransactionEntityType", "inheritance": "", "abstract": false, @@ -44120,7 +44120,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -44136,7 +44136,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -44200,7 +44200,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -44216,7 +44216,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -44623,7 +44623,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -44676,7 +44676,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicAmountType", "inheritance": "", "abstract": false, @@ -44985,7 +44985,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -45029,7 +45029,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FMFDetailsType", "inheritance": "", "abstract": false, @@ -45732,7 +45732,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ExternalRememberMeOwnerDetailsType", "inheritance": "", "abstract": false, diff --git a/tests/resources/generated/parsed_queueservice_none.json b/tests/resources/generated/parsed_queueservice_none.json index 65d18889..7a144bdd 100644 --- a/tests/resources/generated/parsed_queueservice_none.json +++ b/tests/resources/generated/parsed_queueservice_none.json @@ -433,7 +433,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Attribute", "inheritance": "", "abstract": false, @@ -509,7 +509,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -573,7 +573,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -585,7 +585,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Attribute", "inheritance": "", "abstract": false, @@ -671,7 +671,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Attribute", "inheritance": "", "abstract": false, @@ -735,7 +735,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Attribute", "inheritance": "", "abstract": false, @@ -789,7 +789,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Attribute", "inheritance": "", "abstract": false, @@ -843,7 +843,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -856,7 +856,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -920,7 +920,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integer", "inheritance": "", "abstract": false, @@ -932,7 +932,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integer", "inheritance": "", "abstract": false, @@ -944,7 +944,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integer", "inheritance": "", "abstract": false, @@ -956,7 +956,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -969,7 +969,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -982,7 +982,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1056,7 +1056,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integer", "inheritance": "", "abstract": false, @@ -1068,7 +1068,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Attribute", "inheritance": "", "abstract": false, @@ -1082,7 +1082,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MessageAttribute", "inheritance": "", "abstract": false, @@ -1275,7 +1275,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integer", "inheritance": "", "abstract": false, @@ -1613,7 +1613,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integer", "inheritance": "", "abstract": false, @@ -1625,7 +1625,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MessageAttribute", "inheritance": "", "abstract": false, @@ -2035,7 +2035,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "anyURI", "inheritance": "", "abstract": false, @@ -2062,7 +2062,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "anyURI", "inheritance": "", "abstract": false, @@ -2292,7 +2292,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Attribute", "inheritance": "", "abstract": false, @@ -2306,7 +2306,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MessageAttribute", "inheritance": "", "abstract": false, @@ -2334,7 +2334,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Message", "inheritance": "", "abstract": false, diff --git a/tests/resources/generated/parsed_queueservice_start.json b/tests/resources/generated/parsed_queueservice_start.json index cb658f8d..e340c059 100644 --- a/tests/resources/generated/parsed_queueservice_start.json +++ b/tests/resources/generated/parsed_queueservice_start.json @@ -379,7 +379,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Attribute", "inheritance": "", "abstract": false, @@ -455,7 +455,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -519,7 +519,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -531,7 +531,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Attribute", "inheritance": "", "abstract": false, @@ -617,7 +617,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Attribute", "inheritance": "", "abstract": false, @@ -681,7 +681,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Attribute", "inheritance": "", "abstract": false, @@ -735,7 +735,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Attribute", "inheritance": "", "abstract": false, @@ -789,7 +789,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -802,7 +802,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -866,7 +866,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integer", "inheritance": "", "abstract": false, @@ -878,7 +878,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integer", "inheritance": "", "abstract": false, @@ -890,7 +890,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integer", "inheritance": "", "abstract": false, @@ -902,7 +902,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -915,7 +915,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -928,7 +928,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1002,7 +1002,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integer", "inheritance": "", "abstract": false, @@ -1014,7 +1014,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Attribute", "inheritance": "", "abstract": false, @@ -1028,7 +1028,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MessageAttribute", "inheritance": "", "abstract": false, @@ -1221,7 +1221,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integer", "inheritance": "", "abstract": false, @@ -1559,7 +1559,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integer", "inheritance": "", "abstract": false, @@ -1571,7 +1571,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MessageAttribute", "inheritance": "", "abstract": false, @@ -1981,7 +1981,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "anyURI", "inheritance": "", "abstract": false, @@ -2008,7 +2008,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "anyURI", "inheritance": "", "abstract": false, @@ -2238,7 +2238,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Attribute", "inheritance": "", "abstract": false, @@ -2252,7 +2252,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MessageAttribute", "inheritance": "", "abstract": false, @@ -2280,7 +2280,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Message", "inheritance": "", "abstract": false, diff --git a/tests/resources/generated/parsed_unit_tests_none.json b/tests/resources/generated/parsed_unit_tests_none.json index be883128..358d7685 100644 --- a/tests/resources/generated/parsed_unit_tests_none.json +++ b/tests/resources/generated/parsed_unit_tests_none.json @@ -42,7 +42,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Success", "inheritance": "boolean", "abstract": false, @@ -63,7 +63,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Errors", "inheritance": "", "abstract": false, @@ -82,7 +82,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Warnings", "inheritance": "", "abstract": false, diff --git a/tests/resources/generated/parsed_unit_tests_start.json b/tests/resources/generated/parsed_unit_tests_start.json index b93c0e09..4a0d7663 100644 --- a/tests/resources/generated/parsed_unit_tests_start.json +++ b/tests/resources/generated/parsed_unit_tests_start.json @@ -42,7 +42,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Success", "inheritance": "boolean", "abstract": false, @@ -63,7 +63,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Errors", "inheritance": "", "abstract": false, @@ -82,7 +82,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Warnings", "inheritance": "", "abstract": false, diff --git a/tests/resources/generated/parsed_vehicleselection_none.json b/tests/resources/generated/parsed_vehicleselection_none.json index 7faefe21..4be78cbe 100644 --- a/tests/resources/generated/parsed_vehicleselection_none.json +++ b/tests/resources/generated/parsed_vehicleselection_none.json @@ -733,7 +733,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -746,7 +746,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -759,7 +759,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -772,7 +772,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -785,7 +785,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -812,7 +812,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -825,7 +825,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -838,7 +838,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -851,7 +851,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -864,7 +864,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -877,7 +877,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -890,7 +890,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -903,7 +903,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -916,7 +916,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -929,7 +929,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -942,7 +942,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -955,7 +955,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IncludedPositions", "inheritance": "", "abstract": false, @@ -968,7 +968,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -1053,7 +1053,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -1066,7 +1066,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Email", "inheritance": "", "abstract": false, @@ -1093,7 +1093,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -1106,7 +1106,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -1119,7 +1119,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -1132,7 +1132,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -1145,7 +1145,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -1158,7 +1158,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -1171,7 +1171,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -1184,7 +1184,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -1197,7 +1197,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -1224,7 +1224,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AdditionalService", "inheritance": "", "abstract": false, @@ -1238,7 +1238,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -1265,7 +1265,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -1278,7 +1278,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -1291,7 +1291,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -1304,7 +1304,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString12", "inheritance": "", "abstract": false, @@ -1317,7 +1317,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -1330,7 +1330,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString40", "inheritance": "", "abstract": false, @@ -1343,7 +1343,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString3", "inheritance": "", "abstract": false, @@ -1356,7 +1356,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString5", "inheritance": "", "abstract": false, @@ -1369,7 +1369,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString3", "inheritance": "", "abstract": false, @@ -1382,7 +1382,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -1395,7 +1395,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -1408,7 +1408,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -1421,7 +1421,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Vehicle", "inheritance": "", "abstract": false, @@ -1434,7 +1434,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Images", "inheritance": "", "abstract": false, @@ -1447,7 +1447,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "VAT", "inheritance": "", "abstract": false, @@ -1460,7 +1460,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "anyType", "inheritance": "", "abstract": false, @@ -1473,7 +1473,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TradingData", "inheritance": "", "abstract": false, @@ -1486,7 +1486,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Valuation", "inheritance": "", "abstract": false, @@ -1499,7 +1499,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RepairCalculation", "inheritance": "", "abstract": false, @@ -1512,7 +1512,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RepairOrder", "inheritance": "", "abstract": false, @@ -1525,7 +1525,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SparePartPositions", "inheritance": "", "abstract": false, @@ -1538,7 +1538,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MaintenanceIntervals", "inheritance": "", "abstract": false, @@ -1551,7 +1551,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Comments", "inheritance": "", "abstract": false, @@ -1564,7 +1564,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Attachments", "inheritance": "", "abstract": false, @@ -1591,7 +1591,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AdditionalVehicle", "inheritance": "", "abstract": false, @@ -1653,7 +1653,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Addon", "inheritance": "", "abstract": false, @@ -1681,7 +1681,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString10", "inheritance": "", "abstract": false, @@ -1694,7 +1694,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString10", "inheritance": "", "abstract": false, @@ -1707,7 +1707,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -1720,7 +1720,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -1733,7 +1733,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -1746,7 +1746,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -1759,7 +1759,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -1772,7 +1772,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -1785,7 +1785,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -1798,7 +1798,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -1811,7 +1811,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -1824,7 +1824,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -1837,7 +1837,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -1850,7 +1850,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -1863,7 +1863,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -1876,7 +1876,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -1889,7 +1889,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -1902,7 +1902,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -1915,7 +1915,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -1928,7 +1928,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -1941,7 +1941,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -1954,7 +1954,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -1967,7 +1967,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -1980,7 +1980,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -1993,7 +1993,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -2006,7 +2006,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FollowUpBusiness", "inheritance": "", "abstract": false, @@ -2033,7 +2033,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -2046,7 +2046,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -2059,7 +2059,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -2071,7 +2071,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -2083,7 +2083,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -2095,7 +2095,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -2107,7 +2107,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -2119,7 +2119,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -2131,7 +2131,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -2143,7 +2143,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -2155,7 +2155,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -2168,7 +2168,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString20", "inheritance": "", "abstract": false, @@ -2181,7 +2181,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -2194,7 +2194,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBinary", "inheritance": "", "abstract": false, @@ -2207,7 +2207,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString5", "inheritance": "", "abstract": false, @@ -2234,7 +2234,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Attachment", "inheritance": "", "abstract": false, @@ -2262,7 +2262,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -2275,7 +2275,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -2288,7 +2288,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -2301,7 +2301,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -2314,7 +2314,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -2327,7 +2327,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -2340,7 +2340,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -2353,7 +2353,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -2366,7 +2366,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -2379,7 +2379,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -2392,7 +2392,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -2405,7 +2405,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -2418,7 +2418,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -2431,7 +2431,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -2444,7 +2444,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -2457,7 +2457,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -2470,7 +2470,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -2483,7 +2483,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -2496,7 +2496,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -2509,7 +2509,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -2522,7 +2522,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -2535,7 +2535,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -2548,7 +2548,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -2561,7 +2561,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -2574,7 +2574,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -2587,7 +2587,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -2600,7 +2600,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -2613,7 +2613,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -2626,7 +2626,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -2639,7 +2639,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -2652,7 +2652,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -2665,7 +2665,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -2678,7 +2678,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -2691,7 +2691,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -2704,7 +2704,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -2717,7 +2717,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -2730,7 +2730,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -2743,7 +2743,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -2756,7 +2756,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -2769,7 +2769,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -2782,7 +2782,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString40", "inheritance": "", "abstract": false, @@ -2795,7 +2795,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -2822,7 +2822,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -2835,7 +2835,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -2848,7 +2848,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -2861,7 +2861,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -2874,7 +2874,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -2901,7 +2901,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -2914,7 +2914,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -2927,7 +2927,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -2940,7 +2940,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -2953,7 +2953,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -2980,7 +2980,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "calcResult", "inheritance": "", "abstract": false, @@ -3044,7 +3044,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CalculationWage", "inheritance": "", "abstract": false, @@ -3146,7 +3146,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "address", "inheritance": "", "abstract": false, @@ -3174,7 +3174,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -3187,7 +3187,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -3200,7 +3200,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -3213,7 +3213,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -3225,7 +3225,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -3237,7 +3237,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -3263,7 +3263,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Comment", "inheritance": "", "abstract": false, @@ -3291,7 +3291,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -3304,7 +3304,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -3317,7 +3317,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -3330,7 +3330,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -3343,7 +3343,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -3356,7 +3356,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -3369,7 +3369,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -3382,7 +3382,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -3395,7 +3395,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -3408,7 +3408,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -3421,7 +3421,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -3434,7 +3434,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -3447,7 +3447,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3460,7 +3460,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -3511,7 +3511,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CompareFlatEquipment", "inheritance": "", "abstract": false, @@ -3539,7 +3539,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CompareParameter", "inheritance": "", "abstract": false, @@ -3567,7 +3567,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3580,7 +3580,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -3593,7 +3593,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3606,7 +3606,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3633,7 +3633,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -3646,7 +3646,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -3659,7 +3659,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -3672,7 +3672,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -3699,7 +3699,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3712,7 +3712,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3725,7 +3725,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3738,7 +3738,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3751,7 +3751,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3764,7 +3764,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3777,7 +3777,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3790,7 +3790,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3803,7 +3803,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -3816,7 +3816,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -3829,7 +3829,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -3842,7 +3842,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3855,7 +3855,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3868,7 +3868,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3881,7 +3881,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3894,7 +3894,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3907,7 +3907,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3920,7 +3920,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3933,7 +3933,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3946,7 +3946,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3959,7 +3959,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3972,7 +3972,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3985,7 +3985,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3998,7 +3998,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -4011,7 +4011,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -4024,7 +4024,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -4037,7 +4037,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -4050,7 +4050,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -4063,7 +4063,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -4076,7 +4076,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -4089,7 +4089,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -4102,7 +4102,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -4115,7 +4115,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -4128,7 +4128,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -4141,7 +4141,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -4154,7 +4154,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -4167,7 +4167,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -4180,7 +4180,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -4193,7 +4193,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -4206,7 +4206,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -4219,7 +4219,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -4232,7 +4232,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -4245,7 +4245,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -4258,7 +4258,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -4271,7 +4271,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -4298,7 +4298,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -4311,7 +4311,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -4324,7 +4324,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -4337,7 +4337,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -4350,7 +4350,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -4363,7 +4363,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -4376,7 +4376,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -4389,7 +4389,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -4402,7 +4402,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -4415,7 +4415,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -4428,7 +4428,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -4441,7 +4441,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -4454,7 +4454,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -4467,7 +4467,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -4480,7 +4480,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -4493,7 +4493,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -4506,7 +4506,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -4519,7 +4519,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -4532,7 +4532,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -4545,7 +4545,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -4558,7 +4558,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -4619,7 +4619,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CustomData", "inheritance": "", "abstract": false, @@ -4657,7 +4657,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -4670,7 +4670,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -4736,7 +4736,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -4749,7 +4749,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -4762,7 +4762,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -4775,7 +4775,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -4788,7 +4788,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -4801,7 +4801,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -4814,7 +4814,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -4827,7 +4827,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -4840,7 +4840,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -4853,7 +4853,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -4866,7 +4866,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -4879,7 +4879,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -4892,7 +4892,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -4905,7 +4905,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -4918,7 +4918,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -4931,7 +4931,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -4944,7 +4944,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -4957,7 +4957,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -4984,7 +4984,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DamageProcess", "inheritance": "", "abstract": false, @@ -4997,7 +4997,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DamageDetail", "inheritance": "", "abstract": false, @@ -5024,7 +5024,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -5037,7 +5037,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -5050,7 +5050,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -5063,7 +5063,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -5076,7 +5076,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -5089,7 +5089,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -5102,7 +5102,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -5115,7 +5115,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -5128,7 +5128,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -5141,7 +5141,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -5154,7 +5154,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -5167,7 +5167,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -5180,7 +5180,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -5193,7 +5193,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -5206,7 +5206,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -5219,7 +5219,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -5232,7 +5232,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -5245,7 +5245,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -5258,7 +5258,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -5271,7 +5271,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -5284,7 +5284,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -5311,7 +5311,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -5324,7 +5324,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -5337,7 +5337,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -5350,7 +5350,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -5363,7 +5363,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -5376,7 +5376,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -5389,7 +5389,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -5402,7 +5402,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -5429,7 +5429,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DeductiblePartsPosition", "inheritance": "", "abstract": false, @@ -5457,7 +5457,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DeductiblePartsPosition", "inheritance": "", "abstract": false, @@ -5485,7 +5485,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -5498,7 +5498,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -5511,7 +5511,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -5524,7 +5524,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -5537,7 +5537,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -5550,7 +5550,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -5563,7 +5563,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -5576,7 +5576,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -5603,7 +5603,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DiscountPosition", "inheritance": "", "abstract": false, @@ -5631,7 +5631,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -5644,7 +5644,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -5657,7 +5657,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -5670,7 +5670,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -5683,7 +5683,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -5696,7 +5696,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -5709,7 +5709,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -5722,7 +5722,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -5735,7 +5735,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -5748,7 +5748,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -5761,7 +5761,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DomusAggregateComponents", "inheritance": "", "abstract": false, @@ -5788,7 +5788,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -5801,7 +5801,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -5814,7 +5814,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -5827,7 +5827,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -5840,7 +5840,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -5853,7 +5853,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -5866,7 +5866,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -5879,7 +5879,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -5892,7 +5892,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -5919,7 +5919,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DomusAggregateComponent", "inheritance": "", "abstract": false, @@ -5947,7 +5947,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DomusAggregate", "inheritance": "", "abstract": false, @@ -5975,7 +5975,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -5988,7 +5988,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -6001,7 +6001,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -6028,7 +6028,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DomusExtraCharge", "inheritance": "", "abstract": false, @@ -6056,7 +6056,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -6069,7 +6069,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -6082,7 +6082,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -6109,7 +6109,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DomusLacquerExtraCharge", "inheritance": "", "abstract": false, @@ -6137,7 +6137,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -6150,7 +6150,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -6163,7 +6163,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -6176,7 +6176,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -6189,7 +6189,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -6202,7 +6202,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -6215,7 +6215,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -6228,7 +6228,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -6255,7 +6255,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -6268,7 +6268,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -6281,7 +6281,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -6294,7 +6294,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -6307,7 +6307,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString12", "inheritance": "", "abstract": false, @@ -6320,7 +6320,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -6333,7 +6333,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -6346,7 +6346,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -6359,7 +6359,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -6372,7 +6372,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString40", "inheritance": "", "abstract": false, @@ -6409,7 +6409,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -6422,7 +6422,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString3", "inheritance": "", "abstract": false, @@ -6435,7 +6435,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString10", "inheritance": "", "abstract": false, @@ -6448,7 +6448,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -6461,7 +6461,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -6474,7 +6474,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -6487,7 +6487,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -6500,7 +6500,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -6513,7 +6513,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -6526,7 +6526,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -6539,7 +6539,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -6552,7 +6552,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -6565,7 +6565,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "address", "inheritance": "", "abstract": false, @@ -6578,7 +6578,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Vehicle", "inheritance": "", "abstract": false, @@ -6591,7 +6591,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Images", "inheritance": "", "abstract": false, @@ -6604,7 +6604,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ImageList", "inheritance": "", "abstract": false, @@ -6617,7 +6617,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "VAT", "inheritance": "", "abstract": false, @@ -6630,7 +6630,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "anyType", "inheritance": "", "abstract": false, @@ -6643,7 +6643,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TradingData", "inheritance": "", "abstract": false, @@ -6656,7 +6656,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Valuation", "inheritance": "", "abstract": false, @@ -6669,7 +6669,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Compare", "inheritance": "", "abstract": false, @@ -6682,7 +6682,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RepairCalculation", "inheritance": "", "abstract": false, @@ -6695,7 +6695,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RepairOrder", "inheritance": "", "abstract": false, @@ -6708,7 +6708,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SparePartPositions", "inheritance": "", "abstract": false, @@ -6721,7 +6721,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MaintenanceIntervals", "inheritance": "", "abstract": false, @@ -6734,7 +6734,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Comments", "inheritance": "", "abstract": false, @@ -6747,7 +6747,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Attachments", "inheritance": "", "abstract": false, @@ -6760,7 +6760,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AdditionalVehicles", "inheritance": "", "abstract": false, @@ -6773,7 +6773,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -6786,7 +6786,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -6799,7 +6799,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -6812,7 +6812,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -6825,7 +6825,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AdditionalServices", "inheritance": "", "abstract": false, @@ -6838,7 +6838,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ProcessManagement", "inheritance": "", "abstract": false, @@ -6851,7 +6851,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TradingActivity", "inheritance": "", "abstract": false, @@ -6864,7 +6864,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TradingAdditional", "inheritance": "", "abstract": false, @@ -6877,7 +6877,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MetaPositions", "inheritance": "", "abstract": false, @@ -6914,7 +6914,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Dossier", "inheritance": "", "abstract": false, @@ -6986,7 +6986,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7011,7 +7011,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAttachments", "inheritance": "", "abstract": false, @@ -7145,7 +7145,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmissionClassItemN", "inheritance": "", "abstract": false, @@ -7173,7 +7173,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString30", "inheritance": "", "abstract": false, @@ -7186,7 +7186,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString30", "inheritance": "", "abstract": false, @@ -7199,7 +7199,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString30", "inheritance": "", "abstract": false, @@ -7212,7 +7212,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString2", "inheritance": "", "abstract": false, @@ -7225,7 +7225,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7238,7 +7238,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7251,7 +7251,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -7264,7 +7264,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -7277,7 +7277,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -7290,7 +7290,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -7303,7 +7303,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -7316,7 +7316,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -7329,7 +7329,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -7342,7 +7342,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -7355,7 +7355,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7368,7 +7368,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -7381,7 +7381,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -7394,7 +7394,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -7407,7 +7407,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -7420,7 +7420,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7433,7 +7433,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7446,7 +7446,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -7459,7 +7459,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7486,7 +7486,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7499,7 +7499,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7512,7 +7512,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7525,7 +7525,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7538,7 +7538,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7551,7 +7551,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7564,7 +7564,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7577,7 +7577,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7590,7 +7590,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7603,7 +7603,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7616,7 +7616,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7629,7 +7629,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7642,7 +7642,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7655,7 +7655,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7668,7 +7668,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7681,7 +7681,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7694,7 +7694,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7707,7 +7707,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -7720,7 +7720,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -7733,7 +7733,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -7746,7 +7746,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -7759,7 +7759,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -7772,7 +7772,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -7785,7 +7785,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -7798,7 +7798,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -7811,7 +7811,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7824,7 +7824,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -7837,7 +7837,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString30", "inheritance": "", "abstract": false, @@ -7850,7 +7850,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "equipSequence", "inheritance": "", "abstract": false, @@ -7863,7 +7863,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "equipSequence", "inheritance": "", "abstract": false, @@ -7876,7 +7876,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "equipSequence", "inheritance": "", "abstract": false, @@ -7889,7 +7889,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "equipSequence", "inheritance": "", "abstract": false, @@ -7902,7 +7902,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "equipSequence", "inheritance": "", "abstract": false, @@ -7915,7 +7915,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "equipSequence", "inheritance": "", "abstract": false, @@ -7928,7 +7928,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "equipSequence", "inheritance": "", "abstract": false, @@ -7941,7 +7941,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "equipSequence", "inheritance": "", "abstract": false, @@ -7968,7 +7968,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -7981,7 +7981,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7994,7 +7994,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EquipmentList", "inheritance": "", "abstract": false, @@ -8021,7 +8021,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -8034,7 +8034,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -8047,7 +8047,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -8074,7 +8074,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -8087,7 +8087,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -8100,7 +8100,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -8127,7 +8127,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EquipmentItem", "inheritance": "", "abstract": false, @@ -8141,7 +8141,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EquipmentItemN", "inheritance": "", "abstract": false, @@ -8169,7 +8169,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -8182,7 +8182,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -8195,7 +8195,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -8208,7 +8208,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -8221,7 +8221,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -8234,7 +8234,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -8247,7 +8247,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -8260,7 +8260,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -8273,7 +8273,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -8286,7 +8286,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -8299,7 +8299,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -8312,7 +8312,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -8325,7 +8325,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -8338,7 +8338,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -8351,7 +8351,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -8364,7 +8364,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -8377,7 +8377,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -8390,7 +8390,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -8403,7 +8403,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -8416,7 +8416,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -8429,7 +8429,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -8442,7 +8442,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -8455,7 +8455,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -8468,7 +8468,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -8481,7 +8481,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -8494,7 +8494,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -8507,7 +8507,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -8520,7 +8520,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -8533,7 +8533,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -8546,7 +8546,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -8559,7 +8559,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -8572,7 +8572,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldCharacter", "inheritance": "", "abstract": false, @@ -8585,7 +8585,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -8598,7 +8598,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -8611,7 +8611,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -8624,7 +8624,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -8637,7 +8637,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -8650,7 +8650,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ContainedEquipmentPositions", "inheritance": "", "abstract": false, @@ -8663,7 +8663,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -8676,7 +8676,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -8689,7 +8689,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -8702,7 +8702,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -8715,7 +8715,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -8728,7 +8728,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -8741,7 +8741,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -8754,7 +8754,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -8767,7 +8767,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -8794,7 +8794,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EquipmentPosition", "inheritance": "", "abstract": false, @@ -8919,7 +8919,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -8932,7 +8932,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -8945,7 +8945,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -8958,7 +8958,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -8971,7 +8971,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -8984,7 +8984,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -9011,7 +9011,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -9024,7 +9024,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -9037,7 +9037,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -9050,7 +9050,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -9063,7 +9063,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -9076,7 +9076,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -9089,7 +9089,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -9102,7 +9102,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -9115,7 +9115,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ForecastItems", "inheritance": "", "abstract": false, @@ -9142,7 +9142,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ForecastItem", "inheritance": "", "abstract": false, @@ -9170,7 +9170,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -9183,7 +9183,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -9196,7 +9196,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -9209,7 +9209,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -9222,7 +9222,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -9235,7 +9235,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -9248,7 +9248,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -9261,7 +9261,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -9274,7 +9274,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -9287,7 +9287,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -9314,7 +9314,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Forecast", "inheritance": "", "abstract": false, @@ -9342,7 +9342,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -9355,7 +9355,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -9368,7 +9368,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBinary", "inheritance": "", "abstract": false, @@ -9381,7 +9381,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -9394,7 +9394,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -9407,7 +9407,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -9420,7 +9420,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -9433,7 +9433,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -9446,7 +9446,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -9459,7 +9459,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -9472,7 +9472,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString4", "inheritance": "", "abstract": false, @@ -9485,7 +9485,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString8", "inheritance": "", "abstract": false, @@ -9498,7 +9498,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -9511,7 +9511,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -9524,7 +9524,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -9537,7 +9537,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -9550,7 +9550,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -9563,7 +9563,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -9590,7 +9590,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Image", "inheritance": "", "abstract": false, @@ -9618,7 +9618,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -9631,7 +9631,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -9644,7 +9644,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -9671,7 +9671,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -9684,7 +9684,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -9697,7 +9697,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBinary", "inheritance": "", "abstract": false, @@ -9710,7 +9710,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -9723,7 +9723,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -9736,7 +9736,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -9749,7 +9749,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -9762,7 +9762,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -9775,7 +9775,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -9788,7 +9788,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -9801,7 +9801,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString4", "inheritance": "", "abstract": false, @@ -9814,7 +9814,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString8", "inheritance": "", "abstract": false, @@ -9827,7 +9827,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -9854,7 +9854,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -9867,7 +9867,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -9880,7 +9880,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -9907,7 +9907,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IncludedPosition", "inheritance": "", "abstract": false, @@ -9969,7 +9969,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -10008,7 +10008,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -10035,7 +10035,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LacquerAdjustment", "inheritance": "", "abstract": false, @@ -10063,7 +10063,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -10076,7 +10076,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -10089,7 +10089,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -10102,7 +10102,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -10115,7 +10115,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -10128,7 +10128,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -10155,7 +10155,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10168,7 +10168,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -10181,7 +10181,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -10194,7 +10194,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -10221,7 +10221,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LacquerPosition", "inheritance": "", "abstract": false, @@ -10235,7 +10235,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LacquerPosition", "inheritance": "", "abstract": false, @@ -10249,7 +10249,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SpotRepairPositions", "inheritance": "", "abstract": false, @@ -10262,7 +10262,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LacquerPosition", "inheritance": "", "abstract": false, @@ -10290,7 +10290,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LacquerSummaryItemItaly", "inheritance": "", "abstract": false, @@ -10318,7 +10318,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -10331,7 +10331,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -10344,7 +10344,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -10357,7 +10357,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -10384,7 +10384,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -10397,7 +10397,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -10410,7 +10410,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -10423,7 +10423,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -10436,7 +10436,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -10449,7 +10449,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -10462,7 +10462,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -10489,7 +10489,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -10502,7 +10502,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -10515,7 +10515,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MaintenancePositions", "inheritance": "", "abstract": false, @@ -10543,7 +10543,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MaintenanceInterval", "inheritance": "", "abstract": false, @@ -10581,7 +10581,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -10594,7 +10594,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -10607,7 +10607,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -10620,7 +10620,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -10633,7 +10633,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -10646,7 +10646,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -10659,7 +10659,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MaterialPositions", "inheritance": "", "abstract": false, @@ -10686,7 +10686,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MaintenancePosition", "inheritance": "", "abstract": false, @@ -10724,7 +10724,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ImageReference", "inheritance": "", "abstract": false, @@ -10752,7 +10752,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -10765,7 +10765,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -10778,7 +10778,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -10791,7 +10791,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MarketplaceAreaList", "inheritance": "", "abstract": false, @@ -10804,7 +10804,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MarketplaceManufacturerList", "inheritance": "", "abstract": false, @@ -10817,7 +10817,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MarketplaceModelGroupList", "inheritance": "", "abstract": false, @@ -10830,7 +10830,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MarketplaceModelList", "inheritance": "", "abstract": false, @@ -10843,7 +10843,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MarketplaceVehicleSectionList", "inheritance": "", "abstract": false, @@ -10856,7 +10856,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MarketplaceTypeLineList", "inheritance": "", "abstract": false, @@ -10869,7 +10869,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MarketplaceFuelConsumptionDataList", "inheritance": "", "abstract": false, @@ -10882,7 +10882,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MarketplaceFuelAccordingEnVkVList", "inheritance": "", "abstract": false, @@ -10895,7 +10895,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MarketplaceColorInteriorFittingsList", "inheritance": "", "abstract": false, @@ -10908,7 +10908,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -10921,7 +10921,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -10934,7 +10934,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -10947,7 +10947,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MarketplaceAccidentalDamageList", "inheritance": "", "abstract": false, @@ -10960,7 +10960,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -10973,7 +10973,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -10986,7 +10986,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MarketplaceWarrantyList", "inheritance": "", "abstract": false, @@ -10999,7 +10999,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -11012,7 +11012,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -11025,7 +11025,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MarketplaceEquipmentGroupList", "inheritance": "", "abstract": false, @@ -11038,7 +11038,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MarketplaceEquipmentGroupListN", "inheritance": "", "abstract": false, @@ -11051,7 +11051,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -11064,7 +11064,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -11077,7 +11077,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -11090,7 +11090,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -11103,7 +11103,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MPConfigIntroTextList", "inheritance": "", "abstract": false, @@ -11116,7 +11116,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MPConfigFinalTextList", "inheritance": "", "abstract": false, @@ -11143,7 +11143,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11171,7 +11171,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11199,7 +11199,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11227,7 +11227,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11255,7 +11255,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11283,7 +11283,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11311,7 +11311,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11339,7 +11339,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11367,7 +11367,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11395,7 +11395,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11423,7 +11423,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11451,7 +11451,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EquipmentGroupItem", "inheritance": "", "abstract": false, @@ -11478,7 +11478,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EquipmentGroupItem", "inheritance": "", "abstract": false, @@ -11506,7 +11506,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TextItem", "inheritance": "", "abstract": false, @@ -11534,7 +11534,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TextItem", "inheritance": "", "abstract": false, @@ -11562,7 +11562,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -11575,7 +11575,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -11588,7 +11588,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -11601,7 +11601,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -11614,7 +11614,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -11627,7 +11627,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -11640,7 +11640,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -11653,7 +11653,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -11666,7 +11666,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -11679,7 +11679,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -11692,7 +11692,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -11705,7 +11705,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -11718,7 +11718,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -11731,7 +11731,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -11744,7 +11744,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -11757,7 +11757,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -11770,7 +11770,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -11783,7 +11783,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -11796,7 +11796,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -11809,7 +11809,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -11822,7 +11822,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -11835,7 +11835,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -11848,7 +11848,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -11861,7 +11861,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -11874,7 +11874,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -11887,7 +11887,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -11900,7 +11900,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -11913,7 +11913,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -11926,7 +11926,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -11939,7 +11939,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -11952,7 +11952,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -11965,7 +11965,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -11978,7 +11978,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -11991,7 +11991,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IncludedPositions", "inheritance": "", "abstract": false, @@ -12004,7 +12004,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -12017,7 +12017,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -12030,7 +12030,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -12043,7 +12043,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -12056,7 +12056,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -12069,7 +12069,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -12081,7 +12081,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -12094,7 +12094,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -12107,7 +12107,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "spHistPositionsSeq", "inheritance": "", "abstract": false, @@ -12120,7 +12120,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -12133,7 +12133,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -12145,7 +12145,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -12157,7 +12157,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -12169,7 +12169,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -12181,7 +12181,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -12193,7 +12193,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -12206,7 +12206,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -12231,7 +12231,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -12244,7 +12244,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -12257,7 +12257,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -12284,7 +12284,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MaterialPosition", "inheritance": "", "abstract": false, @@ -12350,7 +12350,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MetaPosition", "inheritance": "", "abstract": false, @@ -12378,7 +12378,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -12391,7 +12391,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -12404,7 +12404,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -12417,7 +12417,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -12430,7 +12430,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -12443,7 +12443,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -12456,7 +12456,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -12469,7 +12469,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -12482,7 +12482,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -12509,7 +12509,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -12522,7 +12522,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -12535,7 +12535,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString2", "inheritance": "", "abstract": false, @@ -12548,7 +12548,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString2", "inheritance": "", "abstract": false, @@ -12561,7 +12561,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ValueInfluencingFactors", "inheritance": "", "abstract": false, @@ -12588,7 +12588,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ValueInfluencingFactor", "inheritance": "", "abstract": false, @@ -12616,7 +12616,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -12629,7 +12629,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -12642,7 +12642,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -12655,7 +12655,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -12668,7 +12668,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -12681,7 +12681,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -12694,7 +12694,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -12707,7 +12707,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -12720,7 +12720,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -12733,7 +12733,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -12746,7 +12746,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ActualRepairCostList", "inheritance": "", "abstract": false, @@ -12773,7 +12773,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ActualRepairCost", "inheritance": "", "abstract": false, @@ -12801,7 +12801,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -12814,7 +12814,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -12827,7 +12827,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -12840,7 +12840,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -12853,7 +12853,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -12866,7 +12866,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -12879,7 +12879,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -12892,7 +12892,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -12905,7 +12905,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -12918,7 +12918,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -12931,7 +12931,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -12944,7 +12944,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -12957,7 +12957,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -12970,7 +12970,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -12983,7 +12983,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -12996,7 +12996,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -13009,7 +13009,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -13022,7 +13022,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -13035,7 +13035,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -13048,7 +13048,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -13061,7 +13061,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -13074,7 +13074,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -13087,7 +13087,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -13100,7 +13100,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldCharacter", "inheritance": "", "abstract": false, @@ -13113,7 +13113,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldCharacter", "inheritance": "", "abstract": false, @@ -13126,7 +13126,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -13139,7 +13139,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -13166,7 +13166,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PositionItaly", "inheritance": "", "abstract": false, @@ -13194,7 +13194,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -13207,7 +13207,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -13220,7 +13220,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -13233,7 +13233,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -13246,7 +13246,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -13259,7 +13259,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -13272,7 +13272,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -13285,7 +13285,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -13298,7 +13298,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -13311,7 +13311,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -13324,7 +13324,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -13337,7 +13337,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -13350,7 +13350,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -13363,7 +13363,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -13390,7 +13390,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -13403,7 +13403,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -13416,7 +13416,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -13429,7 +13429,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -13442,7 +13442,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -13455,7 +13455,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -13468,7 +13468,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -13481,7 +13481,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -13494,7 +13494,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -13507,7 +13507,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -13614,7 +13614,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ProcedureRelatedParameter", "inheritance": "", "abstract": false, @@ -13642,7 +13642,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CustomDataList", "inheritance": "", "abstract": false, @@ -13655,7 +13655,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DamageManagement", "inheritance": "", "abstract": false, @@ -13668,7 +13668,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "InvoiceDetail", "inheritance": "", "abstract": false, @@ -13681,7 +13681,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AdditionalInsuranceData", "inheritance": "", "abstract": false, @@ -13708,7 +13708,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "address", "inheritance": "", "abstract": false, @@ -13736,7 +13736,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString10", "inheritance": "", "abstract": false, @@ -13749,7 +13749,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString10", "inheritance": "", "abstract": false, @@ -13762,7 +13762,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -13775,7 +13775,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -13788,7 +13788,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -13801,7 +13801,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -13814,7 +13814,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -13827,7 +13827,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -13840,7 +13840,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -13853,7 +13853,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -13866,7 +13866,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -13879,7 +13879,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -13892,7 +13892,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -13905,7 +13905,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -13918,7 +13918,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -13931,7 +13931,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -13944,7 +13944,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -13957,7 +13957,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -13970,7 +13970,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -13983,7 +13983,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -14063,7 +14063,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString8", "inheritance": "", "abstract": false, @@ -14076,7 +14076,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString30", "inheritance": "", "abstract": false, @@ -14089,7 +14089,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString2", "inheritance": "", "abstract": false, @@ -14102,7 +14102,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString30", "inheritance": "", "abstract": false, @@ -14115,7 +14115,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString9", "inheritance": "", "abstract": false, @@ -14128,7 +14128,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString6", "inheritance": "", "abstract": false, @@ -14141,7 +14141,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString6", "inheritance": "", "abstract": false, @@ -14154,7 +14154,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString30", "inheritance": "", "abstract": false, @@ -14167,7 +14167,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -14180,7 +14180,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString30", "inheritance": "", "abstract": false, @@ -14193,7 +14193,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -14206,7 +14206,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -14219,7 +14219,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -14232,7 +14232,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString30", "inheritance": "", "abstract": false, @@ -14245,7 +14245,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString6", "inheritance": "", "abstract": false, @@ -14258,7 +14258,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString30", "inheritance": "", "abstract": false, @@ -14271,7 +14271,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -14284,7 +14284,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -14311,7 +14311,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -14324,7 +14324,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -14337,7 +14337,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Vehicle", "inheritance": "", "abstract": false, @@ -14350,7 +14350,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RepairWages", "inheritance": "", "abstract": false, @@ -14363,7 +14363,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RepairParameters", "inheritance": "", "abstract": false, @@ -14376,7 +14376,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ProcedureRelatedParameters", "inheritance": "", "abstract": false, @@ -14389,7 +14389,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RepairPositions", "inheritance": "", "abstract": false, @@ -14402,7 +14402,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -14415,7 +14415,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -14428,7 +14428,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -14441,7 +14441,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "calcResult", "inheritance": "", "abstract": false, @@ -14454,7 +14454,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "calcResult", "inheritance": "", "abstract": false, @@ -14467,7 +14467,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "calcResult", "inheritance": "", "abstract": false, @@ -14480,7 +14480,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "calcResultItaly", "inheritance": "", "abstract": false, @@ -14493,7 +14493,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "calcResultItaly", "inheritance": "", "abstract": false, @@ -14506,7 +14506,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "calcResultItaly", "inheritance": "", "abstract": false, @@ -14519,7 +14519,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "domusCalcResult", "inheritance": "", "abstract": false, @@ -14532,7 +14532,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "domusCalcResult", "inheritance": "", "abstract": false, @@ -14545,7 +14545,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "domusCalcResult", "inheritance": "", "abstract": false, @@ -14558,7 +14558,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "calcResult", "inheritance": "", "abstract": false, @@ -14571,7 +14571,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "calcResult", "inheritance": "", "abstract": false, @@ -14584,7 +14584,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CalcResultsHistory", "inheritance": "", "abstract": false, @@ -14597,7 +14597,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "calcResult", "inheritance": "", "abstract": false, @@ -14610,7 +14610,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DiscountPositions", "inheritance": "", "abstract": false, @@ -14623,7 +14623,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CalculationSummary", "inheritance": "", "abstract": false, @@ -14636,7 +14636,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SurchargeSettings", "inheritance": "", "abstract": false, @@ -14663,7 +14663,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -14676,7 +14676,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -14689,7 +14689,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -14702,7 +14702,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -14715,7 +14715,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -14728,7 +14728,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -14741,7 +14741,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -14754,7 +14754,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -14767,7 +14767,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -14780,7 +14780,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -14793,7 +14793,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -14806,7 +14806,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -14819,7 +14819,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -14832,7 +14832,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -14845,7 +14845,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -14858,7 +14858,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -14871,7 +14871,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -14884,7 +14884,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -14897,7 +14897,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -14910,7 +14910,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -14923,7 +14923,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AdditionalData", "inheritance": "", "abstract": false, @@ -14936,7 +14936,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MetaPositions", "inheritance": "", "abstract": false, @@ -14949,7 +14949,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -14962,7 +14962,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -14975,7 +14975,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -14988,7 +14988,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -15001,7 +15001,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString3", "inheritance": "", "abstract": false, @@ -15014,7 +15014,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString40", "inheritance": "", "abstract": false, @@ -15027,7 +15027,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -15040,7 +15040,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -15053,7 +15053,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -15066,7 +15066,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -15079,7 +15079,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DATProcessIdCommentList", "inheritance": "", "abstract": false, @@ -15092,7 +15092,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -15105,7 +15105,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -15118,7 +15118,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -15131,7 +15131,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15144,7 +15144,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -15157,7 +15157,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15170,7 +15170,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15183,7 +15183,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -15196,7 +15196,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15209,7 +15209,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15236,7 +15236,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -15249,7 +15249,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -15262,7 +15262,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15275,7 +15275,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15288,7 +15288,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15301,7 +15301,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15314,7 +15314,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15327,7 +15327,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15340,7 +15340,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -15353,7 +15353,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15366,7 +15366,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15379,7 +15379,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15392,7 +15392,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15405,7 +15405,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15418,7 +15418,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15431,7 +15431,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15444,7 +15444,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15457,7 +15457,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15470,7 +15470,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15483,7 +15483,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15496,7 +15496,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -15509,7 +15509,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -15522,7 +15522,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -15535,7 +15535,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -15548,7 +15548,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -15561,7 +15561,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -15574,7 +15574,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -15587,7 +15587,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -15600,7 +15600,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -15613,7 +15613,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -15626,7 +15626,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -15639,7 +15639,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -15652,7 +15652,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -15665,7 +15665,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -15678,7 +15678,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -15691,7 +15691,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -15704,7 +15704,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -15717,7 +15717,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15730,7 +15730,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15743,7 +15743,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15756,7 +15756,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15769,7 +15769,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15782,7 +15782,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -15795,7 +15795,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15808,7 +15808,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -15821,7 +15821,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -15834,7 +15834,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15847,7 +15847,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15860,7 +15860,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15873,7 +15873,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15886,7 +15886,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -15899,7 +15899,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -15912,7 +15912,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -15925,7 +15925,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15938,7 +15938,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15951,7 +15951,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15964,7 +15964,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15977,7 +15977,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15990,7 +15990,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16003,7 +16003,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16016,7 +16016,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16029,7 +16029,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16042,7 +16042,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16055,7 +16055,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16068,7 +16068,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16081,7 +16081,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16094,7 +16094,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -16107,7 +16107,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -16120,7 +16120,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -16133,7 +16133,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -16146,7 +16146,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -16159,7 +16159,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16172,7 +16172,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16185,7 +16185,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16198,7 +16198,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16211,7 +16211,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16224,7 +16224,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -16237,7 +16237,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -16250,7 +16250,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16263,7 +16263,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -16276,7 +16276,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -16289,7 +16289,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16302,7 +16302,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16315,7 +16315,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16328,7 +16328,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16341,7 +16341,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16354,7 +16354,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16367,7 +16367,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -16380,7 +16380,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16393,7 +16393,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16406,7 +16406,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16419,7 +16419,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16432,7 +16432,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16445,7 +16445,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -16458,7 +16458,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -16471,7 +16471,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldCharacter", "inheritance": "", "abstract": false, @@ -16484,7 +16484,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16497,7 +16497,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16510,7 +16510,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -16523,7 +16523,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -16536,7 +16536,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -16549,7 +16549,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -16562,7 +16562,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -16575,7 +16575,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -16588,7 +16588,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -16601,7 +16601,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16614,7 +16614,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16627,7 +16627,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16640,7 +16640,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16653,7 +16653,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16666,7 +16666,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16679,7 +16679,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16692,7 +16692,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16705,7 +16705,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16718,7 +16718,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16731,7 +16731,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16744,7 +16744,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16757,7 +16757,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -16770,7 +16770,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -16783,7 +16783,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16796,7 +16796,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -16809,7 +16809,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -16822,7 +16822,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -16835,7 +16835,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -16848,7 +16848,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -16861,7 +16861,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16874,7 +16874,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16887,7 +16887,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16900,7 +16900,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16913,7 +16913,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16926,7 +16926,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16939,7 +16939,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16952,7 +16952,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LacquerAdjustments", "inheritance": "", "abstract": false, @@ -16965,7 +16965,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -16978,7 +16978,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -16991,7 +16991,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -17004,7 +17004,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -17017,7 +17017,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -17044,7 +17044,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17057,7 +17057,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -17070,7 +17070,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -17083,7 +17083,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17096,7 +17096,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -17109,7 +17109,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -17122,7 +17122,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -17135,7 +17135,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -17148,7 +17148,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -17161,7 +17161,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -17174,7 +17174,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -17187,7 +17187,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -17200,7 +17200,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -17213,7 +17213,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -17226,7 +17226,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -17239,7 +17239,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -17252,7 +17252,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -17265,7 +17265,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -17278,7 +17278,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -17291,7 +17291,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17304,7 +17304,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -17317,7 +17317,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -17330,7 +17330,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -17343,7 +17343,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -17356,7 +17356,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -17369,7 +17369,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -17382,7 +17382,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17395,7 +17395,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17408,7 +17408,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -17421,7 +17421,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17434,7 +17434,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -17447,7 +17447,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -17460,7 +17460,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -17473,7 +17473,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -17486,7 +17486,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -17499,7 +17499,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -17512,7 +17512,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17525,7 +17525,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17538,7 +17538,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17551,7 +17551,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17564,7 +17564,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -17577,7 +17577,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17590,7 +17590,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17603,7 +17603,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17616,7 +17616,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -17629,7 +17629,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -17642,7 +17642,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -17655,7 +17655,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -17668,7 +17668,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -17681,7 +17681,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -17694,7 +17694,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -17707,7 +17707,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -17720,7 +17720,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -17733,7 +17733,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -17746,7 +17746,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17759,7 +17759,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17772,7 +17772,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17785,7 +17785,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -17798,7 +17798,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -17811,7 +17811,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -17824,7 +17824,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17837,7 +17837,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17850,7 +17850,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -17863,7 +17863,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -17876,7 +17876,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -17889,7 +17889,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17902,7 +17902,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17915,7 +17915,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17928,7 +17928,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17941,7 +17941,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17954,7 +17954,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17967,7 +17967,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -17980,7 +17980,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -17993,7 +17993,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -18006,7 +18006,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -18019,7 +18019,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -18032,7 +18032,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -18045,7 +18045,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -18058,7 +18058,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -18071,7 +18071,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -18084,7 +18084,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -18097,7 +18097,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18110,7 +18110,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldCharacter", "inheritance": "", "abstract": false, @@ -18123,7 +18123,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -18136,7 +18136,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -18149,7 +18149,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -18162,7 +18162,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18175,7 +18175,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -18188,7 +18188,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -18201,7 +18201,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -18214,7 +18214,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -18227,7 +18227,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -18240,7 +18240,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -18253,7 +18253,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -18266,7 +18266,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -18279,7 +18279,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -18292,7 +18292,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -18305,7 +18305,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -18318,7 +18318,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -18331,7 +18331,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -18344,7 +18344,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -18357,7 +18357,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -18370,7 +18370,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18383,7 +18383,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -18396,7 +18396,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -18409,7 +18409,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18422,7 +18422,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18435,7 +18435,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18448,7 +18448,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -18461,7 +18461,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldCharacter", "inheritance": "", "abstract": false, @@ -18474,7 +18474,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldCharacter", "inheritance": "", "abstract": false, @@ -18487,7 +18487,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18500,7 +18500,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18513,7 +18513,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -18526,7 +18526,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -18539,7 +18539,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -18552,7 +18552,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -18565,7 +18565,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -18578,7 +18578,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -18591,7 +18591,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -18604,7 +18604,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -18631,7 +18631,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RepairPosition", "inheritance": "", "abstract": false, @@ -18659,7 +18659,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -18672,7 +18672,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -18699,7 +18699,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -18712,7 +18712,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18725,7 +18725,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18738,7 +18738,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18751,7 +18751,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18764,7 +18764,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18777,7 +18777,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18790,7 +18790,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18803,7 +18803,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18816,7 +18816,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18829,7 +18829,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18842,7 +18842,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18855,7 +18855,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18868,7 +18868,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18881,7 +18881,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18894,7 +18894,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18907,7 +18907,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18920,7 +18920,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18933,7 +18933,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18946,7 +18946,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18959,7 +18959,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18972,7 +18972,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18985,7 +18985,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18998,7 +18998,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -19011,7 +19011,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -19038,7 +19038,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -19051,7 +19051,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -19064,7 +19064,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -19077,7 +19077,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -19090,7 +19090,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -19103,7 +19103,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -19116,7 +19116,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -19129,7 +19129,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -19142,7 +19142,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IncludedPositions", "inheritance": "", "abstract": false, @@ -19155,7 +19155,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -19168,7 +19168,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -19181,7 +19181,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -19194,7 +19194,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -19221,7 +19221,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RiskPosition", "inheritance": "", "abstract": false, @@ -19249,7 +19249,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString2", "inheritance": "", "abstract": false, @@ -19262,7 +19262,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString2", "inheritance": "", "abstract": false, @@ -19275,7 +19275,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString2", "inheritance": "", "abstract": false, @@ -19288,7 +19288,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString2", "inheritance": "", "abstract": false, @@ -19301,7 +19301,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString2", "inheritance": "", "abstract": false, @@ -19314,7 +19314,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString2", "inheritance": "", "abstract": false, @@ -19327,7 +19327,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -19340,7 +19340,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -19353,7 +19353,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -19366,7 +19366,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -19379,7 +19379,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -19406,7 +19406,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString10", "inheritance": "", "abstract": false, @@ -19419,7 +19419,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString10", "inheritance": "", "abstract": false, @@ -19432,7 +19432,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -19445,7 +19445,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -19458,7 +19458,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -19471,7 +19471,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -19484,7 +19484,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -19497,7 +19497,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -19510,7 +19510,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -19523,7 +19523,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -19536,7 +19536,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -19549,7 +19549,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -19562,7 +19562,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -19575,7 +19575,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -19588,7 +19588,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -19601,7 +19601,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -19614,7 +19614,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -19627,7 +19627,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -19640,7 +19640,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -19653,7 +19653,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -19666,7 +19666,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -19679,7 +19679,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -19692,7 +19692,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -19705,7 +19705,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -19718,7 +19718,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -19731,7 +19731,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -19744,7 +19744,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -19757,7 +19757,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -19770,7 +19770,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -19783,7 +19783,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -19796,7 +19796,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -19809,7 +19809,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -19822,7 +19822,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -19835,7 +19835,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -19848,7 +19848,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -19861,7 +19861,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -19874,7 +19874,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -19887,7 +19887,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -19900,7 +19900,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -19913,7 +19913,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -19926,7 +19926,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -19953,7 +19953,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -19966,7 +19966,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -19979,7 +19979,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -19992,7 +19992,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -20005,7 +20005,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -20018,7 +20018,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -20031,7 +20031,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -20044,7 +20044,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -20057,7 +20057,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -20070,7 +20070,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -20083,7 +20083,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -20096,7 +20096,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -20109,7 +20109,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -20122,7 +20122,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -20149,7 +20149,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MarketplaceImageList", "inheritance": "", "abstract": false, @@ -20176,7 +20176,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -20189,7 +20189,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "decimal", "inheritance": "", "abstract": false, @@ -20202,7 +20202,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -20229,7 +20229,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -20242,7 +20242,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -20255,7 +20255,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -20268,7 +20268,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -20281,7 +20281,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -20294,7 +20294,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "decimal", "inheritance": "", "abstract": false, @@ -20307,7 +20307,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -20320,7 +20320,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "decimal", "inheritance": "", "abstract": false, @@ -20333,7 +20333,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -20346,7 +20346,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "decimal", "inheritance": "", "abstract": false, @@ -20359,7 +20359,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -20372,7 +20372,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "decimal", "inheritance": "", "abstract": false, @@ -20385,7 +20385,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -20398,7 +20398,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "equipSequence", "inheritance": "", "abstract": false, @@ -20411,7 +20411,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -20424,7 +20424,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "decimal", "inheritance": "", "abstract": false, @@ -20437,7 +20437,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "decimal", "inheritance": "", "abstract": false, @@ -20450,7 +20450,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "spHistPositionsSeq", "inheritance": "", "abstract": false, @@ -20463,7 +20463,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integer", "inheritance": "", "abstract": false, @@ -20490,7 +20490,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SparePartPosition", "inheritance": "", "abstract": false, @@ -20518,7 +20518,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LacquerPosition", "inheritance": "", "abstract": false, @@ -20546,7 +20546,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BaseSummaryItaly", "inheritance": "", "abstract": false, @@ -20559,7 +20559,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LacquerSummaryItaly", "inheritance": "", "abstract": false, @@ -20572,7 +20572,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WorkSummaryItaly", "inheritance": "", "abstract": false, @@ -20585,7 +20585,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TotalSummaryItaly", "inheritance": "", "abstract": false, @@ -20662,7 +20662,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -20688,7 +20688,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SurchargeSetting", "inheritance": "", "abstract": false, @@ -20716,7 +20716,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FillingQuantities", "inheritance": "", "abstract": false, @@ -20729,7 +20729,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -20742,7 +20742,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -20755,7 +20755,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -20768,7 +20768,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString1000", "inheritance": "", "abstract": false, @@ -20781,7 +20781,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -20794,7 +20794,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -20807,7 +20807,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -20820,7 +20820,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -20833,7 +20833,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -20846,7 +20846,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -20859,7 +20859,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -20872,7 +20872,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -20885,7 +20885,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -20898,7 +20898,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -20911,7 +20911,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -20924,7 +20924,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -20937,7 +20937,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -20950,7 +20950,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString2", "inheritance": "", "abstract": false, @@ -20963,7 +20963,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -20976,7 +20976,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -20989,7 +20989,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -21002,7 +21002,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -21015,7 +21015,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -21028,7 +21028,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -21041,7 +21041,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -21054,7 +21054,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -21067,7 +21067,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -21080,7 +21080,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -21093,7 +21093,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -21106,7 +21106,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -21119,7 +21119,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -21132,7 +21132,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -21145,7 +21145,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -21158,7 +21158,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -21171,7 +21171,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -21184,7 +21184,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -21197,7 +21197,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21210,7 +21210,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21223,7 +21223,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -21236,7 +21236,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -21249,7 +21249,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -21262,7 +21262,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -21275,7 +21275,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21288,7 +21288,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21301,7 +21301,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -21314,7 +21314,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -21327,7 +21327,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -21340,7 +21340,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -21353,7 +21353,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString30", "inheritance": "", "abstract": false, @@ -21366,7 +21366,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString30", "inheritance": "", "abstract": false, @@ -21379,7 +21379,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -21392,7 +21392,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -21405,7 +21405,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -21418,7 +21418,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -21431,7 +21431,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -21444,7 +21444,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -21457,7 +21457,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -21470,7 +21470,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -21483,7 +21483,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -21496,7 +21496,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -21509,7 +21509,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -21522,7 +21522,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -21535,7 +21535,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -21548,7 +21548,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -21561,7 +21561,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21574,7 +21574,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21587,7 +21587,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21600,7 +21600,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21613,7 +21613,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21626,7 +21626,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21639,7 +21639,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21652,7 +21652,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21665,7 +21665,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21678,7 +21678,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21691,7 +21691,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21704,7 +21704,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21717,7 +21717,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21730,7 +21730,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21743,7 +21743,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21756,7 +21756,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21769,7 +21769,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21782,7 +21782,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21795,7 +21795,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21808,7 +21808,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21821,7 +21821,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21834,7 +21834,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21847,7 +21847,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21860,7 +21860,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21873,7 +21873,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21886,7 +21886,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21899,7 +21899,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21912,7 +21912,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21925,7 +21925,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21938,7 +21938,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21951,7 +21951,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21964,7 +21964,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21977,7 +21977,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21990,7 +21990,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -22003,7 +22003,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -22016,7 +22016,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -22029,7 +22029,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -22042,7 +22042,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -22055,7 +22055,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -22068,7 +22068,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -22081,7 +22081,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -22094,7 +22094,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -22107,7 +22107,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -22120,7 +22120,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -22133,7 +22133,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -22146,7 +22146,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -22159,7 +22159,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString5", "inheritance": "", "abstract": false, @@ -22172,7 +22172,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString5", "inheritance": "", "abstract": false, @@ -22185,7 +22185,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmissionClassN", "inheritance": "", "abstract": false, @@ -22198,7 +22198,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString1000", "inheritance": "", "abstract": false, @@ -22211,7 +22211,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString1000", "inheritance": "", "abstract": false, @@ -22224,7 +22224,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString1000", "inheritance": "", "abstract": false, @@ -22237,7 +22237,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString1000", "inheritance": "", "abstract": false, @@ -22250,7 +22250,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString10", "inheritance": "", "abstract": false, @@ -22263,7 +22263,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -22276,7 +22276,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -22289,7 +22289,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString1000", "inheritance": "", "abstract": false, @@ -22302,7 +22302,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString1000", "inheritance": "", "abstract": false, @@ -22315,7 +22315,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString2", "inheritance": "", "abstract": false, @@ -22328,7 +22328,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString1000", "inheritance": "", "abstract": false, @@ -22341,7 +22341,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString1000", "inheritance": "", "abstract": false, @@ -22354,7 +22354,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -22367,7 +22367,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -22380,7 +22380,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -22393,7 +22393,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -22406,7 +22406,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -22419,7 +22419,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -22432,7 +22432,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -22445,7 +22445,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -22458,7 +22458,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -22471,7 +22471,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -22484,7 +22484,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -22497,7 +22497,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -22510,7 +22510,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -22523,7 +22523,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -22536,7 +22536,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -22549,7 +22549,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -22562,7 +22562,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString30", "inheritance": "", "abstract": false, @@ -22575,7 +22575,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString2", "inheritance": "", "abstract": false, @@ -22588,7 +22588,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString2", "inheritance": "", "abstract": false, @@ -22601,7 +22601,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString2", "inheritance": "", "abstract": false, @@ -22614,7 +22614,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -22627,7 +22627,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString1000", "inheritance": "", "abstract": false, @@ -22640,7 +22640,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22653,7 +22653,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString30", "inheritance": "", "abstract": false, @@ -22666,7 +22666,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -22679,7 +22679,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString30", "inheritance": "", "abstract": false, @@ -22692,7 +22692,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString30", "inheritance": "", "abstract": false, @@ -22705,7 +22705,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString1000", "inheritance": "", "abstract": false, @@ -22718,7 +22718,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString2", "inheritance": "", "abstract": false, @@ -22731,7 +22731,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString2", "inheritance": "", "abstract": false, @@ -22744,7 +22744,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString2", "inheritance": "", "abstract": false, @@ -22757,7 +22757,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -22770,7 +22770,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -22783,7 +22783,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -22796,7 +22796,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -22809,7 +22809,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -22822,7 +22822,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -22835,7 +22835,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -22848,7 +22848,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString10", "inheritance": "", "abstract": false, @@ -22861,7 +22861,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -22874,7 +22874,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -22887,7 +22887,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -22900,7 +22900,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -22913,7 +22913,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -22926,7 +22926,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -22939,7 +22939,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -22952,7 +22952,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -22965,7 +22965,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -22978,7 +22978,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -22991,7 +22991,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23004,7 +23004,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23017,7 +23017,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23030,7 +23030,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23043,7 +23043,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23056,7 +23056,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23069,7 +23069,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23082,7 +23082,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23095,7 +23095,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23108,7 +23108,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23121,7 +23121,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23134,7 +23134,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23147,7 +23147,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23160,7 +23160,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23173,7 +23173,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23186,7 +23186,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23199,7 +23199,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23212,7 +23212,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23225,7 +23225,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23238,7 +23238,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23251,7 +23251,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23264,7 +23264,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23277,7 +23277,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23290,7 +23290,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -23303,7 +23303,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -23316,7 +23316,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -23329,7 +23329,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -23342,7 +23342,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -23355,7 +23355,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -23368,7 +23368,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -23381,7 +23381,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -23394,7 +23394,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -23407,7 +23407,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -23420,7 +23420,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23433,7 +23433,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23446,7 +23446,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -23459,7 +23459,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -23472,7 +23472,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23485,7 +23485,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23498,7 +23498,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23511,7 +23511,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23524,7 +23524,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23537,7 +23537,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23550,7 +23550,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23563,7 +23563,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23576,7 +23576,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -23589,7 +23589,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -23602,7 +23602,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -23615,7 +23615,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -23628,7 +23628,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString2", "inheritance": "", "abstract": false, @@ -23641,7 +23641,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString2", "inheritance": "", "abstract": false, @@ -23654,7 +23654,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -23667,7 +23667,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -23680,7 +23680,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -23693,7 +23693,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -23706,7 +23706,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -23719,7 +23719,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -23746,7 +23746,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -23759,7 +23759,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -23786,7 +23786,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -23799,7 +23799,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -23812,7 +23812,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Axles", "inheritance": "", "abstract": false, @@ -23839,7 +23839,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Axle", "inheritance": "", "abstract": false, @@ -23867,7 +23867,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TotalSummaryItemItaly", "inheritance": "", "abstract": false, @@ -23895,7 +23895,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -23908,7 +23908,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -23921,7 +23921,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23934,7 +23934,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23947,7 +23947,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23960,7 +23960,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23973,7 +23973,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23986,7 +23986,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -24013,7 +24013,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -24026,7 +24026,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PlanData", "inheritance": "", "abstract": false, @@ -24039,7 +24039,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Purchase", "inheritance": "", "abstract": false, @@ -24052,7 +24052,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PriceCalculation", "inheritance": "", "abstract": false, @@ -24065,7 +24065,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Admission", "inheritance": "", "abstract": false, @@ -24078,7 +24078,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Sale", "inheritance": "", "abstract": false, @@ -24091,7 +24091,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SalesPreparation", "inheritance": "", "abstract": false, @@ -24118,7 +24118,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MarketplacePreparation", "inheritance": "", "abstract": false, @@ -24131,7 +24131,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SalesOfferList", "inheritance": "", "abstract": false, @@ -24158,7 +24158,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SalesOffer", "inheritance": "", "abstract": false, @@ -24186,7 +24186,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -24199,7 +24199,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -24212,7 +24212,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -24225,7 +24225,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -24238,7 +24238,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -24251,7 +24251,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -24264,7 +24264,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -24277,7 +24277,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -24290,7 +24290,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -24303,7 +24303,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "address", "inheritance": "", "abstract": false, @@ -24316,7 +24316,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "address", "inheritance": "", "abstract": false, @@ -24329,7 +24329,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "address", "inheritance": "", "abstract": false, @@ -24342,7 +24342,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "address", "inheritance": "", "abstract": false, @@ -24355,7 +24355,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "address", "inheritance": "", "abstract": false, @@ -24368,7 +24368,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "address", "inheritance": "", "abstract": false, @@ -24381,7 +24381,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "address", "inheritance": "", "abstract": false, @@ -24394,7 +24394,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "address", "inheritance": "", "abstract": false, @@ -24407,7 +24407,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "address", "inheritance": "", "abstract": false, @@ -24420,7 +24420,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "address", "inheritance": "", "abstract": false, @@ -24433,7 +24433,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "address", "inheritance": "", "abstract": false, @@ -24446,7 +24446,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "address", "inheritance": "", "abstract": false, @@ -24459,7 +24459,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "address", "inheritance": "", "abstract": false, @@ -24472,7 +24472,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ClientContactAddresses", "inheritance": "", "abstract": false, @@ -24485,7 +24485,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Prospects", "inheritance": "", "abstract": false, @@ -24498,7 +24498,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddonList", "inheritance": "", "abstract": false, @@ -24525,7 +24525,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -24538,7 +24538,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -24551,7 +24551,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -24564,7 +24564,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -24577,7 +24577,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -24590,7 +24590,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -24603,7 +24603,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -24616,7 +24616,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -24629,7 +24629,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -24642,7 +24642,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -24655,7 +24655,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -24668,7 +24668,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -24681,7 +24681,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -24694,7 +24694,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -24707,7 +24707,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -24720,7 +24720,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -24733,7 +24733,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -24746,7 +24746,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -24759,7 +24759,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -24772,7 +24772,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -24785,7 +24785,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -24798,7 +24798,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -24811,7 +24811,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -24824,7 +24824,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -24837,7 +24837,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -24850,7 +24850,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -24863,7 +24863,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -24876,7 +24876,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -24889,7 +24889,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -24902,7 +24902,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TechInfo", "inheritance": "", "abstract": false, @@ -24915,7 +24915,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Equipment", "inheritance": "", "abstract": false, @@ -24928,7 +24928,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CoolingUnit", "inheritance": "", "abstract": false, @@ -24941,7 +24941,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Condition", "inheritance": "", "abstract": false, @@ -25002,7 +25002,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -25015,7 +25015,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -25028,7 +25028,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -25041,7 +25041,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -25054,7 +25054,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -25067,7 +25067,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -25080,7 +25080,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -25093,7 +25093,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -25106,7 +25106,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -25119,7 +25119,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -25132,7 +25132,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -25145,7 +25145,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -25158,7 +25158,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -25171,7 +25171,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -25184,7 +25184,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -25197,7 +25197,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -25224,7 +25224,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -25237,7 +25237,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -25250,7 +25250,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -25263,7 +25263,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -25317,7 +25317,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -25330,7 +25330,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -25343,7 +25343,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -25356,7 +25356,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -25369,7 +25369,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -25382,7 +25382,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -25436,7 +25436,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -25449,7 +25449,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -25462,7 +25462,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -25475,7 +25475,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -25488,7 +25488,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -25501,7 +25501,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "VINContainers", "inheritance": "", "abstract": false, @@ -25555,7 +25555,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -25568,7 +25568,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -25581,7 +25581,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -25635,7 +25635,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -25648,7 +25648,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "VINECodes", "inheritance": "", "abstract": false, @@ -25661,7 +25661,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "VINEquipments", "inheritance": "", "abstract": false, @@ -25674,7 +25674,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "VINColors", "inheritance": "", "abstract": false, @@ -25687,7 +25687,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "VINVehicle", "inheritance": "", "abstract": false, @@ -25726,7 +25726,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -25739,7 +25739,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -25752,7 +25752,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -25779,7 +25779,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -25792,7 +25792,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -25805,7 +25805,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -25832,7 +25832,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -25845,7 +25845,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -25858,7 +25858,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -25871,7 +25871,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -25884,7 +25884,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -25897,7 +25897,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -25910,7 +25910,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -25923,7 +25923,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -25936,7 +25936,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -25949,7 +25949,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -25962,7 +25962,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -25975,7 +25975,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -25988,7 +25988,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26001,7 +26001,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26014,7 +26014,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26027,7 +26027,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26040,7 +26040,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26053,7 +26053,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26066,7 +26066,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26079,7 +26079,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -26092,7 +26092,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26105,7 +26105,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26118,7 +26118,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26131,7 +26131,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -26144,7 +26144,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -26157,7 +26157,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -26170,7 +26170,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26183,7 +26183,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26196,7 +26196,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26209,7 +26209,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26222,7 +26222,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26235,7 +26235,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26248,7 +26248,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26261,7 +26261,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26274,7 +26274,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26287,7 +26287,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26300,7 +26300,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26313,7 +26313,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26326,7 +26326,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26339,7 +26339,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26352,7 +26352,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26365,7 +26365,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26378,7 +26378,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26391,7 +26391,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26404,7 +26404,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26417,7 +26417,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26430,7 +26430,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26443,7 +26443,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26456,7 +26456,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26469,7 +26469,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26482,7 +26482,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26495,7 +26495,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26508,7 +26508,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26521,7 +26521,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26534,7 +26534,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26547,7 +26547,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26560,7 +26560,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26573,7 +26573,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26586,7 +26586,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26599,7 +26599,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26612,7 +26612,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26625,7 +26625,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26638,7 +26638,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26651,7 +26651,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26664,7 +26664,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26677,7 +26677,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26690,7 +26690,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -26703,7 +26703,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -26716,7 +26716,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -26729,7 +26729,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -26742,7 +26742,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -26755,7 +26755,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -26768,7 +26768,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -26781,7 +26781,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -26794,7 +26794,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -26807,7 +26807,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -26820,7 +26820,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -26833,7 +26833,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -26846,7 +26846,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -26859,7 +26859,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -26872,7 +26872,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -26885,7 +26885,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -26898,7 +26898,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26911,7 +26911,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26924,7 +26924,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -26937,7 +26937,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -26950,7 +26950,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -26963,7 +26963,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -26976,7 +26976,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -26989,7 +26989,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -27002,7 +27002,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -27015,7 +27015,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -27064,7 +27064,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString3", "inheritance": "", "abstract": false, @@ -27077,7 +27077,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString3", "inheritance": "", "abstract": false, @@ -27090,7 +27090,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Vehicle", "inheritance": "", "abstract": false, @@ -27117,7 +27117,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -27130,7 +27130,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -27143,7 +27143,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -27156,7 +27156,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -27169,7 +27169,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -27182,7 +27182,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -27195,7 +27195,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -27208,7 +27208,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -27221,7 +27221,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -27234,7 +27234,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -27247,7 +27247,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -27260,7 +27260,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -27287,7 +27287,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString17", "inheritance": "", "abstract": false, @@ -27300,7 +27300,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString15", "inheritance": "", "abstract": false, @@ -27313,7 +27313,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString5", "inheritance": "", "abstract": false, @@ -27326,7 +27326,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -27339,7 +27339,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -27352,7 +27352,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -27365,7 +27365,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -27378,7 +27378,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -27391,7 +27391,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -27404,7 +27404,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -27417,7 +27417,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -27430,7 +27430,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -27443,7 +27443,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -27456,7 +27456,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -27469,7 +27469,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -27482,7 +27482,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString60", "inheritance": "", "abstract": false, @@ -27495,7 +27495,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -27508,7 +27508,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString4000", "inheritance": "", "abstract": false, @@ -27521,7 +27521,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString80", "inheritance": "", "abstract": false, @@ -27534,7 +27534,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString80", "inheritance": "", "abstract": false, @@ -27547,7 +27547,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString80", "inheritance": "", "abstract": false, @@ -27560,7 +27560,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString80", "inheritance": "", "abstract": false, @@ -27573,7 +27573,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString80", "inheritance": "", "abstract": false, @@ -27586,7 +27586,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString80", "inheritance": "", "abstract": false, @@ -27599,7 +27599,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString80", "inheritance": "", "abstract": false, @@ -27612,7 +27612,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString80", "inheritance": "", "abstract": false, @@ -27625,7 +27625,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString80", "inheritance": "", "abstract": false, @@ -27638,7 +27638,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString80", "inheritance": "", "abstract": false, @@ -27651,7 +27651,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString80", "inheritance": "", "abstract": false, @@ -27664,7 +27664,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString80", "inheritance": "", "abstract": false, @@ -27677,7 +27677,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString80", "inheritance": "", "abstract": false, @@ -27690,7 +27690,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString80", "inheritance": "", "abstract": false, @@ -27703,7 +27703,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString80", "inheritance": "", "abstract": false, @@ -27716,7 +27716,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString80", "inheritance": "", "abstract": false, @@ -27729,7 +27729,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString80", "inheritance": "", "abstract": false, @@ -27742,7 +27742,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString80", "inheritance": "", "abstract": false, @@ -27755,7 +27755,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString80", "inheritance": "", "abstract": false, @@ -27768,7 +27768,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString80", "inheritance": "", "abstract": false, @@ -27781,7 +27781,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -27794,7 +27794,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString80", "inheritance": "", "abstract": false, @@ -27807,7 +27807,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString80", "inheritance": "", "abstract": false, @@ -27820,7 +27820,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -27833,7 +27833,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -27846,7 +27846,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -27859,7 +27859,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -27872,7 +27872,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -27885,7 +27885,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -27898,7 +27898,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -27911,7 +27911,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -27924,7 +27924,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -27937,7 +27937,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -27950,7 +27950,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27963,7 +27963,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27976,7 +27976,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -27988,7 +27988,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -28000,7 +28000,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -28013,7 +28013,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -28026,7 +28026,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -28039,7 +28039,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -28052,7 +28052,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -28065,7 +28065,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldCharacter", "inheritance": "", "abstract": false, @@ -28078,7 +28078,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -28091,7 +28091,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "KbaNumbersN", "inheritance": "", "abstract": false, @@ -28104,7 +28104,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NationalCodeAustria", "inheritance": "", "abstract": false, @@ -28117,7 +28117,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString40", "inheritance": "", "abstract": false, @@ -28130,7 +28130,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString40", "inheritance": "", "abstract": false, @@ -28143,7 +28143,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString3", "inheritance": "", "abstract": false, @@ -28156,7 +28156,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString30", "inheritance": "", "abstract": false, @@ -28169,7 +28169,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -28182,7 +28182,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PaintTypes", "inheritance": "", "abstract": false, @@ -28195,7 +28195,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -28208,7 +28208,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -28221,7 +28221,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString30", "inheritance": "", "abstract": false, @@ -28234,7 +28234,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -28247,7 +28247,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -28260,7 +28260,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString3", "inheritance": "", "abstract": false, @@ -28273,7 +28273,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString50", "inheritance": "", "abstract": false, @@ -28286,7 +28286,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString50", "inheritance": "", "abstract": false, @@ -28299,7 +28299,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString50", "inheritance": "", "abstract": false, @@ -28312,7 +28312,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -28325,7 +28325,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -28338,7 +28338,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -28351,7 +28351,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -28364,7 +28364,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -28377,7 +28377,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -28390,7 +28390,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -28403,7 +28403,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -28416,7 +28416,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -28429,7 +28429,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RegistrationData", "inheritance": "", "abstract": false, @@ -28442,7 +28442,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "OriginalPriceInfo", "inheritance": "", "abstract": false, @@ -28455,7 +28455,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Engine", "inheritance": "", "abstract": false, @@ -28468,7 +28468,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Maintenance", "inheritance": "", "abstract": false, @@ -28481,7 +28481,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RunningExpenses", "inheritance": "", "abstract": false, @@ -28494,7 +28494,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TechInfo", "inheritance": "", "abstract": false, @@ -28507,7 +28507,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Equipment", "inheritance": "", "abstract": false, @@ -28520,7 +28520,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Tires", "inheritance": "", "abstract": false, @@ -28533,7 +28533,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "equipSequence", "inheritance": "", "abstract": false, @@ -28546,7 +28546,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "VINResult", "inheritance": "", "abstract": false, @@ -28559,7 +28559,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UpperBodies", "inheritance": "", "abstract": false, @@ -28572,7 +28572,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DomusVehicleData", "inheritance": "", "abstract": false, @@ -28585,7 +28585,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "VehicleDataItaly", "inheritance": "", "abstract": false, @@ -28598,7 +28598,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MetaPositions", "inheritance": "", "abstract": false, @@ -28611,7 +28611,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -28624,7 +28624,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -28637,7 +28637,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -28650,7 +28650,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -28663,7 +28663,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -28690,7 +28690,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -28718,7 +28718,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString6", "inheritance": "", "abstract": false, @@ -28773,7 +28773,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UpperBody", "inheritance": "", "abstract": false, @@ -28801,7 +28801,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -28814,7 +28814,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -28827,7 +28827,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -28840,7 +28840,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -28853,7 +28853,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -28866,7 +28866,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -28879,7 +28879,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -28892,7 +28892,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -28919,7 +28919,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WorkSummaryItemItaly", "inheritance": "", "abstract": false, @@ -28947,7 +28947,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -28960,7 +28960,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -28973,7 +28973,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -28986,7 +28986,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -28999,7 +28999,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -29012,7 +29012,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -29025,7 +29025,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -29038,7 +29038,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -29805,7 +29805,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -29818,7 +29818,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -29831,7 +29831,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -29844,7 +29844,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -29857,7 +29857,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -29870,7 +29870,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -29883,7 +29883,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -29896,7 +29896,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -29909,7 +29909,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -29922,7 +29922,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -29935,7 +29935,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -29948,7 +29948,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -29961,7 +29961,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -29974,7 +29974,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -29987,7 +29987,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -30000,7 +30000,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -30013,7 +30013,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -30026,7 +30026,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -30039,7 +30039,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -30052,7 +30052,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -30065,7 +30065,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -30078,7 +30078,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -30091,7 +30091,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -30104,7 +30104,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -30117,7 +30117,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -30130,7 +30130,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -30143,7 +30143,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -30156,7 +30156,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -30169,7 +30169,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -30182,7 +30182,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -30195,7 +30195,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -30208,7 +30208,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -30221,7 +30221,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -30234,7 +30234,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -30247,7 +30247,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -30260,7 +30260,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -30273,7 +30273,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -30286,7 +30286,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PrivatePolicy", "inheritance": "", "abstract": false, @@ -30502,7 +30502,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MaterialPositions", "inheritance": "", "abstract": false, @@ -30515,7 +30515,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MaterialPositions", "inheritance": "", "abstract": false, @@ -30528,7 +30528,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AdditionalCostsPositions", "inheritance": "", "abstract": false, @@ -30541,7 +30541,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AdditionalCostsPositions", "inheritance": "", "abstract": false, @@ -30554,7 +30554,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RiskPositions", "inheritance": "", "abstract": false, @@ -30567,7 +30567,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LabourPositions", "inheritance": "", "abstract": false, @@ -30580,7 +30580,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LabourPositions", "inheritance": "", "abstract": false, @@ -30593,7 +30593,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LacquerPositions", "inheritance": "", "abstract": false, @@ -30606,7 +30606,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DiscountPositions", "inheritance": "", "abstract": false, @@ -30619,7 +30619,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DeductionsPositions", "inheritance": "", "abstract": false, @@ -30632,7 +30632,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DeductiblePartsPositions", "inheritance": "", "abstract": false, @@ -30645,7 +30645,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -30658,7 +30658,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CalculationSummary", "inheritance": "", "abstract": false, @@ -30671,7 +30671,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "repairProtocol", "inheritance": "", "abstract": false, @@ -30684,7 +30684,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "repairProtocol", "inheritance": "", "abstract": false, @@ -30697,7 +30697,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "repairProtocol", "inheritance": "", "abstract": false, @@ -30710,7 +30710,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SurchargeDiscountPositions", "inheritance": "", "abstract": false, @@ -30723,7 +30723,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CalculationProtocol", "inheritance": "", "abstract": false, @@ -30736,7 +30736,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Legends", "inheritance": "", "abstract": false, @@ -30749,7 +30749,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -30762,7 +30762,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BlanketCalculation", "inheritance": "", "abstract": false, @@ -30789,7 +30789,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MaterialPosition", "inheritance": "", "abstract": false, @@ -30844,7 +30844,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AdditionalCostsPosition", "inheritance": "", "abstract": false, @@ -30872,7 +30872,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LabourPosition", "inheritance": "", "abstract": false, @@ -30886,7 +30886,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LabourPosition", "inheritance": "", "abstract": false, @@ -30900,7 +30900,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LabourPosition", "inheritance": "", "abstract": false, @@ -30914,7 +30914,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LabourPosition", "inheritance": "", "abstract": false, @@ -30928,7 +30928,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LabourPosition", "inheritance": "", "abstract": false, @@ -30942,7 +30942,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LabourPosition", "inheritance": "", "abstract": false, @@ -30956,7 +30956,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LabourPosition", "inheritance": "", "abstract": false, @@ -30970,7 +30970,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LabourPosition", "inheritance": "", "abstract": false, @@ -30984,7 +30984,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LabourPosition", "inheritance": "", "abstract": false, @@ -30998,7 +30998,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LabourPosition", "inheritance": "", "abstract": false, @@ -31012,7 +31012,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LabourPosition", "inheritance": "", "abstract": false, @@ -31026,7 +31026,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LabourPosition", "inheritance": "", "abstract": false, @@ -31040,7 +31040,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LabourPosition", "inheritance": "", "abstract": false, @@ -31068,7 +31068,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -31081,7 +31081,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -31094,7 +31094,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31107,7 +31107,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31120,7 +31120,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31133,7 +31133,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31146,7 +31146,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31159,7 +31159,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31172,7 +31172,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -31185,7 +31185,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -31198,7 +31198,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -31211,7 +31211,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -31224,7 +31224,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -31237,7 +31237,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -31250,7 +31250,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31263,7 +31263,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31276,7 +31276,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31289,7 +31289,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -31302,7 +31302,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -31315,7 +31315,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -31328,7 +31328,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -31340,7 +31340,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "calcPosReference", "inheritance": "", "abstract": false, @@ -31353,7 +31353,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IncludedPositions", "inheritance": "", "abstract": false, @@ -31366,7 +31366,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -31379,7 +31379,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -31392,7 +31392,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31405,7 +31405,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldCharacter", "inheritance": "", "abstract": false, @@ -31418,7 +31418,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -31430,7 +31430,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31443,7 +31443,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31456,7 +31456,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31469,7 +31469,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -31481,7 +31481,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31494,7 +31494,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31507,7 +31507,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31520,7 +31520,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31533,7 +31533,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31546,7 +31546,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -31559,7 +31559,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -31572,7 +31572,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -31585,7 +31585,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31612,7 +31612,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -31625,7 +31625,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31652,7 +31652,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -31665,7 +31665,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31678,7 +31678,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31691,7 +31691,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31704,7 +31704,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31717,7 +31717,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31730,7 +31730,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31743,7 +31743,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31756,7 +31756,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -31769,7 +31769,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -31782,7 +31782,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -31795,7 +31795,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -31808,7 +31808,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -31821,7 +31821,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -31834,7 +31834,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31847,7 +31847,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31860,7 +31860,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31873,7 +31873,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -31886,7 +31886,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -31899,7 +31899,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -31912,7 +31912,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -31925,7 +31925,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -31938,7 +31938,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -31951,7 +31951,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -31964,7 +31964,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -31977,7 +31977,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IncludedPositions", "inheritance": "", "abstract": false, @@ -31990,7 +31990,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -32003,7 +32003,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32016,7 +32016,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString2", "inheritance": "", "abstract": false, @@ -32029,7 +32029,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -32042,7 +32042,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32055,7 +32055,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32068,7 +32068,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -32081,7 +32081,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -32094,7 +32094,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -32107,7 +32107,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -32120,7 +32120,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -32133,7 +32133,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -32146,7 +32146,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -32159,7 +32159,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -32172,7 +32172,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -32185,7 +32185,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -32198,7 +32198,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32211,7 +32211,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32224,7 +32224,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -32251,7 +32251,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SparePartsCostsSummary", "inheritance": "", "abstract": false, @@ -32264,7 +32264,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AuxiliaryCostsSummary", "inheritance": "", "abstract": false, @@ -32277,7 +32277,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LabourCostsSummary", "inheritance": "", "abstract": false, @@ -32290,7 +32290,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LacquerCostsSummary", "inheritance": "", "abstract": false, @@ -32303,7 +32303,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32316,7 +32316,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SurchargeDiscountsSummary", "inheritance": "", "abstract": false, @@ -32329,7 +32329,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32342,7 +32342,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32355,7 +32355,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32368,7 +32368,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32381,7 +32381,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32394,7 +32394,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32407,7 +32407,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32420,7 +32420,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32433,7 +32433,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32446,7 +32446,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32459,7 +32459,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32472,7 +32472,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32485,7 +32485,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32498,7 +32498,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32511,7 +32511,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32524,7 +32524,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32537,7 +32537,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32550,7 +32550,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32563,7 +32563,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32576,7 +32576,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32589,7 +32589,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32602,7 +32602,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32615,7 +32615,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32628,7 +32628,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32641,7 +32641,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32654,7 +32654,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32667,7 +32667,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32680,7 +32680,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32693,7 +32693,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32706,7 +32706,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32719,7 +32719,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DeductionsSummary", "inheritance": "", "abstract": false, @@ -32732,7 +32732,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32745,7 +32745,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32758,7 +32758,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32771,7 +32771,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32784,7 +32784,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MetaPositions", "inheritance": "", "abstract": false, @@ -32811,7 +32811,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32824,7 +32824,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32837,7 +32837,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32850,7 +32850,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32863,7 +32863,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32876,7 +32876,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32889,7 +32889,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32902,7 +32902,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32929,7 +32929,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32956,7 +32956,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32969,7 +32969,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "detailBlockSummary", "inheritance": "", "abstract": false, @@ -32982,7 +32982,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "detailBlockSummary", "inheritance": "", "abstract": false, @@ -32995,7 +32995,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "detailBlockSummary", "inheritance": "", "abstract": false, @@ -33008,7 +33008,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "detailBlockSummary", "inheritance": "", "abstract": false, @@ -33021,7 +33021,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "detailBlockSummary", "inheritance": "", "abstract": false, @@ -33034,7 +33034,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "detailBlockSummary", "inheritance": "", "abstract": false, @@ -33047,7 +33047,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "detailBlockSummary", "inheritance": "", "abstract": false, @@ -33060,7 +33060,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "detailBlockSummary", "inheritance": "", "abstract": false, @@ -33073,7 +33073,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "detailBlockSummary", "inheritance": "", "abstract": false, @@ -33086,7 +33086,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -33099,7 +33099,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Discount", "inheritance": "", "abstract": false, @@ -33112,7 +33112,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DetailBlockSummaryWages", "inheritance": "", "abstract": false, @@ -33151,7 +33151,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -33164,7 +33164,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -33177,7 +33177,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -33190,7 +33190,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -33203,7 +33203,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Discount", "inheritance": "", "abstract": false, @@ -33216,7 +33216,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -33229,7 +33229,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -33268,7 +33268,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -33307,7 +33307,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "detailBlockSummary", "inheritance": "", "abstract": false, @@ -33335,7 +33335,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Discount", "inheritance": "", "abstract": false, @@ -33348,7 +33348,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -33361,7 +33361,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "detailBlockSummary", "inheritance": "", "abstract": false, @@ -33374,7 +33374,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "detailBlockSummary", "inheritance": "", "abstract": false, @@ -33387,7 +33387,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "detailBlockSummary", "inheritance": "", "abstract": false, @@ -33400,7 +33400,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LacquerMaterialSummary", "inheritance": "", "abstract": false, @@ -33413,7 +33413,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -33440,7 +33440,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -33453,7 +33453,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -33466,7 +33466,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -33479,7 +33479,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "detailBlockSummary", "inheritance": "", "abstract": false, @@ -33492,7 +33492,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "detailBlockSummary", "inheritance": "", "abstract": false, @@ -33505,7 +33505,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "detailBlockSummary", "inheritance": "", "abstract": false, @@ -33518,7 +33518,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "detailBlockSummary", "inheritance": "", "abstract": false, @@ -33531,7 +33531,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "detailBlockSummary", "inheritance": "", "abstract": false, @@ -33544,7 +33544,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -33557,7 +33557,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LacquerConstantSequence", "inheritance": "", "abstract": false, @@ -33570,7 +33570,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LacquerMaterialGroupSummarySequence", "inheritance": "", "abstract": false, @@ -33583,7 +33583,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Discount", "inheritance": "", "abstract": false, @@ -33596,7 +33596,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -33609,7 +33609,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -33622,7 +33622,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -33729,7 +33729,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -33742,7 +33742,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -33755,7 +33755,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -33768,7 +33768,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -33781,7 +33781,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -33794,7 +33794,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -33807,7 +33807,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -33820,7 +33820,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -33833,7 +33833,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -33846,7 +33846,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -33859,7 +33859,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -33886,7 +33886,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "repairProcessList", "inheritance": "", "abstract": false, @@ -33899,7 +33899,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "repairProcessList", "inheritance": "", "abstract": false, @@ -33912,7 +33912,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "repairProcessList", "inheritance": "", "abstract": false, @@ -33925,7 +33925,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "repairProcessList", "inheritance": "", "abstract": false, @@ -33938,7 +33938,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "repairProcessList", "inheritance": "", "abstract": false, @@ -33951,7 +33951,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "repairProcessList", "inheritance": "", "abstract": false, @@ -33978,7 +33978,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RepairProcess", "inheritance": "", "abstract": false, @@ -34006,7 +34006,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SurchargeDiscountPosition", "inheritance": "", "abstract": false, @@ -34034,7 +34034,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -34047,7 +34047,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -34060,7 +34060,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -34073,7 +34073,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -34086,7 +34086,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -34113,7 +34113,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -34126,7 +34126,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -34139,7 +34139,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -34152,7 +34152,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -34165,7 +34165,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -34178,7 +34178,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -34191,7 +34191,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -34204,7 +34204,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -34217,7 +34217,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -34230,7 +34230,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -34243,7 +34243,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -34256,7 +34256,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -34311,7 +34311,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -34324,7 +34324,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -34337,7 +34337,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -34364,7 +34364,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PositionsItaly", "inheritance": "", "abstract": false, @@ -34377,7 +34377,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SummariesItaly", "inheritance": "", "abstract": false, @@ -34404,7 +34404,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "calcResult", "inheritance": "", "abstract": false, @@ -34416,7 +34416,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DomusAggregates", "inheritance": "", "abstract": false, @@ -34429,7 +34429,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DomusLacquerExtraCharges", "inheritance": "", "abstract": false, @@ -34442,7 +34442,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DomusExtraCharges", "inheritance": "", "abstract": false, @@ -34469,7 +34469,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "subTypeVariantEquipmentSelectionRequest", "inheritance": "", "abstract": false, @@ -34770,7 +34770,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integerStringPair", "inheritance": "", "abstract": false, @@ -34837,7 +34837,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "subTypeVariantEquipmentSelectionRequest", "inheritance": "", "abstract": false, @@ -34865,7 +34865,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integerStringPair", "inheritance": "", "abstract": false, @@ -34894,7 +34894,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "subTypeVariantEquipmentSelectionRequest", "inheritance": "", "abstract": false, @@ -34922,7 +34922,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integerStringPair", "inheritance": "", "abstract": false, @@ -34951,7 +34951,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "subTypeVariantNumberSelectionRequest", "inheritance": "", "abstract": false, @@ -35005,7 +35005,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35033,7 +35033,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "abstractSelectionRequest", "inheritance": "", "abstract": false, @@ -35061,7 +35061,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integerStringPair", "inheritance": "", "abstract": false, @@ -35090,7 +35090,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "basicSelectionRequest", "inheritance": "", "abstract": false, @@ -35118,7 +35118,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integerStringPair", "inheritance": "", "abstract": false, @@ -35147,7 +35147,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "subTypeVariantSelectionRequest", "inheritance": "", "abstract": false, @@ -35175,7 +35175,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -35204,7 +35204,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "subTypeVariantEquipmentSelectionRequest", "inheritance": "", "abstract": false, @@ -35232,7 +35232,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integerStringPair", "inheritance": "", "abstract": false, @@ -35261,7 +35261,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "manufacturerSelectionRequest", "inheritance": "", "abstract": false, @@ -35289,7 +35289,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integerStringPair", "inheritance": "", "abstract": false, @@ -35318,7 +35318,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "subTypeVariantEquipmentSelectionRequest", "inheritance": "", "abstract": false, @@ -35346,7 +35346,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integerStringPair", "inheritance": "", "abstract": false, @@ -35375,7 +35375,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "priceFocusSelectionRequest", "inheritance": "", "abstract": false, @@ -35427,7 +35427,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "stringStringPair", "inheritance": "", "abstract": false, @@ -35494,7 +35494,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "subTypeVariantEquipmentSelectionRequest", "inheritance": "", "abstract": false, @@ -35522,7 +35522,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integerStringPair", "inheritance": "", "abstract": false, @@ -35551,7 +35551,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "subTypeVariantEquipmentSelectionRequest", "inheritance": "", "abstract": false, @@ -35579,7 +35579,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integerStringPair", "inheritance": "", "abstract": false, @@ -35608,7 +35608,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "basicSelectionRequest", "inheritance": "", "abstract": false, @@ -35636,7 +35636,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integerStringPair", "inheritance": "", "abstract": false, @@ -35665,7 +35665,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "baseModelSelectionRequest", "inheritance": "", "abstract": false, @@ -35693,7 +35693,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "baseModelResult", "inheritance": "", "abstract": false, @@ -35800,7 +35800,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "constructionPeriodSelectionRequest", "inheritance": "", "abstract": false, @@ -35828,7 +35828,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35854,7 +35854,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "constructionTimePeriod", "inheritance": "", "abstract": false, @@ -36044,7 +36044,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "hgvPlatformManufacturerSelectionRequest", "inheritance": "", "abstract": false, @@ -36096,7 +36096,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integerStringPair", "inheritance": "", "abstract": false, @@ -36125,7 +36125,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "hgvPlatformAggregateModelSelectionRequest", "inheritance": "", "abstract": false, @@ -36177,7 +36177,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integerStringPair", "inheritance": "", "abstract": false, @@ -36206,7 +36206,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "hgvPlatformBaseModelSelectionRequest", "inheritance": "", "abstract": false, @@ -36258,7 +36258,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integerStringPair", "inheritance": "", "abstract": false, @@ -36287,7 +36287,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "hgvPlatformAggregateModelDataRequest", "inheritance": "", "abstract": false, @@ -36339,7 +36339,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "VXS", "inheritance": "", "abstract": false, @@ -36367,7 +36367,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -36380,7 +36380,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -36393,7 +36393,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -36406,7 +36406,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -36419,7 +36419,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString12", "inheritance": "", "abstract": false, @@ -36432,7 +36432,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -36445,7 +36445,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -36458,7 +36458,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -36471,7 +36471,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -36484,7 +36484,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString40", "inheritance": "", "abstract": false, @@ -36521,7 +36521,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -36534,7 +36534,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString3", "inheritance": "", "abstract": false, @@ -36547,7 +36547,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString10", "inheritance": "", "abstract": false, @@ -36560,7 +36560,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -36573,7 +36573,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -36586,7 +36586,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -36599,7 +36599,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -36612,7 +36612,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -36625,7 +36625,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -36638,7 +36638,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -36651,7 +36651,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -36664,7 +36664,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -36677,7 +36677,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "address", "inheritance": "", "abstract": false, @@ -36690,7 +36690,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Vehicle", "inheritance": "", "abstract": false, @@ -36703,7 +36703,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Images", "inheritance": "", "abstract": false, @@ -36716,7 +36716,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ImageList", "inheritance": "", "abstract": false, @@ -36729,7 +36729,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "VAT", "inheritance": "", "abstract": false, @@ -36742,7 +36742,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "anyType", "inheritance": "", "abstract": false, @@ -36755,7 +36755,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TradingData", "inheritance": "", "abstract": false, @@ -36768,7 +36768,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Valuation", "inheritance": "", "abstract": false, @@ -36781,7 +36781,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Compare", "inheritance": "", "abstract": false, @@ -36794,7 +36794,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RepairCalculation", "inheritance": "", "abstract": false, @@ -36807,7 +36807,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RepairOrder", "inheritance": "", "abstract": false, @@ -36820,7 +36820,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SparePartPositions", "inheritance": "", "abstract": false, @@ -36833,7 +36833,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MaintenanceIntervals", "inheritance": "", "abstract": false, @@ -36846,7 +36846,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Comments", "inheritance": "", "abstract": false, @@ -36859,7 +36859,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Attachments", "inheritance": "", "abstract": false, @@ -36872,7 +36872,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AdditionalVehicles", "inheritance": "", "abstract": false, @@ -36885,7 +36885,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -36898,7 +36898,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -36911,7 +36911,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -36924,7 +36924,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -36937,7 +36937,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AdditionalServices", "inheritance": "", "abstract": false, @@ -36950,7 +36950,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ProcessManagement", "inheritance": "", "abstract": false, @@ -36963,7 +36963,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TradingActivity", "inheritance": "", "abstract": false, @@ -36976,7 +36976,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TradingAdditional", "inheritance": "", "abstract": false, @@ -36989,7 +36989,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MetaPositions", "inheritance": "", "abstract": false, @@ -37026,7 +37026,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "subModelByTextSearchSelectionRequest", "inheritance": "", "abstract": false, @@ -37078,7 +37078,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "subModelByTextSearchSelectionResponse", "inheritance": "", "abstract": false, @@ -37106,7 +37106,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -37118,7 +37118,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -37130,7 +37130,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dossiers", "inheritance": "", "abstract": false, @@ -37156,7 +37156,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Dossier", "inheritance": "", "abstract": false, @@ -37204,7 +37204,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "subModelSelectionRequest", "inheritance": "", "abstract": false, @@ -37232,7 +37232,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integerStringPair", "inheritance": "", "abstract": false, @@ -37261,7 +37261,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "subTypeVariantEquipmentSelectionRequest", "inheritance": "", "abstract": false, @@ -37289,7 +37289,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integerStringPair", "inheritance": "", "abstract": false, @@ -37318,7 +37318,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "subTypeVariantEquipmentSelectionRequest", "inheritance": "", "abstract": false, @@ -37346,7 +37346,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integerStringPair", "inheritance": "", "abstract": false, @@ -37375,7 +37375,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "priceFocusSelectionRequest", "inheritance": "", "abstract": false, @@ -37403,7 +37403,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -37432,7 +37432,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "baseModelSelectionRequest", "inheritance": "", "abstract": false, @@ -37460,7 +37460,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integerStringPair", "inheritance": "", "abstract": false, @@ -37489,7 +37489,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "subTypeVariantEquipmentSelectionRequest", "inheritance": "", "abstract": false, @@ -37517,7 +37517,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integerStringPair", "inheritance": "", "abstract": false, @@ -37546,7 +37546,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "hgvPlatformSubModelSelectionRequest", "inheritance": "", "abstract": false, @@ -37598,7 +37598,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integerStringPair", "inheritance": "", "abstract": false, @@ -37627,7 +37627,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "subTypeVariantClassifiedEquipmentSelectionRequest", "inheritance": "", "abstract": false, @@ -37679,7 +37679,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integerStringPair", "inheritance": "", "abstract": false, @@ -37708,7 +37708,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "vehicleDataSelectionRequest", "inheritance": "", "abstract": false, @@ -37760,7 +37760,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "VXS", "inheritance": "", "abstract": false, @@ -37788,7 +37788,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "hgvPlatformSubModelDataRequest", "inheritance": "", "abstract": false, @@ -37840,7 +37840,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "VXS", "inheritance": "", "abstract": false, @@ -37868,7 +37868,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "abstractSelectionRequest", "inheritance": "", "abstract": false, @@ -37896,7 +37896,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37924,7 +37924,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "subTypeVariantEquipmentSelectionRequest", "inheritance": "", "abstract": false, @@ -37952,7 +37952,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integerStringPair", "inheritance": "", "abstract": false, diff --git a/tests/resources/generated/parsed_vehicleselection_start.json b/tests/resources/generated/parsed_vehicleselection_start.json index 9bbc7071..4f079161 100644 --- a/tests/resources/generated/parsed_vehicleselection_start.json +++ b/tests/resources/generated/parsed_vehicleselection_start.json @@ -454,7 +454,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -467,7 +467,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -480,7 +480,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -493,7 +493,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -506,7 +506,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -533,7 +533,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -546,7 +546,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -559,7 +559,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -572,7 +572,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -585,7 +585,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -598,7 +598,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -611,7 +611,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -624,7 +624,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -637,7 +637,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -650,7 +650,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -663,7 +663,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -676,7 +676,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IncludedPositions", "inheritance": "", "abstract": false, @@ -689,7 +689,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -774,7 +774,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -787,7 +787,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Email", "inheritance": "", "abstract": false, @@ -814,7 +814,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -827,7 +827,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -840,7 +840,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -853,7 +853,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -866,7 +866,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -879,7 +879,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -892,7 +892,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -905,7 +905,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -918,7 +918,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -945,7 +945,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AdditionalService", "inheritance": "", "abstract": false, @@ -959,7 +959,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -986,7 +986,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -999,7 +999,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -1012,7 +1012,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -1025,7 +1025,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString12", "inheritance": "", "abstract": false, @@ -1038,7 +1038,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -1051,7 +1051,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString40", "inheritance": "", "abstract": false, @@ -1064,7 +1064,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString3", "inheritance": "", "abstract": false, @@ -1077,7 +1077,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString5", "inheritance": "", "abstract": false, @@ -1090,7 +1090,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString3", "inheritance": "", "abstract": false, @@ -1103,7 +1103,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -1116,7 +1116,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -1129,7 +1129,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -1142,7 +1142,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Vehicle", "inheritance": "", "abstract": false, @@ -1155,7 +1155,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Images", "inheritance": "", "abstract": false, @@ -1168,7 +1168,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "VAT", "inheritance": "", "abstract": false, @@ -1181,7 +1181,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "anyType", "inheritance": "", "abstract": false, @@ -1194,7 +1194,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TradingData", "inheritance": "", "abstract": false, @@ -1207,7 +1207,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Valuation", "inheritance": "", "abstract": false, @@ -1220,7 +1220,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RepairCalculation", "inheritance": "", "abstract": false, @@ -1233,7 +1233,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RepairOrder", "inheritance": "", "abstract": false, @@ -1246,7 +1246,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SparePartPositions", "inheritance": "", "abstract": false, @@ -1259,7 +1259,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MaintenanceIntervals", "inheritance": "", "abstract": false, @@ -1272,7 +1272,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Comments", "inheritance": "", "abstract": false, @@ -1285,7 +1285,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Attachments", "inheritance": "", "abstract": false, @@ -1312,7 +1312,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AdditionalVehicle", "inheritance": "", "abstract": false, @@ -1374,7 +1374,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Addon", "inheritance": "", "abstract": false, @@ -1402,7 +1402,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString10", "inheritance": "", "abstract": false, @@ -1415,7 +1415,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString10", "inheritance": "", "abstract": false, @@ -1428,7 +1428,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -1441,7 +1441,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -1454,7 +1454,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -1467,7 +1467,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -1480,7 +1480,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -1493,7 +1493,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -1506,7 +1506,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -1519,7 +1519,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -1532,7 +1532,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -1545,7 +1545,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -1558,7 +1558,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -1571,7 +1571,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -1584,7 +1584,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -1597,7 +1597,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -1610,7 +1610,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -1623,7 +1623,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -1636,7 +1636,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -1649,7 +1649,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -1662,7 +1662,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -1675,7 +1675,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -1688,7 +1688,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -1701,7 +1701,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -1714,7 +1714,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -1727,7 +1727,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FollowUpBusiness", "inheritance": "", "abstract": false, @@ -1754,7 +1754,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -1767,7 +1767,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -1780,7 +1780,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -1792,7 +1792,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -1804,7 +1804,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -1816,7 +1816,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -1828,7 +1828,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -1840,7 +1840,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -1852,7 +1852,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -1864,7 +1864,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -1876,7 +1876,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -1889,7 +1889,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString20", "inheritance": "", "abstract": false, @@ -1902,7 +1902,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -1915,7 +1915,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBinary", "inheritance": "", "abstract": false, @@ -1928,7 +1928,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString5", "inheritance": "", "abstract": false, @@ -1955,7 +1955,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Attachment", "inheritance": "", "abstract": false, @@ -1983,7 +1983,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -1996,7 +1996,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -2009,7 +2009,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -2022,7 +2022,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -2035,7 +2035,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -2048,7 +2048,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -2061,7 +2061,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -2074,7 +2074,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -2087,7 +2087,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -2100,7 +2100,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -2113,7 +2113,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -2126,7 +2126,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -2139,7 +2139,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -2152,7 +2152,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -2165,7 +2165,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -2178,7 +2178,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -2191,7 +2191,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -2204,7 +2204,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -2217,7 +2217,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -2230,7 +2230,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -2243,7 +2243,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -2256,7 +2256,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -2269,7 +2269,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -2282,7 +2282,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -2295,7 +2295,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -2308,7 +2308,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -2321,7 +2321,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -2334,7 +2334,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -2347,7 +2347,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -2360,7 +2360,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -2373,7 +2373,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -2386,7 +2386,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -2399,7 +2399,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -2412,7 +2412,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -2425,7 +2425,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -2438,7 +2438,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -2451,7 +2451,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -2464,7 +2464,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -2477,7 +2477,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -2490,7 +2490,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -2503,7 +2503,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString40", "inheritance": "", "abstract": false, @@ -2516,7 +2516,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -2543,7 +2543,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -2556,7 +2556,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -2569,7 +2569,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -2582,7 +2582,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -2595,7 +2595,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -2622,7 +2622,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -2635,7 +2635,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -2648,7 +2648,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -2661,7 +2661,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -2674,7 +2674,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -2701,7 +2701,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "calcResult", "inheritance": "", "abstract": false, @@ -2765,7 +2765,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CalculationWage", "inheritance": "", "abstract": false, @@ -2867,7 +2867,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "address", "inheritance": "", "abstract": false, @@ -2895,7 +2895,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -2908,7 +2908,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -2921,7 +2921,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -2934,7 +2934,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -2946,7 +2946,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -2958,7 +2958,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -2984,7 +2984,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Comment", "inheritance": "", "abstract": false, @@ -3012,7 +3012,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -3025,7 +3025,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -3038,7 +3038,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -3051,7 +3051,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -3064,7 +3064,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -3077,7 +3077,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -3090,7 +3090,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -3103,7 +3103,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -3116,7 +3116,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -3129,7 +3129,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -3142,7 +3142,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -3155,7 +3155,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -3168,7 +3168,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3181,7 +3181,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -3232,7 +3232,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CompareFlatEquipment", "inheritance": "", "abstract": false, @@ -3260,7 +3260,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CompareParameter", "inheritance": "", "abstract": false, @@ -3288,7 +3288,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3301,7 +3301,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -3314,7 +3314,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3327,7 +3327,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3354,7 +3354,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -3367,7 +3367,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -3380,7 +3380,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -3393,7 +3393,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -3420,7 +3420,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3433,7 +3433,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3446,7 +3446,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3459,7 +3459,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3472,7 +3472,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3485,7 +3485,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3498,7 +3498,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3511,7 +3511,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3524,7 +3524,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -3537,7 +3537,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -3550,7 +3550,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -3563,7 +3563,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3576,7 +3576,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3589,7 +3589,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3602,7 +3602,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3615,7 +3615,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3628,7 +3628,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3641,7 +3641,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3654,7 +3654,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3667,7 +3667,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3680,7 +3680,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3693,7 +3693,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3706,7 +3706,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3719,7 +3719,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3732,7 +3732,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3745,7 +3745,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3758,7 +3758,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3771,7 +3771,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3784,7 +3784,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3797,7 +3797,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3810,7 +3810,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3823,7 +3823,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3836,7 +3836,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3849,7 +3849,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3862,7 +3862,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -3875,7 +3875,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -3888,7 +3888,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -3901,7 +3901,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -3914,7 +3914,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -3927,7 +3927,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -3940,7 +3940,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -3953,7 +3953,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -3966,7 +3966,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -3979,7 +3979,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -3992,7 +3992,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -4019,7 +4019,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -4032,7 +4032,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -4045,7 +4045,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -4058,7 +4058,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -4071,7 +4071,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -4084,7 +4084,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -4097,7 +4097,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -4110,7 +4110,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -4123,7 +4123,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -4136,7 +4136,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -4149,7 +4149,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -4162,7 +4162,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -4175,7 +4175,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -4188,7 +4188,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -4201,7 +4201,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -4214,7 +4214,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -4227,7 +4227,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -4240,7 +4240,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -4253,7 +4253,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -4266,7 +4266,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -4279,7 +4279,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -4340,7 +4340,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CustomData", "inheritance": "", "abstract": false, @@ -4378,7 +4378,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -4391,7 +4391,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -4457,7 +4457,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -4470,7 +4470,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -4483,7 +4483,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -4496,7 +4496,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -4509,7 +4509,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -4522,7 +4522,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -4535,7 +4535,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -4548,7 +4548,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -4561,7 +4561,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -4574,7 +4574,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -4587,7 +4587,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -4600,7 +4600,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -4613,7 +4613,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -4626,7 +4626,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -4639,7 +4639,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -4652,7 +4652,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -4665,7 +4665,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -4678,7 +4678,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -4705,7 +4705,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DamageProcess", "inheritance": "", "abstract": false, @@ -4718,7 +4718,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DamageDetail", "inheritance": "", "abstract": false, @@ -4745,7 +4745,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -4758,7 +4758,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -4771,7 +4771,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -4784,7 +4784,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -4797,7 +4797,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -4810,7 +4810,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -4823,7 +4823,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -4836,7 +4836,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -4849,7 +4849,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -4862,7 +4862,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -4875,7 +4875,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -4888,7 +4888,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -4901,7 +4901,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -4914,7 +4914,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -4927,7 +4927,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -4940,7 +4940,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -4953,7 +4953,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -4966,7 +4966,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -4979,7 +4979,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -4992,7 +4992,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -5005,7 +5005,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -5032,7 +5032,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -5045,7 +5045,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -5058,7 +5058,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -5071,7 +5071,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -5084,7 +5084,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -5097,7 +5097,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -5110,7 +5110,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -5123,7 +5123,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -5150,7 +5150,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DeductiblePartsPosition", "inheritance": "", "abstract": false, @@ -5178,7 +5178,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DeductiblePartsPosition", "inheritance": "", "abstract": false, @@ -5206,7 +5206,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -5219,7 +5219,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -5232,7 +5232,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -5245,7 +5245,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -5258,7 +5258,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -5271,7 +5271,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -5284,7 +5284,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -5297,7 +5297,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -5324,7 +5324,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DiscountPosition", "inheritance": "", "abstract": false, @@ -5352,7 +5352,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -5365,7 +5365,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -5378,7 +5378,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -5391,7 +5391,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -5404,7 +5404,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -5417,7 +5417,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -5430,7 +5430,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -5443,7 +5443,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -5456,7 +5456,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -5469,7 +5469,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -5482,7 +5482,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DomusAggregateComponents", "inheritance": "", "abstract": false, @@ -5509,7 +5509,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -5522,7 +5522,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -5535,7 +5535,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -5548,7 +5548,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -5561,7 +5561,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -5574,7 +5574,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -5587,7 +5587,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -5600,7 +5600,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -5613,7 +5613,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -5640,7 +5640,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DomusAggregateComponent", "inheritance": "", "abstract": false, @@ -5668,7 +5668,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DomusAggregate", "inheritance": "", "abstract": false, @@ -5696,7 +5696,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -5709,7 +5709,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -5722,7 +5722,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -5749,7 +5749,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DomusExtraCharge", "inheritance": "", "abstract": false, @@ -5777,7 +5777,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -5790,7 +5790,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -5803,7 +5803,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -5830,7 +5830,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DomusLacquerExtraCharge", "inheritance": "", "abstract": false, @@ -5858,7 +5858,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -5871,7 +5871,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -5884,7 +5884,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -5897,7 +5897,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -5910,7 +5910,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -5923,7 +5923,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -5936,7 +5936,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -5949,7 +5949,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -5976,7 +5976,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -5989,7 +5989,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -6002,7 +6002,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -6015,7 +6015,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -6028,7 +6028,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString12", "inheritance": "", "abstract": false, @@ -6041,7 +6041,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -6054,7 +6054,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -6067,7 +6067,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -6080,7 +6080,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -6093,7 +6093,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString40", "inheritance": "", "abstract": false, @@ -6130,7 +6130,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -6143,7 +6143,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString3", "inheritance": "", "abstract": false, @@ -6156,7 +6156,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString10", "inheritance": "", "abstract": false, @@ -6169,7 +6169,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -6182,7 +6182,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -6195,7 +6195,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -6208,7 +6208,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -6221,7 +6221,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -6234,7 +6234,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -6247,7 +6247,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -6260,7 +6260,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -6273,7 +6273,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -6286,7 +6286,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "address", "inheritance": "", "abstract": false, @@ -6299,7 +6299,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Vehicle", "inheritance": "", "abstract": false, @@ -6312,7 +6312,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Images", "inheritance": "", "abstract": false, @@ -6325,7 +6325,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ImageList", "inheritance": "", "abstract": false, @@ -6338,7 +6338,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "VAT", "inheritance": "", "abstract": false, @@ -6351,7 +6351,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "anyType", "inheritance": "", "abstract": false, @@ -6364,7 +6364,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TradingData", "inheritance": "", "abstract": false, @@ -6377,7 +6377,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Valuation", "inheritance": "", "abstract": false, @@ -6390,7 +6390,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Compare", "inheritance": "", "abstract": false, @@ -6403,7 +6403,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RepairCalculation", "inheritance": "", "abstract": false, @@ -6416,7 +6416,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RepairOrder", "inheritance": "", "abstract": false, @@ -6429,7 +6429,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SparePartPositions", "inheritance": "", "abstract": false, @@ -6442,7 +6442,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MaintenanceIntervals", "inheritance": "", "abstract": false, @@ -6455,7 +6455,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Comments", "inheritance": "", "abstract": false, @@ -6468,7 +6468,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Attachments", "inheritance": "", "abstract": false, @@ -6481,7 +6481,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AdditionalVehicles", "inheritance": "", "abstract": false, @@ -6494,7 +6494,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -6507,7 +6507,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -6520,7 +6520,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -6533,7 +6533,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -6546,7 +6546,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AdditionalServices", "inheritance": "", "abstract": false, @@ -6559,7 +6559,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ProcessManagement", "inheritance": "", "abstract": false, @@ -6572,7 +6572,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TradingActivity", "inheritance": "", "abstract": false, @@ -6585,7 +6585,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TradingAdditional", "inheritance": "", "abstract": false, @@ -6598,7 +6598,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MetaPositions", "inheritance": "", "abstract": false, @@ -6635,7 +6635,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Dossier", "inheritance": "", "abstract": false, @@ -6707,7 +6707,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -6732,7 +6732,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailAttachments", "inheritance": "", "abstract": false, @@ -6866,7 +6866,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmissionClassItemN", "inheritance": "", "abstract": false, @@ -6894,7 +6894,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString30", "inheritance": "", "abstract": false, @@ -6907,7 +6907,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString30", "inheritance": "", "abstract": false, @@ -6920,7 +6920,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString30", "inheritance": "", "abstract": false, @@ -6933,7 +6933,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString2", "inheritance": "", "abstract": false, @@ -6946,7 +6946,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -6959,7 +6959,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -6972,7 +6972,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -6985,7 +6985,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -6998,7 +6998,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -7011,7 +7011,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -7024,7 +7024,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -7037,7 +7037,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -7050,7 +7050,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -7063,7 +7063,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -7076,7 +7076,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7089,7 +7089,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -7102,7 +7102,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -7115,7 +7115,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -7128,7 +7128,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -7141,7 +7141,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7154,7 +7154,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7167,7 +7167,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -7180,7 +7180,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7207,7 +7207,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7220,7 +7220,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7233,7 +7233,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7246,7 +7246,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7259,7 +7259,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7272,7 +7272,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7285,7 +7285,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7298,7 +7298,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7311,7 +7311,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7324,7 +7324,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7337,7 +7337,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7350,7 +7350,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7363,7 +7363,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7376,7 +7376,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7389,7 +7389,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7402,7 +7402,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7415,7 +7415,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7428,7 +7428,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -7441,7 +7441,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -7454,7 +7454,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -7467,7 +7467,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -7480,7 +7480,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -7493,7 +7493,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -7506,7 +7506,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -7519,7 +7519,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -7532,7 +7532,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7545,7 +7545,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -7558,7 +7558,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString30", "inheritance": "", "abstract": false, @@ -7571,7 +7571,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "equipSequence", "inheritance": "", "abstract": false, @@ -7584,7 +7584,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "equipSequence", "inheritance": "", "abstract": false, @@ -7597,7 +7597,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "equipSequence", "inheritance": "", "abstract": false, @@ -7610,7 +7610,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "equipSequence", "inheritance": "", "abstract": false, @@ -7623,7 +7623,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "equipSequence", "inheritance": "", "abstract": false, @@ -7636,7 +7636,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "equipSequence", "inheritance": "", "abstract": false, @@ -7649,7 +7649,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "equipSequence", "inheritance": "", "abstract": false, @@ -7662,7 +7662,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "equipSequence", "inheritance": "", "abstract": false, @@ -7689,7 +7689,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -7702,7 +7702,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7715,7 +7715,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EquipmentList", "inheritance": "", "abstract": false, @@ -7742,7 +7742,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7755,7 +7755,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -7768,7 +7768,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -7795,7 +7795,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -7808,7 +7808,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7821,7 +7821,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -7848,7 +7848,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EquipmentItem", "inheritance": "", "abstract": false, @@ -7862,7 +7862,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EquipmentItemN", "inheritance": "", "abstract": false, @@ -7890,7 +7890,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -7903,7 +7903,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -7916,7 +7916,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -7929,7 +7929,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -7942,7 +7942,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -7955,7 +7955,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7968,7 +7968,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7981,7 +7981,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -7994,7 +7994,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -8007,7 +8007,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -8020,7 +8020,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -8033,7 +8033,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -8046,7 +8046,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -8059,7 +8059,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -8072,7 +8072,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -8085,7 +8085,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -8098,7 +8098,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -8111,7 +8111,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -8124,7 +8124,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -8137,7 +8137,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -8150,7 +8150,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -8163,7 +8163,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -8176,7 +8176,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -8189,7 +8189,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -8202,7 +8202,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -8215,7 +8215,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -8228,7 +8228,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -8241,7 +8241,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -8254,7 +8254,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -8267,7 +8267,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -8280,7 +8280,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -8293,7 +8293,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldCharacter", "inheritance": "", "abstract": false, @@ -8306,7 +8306,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -8319,7 +8319,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -8332,7 +8332,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -8345,7 +8345,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -8358,7 +8358,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -8371,7 +8371,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ContainedEquipmentPositions", "inheritance": "", "abstract": false, @@ -8384,7 +8384,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -8397,7 +8397,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -8410,7 +8410,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -8423,7 +8423,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -8436,7 +8436,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -8449,7 +8449,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -8462,7 +8462,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -8475,7 +8475,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -8488,7 +8488,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -8515,7 +8515,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EquipmentPosition", "inheritance": "", "abstract": false, @@ -8640,7 +8640,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -8653,7 +8653,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -8666,7 +8666,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -8679,7 +8679,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -8692,7 +8692,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -8705,7 +8705,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -8732,7 +8732,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -8745,7 +8745,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -8758,7 +8758,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -8771,7 +8771,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -8784,7 +8784,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -8797,7 +8797,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -8810,7 +8810,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -8823,7 +8823,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -8836,7 +8836,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ForecastItems", "inheritance": "", "abstract": false, @@ -8863,7 +8863,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ForecastItem", "inheritance": "", "abstract": false, @@ -8891,7 +8891,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -8904,7 +8904,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -8917,7 +8917,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -8930,7 +8930,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -8943,7 +8943,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -8956,7 +8956,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -8969,7 +8969,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -8982,7 +8982,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -8995,7 +8995,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -9008,7 +9008,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -9035,7 +9035,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Forecast", "inheritance": "", "abstract": false, @@ -9063,7 +9063,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -9076,7 +9076,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -9089,7 +9089,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBinary", "inheritance": "", "abstract": false, @@ -9102,7 +9102,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -9115,7 +9115,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -9128,7 +9128,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -9141,7 +9141,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -9154,7 +9154,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -9167,7 +9167,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -9180,7 +9180,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -9193,7 +9193,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString4", "inheritance": "", "abstract": false, @@ -9206,7 +9206,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString8", "inheritance": "", "abstract": false, @@ -9219,7 +9219,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -9232,7 +9232,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -9245,7 +9245,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -9258,7 +9258,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -9271,7 +9271,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -9284,7 +9284,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -9311,7 +9311,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Image", "inheritance": "", "abstract": false, @@ -9339,7 +9339,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -9352,7 +9352,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -9365,7 +9365,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -9392,7 +9392,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -9405,7 +9405,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -9418,7 +9418,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBinary", "inheritance": "", "abstract": false, @@ -9431,7 +9431,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -9444,7 +9444,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -9457,7 +9457,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -9470,7 +9470,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -9483,7 +9483,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -9496,7 +9496,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -9509,7 +9509,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -9522,7 +9522,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString4", "inheritance": "", "abstract": false, @@ -9535,7 +9535,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString8", "inheritance": "", "abstract": false, @@ -9548,7 +9548,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -9575,7 +9575,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -9588,7 +9588,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -9601,7 +9601,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -9628,7 +9628,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IncludedPosition", "inheritance": "", "abstract": false, @@ -9690,7 +9690,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -9729,7 +9729,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -9756,7 +9756,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LacquerAdjustment", "inheritance": "", "abstract": false, @@ -9784,7 +9784,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -9797,7 +9797,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -9810,7 +9810,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -9823,7 +9823,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -9836,7 +9836,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -9849,7 +9849,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -9876,7 +9876,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9889,7 +9889,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -9902,7 +9902,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -9915,7 +9915,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -9942,7 +9942,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LacquerPosition", "inheritance": "", "abstract": false, @@ -9956,7 +9956,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LacquerPosition", "inheritance": "", "abstract": false, @@ -9970,7 +9970,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SpotRepairPositions", "inheritance": "", "abstract": false, @@ -9983,7 +9983,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LacquerPosition", "inheritance": "", "abstract": false, @@ -10011,7 +10011,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LacquerSummaryItemItaly", "inheritance": "", "abstract": false, @@ -10039,7 +10039,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -10052,7 +10052,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -10065,7 +10065,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -10078,7 +10078,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -10105,7 +10105,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -10118,7 +10118,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -10131,7 +10131,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -10144,7 +10144,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -10157,7 +10157,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -10170,7 +10170,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -10183,7 +10183,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -10210,7 +10210,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -10223,7 +10223,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -10236,7 +10236,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MaintenancePositions", "inheritance": "", "abstract": false, @@ -10264,7 +10264,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MaintenanceInterval", "inheritance": "", "abstract": false, @@ -10302,7 +10302,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -10315,7 +10315,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -10328,7 +10328,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -10341,7 +10341,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -10354,7 +10354,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -10367,7 +10367,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -10380,7 +10380,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MaterialPositions", "inheritance": "", "abstract": false, @@ -10407,7 +10407,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MaintenancePosition", "inheritance": "", "abstract": false, @@ -10445,7 +10445,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ImageReference", "inheritance": "", "abstract": false, @@ -10473,7 +10473,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -10486,7 +10486,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -10499,7 +10499,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -10512,7 +10512,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MarketplaceAreaList", "inheritance": "", "abstract": false, @@ -10525,7 +10525,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MarketplaceManufacturerList", "inheritance": "", "abstract": false, @@ -10538,7 +10538,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MarketplaceModelGroupList", "inheritance": "", "abstract": false, @@ -10551,7 +10551,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MarketplaceModelList", "inheritance": "", "abstract": false, @@ -10564,7 +10564,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MarketplaceVehicleSectionList", "inheritance": "", "abstract": false, @@ -10577,7 +10577,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MarketplaceTypeLineList", "inheritance": "", "abstract": false, @@ -10590,7 +10590,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MarketplaceFuelConsumptionDataList", "inheritance": "", "abstract": false, @@ -10603,7 +10603,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MarketplaceFuelAccordingEnVkVList", "inheritance": "", "abstract": false, @@ -10616,7 +10616,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MarketplaceColorInteriorFittingsList", "inheritance": "", "abstract": false, @@ -10629,7 +10629,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -10642,7 +10642,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -10655,7 +10655,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -10668,7 +10668,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MarketplaceAccidentalDamageList", "inheritance": "", "abstract": false, @@ -10681,7 +10681,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -10694,7 +10694,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -10707,7 +10707,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MarketplaceWarrantyList", "inheritance": "", "abstract": false, @@ -10720,7 +10720,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -10733,7 +10733,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -10746,7 +10746,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MarketplaceEquipmentGroupList", "inheritance": "", "abstract": false, @@ -10759,7 +10759,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MarketplaceEquipmentGroupListN", "inheritance": "", "abstract": false, @@ -10772,7 +10772,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -10785,7 +10785,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -10798,7 +10798,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -10811,7 +10811,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -10824,7 +10824,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MPConfigIntroTextList", "inheritance": "", "abstract": false, @@ -10837,7 +10837,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MPConfigFinalTextList", "inheritance": "", "abstract": false, @@ -10864,7 +10864,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10892,7 +10892,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10920,7 +10920,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10948,7 +10948,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -10976,7 +10976,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11004,7 +11004,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11032,7 +11032,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11060,7 +11060,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11088,7 +11088,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11116,7 +11116,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11144,7 +11144,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11172,7 +11172,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EquipmentGroupItem", "inheritance": "", "abstract": false, @@ -11199,7 +11199,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EquipmentGroupItem", "inheritance": "", "abstract": false, @@ -11227,7 +11227,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TextItem", "inheritance": "", "abstract": false, @@ -11255,7 +11255,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TextItem", "inheritance": "", "abstract": false, @@ -11283,7 +11283,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -11296,7 +11296,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -11309,7 +11309,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -11322,7 +11322,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -11335,7 +11335,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -11348,7 +11348,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -11361,7 +11361,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -11374,7 +11374,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -11387,7 +11387,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -11400,7 +11400,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -11413,7 +11413,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -11426,7 +11426,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -11439,7 +11439,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -11452,7 +11452,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -11465,7 +11465,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -11478,7 +11478,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -11491,7 +11491,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -11504,7 +11504,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -11517,7 +11517,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -11530,7 +11530,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -11543,7 +11543,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -11556,7 +11556,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -11569,7 +11569,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -11582,7 +11582,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -11595,7 +11595,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -11608,7 +11608,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -11621,7 +11621,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -11634,7 +11634,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -11647,7 +11647,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -11660,7 +11660,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -11673,7 +11673,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -11686,7 +11686,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -11699,7 +11699,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -11712,7 +11712,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IncludedPositions", "inheritance": "", "abstract": false, @@ -11725,7 +11725,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -11738,7 +11738,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -11751,7 +11751,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -11764,7 +11764,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -11777,7 +11777,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -11790,7 +11790,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -11802,7 +11802,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -11815,7 +11815,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -11828,7 +11828,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "spHistPositionsSeq", "inheritance": "", "abstract": false, @@ -11841,7 +11841,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -11854,7 +11854,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -11866,7 +11866,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -11878,7 +11878,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -11890,7 +11890,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -11902,7 +11902,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -11914,7 +11914,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -11927,7 +11927,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -11952,7 +11952,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -11965,7 +11965,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -11978,7 +11978,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -12005,7 +12005,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MaterialPosition", "inheritance": "", "abstract": false, @@ -12071,7 +12071,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MetaPosition", "inheritance": "", "abstract": false, @@ -12099,7 +12099,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -12112,7 +12112,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -12125,7 +12125,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -12138,7 +12138,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -12151,7 +12151,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -12164,7 +12164,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -12177,7 +12177,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -12190,7 +12190,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -12203,7 +12203,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -12230,7 +12230,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -12243,7 +12243,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -12256,7 +12256,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString2", "inheritance": "", "abstract": false, @@ -12269,7 +12269,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString2", "inheritance": "", "abstract": false, @@ -12282,7 +12282,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ValueInfluencingFactors", "inheritance": "", "abstract": false, @@ -12309,7 +12309,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ValueInfluencingFactor", "inheritance": "", "abstract": false, @@ -12337,7 +12337,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -12350,7 +12350,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -12363,7 +12363,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -12376,7 +12376,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -12389,7 +12389,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -12402,7 +12402,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -12415,7 +12415,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -12428,7 +12428,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -12441,7 +12441,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -12454,7 +12454,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -12467,7 +12467,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ActualRepairCostList", "inheritance": "", "abstract": false, @@ -12494,7 +12494,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ActualRepairCost", "inheritance": "", "abstract": false, @@ -12522,7 +12522,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -12535,7 +12535,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -12548,7 +12548,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -12561,7 +12561,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -12574,7 +12574,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -12587,7 +12587,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -12600,7 +12600,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -12613,7 +12613,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -12626,7 +12626,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -12639,7 +12639,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -12652,7 +12652,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -12665,7 +12665,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -12678,7 +12678,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -12691,7 +12691,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -12704,7 +12704,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -12717,7 +12717,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -12730,7 +12730,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -12743,7 +12743,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -12756,7 +12756,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -12769,7 +12769,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -12782,7 +12782,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -12795,7 +12795,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -12808,7 +12808,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -12821,7 +12821,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldCharacter", "inheritance": "", "abstract": false, @@ -12834,7 +12834,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldCharacter", "inheritance": "", "abstract": false, @@ -12847,7 +12847,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -12860,7 +12860,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -12887,7 +12887,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PositionItaly", "inheritance": "", "abstract": false, @@ -12915,7 +12915,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -12928,7 +12928,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -12941,7 +12941,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -12954,7 +12954,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -12967,7 +12967,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -12980,7 +12980,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -12993,7 +12993,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -13006,7 +13006,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -13019,7 +13019,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -13032,7 +13032,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -13045,7 +13045,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -13058,7 +13058,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -13071,7 +13071,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -13084,7 +13084,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -13111,7 +13111,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -13124,7 +13124,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -13137,7 +13137,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -13150,7 +13150,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -13163,7 +13163,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -13176,7 +13176,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -13189,7 +13189,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -13202,7 +13202,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -13215,7 +13215,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -13228,7 +13228,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -13335,7 +13335,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ProcedureRelatedParameter", "inheritance": "", "abstract": false, @@ -13363,7 +13363,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CustomDataList", "inheritance": "", "abstract": false, @@ -13376,7 +13376,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DamageManagement", "inheritance": "", "abstract": false, @@ -13389,7 +13389,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "InvoiceDetail", "inheritance": "", "abstract": false, @@ -13402,7 +13402,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AdditionalInsuranceData", "inheritance": "", "abstract": false, @@ -13429,7 +13429,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "address", "inheritance": "", "abstract": false, @@ -13457,7 +13457,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString10", "inheritance": "", "abstract": false, @@ -13470,7 +13470,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString10", "inheritance": "", "abstract": false, @@ -13483,7 +13483,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -13496,7 +13496,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -13509,7 +13509,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -13522,7 +13522,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -13535,7 +13535,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -13548,7 +13548,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -13561,7 +13561,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -13574,7 +13574,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -13587,7 +13587,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -13600,7 +13600,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -13613,7 +13613,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -13626,7 +13626,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -13639,7 +13639,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -13652,7 +13652,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -13665,7 +13665,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -13678,7 +13678,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -13691,7 +13691,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -13704,7 +13704,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -13784,7 +13784,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString8", "inheritance": "", "abstract": false, @@ -13797,7 +13797,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString30", "inheritance": "", "abstract": false, @@ -13810,7 +13810,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString2", "inheritance": "", "abstract": false, @@ -13823,7 +13823,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString30", "inheritance": "", "abstract": false, @@ -13836,7 +13836,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString9", "inheritance": "", "abstract": false, @@ -13849,7 +13849,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString6", "inheritance": "", "abstract": false, @@ -13862,7 +13862,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString6", "inheritance": "", "abstract": false, @@ -13875,7 +13875,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString30", "inheritance": "", "abstract": false, @@ -13888,7 +13888,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -13901,7 +13901,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString30", "inheritance": "", "abstract": false, @@ -13914,7 +13914,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -13927,7 +13927,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -13940,7 +13940,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -13953,7 +13953,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString30", "inheritance": "", "abstract": false, @@ -13966,7 +13966,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString6", "inheritance": "", "abstract": false, @@ -13979,7 +13979,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString30", "inheritance": "", "abstract": false, @@ -13992,7 +13992,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -14005,7 +14005,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -14032,7 +14032,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -14045,7 +14045,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -14058,7 +14058,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Vehicle", "inheritance": "", "abstract": false, @@ -14071,7 +14071,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RepairWages", "inheritance": "", "abstract": false, @@ -14084,7 +14084,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RepairParameters", "inheritance": "", "abstract": false, @@ -14097,7 +14097,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ProcedureRelatedParameters", "inheritance": "", "abstract": false, @@ -14110,7 +14110,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RepairPositions", "inheritance": "", "abstract": false, @@ -14123,7 +14123,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -14136,7 +14136,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -14149,7 +14149,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -14162,7 +14162,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "calcResult", "inheritance": "", "abstract": false, @@ -14175,7 +14175,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "calcResult", "inheritance": "", "abstract": false, @@ -14188,7 +14188,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "calcResult", "inheritance": "", "abstract": false, @@ -14201,7 +14201,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "calcResultItaly", "inheritance": "", "abstract": false, @@ -14214,7 +14214,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "calcResultItaly", "inheritance": "", "abstract": false, @@ -14227,7 +14227,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "calcResultItaly", "inheritance": "", "abstract": false, @@ -14240,7 +14240,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "domusCalcResult", "inheritance": "", "abstract": false, @@ -14253,7 +14253,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "domusCalcResult", "inheritance": "", "abstract": false, @@ -14266,7 +14266,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "domusCalcResult", "inheritance": "", "abstract": false, @@ -14279,7 +14279,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "calcResult", "inheritance": "", "abstract": false, @@ -14292,7 +14292,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "calcResult", "inheritance": "", "abstract": false, @@ -14305,7 +14305,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CalcResultsHistory", "inheritance": "", "abstract": false, @@ -14318,7 +14318,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "calcResult", "inheritance": "", "abstract": false, @@ -14331,7 +14331,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DiscountPositions", "inheritance": "", "abstract": false, @@ -14344,7 +14344,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CalculationSummary", "inheritance": "", "abstract": false, @@ -14357,7 +14357,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SurchargeSettings", "inheritance": "", "abstract": false, @@ -14384,7 +14384,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -14397,7 +14397,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -14410,7 +14410,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -14423,7 +14423,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -14436,7 +14436,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -14449,7 +14449,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -14462,7 +14462,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -14475,7 +14475,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -14488,7 +14488,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -14501,7 +14501,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -14514,7 +14514,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -14527,7 +14527,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -14540,7 +14540,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -14553,7 +14553,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -14566,7 +14566,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -14579,7 +14579,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -14592,7 +14592,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -14605,7 +14605,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -14618,7 +14618,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -14631,7 +14631,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -14644,7 +14644,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AdditionalData", "inheritance": "", "abstract": false, @@ -14657,7 +14657,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MetaPositions", "inheritance": "", "abstract": false, @@ -14670,7 +14670,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -14683,7 +14683,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -14696,7 +14696,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -14709,7 +14709,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -14722,7 +14722,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString3", "inheritance": "", "abstract": false, @@ -14735,7 +14735,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString40", "inheritance": "", "abstract": false, @@ -14748,7 +14748,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -14761,7 +14761,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -14774,7 +14774,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -14787,7 +14787,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -14800,7 +14800,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DATProcessIdCommentList", "inheritance": "", "abstract": false, @@ -14813,7 +14813,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -14826,7 +14826,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -14839,7 +14839,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -14852,7 +14852,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -14865,7 +14865,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -14878,7 +14878,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -14891,7 +14891,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -14904,7 +14904,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -14917,7 +14917,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -14930,7 +14930,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -14957,7 +14957,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -14970,7 +14970,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -14983,7 +14983,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -14996,7 +14996,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15009,7 +15009,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15022,7 +15022,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15035,7 +15035,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15048,7 +15048,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15061,7 +15061,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -15074,7 +15074,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15087,7 +15087,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15100,7 +15100,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15113,7 +15113,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15126,7 +15126,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15139,7 +15139,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15152,7 +15152,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15165,7 +15165,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15178,7 +15178,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15191,7 +15191,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15204,7 +15204,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15217,7 +15217,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -15230,7 +15230,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -15243,7 +15243,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -15256,7 +15256,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -15269,7 +15269,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -15282,7 +15282,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -15295,7 +15295,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -15308,7 +15308,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -15321,7 +15321,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -15334,7 +15334,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -15347,7 +15347,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -15360,7 +15360,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -15373,7 +15373,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -15386,7 +15386,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -15399,7 +15399,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -15412,7 +15412,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -15425,7 +15425,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -15438,7 +15438,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15451,7 +15451,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15464,7 +15464,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15477,7 +15477,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15490,7 +15490,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15503,7 +15503,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -15516,7 +15516,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15529,7 +15529,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -15542,7 +15542,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -15555,7 +15555,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15568,7 +15568,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15581,7 +15581,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15594,7 +15594,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15607,7 +15607,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -15620,7 +15620,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -15633,7 +15633,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -15646,7 +15646,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15659,7 +15659,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15672,7 +15672,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15685,7 +15685,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15698,7 +15698,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15711,7 +15711,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15724,7 +15724,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15737,7 +15737,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15750,7 +15750,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15763,7 +15763,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15776,7 +15776,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15789,7 +15789,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15802,7 +15802,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15815,7 +15815,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -15828,7 +15828,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -15841,7 +15841,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -15854,7 +15854,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -15867,7 +15867,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -15880,7 +15880,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15893,7 +15893,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15906,7 +15906,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15919,7 +15919,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15932,7 +15932,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15945,7 +15945,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -15958,7 +15958,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -15971,7 +15971,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -15984,7 +15984,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -15997,7 +15997,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -16010,7 +16010,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16023,7 +16023,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16036,7 +16036,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16049,7 +16049,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16062,7 +16062,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16075,7 +16075,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16088,7 +16088,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -16101,7 +16101,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16114,7 +16114,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16127,7 +16127,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16140,7 +16140,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16153,7 +16153,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16166,7 +16166,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -16179,7 +16179,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -16192,7 +16192,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldCharacter", "inheritance": "", "abstract": false, @@ -16205,7 +16205,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16218,7 +16218,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16231,7 +16231,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -16244,7 +16244,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -16257,7 +16257,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -16270,7 +16270,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -16283,7 +16283,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -16296,7 +16296,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -16309,7 +16309,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -16322,7 +16322,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16335,7 +16335,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16348,7 +16348,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16361,7 +16361,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16374,7 +16374,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16387,7 +16387,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16400,7 +16400,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16413,7 +16413,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16426,7 +16426,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16439,7 +16439,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16452,7 +16452,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16465,7 +16465,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16478,7 +16478,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -16491,7 +16491,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -16504,7 +16504,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16517,7 +16517,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -16530,7 +16530,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -16543,7 +16543,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -16556,7 +16556,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -16569,7 +16569,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -16582,7 +16582,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16595,7 +16595,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16608,7 +16608,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16621,7 +16621,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16634,7 +16634,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16647,7 +16647,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16660,7 +16660,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16673,7 +16673,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LacquerAdjustments", "inheritance": "", "abstract": false, @@ -16686,7 +16686,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -16699,7 +16699,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -16712,7 +16712,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -16725,7 +16725,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -16738,7 +16738,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -16765,7 +16765,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -16778,7 +16778,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -16791,7 +16791,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -16804,7 +16804,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -16817,7 +16817,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -16830,7 +16830,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -16843,7 +16843,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -16856,7 +16856,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -16869,7 +16869,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16882,7 +16882,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -16895,7 +16895,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -16908,7 +16908,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -16921,7 +16921,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16934,7 +16934,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -16947,7 +16947,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -16960,7 +16960,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -16973,7 +16973,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -16986,7 +16986,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -16999,7 +16999,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -17012,7 +17012,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17025,7 +17025,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -17038,7 +17038,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -17051,7 +17051,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -17064,7 +17064,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -17077,7 +17077,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -17090,7 +17090,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -17103,7 +17103,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17116,7 +17116,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17129,7 +17129,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -17142,7 +17142,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17155,7 +17155,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -17168,7 +17168,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -17181,7 +17181,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -17194,7 +17194,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -17207,7 +17207,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -17220,7 +17220,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -17233,7 +17233,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17246,7 +17246,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17259,7 +17259,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17272,7 +17272,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17285,7 +17285,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -17298,7 +17298,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17311,7 +17311,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17324,7 +17324,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17337,7 +17337,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -17350,7 +17350,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -17363,7 +17363,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -17376,7 +17376,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -17389,7 +17389,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -17402,7 +17402,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -17415,7 +17415,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -17428,7 +17428,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -17441,7 +17441,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -17454,7 +17454,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -17467,7 +17467,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17480,7 +17480,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17493,7 +17493,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17506,7 +17506,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -17519,7 +17519,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -17532,7 +17532,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -17545,7 +17545,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17558,7 +17558,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17571,7 +17571,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -17584,7 +17584,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -17597,7 +17597,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -17610,7 +17610,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17623,7 +17623,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17636,7 +17636,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17649,7 +17649,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17662,7 +17662,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17675,7 +17675,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17688,7 +17688,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -17701,7 +17701,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -17714,7 +17714,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -17727,7 +17727,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -17740,7 +17740,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -17753,7 +17753,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17766,7 +17766,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17779,7 +17779,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17792,7 +17792,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -17805,7 +17805,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -17818,7 +17818,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -17831,7 +17831,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldCharacter", "inheritance": "", "abstract": false, @@ -17844,7 +17844,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -17857,7 +17857,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17870,7 +17870,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17883,7 +17883,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -17896,7 +17896,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -17909,7 +17909,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17922,7 +17922,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -17935,7 +17935,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17948,7 +17948,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17961,7 +17961,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17974,7 +17974,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -17987,7 +17987,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -18000,7 +18000,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -18013,7 +18013,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -18026,7 +18026,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -18039,7 +18039,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -18052,7 +18052,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -18065,7 +18065,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -18078,7 +18078,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -18091,7 +18091,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18104,7 +18104,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -18117,7 +18117,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -18130,7 +18130,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18143,7 +18143,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18156,7 +18156,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18169,7 +18169,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -18182,7 +18182,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldCharacter", "inheritance": "", "abstract": false, @@ -18195,7 +18195,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldCharacter", "inheritance": "", "abstract": false, @@ -18208,7 +18208,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18221,7 +18221,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18234,7 +18234,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -18247,7 +18247,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -18260,7 +18260,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -18273,7 +18273,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -18286,7 +18286,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -18299,7 +18299,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -18312,7 +18312,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -18325,7 +18325,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -18352,7 +18352,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RepairPosition", "inheritance": "", "abstract": false, @@ -18380,7 +18380,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -18393,7 +18393,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -18420,7 +18420,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -18433,7 +18433,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18446,7 +18446,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18459,7 +18459,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18472,7 +18472,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18485,7 +18485,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18498,7 +18498,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18511,7 +18511,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18524,7 +18524,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18537,7 +18537,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18550,7 +18550,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18563,7 +18563,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18576,7 +18576,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18589,7 +18589,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18602,7 +18602,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18615,7 +18615,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18628,7 +18628,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18641,7 +18641,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18654,7 +18654,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18667,7 +18667,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18680,7 +18680,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18693,7 +18693,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18706,7 +18706,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18719,7 +18719,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18732,7 +18732,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18759,7 +18759,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -18772,7 +18772,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -18785,7 +18785,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18798,7 +18798,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -18811,7 +18811,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -18824,7 +18824,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -18837,7 +18837,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -18850,7 +18850,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -18863,7 +18863,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IncludedPositions", "inheritance": "", "abstract": false, @@ -18876,7 +18876,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -18889,7 +18889,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -18902,7 +18902,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18915,7 +18915,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -18942,7 +18942,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RiskPosition", "inheritance": "", "abstract": false, @@ -18970,7 +18970,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString2", "inheritance": "", "abstract": false, @@ -18983,7 +18983,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString2", "inheritance": "", "abstract": false, @@ -18996,7 +18996,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString2", "inheritance": "", "abstract": false, @@ -19009,7 +19009,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString2", "inheritance": "", "abstract": false, @@ -19022,7 +19022,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString2", "inheritance": "", "abstract": false, @@ -19035,7 +19035,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString2", "inheritance": "", "abstract": false, @@ -19048,7 +19048,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -19061,7 +19061,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -19074,7 +19074,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -19087,7 +19087,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -19100,7 +19100,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -19127,7 +19127,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString10", "inheritance": "", "abstract": false, @@ -19140,7 +19140,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString10", "inheritance": "", "abstract": false, @@ -19153,7 +19153,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -19166,7 +19166,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -19179,7 +19179,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -19192,7 +19192,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -19205,7 +19205,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -19218,7 +19218,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -19231,7 +19231,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -19244,7 +19244,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -19257,7 +19257,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -19270,7 +19270,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -19283,7 +19283,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -19296,7 +19296,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -19309,7 +19309,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -19322,7 +19322,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -19335,7 +19335,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -19348,7 +19348,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -19361,7 +19361,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -19374,7 +19374,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -19387,7 +19387,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -19400,7 +19400,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -19413,7 +19413,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -19426,7 +19426,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -19439,7 +19439,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -19452,7 +19452,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -19465,7 +19465,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -19478,7 +19478,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -19491,7 +19491,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -19504,7 +19504,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -19517,7 +19517,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -19530,7 +19530,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -19543,7 +19543,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -19556,7 +19556,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -19569,7 +19569,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -19582,7 +19582,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -19595,7 +19595,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -19608,7 +19608,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -19621,7 +19621,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -19634,7 +19634,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -19647,7 +19647,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -19674,7 +19674,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -19687,7 +19687,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -19700,7 +19700,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -19713,7 +19713,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -19726,7 +19726,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -19739,7 +19739,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -19752,7 +19752,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -19765,7 +19765,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -19778,7 +19778,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -19791,7 +19791,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -19804,7 +19804,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -19817,7 +19817,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -19830,7 +19830,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -19843,7 +19843,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -19870,7 +19870,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MarketplaceImageList", "inheritance": "", "abstract": false, @@ -19897,7 +19897,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -19910,7 +19910,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "decimal", "inheritance": "", "abstract": false, @@ -19923,7 +19923,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -19950,7 +19950,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -19963,7 +19963,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -19976,7 +19976,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -19989,7 +19989,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -20002,7 +20002,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -20015,7 +20015,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "decimal", "inheritance": "", "abstract": false, @@ -20028,7 +20028,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -20041,7 +20041,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "decimal", "inheritance": "", "abstract": false, @@ -20054,7 +20054,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -20067,7 +20067,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "decimal", "inheritance": "", "abstract": false, @@ -20080,7 +20080,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -20093,7 +20093,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "decimal", "inheritance": "", "abstract": false, @@ -20106,7 +20106,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -20119,7 +20119,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "equipSequence", "inheritance": "", "abstract": false, @@ -20132,7 +20132,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -20145,7 +20145,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "decimal", "inheritance": "", "abstract": false, @@ -20158,7 +20158,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "decimal", "inheritance": "", "abstract": false, @@ -20171,7 +20171,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "spHistPositionsSeq", "inheritance": "", "abstract": false, @@ -20184,7 +20184,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integer", "inheritance": "", "abstract": false, @@ -20211,7 +20211,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SparePartPosition", "inheritance": "", "abstract": false, @@ -20239,7 +20239,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LacquerPosition", "inheritance": "", "abstract": false, @@ -20267,7 +20267,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BaseSummaryItaly", "inheritance": "", "abstract": false, @@ -20280,7 +20280,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LacquerSummaryItaly", "inheritance": "", "abstract": false, @@ -20293,7 +20293,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WorkSummaryItaly", "inheritance": "", "abstract": false, @@ -20306,7 +20306,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TotalSummaryItaly", "inheritance": "", "abstract": false, @@ -20383,7 +20383,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -20409,7 +20409,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SurchargeSetting", "inheritance": "", "abstract": false, @@ -20437,7 +20437,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FillingQuantities", "inheritance": "", "abstract": false, @@ -20450,7 +20450,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -20463,7 +20463,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -20476,7 +20476,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -20489,7 +20489,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString1000", "inheritance": "", "abstract": false, @@ -20502,7 +20502,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -20515,7 +20515,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -20528,7 +20528,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -20541,7 +20541,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -20554,7 +20554,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -20567,7 +20567,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -20580,7 +20580,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -20593,7 +20593,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -20606,7 +20606,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -20619,7 +20619,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -20632,7 +20632,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -20645,7 +20645,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -20658,7 +20658,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -20671,7 +20671,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString2", "inheritance": "", "abstract": false, @@ -20684,7 +20684,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -20697,7 +20697,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -20710,7 +20710,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -20723,7 +20723,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -20736,7 +20736,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -20749,7 +20749,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -20762,7 +20762,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -20775,7 +20775,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -20788,7 +20788,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -20801,7 +20801,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -20814,7 +20814,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -20827,7 +20827,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -20840,7 +20840,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -20853,7 +20853,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -20866,7 +20866,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -20879,7 +20879,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -20892,7 +20892,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -20905,7 +20905,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -20918,7 +20918,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -20931,7 +20931,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -20944,7 +20944,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -20957,7 +20957,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -20970,7 +20970,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -20983,7 +20983,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -20996,7 +20996,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21009,7 +21009,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21022,7 +21022,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -21035,7 +21035,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -21048,7 +21048,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -21061,7 +21061,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -21074,7 +21074,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString30", "inheritance": "", "abstract": false, @@ -21087,7 +21087,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString30", "inheritance": "", "abstract": false, @@ -21100,7 +21100,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -21113,7 +21113,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -21126,7 +21126,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -21139,7 +21139,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -21152,7 +21152,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -21165,7 +21165,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -21178,7 +21178,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -21191,7 +21191,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -21204,7 +21204,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -21217,7 +21217,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -21230,7 +21230,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -21243,7 +21243,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -21256,7 +21256,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -21269,7 +21269,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -21282,7 +21282,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21295,7 +21295,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21308,7 +21308,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21321,7 +21321,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21334,7 +21334,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21347,7 +21347,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21360,7 +21360,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21373,7 +21373,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21386,7 +21386,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21399,7 +21399,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21412,7 +21412,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21425,7 +21425,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21438,7 +21438,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21451,7 +21451,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21464,7 +21464,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21477,7 +21477,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21490,7 +21490,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21503,7 +21503,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21516,7 +21516,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21529,7 +21529,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21542,7 +21542,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21555,7 +21555,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21568,7 +21568,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21581,7 +21581,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21594,7 +21594,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21607,7 +21607,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21620,7 +21620,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21633,7 +21633,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21646,7 +21646,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21659,7 +21659,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21672,7 +21672,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21685,7 +21685,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21698,7 +21698,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21711,7 +21711,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21724,7 +21724,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21737,7 +21737,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21750,7 +21750,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21763,7 +21763,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21776,7 +21776,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21789,7 +21789,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21802,7 +21802,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21815,7 +21815,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21828,7 +21828,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21841,7 +21841,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21854,7 +21854,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21867,7 +21867,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -21880,7 +21880,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString5", "inheritance": "", "abstract": false, @@ -21893,7 +21893,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString5", "inheritance": "", "abstract": false, @@ -21906,7 +21906,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmissionClassN", "inheritance": "", "abstract": false, @@ -21919,7 +21919,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString1000", "inheritance": "", "abstract": false, @@ -21932,7 +21932,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString1000", "inheritance": "", "abstract": false, @@ -21945,7 +21945,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString1000", "inheritance": "", "abstract": false, @@ -21958,7 +21958,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString1000", "inheritance": "", "abstract": false, @@ -21971,7 +21971,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString10", "inheritance": "", "abstract": false, @@ -21984,7 +21984,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -21997,7 +21997,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -22010,7 +22010,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString1000", "inheritance": "", "abstract": false, @@ -22023,7 +22023,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString1000", "inheritance": "", "abstract": false, @@ -22036,7 +22036,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString2", "inheritance": "", "abstract": false, @@ -22049,7 +22049,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString1000", "inheritance": "", "abstract": false, @@ -22062,7 +22062,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString1000", "inheritance": "", "abstract": false, @@ -22075,7 +22075,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -22088,7 +22088,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -22101,7 +22101,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -22114,7 +22114,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -22127,7 +22127,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -22140,7 +22140,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -22153,7 +22153,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -22166,7 +22166,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -22179,7 +22179,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -22192,7 +22192,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -22205,7 +22205,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -22218,7 +22218,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -22231,7 +22231,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -22244,7 +22244,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -22257,7 +22257,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -22270,7 +22270,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -22283,7 +22283,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString30", "inheritance": "", "abstract": false, @@ -22296,7 +22296,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString2", "inheritance": "", "abstract": false, @@ -22309,7 +22309,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString2", "inheritance": "", "abstract": false, @@ -22322,7 +22322,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString2", "inheritance": "", "abstract": false, @@ -22335,7 +22335,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -22348,7 +22348,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString1000", "inheritance": "", "abstract": false, @@ -22361,7 +22361,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -22374,7 +22374,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString30", "inheritance": "", "abstract": false, @@ -22387,7 +22387,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -22400,7 +22400,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString30", "inheritance": "", "abstract": false, @@ -22413,7 +22413,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString30", "inheritance": "", "abstract": false, @@ -22426,7 +22426,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString1000", "inheritance": "", "abstract": false, @@ -22439,7 +22439,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString2", "inheritance": "", "abstract": false, @@ -22452,7 +22452,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString2", "inheritance": "", "abstract": false, @@ -22465,7 +22465,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString2", "inheritance": "", "abstract": false, @@ -22478,7 +22478,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -22491,7 +22491,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -22504,7 +22504,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -22517,7 +22517,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -22530,7 +22530,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -22543,7 +22543,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -22556,7 +22556,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -22569,7 +22569,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString10", "inheritance": "", "abstract": false, @@ -22582,7 +22582,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -22595,7 +22595,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -22608,7 +22608,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -22621,7 +22621,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -22634,7 +22634,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -22647,7 +22647,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -22660,7 +22660,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -22673,7 +22673,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -22686,7 +22686,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -22699,7 +22699,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -22712,7 +22712,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -22725,7 +22725,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -22738,7 +22738,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -22751,7 +22751,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -22764,7 +22764,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -22777,7 +22777,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -22790,7 +22790,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -22803,7 +22803,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -22816,7 +22816,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -22829,7 +22829,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -22842,7 +22842,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -22855,7 +22855,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -22868,7 +22868,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -22881,7 +22881,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -22894,7 +22894,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -22907,7 +22907,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -22920,7 +22920,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -22933,7 +22933,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -22946,7 +22946,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -22959,7 +22959,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -22972,7 +22972,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -22985,7 +22985,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -22998,7 +22998,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23011,7 +23011,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -23024,7 +23024,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -23037,7 +23037,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -23050,7 +23050,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -23063,7 +23063,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -23076,7 +23076,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -23089,7 +23089,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -23102,7 +23102,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -23115,7 +23115,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -23128,7 +23128,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -23141,7 +23141,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23154,7 +23154,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23167,7 +23167,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -23180,7 +23180,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -23193,7 +23193,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23206,7 +23206,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23219,7 +23219,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23232,7 +23232,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23245,7 +23245,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23258,7 +23258,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23271,7 +23271,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23284,7 +23284,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23297,7 +23297,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -23310,7 +23310,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -23323,7 +23323,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -23336,7 +23336,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -23349,7 +23349,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString2", "inheritance": "", "abstract": false, @@ -23362,7 +23362,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString2", "inheritance": "", "abstract": false, @@ -23375,7 +23375,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -23388,7 +23388,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -23401,7 +23401,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -23414,7 +23414,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -23427,7 +23427,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -23440,7 +23440,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -23467,7 +23467,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -23480,7 +23480,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -23507,7 +23507,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -23520,7 +23520,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -23533,7 +23533,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Axles", "inheritance": "", "abstract": false, @@ -23560,7 +23560,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Axle", "inheritance": "", "abstract": false, @@ -23588,7 +23588,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TotalSummaryItemItaly", "inheritance": "", "abstract": false, @@ -23616,7 +23616,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -23629,7 +23629,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -23642,7 +23642,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23655,7 +23655,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23668,7 +23668,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23681,7 +23681,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23694,7 +23694,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23707,7 +23707,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23734,7 +23734,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -23747,7 +23747,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PlanData", "inheritance": "", "abstract": false, @@ -23760,7 +23760,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Purchase", "inheritance": "", "abstract": false, @@ -23773,7 +23773,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PriceCalculation", "inheritance": "", "abstract": false, @@ -23786,7 +23786,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Admission", "inheritance": "", "abstract": false, @@ -23799,7 +23799,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Sale", "inheritance": "", "abstract": false, @@ -23812,7 +23812,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SalesPreparation", "inheritance": "", "abstract": false, @@ -23839,7 +23839,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MarketplacePreparation", "inheritance": "", "abstract": false, @@ -23852,7 +23852,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SalesOfferList", "inheritance": "", "abstract": false, @@ -23879,7 +23879,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SalesOffer", "inheritance": "", "abstract": false, @@ -23907,7 +23907,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23920,7 +23920,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23933,7 +23933,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23946,7 +23946,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -23959,7 +23959,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -23972,7 +23972,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -23985,7 +23985,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -23998,7 +23998,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -24011,7 +24011,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -24024,7 +24024,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "address", "inheritance": "", "abstract": false, @@ -24037,7 +24037,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "address", "inheritance": "", "abstract": false, @@ -24050,7 +24050,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "address", "inheritance": "", "abstract": false, @@ -24063,7 +24063,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "address", "inheritance": "", "abstract": false, @@ -24076,7 +24076,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "address", "inheritance": "", "abstract": false, @@ -24089,7 +24089,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "address", "inheritance": "", "abstract": false, @@ -24102,7 +24102,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "address", "inheritance": "", "abstract": false, @@ -24115,7 +24115,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "address", "inheritance": "", "abstract": false, @@ -24128,7 +24128,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "address", "inheritance": "", "abstract": false, @@ -24141,7 +24141,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "address", "inheritance": "", "abstract": false, @@ -24154,7 +24154,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "address", "inheritance": "", "abstract": false, @@ -24167,7 +24167,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "address", "inheritance": "", "abstract": false, @@ -24180,7 +24180,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "address", "inheritance": "", "abstract": false, @@ -24193,7 +24193,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ClientContactAddresses", "inheritance": "", "abstract": false, @@ -24206,7 +24206,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Prospects", "inheritance": "", "abstract": false, @@ -24219,7 +24219,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddonList", "inheritance": "", "abstract": false, @@ -24246,7 +24246,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -24259,7 +24259,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -24272,7 +24272,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -24285,7 +24285,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -24298,7 +24298,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -24311,7 +24311,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -24324,7 +24324,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -24337,7 +24337,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -24350,7 +24350,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -24363,7 +24363,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -24376,7 +24376,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -24389,7 +24389,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -24402,7 +24402,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -24415,7 +24415,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -24428,7 +24428,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -24441,7 +24441,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -24454,7 +24454,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -24467,7 +24467,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -24480,7 +24480,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -24493,7 +24493,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -24506,7 +24506,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -24519,7 +24519,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -24532,7 +24532,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -24545,7 +24545,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -24558,7 +24558,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -24571,7 +24571,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -24584,7 +24584,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -24597,7 +24597,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -24610,7 +24610,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -24623,7 +24623,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TechInfo", "inheritance": "", "abstract": false, @@ -24636,7 +24636,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Equipment", "inheritance": "", "abstract": false, @@ -24649,7 +24649,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CoolingUnit", "inheritance": "", "abstract": false, @@ -24662,7 +24662,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Condition", "inheritance": "", "abstract": false, @@ -24723,7 +24723,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -24736,7 +24736,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -24749,7 +24749,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -24762,7 +24762,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -24775,7 +24775,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -24788,7 +24788,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -24801,7 +24801,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -24814,7 +24814,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -24827,7 +24827,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -24840,7 +24840,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -24853,7 +24853,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -24866,7 +24866,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -24879,7 +24879,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -24892,7 +24892,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -24905,7 +24905,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -24918,7 +24918,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -24945,7 +24945,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -24958,7 +24958,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -24971,7 +24971,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -24984,7 +24984,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -25038,7 +25038,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -25051,7 +25051,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -25064,7 +25064,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -25077,7 +25077,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -25090,7 +25090,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -25103,7 +25103,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -25157,7 +25157,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -25170,7 +25170,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -25183,7 +25183,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -25196,7 +25196,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -25209,7 +25209,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -25222,7 +25222,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "VINContainers", "inheritance": "", "abstract": false, @@ -25276,7 +25276,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -25289,7 +25289,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -25302,7 +25302,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -25356,7 +25356,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -25369,7 +25369,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "VINECodes", "inheritance": "", "abstract": false, @@ -25382,7 +25382,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "VINEquipments", "inheritance": "", "abstract": false, @@ -25395,7 +25395,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "VINColors", "inheritance": "", "abstract": false, @@ -25408,7 +25408,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "VINVehicle", "inheritance": "", "abstract": false, @@ -25447,7 +25447,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -25460,7 +25460,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -25473,7 +25473,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -25500,7 +25500,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -25513,7 +25513,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -25526,7 +25526,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -25553,7 +25553,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -25566,7 +25566,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -25579,7 +25579,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -25592,7 +25592,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -25605,7 +25605,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -25618,7 +25618,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -25631,7 +25631,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -25644,7 +25644,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -25657,7 +25657,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -25670,7 +25670,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -25683,7 +25683,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -25696,7 +25696,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -25709,7 +25709,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -25722,7 +25722,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -25735,7 +25735,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -25748,7 +25748,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -25761,7 +25761,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -25774,7 +25774,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -25787,7 +25787,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -25800,7 +25800,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -25813,7 +25813,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -25826,7 +25826,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -25839,7 +25839,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -25852,7 +25852,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -25865,7 +25865,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -25878,7 +25878,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -25891,7 +25891,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -25904,7 +25904,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -25917,7 +25917,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -25930,7 +25930,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -25943,7 +25943,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -25956,7 +25956,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -25969,7 +25969,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -25982,7 +25982,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -25995,7 +25995,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26008,7 +26008,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26021,7 +26021,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26034,7 +26034,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26047,7 +26047,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26060,7 +26060,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26073,7 +26073,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26086,7 +26086,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26099,7 +26099,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26112,7 +26112,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26125,7 +26125,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26138,7 +26138,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26151,7 +26151,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26164,7 +26164,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26177,7 +26177,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26190,7 +26190,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26203,7 +26203,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26216,7 +26216,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26229,7 +26229,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26242,7 +26242,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26255,7 +26255,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26268,7 +26268,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26281,7 +26281,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26294,7 +26294,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26307,7 +26307,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26320,7 +26320,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26333,7 +26333,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26346,7 +26346,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26359,7 +26359,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26372,7 +26372,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26385,7 +26385,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26398,7 +26398,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26411,7 +26411,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -26424,7 +26424,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -26437,7 +26437,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -26450,7 +26450,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -26463,7 +26463,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -26476,7 +26476,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -26489,7 +26489,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -26502,7 +26502,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -26515,7 +26515,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -26528,7 +26528,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -26541,7 +26541,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -26554,7 +26554,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -26567,7 +26567,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -26580,7 +26580,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -26593,7 +26593,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -26606,7 +26606,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -26619,7 +26619,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26632,7 +26632,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26645,7 +26645,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -26658,7 +26658,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -26671,7 +26671,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -26684,7 +26684,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -26697,7 +26697,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -26710,7 +26710,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -26723,7 +26723,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -26736,7 +26736,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -26785,7 +26785,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString3", "inheritance": "", "abstract": false, @@ -26798,7 +26798,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString3", "inheritance": "", "abstract": false, @@ -26811,7 +26811,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Vehicle", "inheritance": "", "abstract": false, @@ -26838,7 +26838,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -26851,7 +26851,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -26864,7 +26864,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -26877,7 +26877,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -26890,7 +26890,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -26903,7 +26903,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -26916,7 +26916,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -26929,7 +26929,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26942,7 +26942,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26955,7 +26955,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26968,7 +26968,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -26981,7 +26981,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -27008,7 +27008,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString17", "inheritance": "", "abstract": false, @@ -27021,7 +27021,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString15", "inheritance": "", "abstract": false, @@ -27034,7 +27034,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString5", "inheritance": "", "abstract": false, @@ -27047,7 +27047,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -27060,7 +27060,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -27073,7 +27073,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -27086,7 +27086,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -27099,7 +27099,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -27112,7 +27112,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -27125,7 +27125,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -27138,7 +27138,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -27151,7 +27151,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -27164,7 +27164,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -27177,7 +27177,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -27190,7 +27190,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -27203,7 +27203,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString60", "inheritance": "", "abstract": false, @@ -27216,7 +27216,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -27229,7 +27229,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString4000", "inheritance": "", "abstract": false, @@ -27242,7 +27242,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString80", "inheritance": "", "abstract": false, @@ -27255,7 +27255,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString80", "inheritance": "", "abstract": false, @@ -27268,7 +27268,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString80", "inheritance": "", "abstract": false, @@ -27281,7 +27281,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString80", "inheritance": "", "abstract": false, @@ -27294,7 +27294,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString80", "inheritance": "", "abstract": false, @@ -27307,7 +27307,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString80", "inheritance": "", "abstract": false, @@ -27320,7 +27320,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString80", "inheritance": "", "abstract": false, @@ -27333,7 +27333,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString80", "inheritance": "", "abstract": false, @@ -27346,7 +27346,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString80", "inheritance": "", "abstract": false, @@ -27359,7 +27359,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString80", "inheritance": "", "abstract": false, @@ -27372,7 +27372,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString80", "inheritance": "", "abstract": false, @@ -27385,7 +27385,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString80", "inheritance": "", "abstract": false, @@ -27398,7 +27398,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString80", "inheritance": "", "abstract": false, @@ -27411,7 +27411,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString80", "inheritance": "", "abstract": false, @@ -27424,7 +27424,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString80", "inheritance": "", "abstract": false, @@ -27437,7 +27437,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString80", "inheritance": "", "abstract": false, @@ -27450,7 +27450,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString80", "inheritance": "", "abstract": false, @@ -27463,7 +27463,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString80", "inheritance": "", "abstract": false, @@ -27476,7 +27476,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString80", "inheritance": "", "abstract": false, @@ -27489,7 +27489,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString80", "inheritance": "", "abstract": false, @@ -27502,7 +27502,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -27515,7 +27515,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString80", "inheritance": "", "abstract": false, @@ -27528,7 +27528,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString80", "inheritance": "", "abstract": false, @@ -27541,7 +27541,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -27554,7 +27554,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -27567,7 +27567,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -27580,7 +27580,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -27593,7 +27593,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -27606,7 +27606,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -27619,7 +27619,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -27632,7 +27632,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -27645,7 +27645,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -27658,7 +27658,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -27671,7 +27671,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27684,7 +27684,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27697,7 +27697,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -27709,7 +27709,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "boolean", "inheritance": "", "abstract": false, @@ -27721,7 +27721,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -27734,7 +27734,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -27747,7 +27747,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -27760,7 +27760,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -27773,7 +27773,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -27786,7 +27786,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldCharacter", "inheritance": "", "abstract": false, @@ -27799,7 +27799,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27812,7 +27812,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "KbaNumbersN", "inheritance": "", "abstract": false, @@ -27825,7 +27825,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "NationalCodeAustria", "inheritance": "", "abstract": false, @@ -27838,7 +27838,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString40", "inheritance": "", "abstract": false, @@ -27851,7 +27851,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString40", "inheritance": "", "abstract": false, @@ -27864,7 +27864,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString3", "inheritance": "", "abstract": false, @@ -27877,7 +27877,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString30", "inheritance": "", "abstract": false, @@ -27890,7 +27890,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -27903,7 +27903,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PaintTypes", "inheritance": "", "abstract": false, @@ -27916,7 +27916,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -27929,7 +27929,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -27942,7 +27942,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString30", "inheritance": "", "abstract": false, @@ -27955,7 +27955,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -27968,7 +27968,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -27981,7 +27981,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString3", "inheritance": "", "abstract": false, @@ -27994,7 +27994,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString50", "inheritance": "", "abstract": false, @@ -28007,7 +28007,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString50", "inheritance": "", "abstract": false, @@ -28020,7 +28020,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString50", "inheritance": "", "abstract": false, @@ -28033,7 +28033,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -28046,7 +28046,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -28059,7 +28059,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -28072,7 +28072,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -28085,7 +28085,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -28098,7 +28098,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -28111,7 +28111,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -28124,7 +28124,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -28137,7 +28137,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -28150,7 +28150,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RegistrationData", "inheritance": "", "abstract": false, @@ -28163,7 +28163,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "OriginalPriceInfo", "inheritance": "", "abstract": false, @@ -28176,7 +28176,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Engine", "inheritance": "", "abstract": false, @@ -28189,7 +28189,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Maintenance", "inheritance": "", "abstract": false, @@ -28202,7 +28202,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RunningExpenses", "inheritance": "", "abstract": false, @@ -28215,7 +28215,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TechInfo", "inheritance": "", "abstract": false, @@ -28228,7 +28228,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Equipment", "inheritance": "", "abstract": false, @@ -28241,7 +28241,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Tires", "inheritance": "", "abstract": false, @@ -28254,7 +28254,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "equipSequence", "inheritance": "", "abstract": false, @@ -28267,7 +28267,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "VINResult", "inheritance": "", "abstract": false, @@ -28280,7 +28280,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UpperBodies", "inheritance": "", "abstract": false, @@ -28293,7 +28293,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DomusVehicleData", "inheritance": "", "abstract": false, @@ -28306,7 +28306,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "VehicleDataItaly", "inheritance": "", "abstract": false, @@ -28319,7 +28319,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MetaPositions", "inheritance": "", "abstract": false, @@ -28332,7 +28332,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -28345,7 +28345,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -28358,7 +28358,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -28371,7 +28371,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -28384,7 +28384,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -28411,7 +28411,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -28439,7 +28439,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString6", "inheritance": "", "abstract": false, @@ -28494,7 +28494,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UpperBody", "inheritance": "", "abstract": false, @@ -28522,7 +28522,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -28535,7 +28535,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -28548,7 +28548,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -28561,7 +28561,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -28574,7 +28574,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -28587,7 +28587,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -28600,7 +28600,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -28613,7 +28613,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -28640,7 +28640,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WorkSummaryItemItaly", "inheritance": "", "abstract": false, @@ -28668,7 +28668,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -28681,7 +28681,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -28694,7 +28694,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -28707,7 +28707,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -28720,7 +28720,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -28733,7 +28733,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -28746,7 +28746,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -28759,7 +28759,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -29526,7 +29526,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -29539,7 +29539,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -29552,7 +29552,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -29565,7 +29565,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -29578,7 +29578,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -29591,7 +29591,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -29604,7 +29604,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -29617,7 +29617,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -29630,7 +29630,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -29643,7 +29643,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -29656,7 +29656,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -29669,7 +29669,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -29682,7 +29682,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -29695,7 +29695,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -29708,7 +29708,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -29721,7 +29721,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -29734,7 +29734,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -29747,7 +29747,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -29760,7 +29760,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -29773,7 +29773,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -29786,7 +29786,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -29799,7 +29799,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -29812,7 +29812,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -29825,7 +29825,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -29838,7 +29838,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -29851,7 +29851,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -29864,7 +29864,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -29877,7 +29877,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -29890,7 +29890,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -29903,7 +29903,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -29916,7 +29916,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -29929,7 +29929,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -29942,7 +29942,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -29955,7 +29955,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -29968,7 +29968,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -29981,7 +29981,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -29994,7 +29994,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -30007,7 +30007,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PrivatePolicy", "inheritance": "", "abstract": false, @@ -30223,7 +30223,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MaterialPositions", "inheritance": "", "abstract": false, @@ -30236,7 +30236,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MaterialPositions", "inheritance": "", "abstract": false, @@ -30249,7 +30249,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AdditionalCostsPositions", "inheritance": "", "abstract": false, @@ -30262,7 +30262,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AdditionalCostsPositions", "inheritance": "", "abstract": false, @@ -30275,7 +30275,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RiskPositions", "inheritance": "", "abstract": false, @@ -30288,7 +30288,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LabourPositions", "inheritance": "", "abstract": false, @@ -30301,7 +30301,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LabourPositions", "inheritance": "", "abstract": false, @@ -30314,7 +30314,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LacquerPositions", "inheritance": "", "abstract": false, @@ -30327,7 +30327,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DiscountPositions", "inheritance": "", "abstract": false, @@ -30340,7 +30340,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DeductionsPositions", "inheritance": "", "abstract": false, @@ -30353,7 +30353,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DeductiblePartsPositions", "inheritance": "", "abstract": false, @@ -30366,7 +30366,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -30379,7 +30379,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CalculationSummary", "inheritance": "", "abstract": false, @@ -30392,7 +30392,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "repairProtocol", "inheritance": "", "abstract": false, @@ -30405,7 +30405,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "repairProtocol", "inheritance": "", "abstract": false, @@ -30418,7 +30418,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "repairProtocol", "inheritance": "", "abstract": false, @@ -30431,7 +30431,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SurchargeDiscountPositions", "inheritance": "", "abstract": false, @@ -30444,7 +30444,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CalculationProtocol", "inheritance": "", "abstract": false, @@ -30457,7 +30457,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Legends", "inheritance": "", "abstract": false, @@ -30470,7 +30470,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -30483,7 +30483,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BlanketCalculation", "inheritance": "", "abstract": false, @@ -30510,7 +30510,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MaterialPosition", "inheritance": "", "abstract": false, @@ -30565,7 +30565,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AdditionalCostsPosition", "inheritance": "", "abstract": false, @@ -30593,7 +30593,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LabourPosition", "inheritance": "", "abstract": false, @@ -30607,7 +30607,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LabourPosition", "inheritance": "", "abstract": false, @@ -30621,7 +30621,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LabourPosition", "inheritance": "", "abstract": false, @@ -30635,7 +30635,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LabourPosition", "inheritance": "", "abstract": false, @@ -30649,7 +30649,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LabourPosition", "inheritance": "", "abstract": false, @@ -30663,7 +30663,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LabourPosition", "inheritance": "", "abstract": false, @@ -30677,7 +30677,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LabourPosition", "inheritance": "", "abstract": false, @@ -30691,7 +30691,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LabourPosition", "inheritance": "", "abstract": false, @@ -30705,7 +30705,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LabourPosition", "inheritance": "", "abstract": false, @@ -30719,7 +30719,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LabourPosition", "inheritance": "", "abstract": false, @@ -30733,7 +30733,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LabourPosition", "inheritance": "", "abstract": false, @@ -30747,7 +30747,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LabourPosition", "inheritance": "", "abstract": false, @@ -30761,7 +30761,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LabourPosition", "inheritance": "", "abstract": false, @@ -30789,7 +30789,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -30802,7 +30802,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -30815,7 +30815,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -30828,7 +30828,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -30841,7 +30841,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -30854,7 +30854,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -30867,7 +30867,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -30880,7 +30880,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -30893,7 +30893,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -30906,7 +30906,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -30919,7 +30919,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -30932,7 +30932,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -30945,7 +30945,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -30958,7 +30958,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -30971,7 +30971,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -30984,7 +30984,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -30997,7 +30997,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31010,7 +31010,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -31023,7 +31023,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -31036,7 +31036,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -31049,7 +31049,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -31061,7 +31061,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "calcPosReference", "inheritance": "", "abstract": false, @@ -31074,7 +31074,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IncludedPositions", "inheritance": "", "abstract": false, @@ -31087,7 +31087,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -31100,7 +31100,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -31113,7 +31113,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31126,7 +31126,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldCharacter", "inheritance": "", "abstract": false, @@ -31139,7 +31139,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -31151,7 +31151,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31164,7 +31164,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31177,7 +31177,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31190,7 +31190,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -31202,7 +31202,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31215,7 +31215,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31228,7 +31228,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31241,7 +31241,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31254,7 +31254,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31267,7 +31267,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -31280,7 +31280,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -31293,7 +31293,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -31306,7 +31306,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31333,7 +31333,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -31346,7 +31346,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31373,7 +31373,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -31386,7 +31386,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31399,7 +31399,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31412,7 +31412,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31425,7 +31425,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31438,7 +31438,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31451,7 +31451,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31464,7 +31464,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31477,7 +31477,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -31490,7 +31490,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -31503,7 +31503,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -31516,7 +31516,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -31529,7 +31529,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -31542,7 +31542,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -31555,7 +31555,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31568,7 +31568,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31581,7 +31581,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31594,7 +31594,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -31607,7 +31607,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -31620,7 +31620,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -31633,7 +31633,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -31646,7 +31646,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -31659,7 +31659,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -31672,7 +31672,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -31685,7 +31685,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -31698,7 +31698,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "IncludedPositions", "inheritance": "", "abstract": false, @@ -31711,7 +31711,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -31724,7 +31724,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -31737,7 +31737,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString2", "inheritance": "", "abstract": false, @@ -31750,7 +31750,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31763,7 +31763,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -31776,7 +31776,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -31789,7 +31789,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31802,7 +31802,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31815,7 +31815,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31828,7 +31828,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31841,7 +31841,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31854,7 +31854,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31867,7 +31867,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31880,7 +31880,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31893,7 +31893,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -31906,7 +31906,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -31919,7 +31919,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -31932,7 +31932,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -31945,7 +31945,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -31972,7 +31972,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SparePartsCostsSummary", "inheritance": "", "abstract": false, @@ -31985,7 +31985,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AuxiliaryCostsSummary", "inheritance": "", "abstract": false, @@ -31998,7 +31998,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LabourCostsSummary", "inheritance": "", "abstract": false, @@ -32011,7 +32011,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LacquerCostsSummary", "inheritance": "", "abstract": false, @@ -32024,7 +32024,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32037,7 +32037,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SurchargeDiscountsSummary", "inheritance": "", "abstract": false, @@ -32050,7 +32050,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32063,7 +32063,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32076,7 +32076,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32089,7 +32089,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32102,7 +32102,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32115,7 +32115,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32128,7 +32128,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32141,7 +32141,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32154,7 +32154,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32167,7 +32167,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32180,7 +32180,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32193,7 +32193,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32206,7 +32206,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32219,7 +32219,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32232,7 +32232,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32245,7 +32245,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32258,7 +32258,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32271,7 +32271,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32284,7 +32284,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32297,7 +32297,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32310,7 +32310,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32323,7 +32323,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32336,7 +32336,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32349,7 +32349,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32362,7 +32362,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32375,7 +32375,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32388,7 +32388,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32401,7 +32401,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32414,7 +32414,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32427,7 +32427,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32440,7 +32440,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DeductionsSummary", "inheritance": "", "abstract": false, @@ -32453,7 +32453,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32466,7 +32466,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32479,7 +32479,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32492,7 +32492,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32505,7 +32505,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MetaPositions", "inheritance": "", "abstract": false, @@ -32532,7 +32532,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32545,7 +32545,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32558,7 +32558,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32571,7 +32571,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32584,7 +32584,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32597,7 +32597,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32610,7 +32610,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32623,7 +32623,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32650,7 +32650,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32677,7 +32677,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32690,7 +32690,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "detailBlockSummary", "inheritance": "", "abstract": false, @@ -32703,7 +32703,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "detailBlockSummary", "inheritance": "", "abstract": false, @@ -32716,7 +32716,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "detailBlockSummary", "inheritance": "", "abstract": false, @@ -32729,7 +32729,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "detailBlockSummary", "inheritance": "", "abstract": false, @@ -32742,7 +32742,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "detailBlockSummary", "inheritance": "", "abstract": false, @@ -32755,7 +32755,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "detailBlockSummary", "inheritance": "", "abstract": false, @@ -32768,7 +32768,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "detailBlockSummary", "inheritance": "", "abstract": false, @@ -32781,7 +32781,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "detailBlockSummary", "inheritance": "", "abstract": false, @@ -32794,7 +32794,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "detailBlockSummary", "inheritance": "", "abstract": false, @@ -32807,7 +32807,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32820,7 +32820,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Discount", "inheritance": "", "abstract": false, @@ -32833,7 +32833,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DetailBlockSummaryWages", "inheritance": "", "abstract": false, @@ -32872,7 +32872,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32885,7 +32885,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32898,7 +32898,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -32911,7 +32911,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32924,7 +32924,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Discount", "inheritance": "", "abstract": false, @@ -32937,7 +32937,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32950,7 +32950,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -32989,7 +32989,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -33028,7 +33028,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "detailBlockSummary", "inheritance": "", "abstract": false, @@ -33056,7 +33056,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Discount", "inheritance": "", "abstract": false, @@ -33069,7 +33069,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -33082,7 +33082,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "detailBlockSummary", "inheritance": "", "abstract": false, @@ -33095,7 +33095,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "detailBlockSummary", "inheritance": "", "abstract": false, @@ -33108,7 +33108,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "detailBlockSummary", "inheritance": "", "abstract": false, @@ -33121,7 +33121,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LacquerMaterialSummary", "inheritance": "", "abstract": false, @@ -33134,7 +33134,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -33161,7 +33161,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -33174,7 +33174,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -33187,7 +33187,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -33200,7 +33200,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "detailBlockSummary", "inheritance": "", "abstract": false, @@ -33213,7 +33213,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "detailBlockSummary", "inheritance": "", "abstract": false, @@ -33226,7 +33226,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "detailBlockSummary", "inheritance": "", "abstract": false, @@ -33239,7 +33239,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "detailBlockSummary", "inheritance": "", "abstract": false, @@ -33252,7 +33252,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "detailBlockSummary", "inheritance": "", "abstract": false, @@ -33265,7 +33265,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -33278,7 +33278,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LacquerConstantSequence", "inheritance": "", "abstract": false, @@ -33291,7 +33291,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LacquerMaterialGroupSummarySequence", "inheritance": "", "abstract": false, @@ -33304,7 +33304,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Discount", "inheritance": "", "abstract": false, @@ -33317,7 +33317,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -33330,7 +33330,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -33343,7 +33343,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -33450,7 +33450,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -33463,7 +33463,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -33476,7 +33476,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -33489,7 +33489,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -33502,7 +33502,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -33515,7 +33515,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -33528,7 +33528,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -33541,7 +33541,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -33554,7 +33554,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -33567,7 +33567,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -33580,7 +33580,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -33607,7 +33607,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "repairProcessList", "inheritance": "", "abstract": false, @@ -33620,7 +33620,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "repairProcessList", "inheritance": "", "abstract": false, @@ -33633,7 +33633,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "repairProcessList", "inheritance": "", "abstract": false, @@ -33646,7 +33646,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "repairProcessList", "inheritance": "", "abstract": false, @@ -33659,7 +33659,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "repairProcessList", "inheritance": "", "abstract": false, @@ -33672,7 +33672,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "repairProcessList", "inheritance": "", "abstract": false, @@ -33699,7 +33699,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RepairProcess", "inheritance": "", "abstract": false, @@ -33727,7 +33727,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SurchargeDiscountPosition", "inheritance": "", "abstract": false, @@ -33755,7 +33755,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -33768,7 +33768,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -33781,7 +33781,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -33794,7 +33794,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -33807,7 +33807,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -33834,7 +33834,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -33847,7 +33847,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -33860,7 +33860,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDate", "inheritance": "", "abstract": false, @@ -33873,7 +33873,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -33886,7 +33886,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -33899,7 +33899,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -33912,7 +33912,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -33925,7 +33925,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -33938,7 +33938,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -33951,7 +33951,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -33964,7 +33964,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -33977,7 +33977,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -34032,7 +34032,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -34045,7 +34045,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -34058,7 +34058,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -34085,7 +34085,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PositionsItaly", "inheritance": "", "abstract": false, @@ -34098,7 +34098,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SummariesItaly", "inheritance": "", "abstract": false, @@ -34125,7 +34125,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "calcResult", "inheritance": "", "abstract": false, @@ -34137,7 +34137,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DomusAggregates", "inheritance": "", "abstract": false, @@ -34150,7 +34150,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DomusLacquerExtraCharges", "inheritance": "", "abstract": false, @@ -34163,7 +34163,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DomusExtraCharges", "inheritance": "", "abstract": false, @@ -34190,7 +34190,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "subTypeVariantEquipmentSelectionRequest", "inheritance": "", "abstract": false, @@ -34491,7 +34491,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integerStringPair", "inheritance": "", "abstract": false, @@ -34558,7 +34558,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "subTypeVariantEquipmentSelectionRequest", "inheritance": "", "abstract": false, @@ -34586,7 +34586,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integerStringPair", "inheritance": "", "abstract": false, @@ -34615,7 +34615,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "subTypeVariantEquipmentSelectionRequest", "inheritance": "", "abstract": false, @@ -34643,7 +34643,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integerStringPair", "inheritance": "", "abstract": false, @@ -34672,7 +34672,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "subTypeVariantNumberSelectionRequest", "inheritance": "", "abstract": false, @@ -34726,7 +34726,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -34754,7 +34754,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "abstractSelectionRequest", "inheritance": "", "abstract": false, @@ -34782,7 +34782,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integerStringPair", "inheritance": "", "abstract": false, @@ -34811,7 +34811,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "basicSelectionRequest", "inheritance": "", "abstract": false, @@ -34839,7 +34839,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integerStringPair", "inheritance": "", "abstract": false, @@ -34868,7 +34868,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "subTypeVariantSelectionRequest", "inheritance": "", "abstract": false, @@ -34896,7 +34896,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -34925,7 +34925,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "subTypeVariantEquipmentSelectionRequest", "inheritance": "", "abstract": false, @@ -34953,7 +34953,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integerStringPair", "inheritance": "", "abstract": false, @@ -34982,7 +34982,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "manufacturerSelectionRequest", "inheritance": "", "abstract": false, @@ -35010,7 +35010,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integerStringPair", "inheritance": "", "abstract": false, @@ -35039,7 +35039,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "subTypeVariantEquipmentSelectionRequest", "inheritance": "", "abstract": false, @@ -35067,7 +35067,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integerStringPair", "inheritance": "", "abstract": false, @@ -35096,7 +35096,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "priceFocusSelectionRequest", "inheritance": "", "abstract": false, @@ -35148,7 +35148,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "stringStringPair", "inheritance": "", "abstract": false, @@ -35215,7 +35215,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "subTypeVariantEquipmentSelectionRequest", "inheritance": "", "abstract": false, @@ -35243,7 +35243,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integerStringPair", "inheritance": "", "abstract": false, @@ -35272,7 +35272,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "subTypeVariantEquipmentSelectionRequest", "inheritance": "", "abstract": false, @@ -35300,7 +35300,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integerStringPair", "inheritance": "", "abstract": false, @@ -35329,7 +35329,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "basicSelectionRequest", "inheritance": "", "abstract": false, @@ -35357,7 +35357,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integerStringPair", "inheritance": "", "abstract": false, @@ -35386,7 +35386,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "baseModelSelectionRequest", "inheritance": "", "abstract": false, @@ -35414,7 +35414,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "baseModelResult", "inheritance": "", "abstract": false, @@ -35521,7 +35521,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "constructionPeriodSelectionRequest", "inheritance": "", "abstract": false, @@ -35549,7 +35549,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -35575,7 +35575,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "constructionTimePeriod", "inheritance": "", "abstract": false, @@ -35765,7 +35765,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "hgvPlatformManufacturerSelectionRequest", "inheritance": "", "abstract": false, @@ -35817,7 +35817,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integerStringPair", "inheritance": "", "abstract": false, @@ -35846,7 +35846,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "hgvPlatformAggregateModelSelectionRequest", "inheritance": "", "abstract": false, @@ -35898,7 +35898,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integerStringPair", "inheritance": "", "abstract": false, @@ -35927,7 +35927,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "hgvPlatformBaseModelSelectionRequest", "inheritance": "", "abstract": false, @@ -35979,7 +35979,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integerStringPair", "inheritance": "", "abstract": false, @@ -36008,7 +36008,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "hgvPlatformAggregateModelDataRequest", "inheritance": "", "abstract": false, @@ -36060,7 +36060,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "VXS", "inheritance": "", "abstract": false, @@ -36088,7 +36088,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -36101,7 +36101,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -36114,7 +36114,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -36127,7 +36127,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -36140,7 +36140,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString12", "inheritance": "", "abstract": false, @@ -36153,7 +36153,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -36166,7 +36166,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -36179,7 +36179,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -36192,7 +36192,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -36205,7 +36205,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString40", "inheritance": "", "abstract": false, @@ -36242,7 +36242,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -36255,7 +36255,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString3", "inheritance": "", "abstract": false, @@ -36268,7 +36268,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString10", "inheritance": "", "abstract": false, @@ -36281,7 +36281,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDecimal", "inheritance": "", "abstract": false, @@ -36294,7 +36294,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -36307,7 +36307,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -36320,7 +36320,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -36333,7 +36333,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -36346,7 +36346,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldDateTime", "inheritance": "", "abstract": false, @@ -36359,7 +36359,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldString", "inheritance": "", "abstract": false, @@ -36372,7 +36372,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -36385,7 +36385,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -36398,7 +36398,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "address", "inheritance": "", "abstract": false, @@ -36411,7 +36411,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Vehicle", "inheritance": "", "abstract": false, @@ -36424,7 +36424,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Images", "inheritance": "", "abstract": false, @@ -36437,7 +36437,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ImageList", "inheritance": "", "abstract": false, @@ -36450,7 +36450,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "VAT", "inheritance": "", "abstract": false, @@ -36463,7 +36463,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "anyType", "inheritance": "", "abstract": false, @@ -36476,7 +36476,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TradingData", "inheritance": "", "abstract": false, @@ -36489,7 +36489,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Valuation", "inheritance": "", "abstract": false, @@ -36502,7 +36502,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Compare", "inheritance": "", "abstract": false, @@ -36515,7 +36515,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RepairCalculation", "inheritance": "", "abstract": false, @@ -36528,7 +36528,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RepairOrder", "inheritance": "", "abstract": false, @@ -36541,7 +36541,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SparePartPositions", "inheritance": "", "abstract": false, @@ -36554,7 +36554,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MaintenanceIntervals", "inheritance": "", "abstract": false, @@ -36567,7 +36567,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Comments", "inheritance": "", "abstract": false, @@ -36580,7 +36580,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Attachments", "inheritance": "", "abstract": false, @@ -36593,7 +36593,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AdditionalVehicles", "inheritance": "", "abstract": false, @@ -36606,7 +36606,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -36619,7 +36619,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldInteger", "inheritance": "", "abstract": false, @@ -36632,7 +36632,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -36645,7 +36645,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "fieldBoolean", "inheritance": "", "abstract": false, @@ -36658,7 +36658,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AdditionalServices", "inheritance": "", "abstract": false, @@ -36671,7 +36671,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ProcessManagement", "inheritance": "", "abstract": false, @@ -36684,7 +36684,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TradingActivity", "inheritance": "", "abstract": false, @@ -36697,7 +36697,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TradingAdditional", "inheritance": "", "abstract": false, @@ -36710,7 +36710,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MetaPositions", "inheritance": "", "abstract": false, @@ -36747,7 +36747,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "subModelByTextSearchSelectionRequest", "inheritance": "", "abstract": false, @@ -36799,7 +36799,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "subModelByTextSearchSelectionResponse", "inheritance": "", "abstract": false, @@ -36827,7 +36827,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -36839,7 +36839,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -36851,7 +36851,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "dossiers", "inheritance": "", "abstract": false, @@ -36877,7 +36877,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Dossier", "inheritance": "", "abstract": false, @@ -36925,7 +36925,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "subModelSelectionRequest", "inheritance": "", "abstract": false, @@ -36953,7 +36953,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integerStringPair", "inheritance": "", "abstract": false, @@ -36982,7 +36982,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "subTypeVariantEquipmentSelectionRequest", "inheritance": "", "abstract": false, @@ -37010,7 +37010,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integerStringPair", "inheritance": "", "abstract": false, @@ -37039,7 +37039,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "subTypeVariantEquipmentSelectionRequest", "inheritance": "", "abstract": false, @@ -37067,7 +37067,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integerStringPair", "inheritance": "", "abstract": false, @@ -37096,7 +37096,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "priceFocusSelectionRequest", "inheritance": "", "abstract": false, @@ -37124,7 +37124,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -37153,7 +37153,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "baseModelSelectionRequest", "inheritance": "", "abstract": false, @@ -37181,7 +37181,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integerStringPair", "inheritance": "", "abstract": false, @@ -37210,7 +37210,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "subTypeVariantEquipmentSelectionRequest", "inheritance": "", "abstract": false, @@ -37238,7 +37238,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integerStringPair", "inheritance": "", "abstract": false, @@ -37267,7 +37267,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "hgvPlatformSubModelSelectionRequest", "inheritance": "", "abstract": false, @@ -37319,7 +37319,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integerStringPair", "inheritance": "", "abstract": false, @@ -37348,7 +37348,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "subTypeVariantClassifiedEquipmentSelectionRequest", "inheritance": "", "abstract": false, @@ -37400,7 +37400,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integerStringPair", "inheritance": "", "abstract": false, @@ -37429,7 +37429,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "vehicleDataSelectionRequest", "inheritance": "", "abstract": false, @@ -37481,7 +37481,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "VXS", "inheritance": "", "abstract": false, @@ -37509,7 +37509,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "hgvPlatformSubModelDataRequest", "inheritance": "", "abstract": false, @@ -37561,7 +37561,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "VXS", "inheritance": "", "abstract": false, @@ -37589,7 +37589,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "abstractSelectionRequest", "inheritance": "", "abstract": false, @@ -37617,7 +37617,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -37645,7 +37645,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "subTypeVariantEquipmentSelectionRequest", "inheritance": "", "abstract": false, @@ -37673,7 +37673,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integerStringPair", "inheritance": "", "abstract": false, diff --git a/tests/resources/generated/parsed_wcf_none.json b/tests/resources/generated/parsed_wcf_none.json index 78ce7c4c..33b94668 100644 --- a/tests/resources/generated/parsed_wcf_none.json +++ b/tests/resources/generated/parsed_wcf_none.json @@ -137,7 +137,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -163,7 +163,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, diff --git a/tests/resources/generated/parsed_wcf_start.json b/tests/resources/generated/parsed_wcf_start.json index 2a518534..d993f3ad 100644 --- a/tests/resources/generated/parsed_wcf_start.json +++ b/tests/resources/generated/parsed_wcf_start.json @@ -137,7 +137,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -163,7 +163,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, diff --git a/tests/resources/generated/parsed_whl_none.json b/tests/resources/generated/parsed_whl_none.json index e7cb8c2a..3674c9b9 100644 --- a/tests/resources/generated/parsed_whl_none.json +++ b/tests/resources/generated/parsed_whl_none.json @@ -2313,7 +2313,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CompanyNameType", "inheritance": "", "abstract": false, @@ -2424,7 +2424,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WarningsType", "inheritance": "", "abstract": false, @@ -2458,7 +2458,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UniqueID_Type", "inheritance": "", "abstract": false, @@ -2599,7 +2599,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RequestorID", "inheritance": "", "abstract": false, @@ -2611,7 +2611,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BookingChannel", "inheritance": "", "abstract": false, @@ -2689,7 +2689,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CompanyNameType", "inheritance": "", "abstract": false, @@ -3165,7 +3165,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TaxType", "inheritance": "", "abstract": false, @@ -3216,7 +3216,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ParagraphType", "inheritance": "", "abstract": false, @@ -3532,7 +3532,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StringLength1to64", "inheritance": "", "abstract": false, @@ -3547,7 +3547,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CardIssuerName", "inheritance": "", "abstract": false, @@ -3559,7 +3559,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressType", "inheritance": "", "abstract": false, @@ -3574,7 +3574,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Telephone", "inheritance": "", "abstract": false, @@ -3587,7 +3587,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailType", "inheritance": "", "abstract": false, @@ -4068,7 +4068,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StreetNmbr", "inheritance": "", "abstract": false, @@ -4080,7 +4080,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StringLength1to255", "inheritance": "", "abstract": false, @@ -4096,7 +4096,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StringLength1to64", "inheritance": "", "abstract": false, @@ -4111,7 +4111,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StringLength1to16", "inheritance": "", "abstract": false, @@ -4126,7 +4126,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StringLength1to32", "inheritance": "", "abstract": false, @@ -4141,7 +4141,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StateProvType", "inheritance": "", "abstract": false, @@ -4156,7 +4156,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CountryNameType", "inheritance": "", "abstract": false, @@ -4468,7 +4468,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StringLength1to64", "inheritance": "", "abstract": false, @@ -4597,7 +4597,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CompanyName", "inheritance": "", "abstract": false, @@ -4609,7 +4609,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressInfoType", "inheritance": "", "abstract": false, @@ -4624,7 +4624,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailType", "inheritance": "", "abstract": false, @@ -4639,7 +4639,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Telephone", "inheritance": "", "abstract": false, @@ -4846,7 +4846,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TaxesType", "inheritance": "", "abstract": false, @@ -4861,7 +4861,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ParagraphType", "inheritance": "", "abstract": false, @@ -5149,7 +5149,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StringLength1to16", "inheritance": "", "abstract": false, @@ -5165,7 +5165,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StringLength1to64", "inheritance": "", "abstract": false, @@ -5181,7 +5181,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StringLength1to64", "inheritance": "", "abstract": false, @@ -5197,7 +5197,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StringLength1to16", "inheritance": "", "abstract": false, @@ -5226,7 +5226,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StringLength1to16", "inheritance": "", "abstract": false, @@ -5242,7 +5242,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StringLength1to16", "inheritance": "", "abstract": false, @@ -5426,7 +5426,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "VideoItemsType", "inheritance": "", "abstract": false, @@ -5448,7 +5448,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ImageItemsType", "inheritance": "", "abstract": false, @@ -5470,7 +5470,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TextItemsType", "inheritance": "", "abstract": false, @@ -5630,7 +5630,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "VideoFormat", "inheritance": "", "abstract": false, @@ -5777,7 +5777,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "anyURI", "inheritance": "", "abstract": false, @@ -6015,7 +6015,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ImageFormat", "inheritance": "", "abstract": false, @@ -6028,7 +6028,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Description", "inheritance": "", "abstract": false, @@ -6292,7 +6292,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "anyURI", "inheritance": "", "abstract": false, @@ -6370,7 +6370,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "anyURI", "inheritance": "", "abstract": false, @@ -6391,7 +6391,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Description", "inheritance": "", "abstract": false, @@ -6666,7 +6666,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TaxesType", "inheritance": "", "abstract": false, @@ -6855,7 +6855,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "InventoryType", "inheritance": "", "abstract": false, @@ -6980,7 +6980,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RoomDetailType", "inheritance": "", "abstract": false, @@ -7007,7 +7007,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BookingType", "inheritance": "", "abstract": false, @@ -7185,7 +7185,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ExServiceType", "inheritance": "", "abstract": false, @@ -7212,7 +7212,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "GuestDetailType", "inheritance": "", "abstract": false, @@ -7625,7 +7625,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PersonNameType", "inheritance": "", "abstract": false, @@ -7641,7 +7641,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Telephone", "inheritance": "", "abstract": false, @@ -7654,7 +7654,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Email", "inheritance": "", "abstract": false, @@ -7667,7 +7667,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Address", "inheritance": "", "abstract": false, @@ -7680,7 +7680,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "URL", "inheritance": "", "abstract": false, @@ -7693,7 +7693,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CitizenCountryName", "inheritance": "", "abstract": false, @@ -7831,7 +7831,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CompanyNameType", "inheritance": "", "abstract": false, @@ -7846,7 +7846,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PersonNameType", "inheritance": "", "abstract": false, @@ -8104,7 +8104,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CustomerType", "inheritance": "", "abstract": false, @@ -8353,7 +8353,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SegmentCategory", "inheritance": "", "abstract": false, @@ -8366,7 +8366,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "HotelCategory", "inheritance": "", "abstract": false, @@ -8497,7 +8497,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "HotelName", "inheritance": "", "abstract": false, @@ -8509,7 +8509,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CategoryCodesType", "inheritance": "", "abstract": false, @@ -8524,7 +8524,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Descriptions", "inheritance": "", "abstract": false, @@ -8536,7 +8536,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Position", "inheritance": "", "abstract": false, @@ -8548,7 +8548,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Services", "inheritance": "", "abstract": false, @@ -8560,7 +8560,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LanguagesType", "inheritance": "", "abstract": false, @@ -8575,7 +8575,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Money", "inheritance": "", "abstract": false, @@ -8604,7 +8604,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FacilityInfoType", "inheritance": "", "abstract": false, @@ -8619,7 +8619,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "HostInfo", "inheritance": "", "abstract": false, @@ -8631,7 +8631,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CaringForDestination", "inheritance": "", "abstract": false, @@ -8763,7 +8763,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8778,7 +8778,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8793,7 +8793,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8808,7 +8808,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8823,7 +8823,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8838,7 +8838,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8853,7 +8853,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8868,7 +8868,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8883,7 +8883,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8898,7 +8898,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9059,7 +9059,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9074,7 +9074,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9107,7 +9107,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9122,7 +9122,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9183,7 +9183,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Deadline", "inheritance": "", "abstract": false, @@ -9195,7 +9195,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ParagraphType", "inheritance": "", "abstract": false, @@ -9290,7 +9290,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TaxesType", "inheritance": "", "abstract": false, @@ -9400,7 +9400,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AcceptedPaymentsType", "inheritance": "", "abstract": false, @@ -9415,7 +9415,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AmountPercent", "inheritance": "", "abstract": false, @@ -9517,7 +9517,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CancelPenaltiesType", "inheritance": "", "abstract": false, @@ -9532,7 +9532,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "GuaranteePaymentPolicy", "inheritance": "", "abstract": false, @@ -9544,7 +9544,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CheckoutCharges", "inheritance": "", "abstract": false, @@ -9556,7 +9556,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PolicyInfo", "inheritance": "", "abstract": false, @@ -9568,7 +9568,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TaxPolicies", "inheritance": "", "abstract": false, @@ -9580,7 +9580,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CommissionPolicy", "inheritance": "", "abstract": false, @@ -9592,7 +9592,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FeePolicies", "inheritance": "", "abstract": false, @@ -9665,7 +9665,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ParagraphType", "inheritance": "", "abstract": false, @@ -9717,7 +9717,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ParagraphType", "inheritance": "", "abstract": false, @@ -9776,7 +9776,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TaxPolicy", "inheritance": "", "abstract": false, @@ -9907,7 +9907,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "HotelInfoType", "inheritance": "", "abstract": false, @@ -9922,7 +9922,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FacilityInfoType", "inheritance": "", "abstract": false, @@ -9937,7 +9937,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Policies", "inheritance": "", "abstract": false, @@ -9949,7 +9949,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AreaInfoType", "inheritance": "", "abstract": false, @@ -9964,7 +9964,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MultimediaDescriptionsType", "inheritance": "", "abstract": false, @@ -9979,7 +9979,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ContactInfosType", "inheritance": "", "abstract": false, @@ -10076,7 +10076,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ContactInfoRootType", "inheritance": "", "abstract": false, @@ -10173,7 +10173,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ContactsType", "inheritance": "", "abstract": false, @@ -10188,7 +10188,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressesType", "inheritance": "", "abstract": false, @@ -10203,7 +10203,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PhonesType", "inheritance": "", "abstract": false, @@ -10218,7 +10218,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailsType", "inheritance": "", "abstract": false, @@ -10233,7 +10233,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "URLsType", "inheritance": "", "abstract": false, @@ -10248,7 +10248,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CompanyName", "inheritance": "", "abstract": false, @@ -10323,7 +10323,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "JobTitle", "inheritance": "", "abstract": false, @@ -10789,7 +10789,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Attractions", "inheritance": "", "abstract": false, @@ -10801,7 +10801,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Recreations", "inheritance": "", "abstract": false, @@ -10861,7 +10861,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11113,7 +11113,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "GuestRooms", "inheritance": "", "abstract": false, @@ -11143,7 +11143,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "GuestRoom", "inheritance": "", "abstract": false, @@ -11174,7 +11174,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TypeRoom", "inheritance": "", "abstract": false, @@ -11187,7 +11187,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Amenities", "inheritance": "", "abstract": false, @@ -11199,7 +11199,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11214,7 +11214,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11499,7 +11499,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CancelPenaltyType", "inheritance": "", "abstract": false, @@ -11548,7 +11548,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "HotelInfo", "inheritance": "", "abstract": false, @@ -11612,7 +11612,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "GuestCountType", "inheritance": "", "abstract": false, @@ -11768,7 +11768,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DateTimeSpanType", "inheritance": "", "abstract": false, @@ -11783,7 +11783,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RoomStayCandidates", "inheritance": "", "abstract": false, @@ -11795,7 +11795,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "HotelSearchCriteria", "inheritance": "", "abstract": false, @@ -11953,7 +11953,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "HotelRef", "inheritance": "", "abstract": false, @@ -12052,7 +12052,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RoomTypes", "inheritance": "", "abstract": false, @@ -12064,7 +12064,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RoomRates", "inheritance": "", "abstract": false, @@ -12076,7 +12076,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "GuestCountType", "inheritance": "", "abstract": false, @@ -12091,7 +12091,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DateTimeSpanType", "inheritance": "", "abstract": false, @@ -12106,7 +12106,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TotalType", "inheritance": "", "abstract": false, @@ -12121,7 +12121,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicPropertyInfoType", "inheritance": "", "abstract": false, @@ -12229,7 +12229,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RateType", "inheritance": "", "abstract": false, @@ -12244,7 +12244,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ParagraphType", "inheritance": "", "abstract": false, @@ -12260,7 +12260,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TotalType", "inheritance": "", "abstract": false, @@ -12275,7 +12275,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicPropertyInfoType", "inheritance": "", "abstract": false, @@ -12416,7 +12416,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TotalType", "inheritance": "", "abstract": false, @@ -12431,7 +12431,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Discount", "inheritance": "", "abstract": false, @@ -12444,7 +12444,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TotalType", "inheritance": "", "abstract": false, @@ -12459,7 +12459,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ParagraphType", "inheritance": "", "abstract": false, @@ -12474,7 +12474,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "HotelAdditionalChargesType", "inheritance": "", "abstract": false, @@ -12731,7 +12731,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TotalType", "inheritance": "", "abstract": false, @@ -12814,7 +12814,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LengthOfStay", "inheritance": "", "abstract": false, @@ -13063,7 +13063,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StatusApplicationControlType", "inheritance": "", "abstract": false, @@ -13078,7 +13078,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LengthsOfStayType", "inheritance": "", "abstract": false, @@ -13093,7 +13093,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UniqueID_Type", "inheritance": "", "abstract": false, @@ -13108,7 +13108,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RestrictionStatus", "inheritance": "", "abstract": false, @@ -13200,7 +13200,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WarningsType", "inheritance": "", "abstract": false, @@ -13212,7 +13212,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "HotelReservationsType", "inheritance": "", "abstract": false, @@ -13452,7 +13452,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FeesType", "inheritance": "", "abstract": false, @@ -13467,7 +13467,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TotalType", "inheritance": "", "abstract": false, @@ -13500,7 +13500,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "HotelReservationIDsType", "inheritance": "", "abstract": false, @@ -13530,7 +13530,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ProfilesType", "inheritance": "", "abstract": false, @@ -13732,7 +13732,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SpecialRequestType", "inheritance": "", "abstract": false, @@ -13783,7 +13783,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RoomStaysType", "inheritance": "", "abstract": false, @@ -13798,7 +13798,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ResGuestsType", "inheritance": "", "abstract": false, @@ -13813,7 +13813,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ResGlobalInfoType", "inheritance": "", "abstract": false, @@ -13909,7 +13909,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "POS_Type", "inheritance": "", "abstract": false, @@ -13924,7 +13924,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UniqueID_Type", "inheritance": "", "abstract": false, @@ -13937,7 +13937,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "HotelReservationsType", "inheritance": "", "abstract": false, @@ -14059,7 +14059,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "POS_Type", "inheritance": "", "abstract": false, @@ -14181,7 +14181,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WarningsType", "inheritance": "", "abstract": false, @@ -14196,7 +14196,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CountriesType", "inheritance": "", "abstract": false, @@ -14323,7 +14323,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "POS_Type", "inheritance": "", "abstract": false, @@ -14445,7 +14445,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WarningsType", "inheritance": "", "abstract": false, @@ -14460,7 +14460,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CountriesType", "inheritance": "", "abstract": false, @@ -14587,7 +14587,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "POS_Type", "inheritance": "", "abstract": false, @@ -14602,7 +14602,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UpdateAllotmentType", "inheritance": "", "abstract": false, @@ -14723,7 +14723,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WarningsType", "inheritance": "", "abstract": false, @@ -14850,7 +14850,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "POS_Type", "inheritance": "", "abstract": false, @@ -14981,7 +14981,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WarningsType", "inheritance": "", "abstract": false, @@ -15118,7 +15118,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "POS_Type", "inheritance": "", "abstract": false, @@ -15133,7 +15133,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integer", "inheritance": "", "abstract": false, @@ -15256,7 +15256,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WarningsType", "inheritance": "", "abstract": false, @@ -15271,7 +15271,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Destinations", "inheritance": "", "abstract": false, @@ -15533,7 +15533,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WarningsType", "inheritance": "", "abstract": false, @@ -15548,7 +15548,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "HotelsType", "inheritance": "", "abstract": false, @@ -15675,7 +15675,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "POS_Type", "inheritance": "", "abstract": false, @@ -15853,7 +15853,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WarningsType", "inheritance": "", "abstract": false, @@ -15868,7 +15868,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "HotelDescriptiveContents", "inheritance": "", "abstract": false, @@ -16073,7 +16073,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "POS_Type", "inheritance": "", "abstract": false, @@ -16221,7 +16221,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WarningsType", "inheritance": "", "abstract": false, @@ -16236,7 +16236,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RoomStays", "inheritance": "", "abstract": false, @@ -16390,7 +16390,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "POS_Type", "inheritance": "", "abstract": false, @@ -16405,7 +16405,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UniqueID_Type", "inheritance": "", "abstract": false, @@ -16420,7 +16420,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AvailStatusMessages", "inheritance": "", "abstract": false, diff --git a/tests/resources/generated/parsed_whl_start.json b/tests/resources/generated/parsed_whl_start.json index 4e45d61d..9f5ce99c 100644 --- a/tests/resources/generated/parsed_whl_start.json +++ b/tests/resources/generated/parsed_whl_start.json @@ -2277,7 +2277,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CompanyNameType", "inheritance": "", "abstract": false, @@ -2388,7 +2388,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WarningsType", "inheritance": "", "abstract": false, @@ -2422,7 +2422,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UniqueID_Type", "inheritance": "", "abstract": false, @@ -2563,7 +2563,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RequestorID", "inheritance": "", "abstract": false, @@ -2575,7 +2575,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BookingChannel", "inheritance": "", "abstract": false, @@ -2653,7 +2653,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CompanyNameType", "inheritance": "", "abstract": false, @@ -3129,7 +3129,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TaxType", "inheritance": "", "abstract": false, @@ -3180,7 +3180,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ParagraphType", "inheritance": "", "abstract": false, @@ -3496,7 +3496,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StringLength1to64", "inheritance": "", "abstract": false, @@ -3511,7 +3511,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CardIssuerName", "inheritance": "", "abstract": false, @@ -3523,7 +3523,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressType", "inheritance": "", "abstract": false, @@ -3538,7 +3538,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Telephone", "inheritance": "", "abstract": false, @@ -3551,7 +3551,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailType", "inheritance": "", "abstract": false, @@ -4032,7 +4032,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StreetNmbr", "inheritance": "", "abstract": false, @@ -4044,7 +4044,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StringLength1to255", "inheritance": "", "abstract": false, @@ -4060,7 +4060,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StringLength1to64", "inheritance": "", "abstract": false, @@ -4075,7 +4075,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StringLength1to16", "inheritance": "", "abstract": false, @@ -4090,7 +4090,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StringLength1to32", "inheritance": "", "abstract": false, @@ -4105,7 +4105,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StateProvType", "inheritance": "", "abstract": false, @@ -4120,7 +4120,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CountryNameType", "inheritance": "", "abstract": false, @@ -4432,7 +4432,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StringLength1to64", "inheritance": "", "abstract": false, @@ -4561,7 +4561,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CompanyName", "inheritance": "", "abstract": false, @@ -4573,7 +4573,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressInfoType", "inheritance": "", "abstract": false, @@ -4588,7 +4588,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailType", "inheritance": "", "abstract": false, @@ -4603,7 +4603,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Telephone", "inheritance": "", "abstract": false, @@ -4810,7 +4810,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TaxesType", "inheritance": "", "abstract": false, @@ -4825,7 +4825,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ParagraphType", "inheritance": "", "abstract": false, @@ -5113,7 +5113,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StringLength1to16", "inheritance": "", "abstract": false, @@ -5129,7 +5129,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StringLength1to64", "inheritance": "", "abstract": false, @@ -5145,7 +5145,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StringLength1to64", "inheritance": "", "abstract": false, @@ -5161,7 +5161,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StringLength1to16", "inheritance": "", "abstract": false, @@ -5190,7 +5190,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StringLength1to16", "inheritance": "", "abstract": false, @@ -5206,7 +5206,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StringLength1to16", "inheritance": "", "abstract": false, @@ -5390,7 +5390,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "VideoItemsType", "inheritance": "", "abstract": false, @@ -5412,7 +5412,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ImageItemsType", "inheritance": "", "abstract": false, @@ -5434,7 +5434,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TextItemsType", "inheritance": "", "abstract": false, @@ -5594,7 +5594,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "VideoFormat", "inheritance": "", "abstract": false, @@ -5741,7 +5741,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "anyURI", "inheritance": "", "abstract": false, @@ -5979,7 +5979,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ImageFormat", "inheritance": "", "abstract": false, @@ -5992,7 +5992,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Description", "inheritance": "", "abstract": false, @@ -6256,7 +6256,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "anyURI", "inheritance": "", "abstract": false, @@ -6334,7 +6334,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "anyURI", "inheritance": "", "abstract": false, @@ -6355,7 +6355,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Description", "inheritance": "", "abstract": false, @@ -6630,7 +6630,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TaxesType", "inheritance": "", "abstract": false, @@ -6819,7 +6819,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "InventoryType", "inheritance": "", "abstract": false, @@ -6944,7 +6944,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RoomDetailType", "inheritance": "", "abstract": false, @@ -6971,7 +6971,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BookingType", "inheritance": "", "abstract": false, @@ -7149,7 +7149,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ExServiceType", "inheritance": "", "abstract": false, @@ -7176,7 +7176,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "GuestDetailType", "inheritance": "", "abstract": false, @@ -7589,7 +7589,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PersonNameType", "inheritance": "", "abstract": false, @@ -7605,7 +7605,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Telephone", "inheritance": "", "abstract": false, @@ -7618,7 +7618,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Email", "inheritance": "", "abstract": false, @@ -7631,7 +7631,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Address", "inheritance": "", "abstract": false, @@ -7644,7 +7644,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "URL", "inheritance": "", "abstract": false, @@ -7657,7 +7657,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CitizenCountryName", "inheritance": "", "abstract": false, @@ -7795,7 +7795,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CompanyNameType", "inheritance": "", "abstract": false, @@ -7810,7 +7810,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PersonNameType", "inheritance": "", "abstract": false, @@ -8068,7 +8068,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CustomerType", "inheritance": "", "abstract": false, @@ -8317,7 +8317,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SegmentCategory", "inheritance": "", "abstract": false, @@ -8330,7 +8330,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "HotelCategory", "inheritance": "", "abstract": false, @@ -8461,7 +8461,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "HotelName", "inheritance": "", "abstract": false, @@ -8473,7 +8473,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CategoryCodesType", "inheritance": "", "abstract": false, @@ -8488,7 +8488,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Descriptions", "inheritance": "", "abstract": false, @@ -8500,7 +8500,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Position", "inheritance": "", "abstract": false, @@ -8512,7 +8512,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Services", "inheritance": "", "abstract": false, @@ -8524,7 +8524,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LanguagesType", "inheritance": "", "abstract": false, @@ -8539,7 +8539,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Money", "inheritance": "", "abstract": false, @@ -8568,7 +8568,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FacilityInfoType", "inheritance": "", "abstract": false, @@ -8583,7 +8583,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "HostInfo", "inheritance": "", "abstract": false, @@ -8595,7 +8595,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CaringForDestination", "inheritance": "", "abstract": false, @@ -8727,7 +8727,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8742,7 +8742,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8757,7 +8757,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8772,7 +8772,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8787,7 +8787,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8802,7 +8802,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8817,7 +8817,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8832,7 +8832,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8847,7 +8847,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -8862,7 +8862,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9023,7 +9023,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9038,7 +9038,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9071,7 +9071,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9086,7 +9086,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -9147,7 +9147,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Deadline", "inheritance": "", "abstract": false, @@ -9159,7 +9159,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ParagraphType", "inheritance": "", "abstract": false, @@ -9254,7 +9254,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TaxesType", "inheritance": "", "abstract": false, @@ -9364,7 +9364,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AcceptedPaymentsType", "inheritance": "", "abstract": false, @@ -9379,7 +9379,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AmountPercent", "inheritance": "", "abstract": false, @@ -9481,7 +9481,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CancelPenaltiesType", "inheritance": "", "abstract": false, @@ -9496,7 +9496,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "GuaranteePaymentPolicy", "inheritance": "", "abstract": false, @@ -9508,7 +9508,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CheckoutCharges", "inheritance": "", "abstract": false, @@ -9520,7 +9520,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PolicyInfo", "inheritance": "", "abstract": false, @@ -9532,7 +9532,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TaxPolicies", "inheritance": "", "abstract": false, @@ -9544,7 +9544,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CommissionPolicy", "inheritance": "", "abstract": false, @@ -9556,7 +9556,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FeePolicies", "inheritance": "", "abstract": false, @@ -9629,7 +9629,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ParagraphType", "inheritance": "", "abstract": false, @@ -9681,7 +9681,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ParagraphType", "inheritance": "", "abstract": false, @@ -9740,7 +9740,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TaxPolicy", "inheritance": "", "abstract": false, @@ -9871,7 +9871,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "HotelInfoType", "inheritance": "", "abstract": false, @@ -9886,7 +9886,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FacilityInfoType", "inheritance": "", "abstract": false, @@ -9901,7 +9901,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Policies", "inheritance": "", "abstract": false, @@ -9913,7 +9913,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AreaInfoType", "inheritance": "", "abstract": false, @@ -9928,7 +9928,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MultimediaDescriptionsType", "inheritance": "", "abstract": false, @@ -9943,7 +9943,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ContactInfosType", "inheritance": "", "abstract": false, @@ -10040,7 +10040,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ContactInfoRootType", "inheritance": "", "abstract": false, @@ -10137,7 +10137,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ContactsType", "inheritance": "", "abstract": false, @@ -10152,7 +10152,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AddressesType", "inheritance": "", "abstract": false, @@ -10167,7 +10167,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "PhonesType", "inheritance": "", "abstract": false, @@ -10182,7 +10182,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailsType", "inheritance": "", "abstract": false, @@ -10197,7 +10197,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "URLsType", "inheritance": "", "abstract": false, @@ -10212,7 +10212,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CompanyName", "inheritance": "", "abstract": false, @@ -10287,7 +10287,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "JobTitle", "inheritance": "", "abstract": false, @@ -10753,7 +10753,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Attractions", "inheritance": "", "abstract": false, @@ -10765,7 +10765,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Recreations", "inheritance": "", "abstract": false, @@ -10825,7 +10825,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11077,7 +11077,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "GuestRooms", "inheritance": "", "abstract": false, @@ -11107,7 +11107,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "GuestRoom", "inheritance": "", "abstract": false, @@ -11138,7 +11138,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TypeRoom", "inheritance": "", "abstract": false, @@ -11151,7 +11151,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Amenities", "inheritance": "", "abstract": false, @@ -11163,7 +11163,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11178,7 +11178,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -11463,7 +11463,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CancelPenaltyType", "inheritance": "", "abstract": false, @@ -11512,7 +11512,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "HotelInfo", "inheritance": "", "abstract": false, @@ -11576,7 +11576,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "GuestCountType", "inheritance": "", "abstract": false, @@ -11732,7 +11732,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DateTimeSpanType", "inheritance": "", "abstract": false, @@ -11747,7 +11747,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RoomStayCandidates", "inheritance": "", "abstract": false, @@ -11759,7 +11759,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "HotelSearchCriteria", "inheritance": "", "abstract": false, @@ -11917,7 +11917,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "HotelRef", "inheritance": "", "abstract": false, @@ -12016,7 +12016,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RoomTypes", "inheritance": "", "abstract": false, @@ -12028,7 +12028,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RoomRates", "inheritance": "", "abstract": false, @@ -12040,7 +12040,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "GuestCountType", "inheritance": "", "abstract": false, @@ -12055,7 +12055,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DateTimeSpanType", "inheritance": "", "abstract": false, @@ -12070,7 +12070,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TotalType", "inheritance": "", "abstract": false, @@ -12085,7 +12085,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicPropertyInfoType", "inheritance": "", "abstract": false, @@ -12193,7 +12193,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RateType", "inheritance": "", "abstract": false, @@ -12208,7 +12208,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ParagraphType", "inheritance": "", "abstract": false, @@ -12224,7 +12224,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TotalType", "inheritance": "", "abstract": false, @@ -12239,7 +12239,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "BasicPropertyInfoType", "inheritance": "", "abstract": false, @@ -12380,7 +12380,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TotalType", "inheritance": "", "abstract": false, @@ -12395,7 +12395,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Discount", "inheritance": "", "abstract": false, @@ -12408,7 +12408,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TotalType", "inheritance": "", "abstract": false, @@ -12423,7 +12423,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ParagraphType", "inheritance": "", "abstract": false, @@ -12438,7 +12438,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "HotelAdditionalChargesType", "inheritance": "", "abstract": false, @@ -12695,7 +12695,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TotalType", "inheritance": "", "abstract": false, @@ -12778,7 +12778,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LengthOfStay", "inheritance": "", "abstract": false, @@ -13027,7 +13027,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StatusApplicationControlType", "inheritance": "", "abstract": false, @@ -13042,7 +13042,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LengthsOfStayType", "inheritance": "", "abstract": false, @@ -13057,7 +13057,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UniqueID_Type", "inheritance": "", "abstract": false, @@ -13072,7 +13072,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RestrictionStatus", "inheritance": "", "abstract": false, @@ -13164,7 +13164,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WarningsType", "inheritance": "", "abstract": false, @@ -13176,7 +13176,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "HotelReservationsType", "inheritance": "", "abstract": false, @@ -13416,7 +13416,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FeesType", "inheritance": "", "abstract": false, @@ -13431,7 +13431,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TotalType", "inheritance": "", "abstract": false, @@ -13464,7 +13464,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "HotelReservationIDsType", "inheritance": "", "abstract": false, @@ -13494,7 +13494,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ProfilesType", "inheritance": "", "abstract": false, @@ -13696,7 +13696,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SpecialRequestType", "inheritance": "", "abstract": false, @@ -13747,7 +13747,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RoomStaysType", "inheritance": "", "abstract": false, @@ -13762,7 +13762,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ResGuestsType", "inheritance": "", "abstract": false, @@ -13777,7 +13777,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ResGlobalInfoType", "inheritance": "", "abstract": false, @@ -13873,7 +13873,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "POS_Type", "inheritance": "", "abstract": false, @@ -13888,7 +13888,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UniqueID_Type", "inheritance": "", "abstract": false, @@ -13901,7 +13901,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "HotelReservationsType", "inheritance": "", "abstract": false, @@ -14023,7 +14023,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "POS_Type", "inheritance": "", "abstract": false, @@ -14145,7 +14145,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WarningsType", "inheritance": "", "abstract": false, @@ -14160,7 +14160,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CountriesType", "inheritance": "", "abstract": false, @@ -14287,7 +14287,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "POS_Type", "inheritance": "", "abstract": false, @@ -14409,7 +14409,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WarningsType", "inheritance": "", "abstract": false, @@ -14424,7 +14424,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CountriesType", "inheritance": "", "abstract": false, @@ -14551,7 +14551,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "POS_Type", "inheritance": "", "abstract": false, @@ -14566,7 +14566,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UpdateAllotmentType", "inheritance": "", "abstract": false, @@ -14687,7 +14687,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WarningsType", "inheritance": "", "abstract": false, @@ -14814,7 +14814,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "POS_Type", "inheritance": "", "abstract": false, @@ -14945,7 +14945,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WarningsType", "inheritance": "", "abstract": false, @@ -15082,7 +15082,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "POS_Type", "inheritance": "", "abstract": false, @@ -15097,7 +15097,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "integer", "inheritance": "", "abstract": false, @@ -15220,7 +15220,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WarningsType", "inheritance": "", "abstract": false, @@ -15235,7 +15235,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Destinations", "inheritance": "", "abstract": false, @@ -15497,7 +15497,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WarningsType", "inheritance": "", "abstract": false, @@ -15512,7 +15512,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "HotelsType", "inheritance": "", "abstract": false, @@ -15639,7 +15639,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "POS_Type", "inheritance": "", "abstract": false, @@ -15817,7 +15817,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WarningsType", "inheritance": "", "abstract": false, @@ -15832,7 +15832,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "HotelDescriptiveContents", "inheritance": "", "abstract": false, @@ -16037,7 +16037,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "POS_Type", "inheritance": "", "abstract": false, @@ -16185,7 +16185,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "WarningsType", "inheritance": "", "abstract": false, @@ -16200,7 +16200,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "RoomStays", "inheritance": "", "abstract": false, @@ -16354,7 +16354,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "POS_Type", "inheritance": "", "abstract": false, @@ -16369,7 +16369,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "UniqueID_Type", "inheritance": "", "abstract": false, @@ -16384,7 +16384,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AvailStatusMessages", "inheritance": "", "abstract": false, diff --git a/tests/resources/generated/parsed_yandex_campaigns_none.json b/tests/resources/generated/parsed_yandex_campaigns_none.json index 809dd179..01b0c7f7 100644 --- a/tests/resources/generated/parsed_yandex_campaigns_none.json +++ b/tests/resources/generated/parsed_yandex_campaigns_none.json @@ -285,7 +285,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -312,7 +312,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -325,7 +325,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -1105,7 +1105,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LimitOffset", "inheritance": "", "abstract": false, @@ -1132,7 +1132,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -1187,7 +1187,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1215,7 +1215,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ExceptionNotification", "inheritance": "", "abstract": false, @@ -1228,7 +1228,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ExceptionNotification", "inheritance": "", "abstract": false, @@ -1255,7 +1255,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -1282,7 +1282,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -1322,7 +1322,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3199,7 +3199,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -3253,7 +3253,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -3293,7 +3293,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -3334,7 +3334,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -3347,7 +3347,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -3402,7 +3402,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -3457,7 +3457,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -3470,7 +3470,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -3483,7 +3483,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -3552,7 +3552,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -3607,7 +3607,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -3620,7 +3620,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -3647,7 +3647,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyMaximumClicks", "inheritance": "", "abstract": false, @@ -3660,7 +3660,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyMaximumConversionRate", "inheritance": "", "abstract": false, @@ -3673,7 +3673,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyAverageCpc", "inheritance": "", "abstract": false, @@ -3686,7 +3686,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyAverageCpa", "inheritance": "", "abstract": false, @@ -3699,7 +3699,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyWeeklyClickPackage", "inheritance": "", "abstract": false, @@ -3712,7 +3712,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyAverageRoi", "inheritance": "", "abstract": false, @@ -3752,7 +3752,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyNetworkDefault", "inheritance": "", "abstract": false, @@ -3806,7 +3806,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyMaximumClicks", "inheritance": "", "abstract": false, @@ -3819,7 +3819,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyMaximumAppInstalls", "inheritance": "", "abstract": false, @@ -3832,7 +3832,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyAverageCpc", "inheritance": "", "abstract": false, @@ -3845,7 +3845,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyAverageCpi", "inheritance": "", "abstract": false, @@ -3858,7 +3858,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyWeeklyClickPackage", "inheritance": "", "abstract": false, @@ -3925,7 +3925,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyNetworkDefault", "inheritance": "", "abstract": false, @@ -3952,7 +3952,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyMaximumClicks", "inheritance": "", "abstract": false, @@ -3965,7 +3965,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyMaximumConversionRate", "inheritance": "", "abstract": false, @@ -3978,7 +3978,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyAverageCpc", "inheritance": "", "abstract": false, @@ -3991,7 +3991,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyAverageCpa", "inheritance": "", "abstract": false, @@ -4004,7 +4004,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyWeeklyClickPackage", "inheritance": "", "abstract": false, @@ -4017,7 +4017,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyAverageRoi", "inheritance": "", "abstract": false, @@ -4098,7 +4098,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TextCampaignSearchStrategy", "inheritance": "", "abstract": false, @@ -4111,7 +4111,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TextCampaignNetworkStrategy", "inheritance": "", "abstract": false, @@ -4138,7 +4138,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MobileAppCampaignSearchStrategy", "inheritance": "", "abstract": false, @@ -4151,7 +4151,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MobileAppCampaignNetworkStrategy", "inheritance": "", "abstract": false, @@ -4178,7 +4178,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DynamicTextCampaignSearchStrategy", "inheritance": "", "abstract": false, @@ -4191,7 +4191,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DynamicTextCampaignNetworkStrategy", "inheritance": "", "abstract": false, @@ -4231,7 +4231,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -4324,7 +4324,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -4377,7 +4377,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -4390,7 +4390,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -4430,7 +4430,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -4443,7 +4443,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -4509,7 +4509,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -4522,7 +4522,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -4535,7 +4535,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -4575,7 +4575,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -4588,7 +4588,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -4615,7 +4615,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -4628,7 +4628,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -4655,7 +4655,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyMaximumClicksAdd", "inheritance": "", "abstract": false, @@ -4668,7 +4668,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyMaximumConversionRateAdd", "inheritance": "", "abstract": false, @@ -4681,7 +4681,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyAverageCpcAdd", "inheritance": "", "abstract": false, @@ -4694,7 +4694,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyAverageCpaAdd", "inheritance": "", "abstract": false, @@ -4707,7 +4707,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyWeeklyClickPackageAdd", "inheritance": "", "abstract": false, @@ -4720,7 +4720,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyAverageRoiAdd", "inheritance": "", "abstract": false, @@ -4760,7 +4760,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyNetworkDefaultAdd", "inheritance": "", "abstract": false, @@ -4814,7 +4814,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyMaximumClicksAdd", "inheritance": "", "abstract": false, @@ -4827,7 +4827,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyMaximumAppInstallsAdd", "inheritance": "", "abstract": false, @@ -4840,7 +4840,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyAverageCpcAdd", "inheritance": "", "abstract": false, @@ -4853,7 +4853,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyAverageCpiAdd", "inheritance": "", "abstract": false, @@ -4866,7 +4866,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyWeeklyClickPackageAdd", "inheritance": "", "abstract": false, @@ -4933,7 +4933,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyNetworkDefaultAdd", "inheritance": "", "abstract": false, @@ -4960,7 +4960,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyMaximumClicksAdd", "inheritance": "", "abstract": false, @@ -4973,7 +4973,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyMaximumConversionRateAdd", "inheritance": "", "abstract": false, @@ -4986,7 +4986,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyAverageCpcAdd", "inheritance": "", "abstract": false, @@ -4999,7 +4999,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyAverageCpaAdd", "inheritance": "", "abstract": false, @@ -5012,7 +5012,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyWeeklyClickPackageAdd", "inheritance": "", "abstract": false, @@ -5025,7 +5025,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyAverageRoiAdd", "inheritance": "", "abstract": false, @@ -5226,7 +5226,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SmsSettings", "inheritance": "", "abstract": false, @@ -5239,7 +5239,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailSettings", "inheritance": "", "abstract": false, @@ -5266,7 +5266,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SmsEventsEnum", "inheritance": "", "abstract": false, @@ -5279,7 +5279,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5292,7 +5292,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5319,7 +5319,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5332,7 +5332,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -5345,7 +5345,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -5358,7 +5358,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "YesNoEnum", "inheritance": "", "abstract": false, @@ -5371,7 +5371,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "YesNoEnum", "inheritance": "", "abstract": false, @@ -5411,7 +5411,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -5424,7 +5424,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -5437,7 +5437,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -5823,7 +5823,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -5850,7 +5850,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -5863,7 +5863,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -5903,7 +5903,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CampaignFundsParam", "inheritance": "", "abstract": false, @@ -5916,7 +5916,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SharedAccountFundsParam", "inheritance": "", "abstract": false, @@ -5985,7 +5985,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfString", "inheritance": "", "abstract": false, @@ -6039,7 +6039,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -6052,7 +6052,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Notification", "inheritance": "", "abstract": false, @@ -6065,7 +6065,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TimeTargeting", "inheritance": "", "abstract": false, @@ -6078,7 +6078,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -6188,7 +6188,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TextCampaignSetting", "inheritance": "", "abstract": false, @@ -6228,7 +6228,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MobileAppCampaignSetting", "inheritance": "", "abstract": false, @@ -6268,7 +6268,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DynamicTextCampaignSetting", "inheritance": "", "abstract": false, @@ -6321,7 +6321,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DailyBudget", "inheritance": "", "abstract": false, @@ -6334,7 +6334,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -6347,7 +6347,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfString", "inheritance": "", "abstract": false, @@ -6360,7 +6360,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfString", "inheritance": "", "abstract": false, @@ -6373,7 +6373,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfString", "inheritance": "", "abstract": false, @@ -6386,7 +6386,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TextCampaignAddItem", "inheritance": "", "abstract": false, @@ -6399,7 +6399,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MobileAppCampaignAddItem", "inheritance": "", "abstract": false, @@ -6412,7 +6412,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DynamicTextCampaignAddItem", "inheritance": "", "abstract": false, @@ -6439,7 +6439,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TextCampaignStrategy", "inheritance": "", "abstract": false, @@ -6452,7 +6452,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TextCampaignSetting", "inheritance": "", "abstract": false, @@ -6479,7 +6479,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MobileAppCampaignStrategy", "inheritance": "", "abstract": false, @@ -6492,7 +6492,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MobileAppCampaignSetting", "inheritance": "", "abstract": false, @@ -6519,7 +6519,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DynamicTextCampaignStrategy", "inheritance": "", "abstract": false, @@ -6532,7 +6532,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DynamicTextCampaignSetting", "inheritance": "", "abstract": false, @@ -6572,7 +6572,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -6585,7 +6585,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -6668,7 +6668,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TextCampaignUpdateItem", "inheritance": "", "abstract": false, @@ -6681,7 +6681,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MobileAppCampaignUpdateItem", "inheritance": "", "abstract": false, @@ -6694,7 +6694,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DynamicTextCampaignUpdateItem", "inheritance": "", "abstract": false, @@ -6721,7 +6721,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TextCampaignStrategy", "inheritance": "", "abstract": false, @@ -6734,7 +6734,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TextCampaignSettingGet", "inheritance": "", "abstract": false, @@ -6761,7 +6761,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MobileAppCampaignStrategy", "inheritance": "", "abstract": false, @@ -6774,7 +6774,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MobileAppCampaignSettingGet", "inheritance": "", "abstract": false, @@ -6801,7 +6801,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DynamicTextCampaignStrategy", "inheritance": "", "abstract": false, @@ -6814,7 +6814,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DynamicTextCampaignSettingGet", "inheritance": "", "abstract": false, @@ -6841,7 +6841,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -6854,7 +6854,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -6867,7 +6867,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -6880,7 +6880,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CampaignTypeGetEnum", "inheritance": "", "abstract": false, @@ -6893,7 +6893,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CampaignStatusGetEnum", "inheritance": "", "abstract": false, @@ -6906,7 +6906,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CampaignStateGetEnum", "inheritance": "", "abstract": false, @@ -6919,7 +6919,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CampaignStatusPaymentEnum", "inheritance": "", "abstract": false, @@ -6932,7 +6932,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -6959,7 +6959,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Statistics", "inheritance": "", "abstract": false, @@ -6972,7 +6972,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CurrencyEnum", "inheritance": "", "abstract": false, @@ -6985,7 +6985,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FundsParam", "inheritance": "", "abstract": false, @@ -6998,7 +6998,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CampaignAssistant", "inheritance": "", "abstract": false, @@ -7081,7 +7081,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TextCampaignGetItem", "inheritance": "", "abstract": false, @@ -7094,7 +7094,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MobileAppCampaignGetItem", "inheritance": "", "abstract": false, @@ -7107,7 +7107,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DynamicTextCampaignGetItem", "inheritance": "", "abstract": false, @@ -7134,7 +7134,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -7147,7 +7147,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CampaignTypeEnum", "inheritance": "", "abstract": false, @@ -7160,7 +7160,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CampaignStateEnum", "inheritance": "", "abstract": false, @@ -7173,7 +7173,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CampaignStatusEnum", "inheritance": "", "abstract": false, @@ -7186,7 +7186,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CampaignStatusPaymentEnum", "inheritance": "", "abstract": false, @@ -7239,7 +7239,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TextCampaignFieldEnum", "inheritance": "", "abstract": false, @@ -7252,7 +7252,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MobileAppCampaignFieldEnum", "inheritance": "", "abstract": false, @@ -7265,7 +7265,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DynamicTextCampaignFieldEnum", "inheritance": "", "abstract": false, @@ -7292,7 +7292,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CampaignGetItem", "inheritance": "", "abstract": false, @@ -7346,7 +7346,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ActionResult", "inheritance": "", "abstract": false, @@ -7400,7 +7400,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ActionResult", "inheritance": "", "abstract": false, @@ -7454,7 +7454,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ActionResult", "inheritance": "", "abstract": false, @@ -7508,7 +7508,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ActionResult", "inheritance": "", "abstract": false, @@ -7562,7 +7562,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ActionResult", "inheritance": "", "abstract": false, @@ -7616,7 +7616,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ActionResult", "inheritance": "", "abstract": false, @@ -7670,7 +7670,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ActionResult", "inheritance": "", "abstract": false, diff --git a/tests/resources/generated/parsed_yandex_campaigns_start.json b/tests/resources/generated/parsed_yandex_campaigns_start.json index e3de1f81..d4d3fb58 100644 --- a/tests/resources/generated/parsed_yandex_campaigns_start.json +++ b/tests/resources/generated/parsed_yandex_campaigns_start.json @@ -285,7 +285,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -312,7 +312,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -325,7 +325,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -1105,7 +1105,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LimitOffset", "inheritance": "", "abstract": false, @@ -1132,7 +1132,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -1187,7 +1187,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1215,7 +1215,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ExceptionNotification", "inheritance": "", "abstract": false, @@ -1228,7 +1228,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ExceptionNotification", "inheritance": "", "abstract": false, @@ -1255,7 +1255,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -1282,7 +1282,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -1322,7 +1322,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -3199,7 +3199,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -3253,7 +3253,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -3293,7 +3293,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -3334,7 +3334,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -3347,7 +3347,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -3402,7 +3402,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -3457,7 +3457,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -3470,7 +3470,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -3483,7 +3483,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -3552,7 +3552,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -3607,7 +3607,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -3620,7 +3620,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -3647,7 +3647,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyMaximumClicks", "inheritance": "", "abstract": false, @@ -3660,7 +3660,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyMaximumConversionRate", "inheritance": "", "abstract": false, @@ -3673,7 +3673,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyAverageCpc", "inheritance": "", "abstract": false, @@ -3686,7 +3686,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyAverageCpa", "inheritance": "", "abstract": false, @@ -3699,7 +3699,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyWeeklyClickPackage", "inheritance": "", "abstract": false, @@ -3712,7 +3712,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyAverageRoi", "inheritance": "", "abstract": false, @@ -3752,7 +3752,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyNetworkDefault", "inheritance": "", "abstract": false, @@ -3806,7 +3806,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyMaximumClicks", "inheritance": "", "abstract": false, @@ -3819,7 +3819,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyMaximumAppInstalls", "inheritance": "", "abstract": false, @@ -3832,7 +3832,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyAverageCpc", "inheritance": "", "abstract": false, @@ -3845,7 +3845,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyAverageCpi", "inheritance": "", "abstract": false, @@ -3858,7 +3858,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyWeeklyClickPackage", "inheritance": "", "abstract": false, @@ -3925,7 +3925,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyNetworkDefault", "inheritance": "", "abstract": false, @@ -3952,7 +3952,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyMaximumClicks", "inheritance": "", "abstract": false, @@ -3965,7 +3965,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyMaximumConversionRate", "inheritance": "", "abstract": false, @@ -3978,7 +3978,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyAverageCpc", "inheritance": "", "abstract": false, @@ -3991,7 +3991,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyAverageCpa", "inheritance": "", "abstract": false, @@ -4004,7 +4004,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyWeeklyClickPackage", "inheritance": "", "abstract": false, @@ -4017,7 +4017,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyAverageRoi", "inheritance": "", "abstract": false, @@ -4098,7 +4098,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TextCampaignSearchStrategy", "inheritance": "", "abstract": false, @@ -4111,7 +4111,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TextCampaignNetworkStrategy", "inheritance": "", "abstract": false, @@ -4138,7 +4138,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MobileAppCampaignSearchStrategy", "inheritance": "", "abstract": false, @@ -4151,7 +4151,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MobileAppCampaignNetworkStrategy", "inheritance": "", "abstract": false, @@ -4178,7 +4178,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DynamicTextCampaignSearchStrategy", "inheritance": "", "abstract": false, @@ -4191,7 +4191,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DynamicTextCampaignNetworkStrategy", "inheritance": "", "abstract": false, @@ -4231,7 +4231,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -4324,7 +4324,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -4377,7 +4377,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -4390,7 +4390,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -4430,7 +4430,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -4443,7 +4443,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -4509,7 +4509,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -4522,7 +4522,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -4535,7 +4535,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -4575,7 +4575,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -4588,7 +4588,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -4615,7 +4615,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -4628,7 +4628,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -4655,7 +4655,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyMaximumClicksAdd", "inheritance": "", "abstract": false, @@ -4668,7 +4668,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyMaximumConversionRateAdd", "inheritance": "", "abstract": false, @@ -4681,7 +4681,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyAverageCpcAdd", "inheritance": "", "abstract": false, @@ -4694,7 +4694,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyAverageCpaAdd", "inheritance": "", "abstract": false, @@ -4707,7 +4707,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyWeeklyClickPackageAdd", "inheritance": "", "abstract": false, @@ -4720,7 +4720,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyAverageRoiAdd", "inheritance": "", "abstract": false, @@ -4760,7 +4760,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyNetworkDefaultAdd", "inheritance": "", "abstract": false, @@ -4814,7 +4814,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyMaximumClicksAdd", "inheritance": "", "abstract": false, @@ -4827,7 +4827,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyMaximumAppInstallsAdd", "inheritance": "", "abstract": false, @@ -4840,7 +4840,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyAverageCpcAdd", "inheritance": "", "abstract": false, @@ -4853,7 +4853,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyAverageCpiAdd", "inheritance": "", "abstract": false, @@ -4866,7 +4866,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyWeeklyClickPackageAdd", "inheritance": "", "abstract": false, @@ -4933,7 +4933,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyNetworkDefaultAdd", "inheritance": "", "abstract": false, @@ -4960,7 +4960,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyMaximumClicksAdd", "inheritance": "", "abstract": false, @@ -4973,7 +4973,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyMaximumConversionRateAdd", "inheritance": "", "abstract": false, @@ -4986,7 +4986,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyAverageCpcAdd", "inheritance": "", "abstract": false, @@ -4999,7 +4999,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyAverageCpaAdd", "inheritance": "", "abstract": false, @@ -5012,7 +5012,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyWeeklyClickPackageAdd", "inheritance": "", "abstract": false, @@ -5025,7 +5025,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StrategyAverageRoiAdd", "inheritance": "", "abstract": false, @@ -5226,7 +5226,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SmsSettings", "inheritance": "", "abstract": false, @@ -5239,7 +5239,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "EmailSettings", "inheritance": "", "abstract": false, @@ -5266,7 +5266,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SmsEventsEnum", "inheritance": "", "abstract": false, @@ -5279,7 +5279,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5292,7 +5292,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5319,7 +5319,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -5332,7 +5332,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -5345,7 +5345,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -5358,7 +5358,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "YesNoEnum", "inheritance": "", "abstract": false, @@ -5371,7 +5371,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "YesNoEnum", "inheritance": "", "abstract": false, @@ -5411,7 +5411,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -5424,7 +5424,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -5437,7 +5437,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "int", "inheritance": "", "abstract": false, @@ -5823,7 +5823,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -5850,7 +5850,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -5863,7 +5863,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -5903,7 +5903,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CampaignFundsParam", "inheritance": "", "abstract": false, @@ -5916,7 +5916,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "SharedAccountFundsParam", "inheritance": "", "abstract": false, @@ -5985,7 +5985,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfString", "inheritance": "", "abstract": false, @@ -6039,7 +6039,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -6052,7 +6052,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Notification", "inheritance": "", "abstract": false, @@ -6065,7 +6065,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TimeTargeting", "inheritance": "", "abstract": false, @@ -6078,7 +6078,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -6188,7 +6188,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TextCampaignSetting", "inheritance": "", "abstract": false, @@ -6228,7 +6228,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MobileAppCampaignSetting", "inheritance": "", "abstract": false, @@ -6268,7 +6268,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DynamicTextCampaignSetting", "inheritance": "", "abstract": false, @@ -6321,7 +6321,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DailyBudget", "inheritance": "", "abstract": false, @@ -6334,7 +6334,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -6347,7 +6347,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfString", "inheritance": "", "abstract": false, @@ -6360,7 +6360,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfString", "inheritance": "", "abstract": false, @@ -6373,7 +6373,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfString", "inheritance": "", "abstract": false, @@ -6386,7 +6386,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TextCampaignAddItem", "inheritance": "", "abstract": false, @@ -6399,7 +6399,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MobileAppCampaignAddItem", "inheritance": "", "abstract": false, @@ -6412,7 +6412,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DynamicTextCampaignAddItem", "inheritance": "", "abstract": false, @@ -6439,7 +6439,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TextCampaignStrategy", "inheritance": "", "abstract": false, @@ -6452,7 +6452,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TextCampaignSetting", "inheritance": "", "abstract": false, @@ -6479,7 +6479,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MobileAppCampaignStrategy", "inheritance": "", "abstract": false, @@ -6492,7 +6492,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MobileAppCampaignSetting", "inheritance": "", "abstract": false, @@ -6519,7 +6519,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DynamicTextCampaignStrategy", "inheritance": "", "abstract": false, @@ -6532,7 +6532,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DynamicTextCampaignSetting", "inheritance": "", "abstract": false, @@ -6572,7 +6572,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -6585,7 +6585,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -6668,7 +6668,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TextCampaignUpdateItem", "inheritance": "", "abstract": false, @@ -6681,7 +6681,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MobileAppCampaignUpdateItem", "inheritance": "", "abstract": false, @@ -6694,7 +6694,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DynamicTextCampaignUpdateItem", "inheritance": "", "abstract": false, @@ -6721,7 +6721,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TextCampaignStrategy", "inheritance": "", "abstract": false, @@ -6734,7 +6734,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TextCampaignSettingGet", "inheritance": "", "abstract": false, @@ -6761,7 +6761,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MobileAppCampaignStrategy", "inheritance": "", "abstract": false, @@ -6774,7 +6774,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MobileAppCampaignSettingGet", "inheritance": "", "abstract": false, @@ -6801,7 +6801,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DynamicTextCampaignStrategy", "inheritance": "", "abstract": false, @@ -6814,7 +6814,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DynamicTextCampaignSettingGet", "inheritance": "", "abstract": false, @@ -6841,7 +6841,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -6854,7 +6854,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -6867,7 +6867,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -6880,7 +6880,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CampaignTypeGetEnum", "inheritance": "", "abstract": false, @@ -6893,7 +6893,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CampaignStatusGetEnum", "inheritance": "", "abstract": false, @@ -6906,7 +6906,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CampaignStateGetEnum", "inheritance": "", "abstract": false, @@ -6919,7 +6919,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CampaignStatusPaymentEnum", "inheritance": "", "abstract": false, @@ -6932,7 +6932,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -6959,7 +6959,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "Statistics", "inheritance": "", "abstract": false, @@ -6972,7 +6972,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CurrencyEnum", "inheritance": "", "abstract": false, @@ -6985,7 +6985,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "FundsParam", "inheritance": "", "abstract": false, @@ -6998,7 +6998,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CampaignAssistant", "inheritance": "", "abstract": false, @@ -7081,7 +7081,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TextCampaignGetItem", "inheritance": "", "abstract": false, @@ -7094,7 +7094,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MobileAppCampaignGetItem", "inheritance": "", "abstract": false, @@ -7107,7 +7107,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DynamicTextCampaignGetItem", "inheritance": "", "abstract": false, @@ -7134,7 +7134,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -7147,7 +7147,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CampaignTypeEnum", "inheritance": "", "abstract": false, @@ -7160,7 +7160,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CampaignStateEnum", "inheritance": "", "abstract": false, @@ -7173,7 +7173,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CampaignStatusEnum", "inheritance": "", "abstract": false, @@ -7186,7 +7186,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CampaignStatusPaymentEnum", "inheritance": "", "abstract": false, @@ -7239,7 +7239,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TextCampaignFieldEnum", "inheritance": "", "abstract": false, @@ -7252,7 +7252,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MobileAppCampaignFieldEnum", "inheritance": "", "abstract": false, @@ -7265,7 +7265,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DynamicTextCampaignFieldEnum", "inheritance": "", "abstract": false, @@ -7292,7 +7292,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "CampaignGetItem", "inheritance": "", "abstract": false, @@ -7346,7 +7346,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ActionResult", "inheritance": "", "abstract": false, @@ -7400,7 +7400,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ActionResult", "inheritance": "", "abstract": false, @@ -7454,7 +7454,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ActionResult", "inheritance": "", "abstract": false, @@ -7508,7 +7508,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ActionResult", "inheritance": "", "abstract": false, @@ -7562,7 +7562,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ActionResult", "inheritance": "", "abstract": false, @@ -7616,7 +7616,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ActionResult", "inheritance": "", "abstract": false, @@ -7670,7 +7670,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ActionResult", "inheritance": "", "abstract": false, diff --git a/tests/resources/generated/parsed_yandex_groups_none.json b/tests/resources/generated/parsed_yandex_groups_none.json index b53bb80d..1b13752e 100644 --- a/tests/resources/generated/parsed_yandex_groups_none.json +++ b/tests/resources/generated/parsed_yandex_groups_none.json @@ -197,7 +197,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -224,7 +224,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -237,7 +237,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -1017,7 +1017,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LimitOffset", "inheritance": "", "abstract": false, @@ -1044,7 +1044,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -1099,7 +1099,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1127,7 +1127,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ExceptionNotification", "inheritance": "", "abstract": false, @@ -1140,7 +1140,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ExceptionNotification", "inheritance": "", "abstract": false, @@ -1167,7 +1167,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -1194,7 +1194,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -1234,7 +1234,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1515,7 +1515,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -1528,7 +1528,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -1541,7 +1541,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AdGroupTypesEnum", "inheritance": "", "abstract": false, @@ -1554,7 +1554,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StatusSelectionEnum", "inheritance": "", "abstract": false, @@ -1567,7 +1567,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -1580,7 +1580,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1593,7 +1593,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StatusSelectionEnum", "inheritance": "", "abstract": false, @@ -1620,7 +1620,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -1647,7 +1647,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1713,7 +1713,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfString", "inheritance": "", "abstract": false, @@ -1726,7 +1726,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1739,7 +1739,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MobileAppAdGroupAdd", "inheritance": "", "abstract": false, @@ -1752,7 +1752,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DynamicTextAdGroup", "inheritance": "", "abstract": false, @@ -1779,7 +1779,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -1792,7 +1792,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1805,7 +1805,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -1818,7 +1818,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StatusEnum", "inheritance": "", "abstract": false, @@ -1831,7 +1831,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AdGroupTypesEnum", "inheritance": "", "abstract": false, @@ -1844,7 +1844,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MobileAppAdGroupGet", "inheritance": "", "abstract": false, @@ -1857,7 +1857,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DynamicTextAdGroupGet", "inheritance": "", "abstract": false, @@ -1982,7 +1982,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1995,7 +1995,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TargetDeviceTypeEnum", "inheritance": "", "abstract": false, @@ -2008,7 +2008,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TargetCarrierEnum", "inheritance": "", "abstract": false, @@ -2021,7 +2021,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2048,7 +2048,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MobileOperatingSystemTypeEnum", "inheritance": "", "abstract": false, @@ -2061,7 +2061,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AppAvailabilityStatusEnum", "inheritance": "", "abstract": false, @@ -2088,7 +2088,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TargetDeviceTypeEnum", "inheritance": "", "abstract": false, @@ -2101,7 +2101,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TargetCarrierEnum", "inheritance": "", "abstract": false, @@ -2114,7 +2114,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2234,7 +2234,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2247,7 +2247,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DomainUrlProcessingStatusEnum", "inheritance": "", "abstract": false, @@ -2287,7 +2287,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2300,7 +2300,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MobileAppAdGroupUpdate", "inheritance": "", "abstract": false, @@ -2313,7 +2313,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DynamicTextAdGroup", "inheritance": "", "abstract": false, @@ -2366,7 +2366,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MobileAppAdGroupFieldEnum", "inheritance": "", "abstract": false, @@ -2379,7 +2379,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DynamicTextAdGroupFieldEnum", "inheritance": "", "abstract": false, @@ -2406,7 +2406,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AdGroupGetItem", "inheritance": "", "abstract": false, diff --git a/tests/resources/generated/parsed_yandex_groups_start.json b/tests/resources/generated/parsed_yandex_groups_start.json index 6a708898..f129e332 100644 --- a/tests/resources/generated/parsed_yandex_groups_start.json +++ b/tests/resources/generated/parsed_yandex_groups_start.json @@ -197,7 +197,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -224,7 +224,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -237,7 +237,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -1017,7 +1017,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "LimitOffset", "inheritance": "", "abstract": false, @@ -1044,7 +1044,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -1099,7 +1099,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1127,7 +1127,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ExceptionNotification", "inheritance": "", "abstract": false, @@ -1140,7 +1140,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ExceptionNotification", "inheritance": "", "abstract": false, @@ -1167,7 +1167,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -1194,7 +1194,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -1234,7 +1234,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1515,7 +1515,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -1528,7 +1528,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -1541,7 +1541,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AdGroupTypesEnum", "inheritance": "", "abstract": false, @@ -1554,7 +1554,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StatusSelectionEnum", "inheritance": "", "abstract": false, @@ -1567,7 +1567,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -1580,7 +1580,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1593,7 +1593,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StatusSelectionEnum", "inheritance": "", "abstract": false, @@ -1620,7 +1620,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -1647,7 +1647,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1713,7 +1713,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "ArrayOfString", "inheritance": "", "abstract": false, @@ -1726,7 +1726,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1739,7 +1739,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MobileAppAdGroupAdd", "inheritance": "", "abstract": false, @@ -1752,7 +1752,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DynamicTextAdGroup", "inheritance": "", "abstract": false, @@ -1779,7 +1779,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -1792,7 +1792,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1805,7 +1805,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "long", "inheritance": "", "abstract": false, @@ -1818,7 +1818,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "StatusEnum", "inheritance": "", "abstract": false, @@ -1831,7 +1831,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AdGroupTypesEnum", "inheritance": "", "abstract": false, @@ -1844,7 +1844,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MobileAppAdGroupGet", "inheritance": "", "abstract": false, @@ -1857,7 +1857,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DynamicTextAdGroupGet", "inheritance": "", "abstract": false, @@ -1982,7 +1982,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -1995,7 +1995,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TargetDeviceTypeEnum", "inheritance": "", "abstract": false, @@ -2008,7 +2008,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TargetCarrierEnum", "inheritance": "", "abstract": false, @@ -2021,7 +2021,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2048,7 +2048,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MobileOperatingSystemTypeEnum", "inheritance": "", "abstract": false, @@ -2061,7 +2061,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AppAvailabilityStatusEnum", "inheritance": "", "abstract": false, @@ -2088,7 +2088,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TargetDeviceTypeEnum", "inheritance": "", "abstract": false, @@ -2101,7 +2101,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "TargetCarrierEnum", "inheritance": "", "abstract": false, @@ -2114,7 +2114,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2234,7 +2234,7 @@ "attributes": [ { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2247,7 +2247,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DomainUrlProcessingStatusEnum", "inheritance": "", "abstract": false, @@ -2287,7 +2287,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "string", "inheritance": "", "abstract": false, @@ -2300,7 +2300,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MobileAppAdGroupUpdate", "inheritance": "", "abstract": false, @@ -2313,7 +2313,7 @@ }, { "containsElements": false, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DynamicTextAdGroup", "inheritance": "", "abstract": false, @@ -2366,7 +2366,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "MobileAppAdGroupFieldEnum", "inheritance": "", "abstract": false, @@ -2379,7 +2379,7 @@ }, { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "DynamicTextAdGroupFieldEnum", "inheritance": "", "abstract": false, @@ -2406,7 +2406,7 @@ "attributes": [ { "containsElements": true, - "removableFromRequest": false, + "removableFromRequest": true, "type": "AdGroupGetItem", "inheritance": "", "abstract": false,