diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdclasses/Configuration.java b/src/main/java/com/github/_1c_syntax/bsl/mdclasses/Configuration.java index 400227a75..8d1946670 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdclasses/Configuration.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdclasses/Configuration.java @@ -87,10 +87,10 @@ import com.github._1c_syntax.bsl.types.ModuleType; import com.github._1c_syntax.bsl.types.MultiLanguageString; import com.github._1c_syntax.bsl.types.ScriptVariant; -import com.github._1c_syntax.utils.Lazy; import lombok.Builder; import lombok.Builder.Default; import lombok.EqualsAndHashCode; +import lombok.Getter; import lombok.Singular; import lombok.ToString; import lombok.Value; @@ -150,7 +150,8 @@ public class Configuration implements CF { ApplicationRunMode defaultRunMode = ApplicationRunMode.AUTO; @Default List modules = Collections.emptyList(); - Lazy> allModules = new Lazy<>(this::computeAllModules); + @Getter(lazy = true) + List allModules = LazyLoader.computeAllModules(this); @Default String vendor = ""; @Default @@ -259,13 +260,19 @@ public class Configuration implements CF { @Singular List children; - Lazy> plainChildren = new Lazy<>(this::computePlainChildren); - - Lazy> modulesByType = new Lazy<>(this::computeModulesByType); - Lazy> modulesByURI = new Lazy<>(this::computeModulesByURI); - Lazy> modulesByObject = new Lazy<>(this::computeModulesByObject); - Lazy> commonModulesByName = new Lazy<>(this::computeCommonModulesByName); - Lazy> childrenByMdoRef = new Lazy<>(this::computeChildrenByMdoRef); + @Getter(lazy = true) + List plainChildren = LazyLoader.computePlainChildren(this); + + @Getter(lazy = true) + Map modulesByType = LazyLoader.computeModulesByType(this); + @Getter(lazy = true) + Map modulesByURI = LazyLoader.computeModulesByURI(this); + @Getter(lazy = true) + Map modulesByObject = LazyLoader.computeModulesByObject(this); + @Getter(lazy = true) + Map commonModulesByName = LazyLoader.computeCommonModulesByName(this); + @Getter(lazy = true) + Map childrenByMdoRef = LazyLoader.computeChildrenByMdoRef(this); /* * Свое @@ -329,41 +336,6 @@ public class Configuration implements CF { @Default MultiLanguageString briefInformation = MultiLanguageString.EMPTY; - @Override - public List getAllModules() { - return allModules.getOrCompute(); - } - - @Override - public List getPlainChildren() { - return plainChildren.getOrCompute(); - } - - @Override - public Map getModulesByType() { - return modulesByType.getOrCompute(); - } - - @Override - public Map getModulesByObject() { - return modulesByObject.getOrCompute(); - } - - @Override - public Map getModulesByURI() { - return modulesByURI.getOrCompute(); - } - - @Override - public Map getCommonModulesByName() { - return commonModulesByName.getOrCompute(); - } - - @Override - public Map getChildrenByMdoRef() { - return childrenByMdoRef.getOrCompute(); - } - /** * Возвращает перечень возможных прав доступа */ @@ -371,34 +343,6 @@ public static List possibleRights() { return POSSIBLE_RIGHTS; } - private List computePlainChildren() { - return LazyLoader.computePlainChildren(this); - } - - private Map computeModulesByType() { - return LazyLoader.computeModulesByType(this); - } - - private Map computeModulesByObject() { - return LazyLoader.computeModulesByObject(this); - } - - private List computeAllModules() { - return LazyLoader.computeAllModules(this); - } - - private Map computeModulesByURI() { - return LazyLoader.computeModulesByURI(this); - } - - private Map computeCommonModulesByName() { - return LazyLoader.computeCommonModulesByName(this); - } - - private Map computeChildrenByMdoRef() { - return LazyLoader.computeChildrenByMdoRef(this); - } - private static Configuration createEmptyConfiguration() { var emptyString = "empty"; diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdclasses/ConfigurationExtension.java b/src/main/java/com/github/_1c_syntax/bsl/mdclasses/ConfigurationExtension.java index 1c5be9bd7..a3fca8551 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdclasses/ConfigurationExtension.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdclasses/ConfigurationExtension.java @@ -86,10 +86,10 @@ import com.github._1c_syntax.bsl.types.ModuleType; import com.github._1c_syntax.bsl.types.MultiLanguageString; import com.github._1c_syntax.bsl.types.ScriptVariant; -import com.github._1c_syntax.utils.Lazy; import lombok.Builder; import lombok.Builder.Default; import lombok.EqualsAndHashCode; +import lombok.Getter; import lombok.Singular; import lombok.ToString; import lombok.Value; @@ -143,7 +143,8 @@ public class ConfigurationExtension implements CF { ApplicationRunMode defaultRunMode = ApplicationRunMode.AUTO; @Default List modules = Collections.emptyList(); - Lazy> allModules = new Lazy<>(this::computeAllModules); + @Getter(lazy = true) + List allModules = LazyLoader.computeAllModules(this); @Default String vendor = ""; @Default @@ -252,13 +253,19 @@ public class ConfigurationExtension implements CF { @Singular List children; - Lazy> plainChildren = new Lazy<>(this::computePlainChildren); + @Getter(lazy = true) + List plainChildren = LazyLoader.computePlainChildren(this); - Lazy> modulesByType = new Lazy<>(this::computeModulesByType); - Lazy> modulesByObject = new Lazy<>(this::computeModulesByObject); - Lazy> modulesByURI = new Lazy<>(this::computeModulesByURI); - Lazy> commonModulesByName = new Lazy<>(this::computeCommonModulesByName); - Lazy> childrenByMdoRef = new Lazy<>(this::computeChildrenByMdoRef); + @Getter(lazy = true) + Map modulesByType = LazyLoader.computeModulesByType(this); + @Getter(lazy = true) + Map modulesByURI = LazyLoader.computeModulesByURI(this); + @Getter(lazy = true) + Map modulesByObject = LazyLoader.computeModulesByObject(this); + @Getter(lazy = true) + Map commonModulesByName = LazyLoader.computeCommonModulesByName(this); + @Getter(lazy = true) + Map childrenByMdoRef = LazyLoader.computeChildrenByMdoRef(this); /* * Свое @@ -276,41 +283,6 @@ public class ConfigurationExtension implements CF { @Default String namePrefix = ""; - @Override - public List getAllModules() { - return allModules.getOrCompute(); - } - - @Override - public List getPlainChildren() { - return plainChildren.getOrCompute(); - } - - @Override - public Map getModulesByType() { - return modulesByType.getOrCompute(); - } - - @Override - public Map getModulesByObject() { - return modulesByObject.getOrCompute(); - } - - @Override - public Map getModulesByURI() { - return modulesByURI.getOrCompute(); - } - - @Override - public Map getCommonModulesByName() { - return commonModulesByName.getOrCompute(); - } - - @Override - public Map getChildrenByMdoRef() { - return childrenByMdoRef.getOrCompute(); - } - /** * Возвращает перечень возможных прав доступа */ @@ -318,32 +290,4 @@ public static List possibleRights() { return Configuration.possibleRights(); } - private List computePlainChildren() { - return LazyLoader.computePlainChildren(this); - } - - private Map computeModulesByType() { - return LazyLoader.computeModulesByType(this); - } - - private Map computeModulesByObject() { - return LazyLoader.computeModulesByObject(this); - } - - private List computeAllModules() { - return LazyLoader.computeAllModules(this); - } - - private Map computeModulesByURI() { - return LazyLoader.computeModulesByURI(this); - } - - private Map computeCommonModulesByName() { - return LazyLoader.computeCommonModulesByName(this); - } - - private Map computeChildrenByMdoRef() { - return LazyLoader.computeChildrenByMdoRef(this); - } - } diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdclasses/ExternalDataProcessor.java b/src/main/java/com/github/_1c_syntax/bsl/mdclasses/ExternalDataProcessor.java index a7ec2a3cf..ab84c696a 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdclasses/ExternalDataProcessor.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdclasses/ExternalDataProcessor.java @@ -32,10 +32,10 @@ import com.github._1c_syntax.bsl.types.ConfigurationSource; import com.github._1c_syntax.bsl.types.MdoReference; import com.github._1c_syntax.bsl.types.MultiLanguageString; -import com.github._1c_syntax.utils.Lazy; import lombok.Builder; import lombok.Builder.Default; import lombok.EqualsAndHashCode; +import lombok.Getter; import lombok.Singular; import lombok.ToString; import lombok.Value; @@ -65,7 +65,8 @@ public class ExternalDataProcessor implements ExternalSource { @Default List modules = Collections.emptyList(); - Lazy> allModules = new Lazy<>(this::computeAllModules); + @Getter(lazy = true) + List allModules = LazyLoader.computeAllModules(this); @Default ConfigurationSource configurationSource = ConfigurationSource.EMPTY; @@ -79,8 +80,10 @@ public class ExternalDataProcessor implements ExternalSource { @Singular List tabularSections; - Lazy> storageFields = new Lazy<>(this::computeStorageFields); - Lazy> plainStorageFields = new Lazy<>(this::computePlainStorageFields); + @Getter(lazy = true) + List storageFields = LazyLoader.computeStorageFields(this); + @Getter(lazy = true) + List plainStorageFields = LazyLoader.computePlainStorageFields(this); @Singular List forms; @@ -88,52 +91,8 @@ public class ExternalDataProcessor implements ExternalSource { @Singular List templates; - Lazy> children = new Lazy<>(this::computeChildren); - Lazy> plainChildren = new Lazy<>(this::computePlainChildren); - - @Override - public List getChildren() { - return children.getOrCompute(); - } - - @Override - public List getPlainChildren() { - return plainChildren.getOrCompute(); - } - - @Override - public List getStorageFields() { - return storageFields.getOrCompute(); - } - - @Override - public List getPlainStorageFields() { - return plainStorageFields.getOrCompute(); - } - - @Override - public List getAllModules() { - return allModules.getOrCompute(); - } - - private List computeChildren() { - return LazyLoader.computeChildren(this); - } - - private List computePlainChildren() { - return LazyLoader.computePlainChildren(this); - } - - private List computeStorageFields() { - return LazyLoader.computeStorageFields(this); - } - - private List computePlainStorageFields() { - return LazyLoader.computePlainStorageFields(this); - } - - private List computeAllModules() { - return LazyLoader.computeAllModules(this); - } - + @Getter(lazy = true) + List children = LazyLoader.computeChildren(this); + @Getter(lazy = true) + List plainChildren = LazyLoader.computePlainChildren(this); } diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdclasses/ExternalReport.java b/src/main/java/com/github/_1c_syntax/bsl/mdclasses/ExternalReport.java index 88ce86a95..ed564b34f 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdclasses/ExternalReport.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdclasses/ExternalReport.java @@ -32,10 +32,10 @@ import com.github._1c_syntax.bsl.types.ConfigurationSource; import com.github._1c_syntax.bsl.types.MdoReference; import com.github._1c_syntax.bsl.types.MultiLanguageString; -import com.github._1c_syntax.utils.Lazy; import lombok.Builder; import lombok.Builder.Default; import lombok.EqualsAndHashCode; +import lombok.Getter; import lombok.Singular; import lombok.ToString; import lombok.Value; @@ -70,7 +70,8 @@ public class ExternalReport implements ExternalSource { @Default List modules = Collections.emptyList(); - Lazy> allModules = new Lazy<>(this::computeAllModules); + @Getter(lazy = true) + List allModules = LazyLoader.computeAllModules(this); @Default ConfigurationSource configurationSource = ConfigurationSource.EMPTY; @@ -84,8 +85,10 @@ public class ExternalReport implements ExternalSource { @Singular List tabularSections; - Lazy> storageFields = new Lazy<>(this::computeStorageFields); - Lazy> plainStorageFields = new Lazy<>(this::computePlainStorageFields); + @Getter(lazy = true) + List storageFields = LazyLoader.computeStorageFields(this); + @Getter(lazy = true) + List plainStorageFields = LazyLoader.computePlainStorageFields(this); @Singular List forms; @@ -93,53 +96,10 @@ public class ExternalReport implements ExternalSource { @Singular List templates; - Lazy> children = new Lazy<>(this::computeChildren); - Lazy> plainChildren = new Lazy<>(this::computePlainChildren); - - @Override - public List getChildren() { - return children.getOrCompute(); - } - - @Override - public List getPlainChildren() { - return plainChildren.getOrCompute(); - } - - @Override - public List getStorageFields() { - return storageFields.getOrCompute(); - } - - @Override - public List getPlainStorageFields() { - return plainStorageFields.getOrCompute(); - } - - @Override - public List getAllModules() { - return allModules.getOrCompute(); - } - - private List computeChildren() { - return LazyLoader.computeChildren(this); - } - - private List computePlainChildren() { - return LazyLoader.computePlainChildren(this); - } - - private List computeStorageFields() { - return LazyLoader.computeStorageFields(this); - } - - private List computePlainStorageFields() { - return LazyLoader.computePlainStorageFields(this); - } - - private List computeAllModules() { - return LazyLoader.computeAllModules(this); - } + @Getter(lazy = true) + List children = LazyLoader.computeChildren(this); + @Getter(lazy = true) + List plainChildren = LazyLoader.computePlainChildren(this); private static ExternalReport createEmptyExternalReport() { var emptyString = "empty"; diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdclasses/ExternalSource.java b/src/main/java/com/github/_1c_syntax/bsl/mdclasses/ExternalSource.java index ab03b9554..d5c2ac738 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdclasses/ExternalSource.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdclasses/ExternalSource.java @@ -29,7 +29,6 @@ import com.github._1c_syntax.bsl.mdo.TemplateOwner; import com.github._1c_syntax.bsl.mdo.support.ObjectBelonging; import com.github._1c_syntax.bsl.support.SupportVariant; -import lombok.NonNull; import java.util.List; @@ -48,7 +47,6 @@ public interface ExternalSource extends MDClass, CommandOwner, AttributeOwner, * У внешних нет конфигурации поставщика */ @Override - @NonNull default SupportVariant getSupportVariant() { return SupportVariant.NONE; } @@ -57,13 +55,11 @@ default SupportVariant getSupportVariant() { * Внешние не входят в состав расширения */ @Override - @NonNull default ObjectBelonging getObjectBelonging() { return ObjectBelonging.OWN; } @Override - @NonNull default List getAllAttributes() { return getAttributes(); } diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdclasses/MDCReadSettings.java b/src/main/java/com/github/_1c_syntax/bsl/mdclasses/MDCReadSettings.java index f8e82b685..fba6b1b5c 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdclasses/MDCReadSettings.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdclasses/MDCReadSettings.java @@ -22,14 +22,19 @@ package com.github._1c_syntax.bsl.mdclasses; import lombok.Builder; -import lombok.Value; /** * Настройки чтения MDC + * + * @param skipSupport Пропускать чтение настроек поставки конфигурации + * @param skipRoleData Пропускать чтение содержимого ролей + * @param skipXdtoPackage Пропускать чтение содержимого xdto пакетов + * @param skipFormElementItems Пропускать чтение элементов форм + * @param skipDataCompositionSchema Пропускать чтение элементов макетов системы компоновки */ -@Value @Builder -public class MDCReadSettings { +public record MDCReadSettings(boolean skipSupport, boolean skipRoleData, boolean skipXdtoPackage, + boolean skipFormElementItems, boolean skipDataCompositionSchema) { /** * Настройки по умолчанию */ @@ -39,30 +44,4 @@ public class MDCReadSettings { * Шаблон с отключением только чтения поддержки */ public static final MDCReadSettings SKIP_SUPPORT = MDCReadSettings.builder().skipSupport(true).build(); - - /** - * Пропускать чтение настроек поставки конфигурации - */ - boolean skipSupport; - - /** - * Пропускать чтение содержимого ролей - */ - boolean skipRoleData; - - /** - * Пропускать чтение содержимого xdto пакетов - */ - boolean skipXdtoPackage; - - /** - * Пропускать чтение элементов форм - */ - boolean skipFormElementItems; - - /** - * Пропускать чтение элементов макетов системы компоновки - */ - boolean skipDataCompositionSchema; - } diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdclasses/helpers/Rights.java b/src/main/java/com/github/_1c_syntax/bsl/mdclasses/helpers/Rights.java index 69bd6891c..e90c787eb 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdclasses/helpers/Rights.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdclasses/helpers/Rights.java @@ -142,12 +142,12 @@ private static boolean rightAccess(CF cf, MdoReference mdoReference, RoleRight r return cf.getRoles().stream() .map(Role::getData) .filter(roleData -> !roleData.equals(RoleData.EMPTY)) - .map(RoleData::getObjectRights) + .map(RoleData::objectRights) .flatMap(Collection::stream) - .filter(objectRight -> objectRight.getName().equals(mdoReference)) - .map(RoleData.ObjectRight::getRights) + .filter(objectRight -> objectRight.name().equals(mdoReference)) + .map(RoleData.ObjectRight::rights) .flatMap(Collection::stream) - .anyMatch(right -> roleRight == right.getName() && right.isValue()); + .anyMatch(right -> roleRight == right.name() && right.value()); } private static List rolesAccess(CF cf, MdoReference mdoReference, RoleRight roleRight) { @@ -157,13 +157,13 @@ private static List rolesAccess(CF cf, MdoReference mdoReference, RoleRigh List roles = new ArrayList<>(); cf.getRoles().forEach((Role role) -> { - var hasAcccess = role.getData().getObjectRights().stream() - .filter(objectRight -> objectRight.getName().equals(mdoReference)) - .map(RoleData.ObjectRight::getRights) + var hasAccess = role.getData().objectRights().stream() + .filter(objectRight -> objectRight.name().equals(mdoReference)) + .map(RoleData.ObjectRight::rights) .flatMap(Collection::stream) - .anyMatch(right -> roleRight == right.getName() && right.isValue()); + .anyMatch(right -> roleRight == right.name() && right.value()); - if (hasAcccess) { + if (hasAccess) { roles.add(role); } }); diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/AccountingRegister.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/AccountingRegister.java index ab5977a27..34981663d 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/AccountingRegister.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/AccountingRegister.java @@ -32,10 +32,10 @@ import com.github._1c_syntax.bsl.support.SupportVariant; import com.github._1c_syntax.bsl.types.MdoReference; import com.github._1c_syntax.bsl.types.MultiLanguageString; -import com.github._1c_syntax.utils.Lazy; import lombok.Builder; import lombok.Builder.Default; import lombok.EqualsAndHashCode; +import lombok.Getter; import lombok.Singular; import lombok.ToString; import lombok.Value; @@ -70,7 +70,8 @@ public class AccountingRegister implements Register, AccessRightsOwner { @Default List modules = Collections.emptyList(); - Lazy> allModules = new Lazy<>(this::computeAllModules); + @Getter(lazy = true) + List allModules = LazyLoader.computeAllModules(this); @Singular List commands; @@ -81,15 +82,16 @@ public class AccountingRegister implements Register, AccessRightsOwner { List resources; @Singular List dimensions; - Lazy> allAttributes = new Lazy<>(this::computeAllAttributes); + @Getter(lazy = true) + List allAttributes = LazyLoader.computeAllAttributes(this); @Singular List forms; @Singular List templates; - - Lazy> children = new Lazy<>(this::computeChildren); + @Getter(lazy = true) + List children = LazyLoader.computeChildren(this); /* * Свое @@ -101,38 +103,10 @@ public class AccountingRegister implements Register, AccessRightsOwner { @Default MultiLanguageString explanation = MultiLanguageString.EMPTY; - @Override - public List getChildren() { - return children.getOrCompute(); - } - - @Override - public List getAllAttributes() { - return allAttributes.getOrCompute(); - } - - @Override - public List getAllModules() { - return allModules.getOrCompute(); - } - /** * Возвращает перечень возможных прав доступа */ public static List possibleRights() { return AccumulationRegister.possibleRights(); } - - private List computeChildren() { - return LazyLoader.computeChildren(this); - } - - private List computeAllAttributes() { - return LazyLoader.computeAllAttributes(this); - } - - private List computeAllModules() { - return LazyLoader.computeAllModules(this); - } - } diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/AccumulationRegister.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/AccumulationRegister.java index 9112c6a15..bdc3030eb 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/AccumulationRegister.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/AccumulationRegister.java @@ -32,10 +32,10 @@ import com.github._1c_syntax.bsl.support.SupportVariant; import com.github._1c_syntax.bsl.types.MdoReference; import com.github._1c_syntax.bsl.types.MultiLanguageString; -import com.github._1c_syntax.utils.Lazy; import lombok.Builder; import lombok.Builder.Default; import lombok.EqualsAndHashCode; +import lombok.Getter; import lombok.Singular; import lombok.ToString; import lombok.Value; @@ -72,7 +72,8 @@ public class AccumulationRegister implements Register, AccessRightsOwner { @Default List modules = Collections.emptyList(); - Lazy> allModules = new Lazy<>(this::computeAllModules); + @Getter(lazy = true) + List allModules = LazyLoader.computeAllModules(this); @Singular List commands; @@ -83,15 +84,16 @@ public class AccumulationRegister implements Register, AccessRightsOwner { List resources; @Singular List dimensions; - Lazy> allAttributes = new Lazy<>(this::computeAllAttributes); + @Getter(lazy = true) + List allAttributes = LazyLoader.computeAllAttributes(this); @Singular List forms; @Singular List templates; - - Lazy> children = new Lazy<>(this::computeChildren); + @Getter(lazy = true) + List children = LazyLoader.computeChildren(this); /* * Свое @@ -103,21 +105,6 @@ public class AccumulationRegister implements Register, AccessRightsOwner { @Default MultiLanguageString explanation = MultiLanguageString.EMPTY; - @Override - public List getChildren() { - return children.getOrCompute(); - } - - @Override - public List getAllAttributes() { - return allAttributes.getOrCompute(); - } - - @Override - public List getAllModules() { - return allModules.getOrCompute(); - } - /** * Возвращает перечень возможных прав доступа */ @@ -125,18 +112,6 @@ public static List possibleRights() { return POSSIBLE_RIGHTS; } - private List computeChildren() { - return LazyLoader.computeChildren(this); - } - - private List computeAllAttributes() { - return LazyLoader.computeAllAttributes(this); - } - - private List computeAllModules() { - return LazyLoader.computeAllModules(this); - } - private static List computePossibleRights() { return List.of( RoleRight.READ, diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/BusinessProcess.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/BusinessProcess.java index c65bc2dda..ced88e57b 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/BusinessProcess.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/BusinessProcess.java @@ -30,10 +30,10 @@ import com.github._1c_syntax.bsl.support.SupportVariant; import com.github._1c_syntax.bsl.types.MdoReference; import com.github._1c_syntax.bsl.types.MultiLanguageString; -import com.github._1c_syntax.utils.Lazy; import lombok.Builder; import lombok.Builder.Default; import lombok.EqualsAndHashCode; +import lombok.Getter; import lombok.Singular; import lombok.ToString; import lombok.Value; @@ -70,7 +70,8 @@ public class BusinessProcess implements ReferenceObject, AccessRightsOwner { @Default List modules = Collections.emptyList(); - Lazy> allModules = new Lazy<>(this::computeAllModules); + @Getter(lazy = true) + List allModules = LazyLoader.computeAllModules(this); @Singular List commands; @@ -81,8 +82,10 @@ public class BusinessProcess implements ReferenceObject, AccessRightsOwner { @Singular List tabularSections; - Lazy> storageFields = new Lazy<>(this::computeStorageFields); - Lazy> plainStorageFields = new Lazy<>(this::computePlainStorageFields); + @Getter(lazy = true) + List storageFields = LazyLoader.computeStorageFields(this); + @Getter(lazy = true) + List plainStorageFields = LazyLoader.computePlainStorageFields(this); @Singular List forms; @@ -90,8 +93,10 @@ public class BusinessProcess implements ReferenceObject, AccessRightsOwner { @Singular List templates; - Lazy> children = new Lazy<>(this::computeChildren); - Lazy> plainChildren = new Lazy<>(this::computePlainChildren); + @Getter(lazy = true) + List children = LazyLoader.computeChildren(this); + @Getter(lazy = true) + List plainChildren = LazyLoader.computePlainChildren(this); /* * Свое @@ -109,31 +114,6 @@ public class BusinessProcess implements ReferenceObject, AccessRightsOwner { @Default MdoReference task = MdoReference.EMPTY; - @Override - public List getChildren() { - return children.getOrCompute(); - } - - @Override - public List getPlainChildren() { - return plainChildren.getOrCompute(); - } - - @Override - public List getStorageFields() { - return storageFields.getOrCompute(); - } - - @Override - public List getPlainStorageFields() { - return plainStorageFields.getOrCompute(); - } - - @Override - public List getAllModules() { - return allModules.getOrCompute(); - } - /** * Возвращает перечень возможных прав доступа */ @@ -141,26 +121,6 @@ public static List possibleRights() { return POSSIBLE_RIGHTS; } - private List computeChildren() { - return LazyLoader.computeChildren(this); - } - - private List computePlainChildren() { - return LazyLoader.computePlainChildren(this); - } - - private List computeStorageFields() { - return LazyLoader.computeStorageFields(this); - } - - private List computePlainStorageFields() { - return LazyLoader.computePlainStorageFields(this); - } - - private List computeAllModules() { - return LazyLoader.computeAllModules(this); - } - private static List computePossibleRights() { return List.of( RoleRight.INSERT, diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/CalculationRegister.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/CalculationRegister.java index 1931d4dba..b615100af 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/CalculationRegister.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/CalculationRegister.java @@ -33,10 +33,10 @@ import com.github._1c_syntax.bsl.support.SupportVariant; import com.github._1c_syntax.bsl.types.MdoReference; import com.github._1c_syntax.bsl.types.MultiLanguageString; -import com.github._1c_syntax.utils.Lazy; import lombok.Builder; import lombok.Builder.Default; import lombok.EqualsAndHashCode; +import lombok.Getter; import lombok.Singular; import lombok.ToString; import lombok.Value; @@ -73,7 +73,8 @@ public class CalculationRegister implements Register, AccessRightsOwner { @Default List modules = Collections.emptyList(); - Lazy> allModules = new Lazy<>(this::computeAllModules); + @Getter(lazy = true) + List allModules = LazyLoader.computeAllModules(this); @Singular List commands; @@ -84,15 +85,16 @@ public class CalculationRegister implements Register, AccessRightsOwner { List resources; @Singular List dimensions; - Lazy> allAttributes = new Lazy<>(this::computeAllAttributes); + @Getter(lazy = true) + List allAttributes = LazyLoader.computeAllAttributes(this); @Singular List forms; @Singular List templates; - - Lazy> children = new Lazy<>(this::computeChildren); + @Getter(lazy = true) + List children = LazyLoader.computeChildren(this); /* * Свое @@ -107,21 +109,6 @@ public class CalculationRegister implements Register, AccessRightsOwner { @Default MultiLanguageString explanation = MultiLanguageString.EMPTY; - @Override - public List getChildren() { - return children.getOrCompute(); - } - - @Override - public List getAllAttributes() { - return allAttributes.getOrCompute(); - } - - @Override - public List getAllModules() { - return allModules.getOrCompute(); - } - /** * Возвращает перечень возможных прав доступа */ @@ -129,18 +116,6 @@ public static List possibleRights() { return POSSIBLE_RIGHTS; } - private List computeChildren() { - return LazyLoader.computeChildren(this); - } - - private List computeAllAttributes() { - return LazyLoader.computeAllAttributes(this); - } - - private List computeAllModules() { - return LazyLoader.computeAllModules(this); - } - private static List computePossibleRights() { return List.of( RoleRight.READ, diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/Catalog.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/Catalog.java index f59fd37cb..904eaf629 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/Catalog.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/Catalog.java @@ -30,10 +30,10 @@ import com.github._1c_syntax.bsl.support.SupportVariant; import com.github._1c_syntax.bsl.types.MdoReference; import com.github._1c_syntax.bsl.types.MultiLanguageString; -import com.github._1c_syntax.utils.Lazy; import lombok.Builder; import lombok.Builder.Default; import lombok.EqualsAndHashCode; +import lombok.Getter; import lombok.Singular; import lombok.ToString; import lombok.Value; @@ -70,7 +70,8 @@ public class Catalog implements ReferenceObject, AccessRightsOwner { @Default List modules = Collections.emptyList(); - Lazy> allModules = new Lazy<>(this::computeAllModules); + @Getter(lazy = true) + List allModules = LazyLoader.computeAllModules(this); @Singular List commands; @@ -81,8 +82,10 @@ public class Catalog implements ReferenceObject, AccessRightsOwner { @Singular List tabularSections; - Lazy> storageFields = new Lazy<>(this::computeStorageFields); - Lazy> plainStorageFields = new Lazy<>(this::computePlainStorageFields); + @Getter(lazy = true) + List storageFields = LazyLoader.computeStorageFields(this); + @Getter(lazy = true) + List plainStorageFields = LazyLoader.computePlainStorageFields(this); @Singular List forms; @@ -90,8 +93,10 @@ public class Catalog implements ReferenceObject, AccessRightsOwner { @Singular List templates; - Lazy> children = new Lazy<>(this::computeChildren); - Lazy> plainChildren = new Lazy<>(this::computePlainChildren); + @Getter(lazy = true) + List children = LazyLoader.computeChildren(this); + @Getter(lazy = true) + List plainChildren = LazyLoader.computePlainChildren(this); /* * Свое @@ -109,31 +114,6 @@ public class Catalog implements ReferenceObject, AccessRightsOwner { @Singular("addOwners") List owners; - @Override - public List getChildren() { - return children.getOrCompute(); - } - - @Override - public List getPlainChildren() { - return plainChildren.getOrCompute(); - } - - @Override - public List getStorageFields() { - return storageFields.getOrCompute(); - } - - @Override - public List getPlainStorageFields() { - return plainStorageFields.getOrCompute(); - } - - @Override - public List getAllModules() { - return allModules.getOrCompute(); - } - /** * Возвращает перечень возможных прав доступа */ @@ -141,26 +121,6 @@ public static List possibleRights() { return POSSIBLE_RIGHTS; } - private List computeChildren() { - return LazyLoader.computeChildren(this); - } - - private List computePlainChildren() { - return LazyLoader.computePlainChildren(this); - } - - private List computeStorageFields() { - return LazyLoader.computeStorageFields(this); - } - - private List computePlainStorageFields() { - return LazyLoader.computePlainStorageFields(this); - } - - private List computeAllModules() { - return LazyLoader.computeAllModules(this); - } - private static List computePossibleRights() { return List.of( RoleRight.INSERT, diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/ChartOfAccounts.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/ChartOfAccounts.java index b6ec151e0..be46f4c48 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/ChartOfAccounts.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/ChartOfAccounts.java @@ -32,10 +32,10 @@ import com.github._1c_syntax.bsl.support.SupportVariant; import com.github._1c_syntax.bsl.types.MdoReference; import com.github._1c_syntax.bsl.types.MultiLanguageString; -import com.github._1c_syntax.utils.Lazy; import lombok.Builder; import lombok.Builder.Default; import lombok.EqualsAndHashCode; +import lombok.Getter; import lombok.Singular; import lombok.ToString; import lombok.Value; @@ -70,20 +70,24 @@ public class ChartOfAccounts implements ReferenceObject, AccessRightsOwner { @Default List modules = Collections.emptyList(); - Lazy> allModules = new Lazy<>(this::computeAllModules); + @Getter(lazy = true) + List allModules = LazyLoader.computeAllModules(this); @Singular List commands; @Singular List attributes; - Lazy> allAttributes = new Lazy<>(this::computeAllAttributes); + @Getter(lazy = true) + List allAttributes = LazyLoader.computeAllAttributes(this); @Singular List tabularSections; - Lazy> storageFields = new Lazy<>(this::computeStorageFields); - Lazy> plainStorageFields = new Lazy<>(this::computePlainStorageFields); + @Getter(lazy = true) + List storageFields = LazyLoader.computeStorageFields(this); + @Getter(lazy = true) + List plainStorageFields = LazyLoader.computePlainStorageFields(this); @Singular List forms; @@ -91,8 +95,10 @@ public class ChartOfAccounts implements ReferenceObject, AccessRightsOwner { @Singular List templates; - Lazy> children = new Lazy<>(this::computeChildren); - Lazy> plainChildren = new Lazy<>(this::computePlainChildren); + @Getter(lazy = true) + List children = LazyLoader.computeChildren(this); + @Getter(lazy = true) + List plainChildren = LazyLoader.computePlainChildren(this); /* * Свое @@ -116,65 +122,10 @@ public class ChartOfAccounts implements ReferenceObject, AccessRightsOwner { @Default MultiLanguageString explanation = MultiLanguageString.EMPTY; - @Override - public List getChildren() { - return children.getOrCompute(); - } - - @Override - public List getAllAttributes() { - return allAttributes.getOrCompute(); - } - - @Override - public List getPlainChildren() { - return plainChildren.getOrCompute(); - } - - @Override - public List getStorageFields() { - return storageFields.getOrCompute(); - } - - @Override - public List getPlainStorageFields() { - return plainStorageFields.getOrCompute(); - } - - @Override - public List getAllModules() { - return allModules.getOrCompute(); - } - /** * Возвращает перечень возможных прав доступа */ public static List possibleRights() { return Catalog.possibleRights(); } - - private List computeChildren() { - return LazyLoader.computeChildren(this); - } - - private List computePlainChildren() { - return LazyLoader.computePlainChildren(this); - } - - private List computeStorageFields() { - return LazyLoader.computeStorageFields(this); - } - - private List computePlainStorageFields() { - return LazyLoader.computePlainStorageFields(this); - } - - private List computeAllAttributes() { - return LazyLoader.computeAllAttributes(this); - } - - private List computeAllModules() { - return LazyLoader.computeAllModules(this); - } - } diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/ChartOfCalculationTypes.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/ChartOfCalculationTypes.java index 2ab07039b..3a7c9aeb2 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/ChartOfCalculationTypes.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/ChartOfCalculationTypes.java @@ -30,10 +30,10 @@ import com.github._1c_syntax.bsl.support.SupportVariant; import com.github._1c_syntax.bsl.types.MdoReference; import com.github._1c_syntax.bsl.types.MultiLanguageString; -import com.github._1c_syntax.utils.Lazy; import lombok.Builder; import lombok.Builder.Default; import lombok.EqualsAndHashCode; +import lombok.Getter; import lombok.Singular; import lombok.ToString; import lombok.Value; @@ -68,7 +68,8 @@ public class ChartOfCalculationTypes implements ReferenceObject, AccessRightsOwn @Default List modules = Collections.emptyList(); - Lazy> allModules = new Lazy<>(this::computeAllModules); + @Getter(lazy = true) + List allModules = LazyLoader.computeAllModules(this); @Singular List commands; @@ -79,8 +80,10 @@ public class ChartOfCalculationTypes implements ReferenceObject, AccessRightsOwn @Singular List tabularSections; - Lazy> storageFields = new Lazy<>(this::computeStorageFields); - Lazy> plainStorageFields = new Lazy<>(this::computePlainStorageFields); + @Getter(lazy = true) + List storageFields = LazyLoader.computeStorageFields(this); + @Getter(lazy = true) + List plainStorageFields = LazyLoader.computePlainStorageFields(this); @Singular List forms; @@ -88,8 +91,10 @@ public class ChartOfCalculationTypes implements ReferenceObject, AccessRightsOwn @Singular List templates; - Lazy> children = new Lazy<>(this::computeChildren); - Lazy> plainChildren = new Lazy<>(this::computePlainChildren); + @Getter(lazy = true) + List children = LazyLoader.computeChildren(this); + @Getter(lazy = true) + List plainChildren = LazyLoader.computePlainChildren(this); /* * Свое @@ -101,31 +106,6 @@ public class ChartOfCalculationTypes implements ReferenceObject, AccessRightsOwn @Default MultiLanguageString explanation = MultiLanguageString.EMPTY; - @Override - public List getChildren() { - return children.getOrCompute(); - } - - @Override - public List getPlainChildren() { - return plainChildren.getOrCompute(); - } - - @Override - public List getStorageFields() { - return storageFields.getOrCompute(); - } - - @Override - public List getPlainStorageFields() { - return plainStorageFields.getOrCompute(); - } - - @Override - public List getAllModules() { - return allModules.getOrCompute(); - } - /** * Возвращает перечень возможных прав доступа */ @@ -133,24 +113,4 @@ public static List possibleRights() { return Catalog.possibleRights(); } - private List computeChildren() { - return LazyLoader.computeChildren(this); - } - - private List computePlainChildren() { - return LazyLoader.computePlainChildren(this); - } - - private List computeStorageFields() { - return LazyLoader.computeStorageFields(this); - } - - private List computePlainStorageFields() { - return LazyLoader.computePlainStorageFields(this); - } - - private List computeAllModules() { - return LazyLoader.computeAllModules(this); - } - } diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/ChartOfCharacteristicTypes.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/ChartOfCharacteristicTypes.java index 61f149d4b..efff1213b 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/ChartOfCharacteristicTypes.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/ChartOfCharacteristicTypes.java @@ -31,7 +31,6 @@ import com.github._1c_syntax.bsl.types.MdoReference; import com.github._1c_syntax.bsl.types.MultiLanguageString; import com.github._1c_syntax.bsl.types.ValueTypeDescription; -import com.github._1c_syntax.utils.Lazy; import lombok.AccessLevel; import lombok.Builder; import lombok.Builder.Default; @@ -71,7 +70,8 @@ public class ChartOfCharacteristicTypes implements ReferenceObject, AccessRights @Default List modules = Collections.emptyList(); - Lazy> allModules = new Lazy<>(this::computeAllModules); + @Getter(lazy = true) + List allModules = LazyLoader.computeAllModules(this); @Singular List commands; @@ -82,8 +82,10 @@ public class ChartOfCharacteristicTypes implements ReferenceObject, AccessRights @Singular List tabularSections; - Lazy> storageFields = new Lazy<>(this::computeStorageFields); - Lazy> plainStorageFields = new Lazy<>(this::computePlainStorageFields); + @Getter(lazy = true) + List storageFields = LazyLoader.computeStorageFields(this); + @Getter(lazy = true) + List plainStorageFields = LazyLoader.computePlainStorageFields(this); @Singular List forms; @@ -91,8 +93,10 @@ public class ChartOfCharacteristicTypes implements ReferenceObject, AccessRights @Singular List templates; - Lazy> children = new Lazy<>(this::computeChildren); - Lazy> plainChildren = new Lazy<>(this::computePlainChildren); + @Getter(lazy = true) + List children = LazyLoader.computeChildren(this); + @Getter(lazy = true) + List plainChildren = LazyLoader.computePlainChildren(this); /* * ValueTypeOwner @@ -112,32 +116,6 @@ public class ChartOfCharacteristicTypes implements ReferenceObject, AccessRights @Default MultiLanguageString explanation = MultiLanguageString.EMPTY; - - @Override - public List getChildren() { - return children.getOrCompute(); - } - - @Override - public List getPlainChildren() { - return plainChildren.getOrCompute(); - } - - @Override - public List getStorageFields() { - return storageFields.getOrCompute(); - } - - @Override - public List getPlainStorageFields() { - return plainStorageFields.getOrCompute(); - } - - @Override - public List getAllModules() { - return allModules.getOrCompute(); - } - /** * Возвращает перечень возможных прав доступа */ @@ -145,26 +123,6 @@ public static List possibleRights() { return Catalog.possibleRights(); } - private List computeChildren() { - return LazyLoader.computeChildren(this); - } - - private List computePlainChildren() { - return LazyLoader.computePlainChildren(this); - } - - private List computeStorageFields() { - return LazyLoader.computeStorageFields(this); - } - - private List computePlainStorageFields() { - return LazyLoader.computePlainStorageFields(this); - } - - private List computeAllModules() { - return LazyLoader.computeAllModules(this); - } - @Override public ValueTypeDescription getValueType() { return type; diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/CommonModule.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/CommonModule.java index 01e6cc10f..a6014efff 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/CommonModule.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/CommonModule.java @@ -27,10 +27,10 @@ import com.github._1c_syntax.bsl.types.MdoReference; import com.github._1c_syntax.bsl.types.ModuleType; import com.github._1c_syntax.bsl.types.MultiLanguageString; -import com.github._1c_syntax.utils.Lazy; import lombok.Builder; import lombok.Builder.Default; import lombok.EqualsAndHashCode; +import lombok.Getter; import lombok.ToString; import lombok.Value; @@ -73,7 +73,8 @@ public class CommonModule implements MDObject, Module, ModuleOwner { boolean isProtected; - Lazy> modules = new Lazy<>(this::computeModules); + @Getter(lazy = true) + List modules = List.of(this); /* * Свое @@ -119,17 +120,4 @@ public class CommonModule implements MDObject, Module, ModuleOwner { */ @Default ReturnValueReuse returnValuesReuse = ReturnValueReuse.DONT_USE; - - /* - * ModuleOwner - */ - - @Override - public List getModules() { - return modules.getOrCompute(); - } - - private List computeModules() { - return List.of(this); - } } diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/DataProcessor.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/DataProcessor.java index dec437444..2884dd954 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/DataProcessor.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/DataProcessor.java @@ -30,10 +30,10 @@ import com.github._1c_syntax.bsl.support.SupportVariant; import com.github._1c_syntax.bsl.types.MdoReference; import com.github._1c_syntax.bsl.types.MultiLanguageString; -import com.github._1c_syntax.utils.Lazy; import lombok.Builder; import lombok.Builder.Default; import lombok.EqualsAndHashCode; +import lombok.Getter; import lombok.Singular; import lombok.ToString; import lombok.Value; @@ -69,8 +69,10 @@ public class DataProcessor implements MDObject, ModuleOwner, CommandOwner, Attri @Default SupportVariant supportVariant = SupportVariant.NONE; - Lazy> children = new Lazy<>(this::computeChildren); - Lazy> plainChildren = new Lazy<>(this::computePlainChildren); + @Getter(lazy = true) + List children = LazyLoader.computeChildren(this); + @Getter(lazy = true) + List plainChildren = LazyLoader.computePlainChildren(this); /* * ModuleOwner @@ -78,7 +80,8 @@ public class DataProcessor implements MDObject, ModuleOwner, CommandOwner, Attri @Default List modules = Collections.emptyList(); - Lazy> allModules = new Lazy<>(this::computeAllModules); + @Getter(lazy = true) + List allModules = LazyLoader.computeAllModules(this); /* * CommandOwner @@ -101,8 +104,10 @@ public class DataProcessor implements MDObject, ModuleOwner, CommandOwner, Attri @Singular List tabularSections; - Lazy> storageFields = new Lazy<>(this::computeStorageFields); - Lazy> plainStorageFields = new Lazy<>(this::computePlainStorageFields); + @Getter(lazy = true) + List storageFields = LazyLoader.computeStorageFields(this); + @Getter(lazy = true) + List plainStorageFields = LazyLoader.computePlainStorageFields(this); /* * FormOwner @@ -133,55 +138,10 @@ public List getAllAttributes() { return getAttributes(); } - @Override - public List getChildren() { - return children.getOrCompute(); - } - - @Override - public List getPlainChildren() { - return plainChildren.getOrCompute(); - } - - @Override - public List getStorageFields() { - return storageFields.getOrCompute(); - } - - @Override - public List getPlainStorageFields() { - return plainStorageFields.getOrCompute(); - } - - @Override - public List getAllModules() { - return allModules.getOrCompute(); - } - /** * Возвращает перечень возможных прав доступа */ public static List possibleRights() { return POSSIBLE_RIGHTS; } - - private List computeChildren() { - return LazyLoader.computeChildren(this); - } - - private List computePlainChildren() { - return LazyLoader.computePlainChildren(this); - } - - private List computeStorageFields() { - return LazyLoader.computeStorageFields(this); - } - - private List computePlainStorageFields() { - return LazyLoader.computePlainStorageFields(this); - } - - private List computeAllModules() { - return LazyLoader.computeAllModules(this); - } } diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/Document.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/Document.java index 9b1f5fc8a..2d3208b08 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/Document.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/Document.java @@ -30,10 +30,10 @@ import com.github._1c_syntax.bsl.support.SupportVariant; import com.github._1c_syntax.bsl.types.MdoReference; import com.github._1c_syntax.bsl.types.MultiLanguageString; -import com.github._1c_syntax.utils.Lazy; import lombok.Builder; import lombok.Builder.Default; import lombok.EqualsAndHashCode; +import lombok.Getter; import lombok.Singular; import lombok.ToString; import lombok.Value; @@ -70,7 +70,8 @@ public class Document implements ReferenceObject, AccessRightsOwner { @Default List modules = Collections.emptyList(); - Lazy> allModules = new Lazy<>(this::computeAllModules); + @Getter(lazy = true) + List allModules = LazyLoader.computeAllModules(this); @Singular List commands; @@ -81,8 +82,10 @@ public class Document implements ReferenceObject, AccessRightsOwner { @Singular List tabularSections; - Lazy> storageFields = new Lazy<>(this::computeStorageFields); - Lazy> plainStorageFields = new Lazy<>(this::computePlainStorageFields); + @Getter(lazy = true) + List storageFields = LazyLoader.computeStorageFields(this); + @Getter(lazy = true) + List plainStorageFields = LazyLoader.computePlainStorageFields(this); @Singular List forms; @@ -90,8 +93,10 @@ public class Document implements ReferenceObject, AccessRightsOwner { @Singular List templates; - Lazy> children = new Lazy<>(this::computeChildren); - Lazy> plainChildren = new Lazy<>(this::computePlainChildren); + @Getter(lazy = true) + List children = LazyLoader.computeChildren(this); + @Getter(lazy = true) + List plainChildren = LazyLoader.computePlainChildren(this); /* * Свое @@ -109,31 +114,6 @@ public class Document implements ReferenceObject, AccessRightsOwner { @Default MultiLanguageString explanation = MultiLanguageString.EMPTY; - @Override - public List getChildren() { - return children.getOrCompute(); - } - - @Override - public List getPlainChildren() { - return plainChildren.getOrCompute(); - } - - @Override - public List getStorageFields() { - return storageFields.getOrCompute(); - } - - @Override - public List getPlainStorageFields() { - return plainStorageFields.getOrCompute(); - } - - @Override - public List getAllModules() { - return allModules.getOrCompute(); - } - /** * Возвращает перечень возможных прав доступа */ @@ -141,26 +121,6 @@ public static List possibleRights() { return POSSIBLE_RIGHTS; } - private List computeChildren() { - return LazyLoader.computeChildren(this); - } - - private List computePlainChildren() { - return LazyLoader.computePlainChildren(this); - } - - private List computeStorageFields() { - return LazyLoader.computeStorageFields(this); - } - - private List computePlainStorageFields() { - return LazyLoader.computePlainStorageFields(this); - } - - private List computeAllModules() { - return LazyLoader.computeAllModules(this); - } - private static List computePossibleRights() { return List.of( RoleRight.INSERT, diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/DocumentJournal.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/DocumentJournal.java index 544ef9c1a..99b10f470 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/DocumentJournal.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/DocumentJournal.java @@ -31,10 +31,10 @@ import com.github._1c_syntax.bsl.support.SupportVariant; import com.github._1c_syntax.bsl.types.MdoReference; import com.github._1c_syntax.bsl.types.MultiLanguageString; -import com.github._1c_syntax.utils.Lazy; import lombok.Builder; import lombok.Builder.Default; import lombok.EqualsAndHashCode; +import lombok.Getter; import lombok.Singular; import lombok.ToString; import lombok.Value; @@ -70,7 +70,8 @@ public class DocumentJournal implements MDObject, ModuleOwner, CommandOwner, Att @Default SupportVariant supportVariant = SupportVariant.NONE; - Lazy> children = new Lazy<>(this::computeChildren); + @Getter(lazy = true) + List children = LazyLoader.computeChildren(this); /* * ModuleOwner @@ -78,7 +79,8 @@ public class DocumentJournal implements MDObject, ModuleOwner, CommandOwner, Att @Default List modules = Collections.emptyList(); - Lazy> allModules = new Lazy<>(this::computeAllModules); + @Getter(lazy = true) + List allModules = LazyLoader.computeAllModules(this); /* * CommandOwner @@ -129,29 +131,10 @@ public List getAllAttributes() { return Collections.unmodifiableList(columns); } - @Override - public List getChildren() { - return children.getOrCompute(); - } - - @Override - public List getAllModules() { - return allModules.getOrCompute(); - } - /** * Возвращает перечень возможных прав доступа */ public static List possibleRights() { return POSSIBLE_RIGHTS; } - - private List computeChildren() { - return LazyLoader.computeChildren(this); - } - - private List computeAllModules() { - return LazyLoader.computeAllModules(this); - } - } diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/Enum.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/Enum.java index 5eb0dfb93..bf7322eba 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/Enum.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/Enum.java @@ -30,10 +30,10 @@ import com.github._1c_syntax.bsl.support.SupportVariant; import com.github._1c_syntax.bsl.types.MdoReference; import com.github._1c_syntax.bsl.types.MultiLanguageString; -import com.github._1c_syntax.utils.Lazy; import lombok.Builder; import lombok.Builder.Default; import lombok.EqualsAndHashCode; +import lombok.Getter; import lombok.Singular; import lombok.ToString; import lombok.Value; @@ -66,7 +66,8 @@ public class Enum implements MDObject, ModuleOwner, CommandOwner, FormOwner, Tem @Default SupportVariant supportVariant = SupportVariant.NONE; - Lazy> children = new Lazy<>(this::computeChildren); + @Getter(lazy = true) + List children = LazyLoader.computeChildren(this); /* * ModuleOwner @@ -74,7 +75,8 @@ public class Enum implements MDObject, ModuleOwner, CommandOwner, FormOwner, Tem @Default List modules = Collections.emptyList(); - Lazy> allModules = new Lazy<>(this::computeAllModules); + @Getter(lazy = true) + List allModules = LazyLoader.computeAllModules(this); /* * CommandOwner @@ -120,27 +122,8 @@ public class Enum implements MDObject, ModuleOwner, CommandOwner, FormOwner, Tem @Default MultiLanguageString explanation = MultiLanguageString.EMPTY; - @Override - public List getChildren() { - return children.getOrCompute(); - } - - private List computeChildren() { - return LazyLoader.computeChildren(this); - } - - @Override - public List getAllModules() { - return allModules.getOrCompute(); - } - - private List computeAllModules() { - return LazyLoader.computeAllModules(this); - } - @Override public List getAllAttributes() { return getAttributes(); } - } diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/ExchangePlan.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/ExchangePlan.java index fa0dc0f39..26ea87b1b 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/ExchangePlan.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/ExchangePlan.java @@ -31,10 +31,10 @@ import com.github._1c_syntax.bsl.support.SupportVariant; import com.github._1c_syntax.bsl.types.MdoReference; import com.github._1c_syntax.bsl.types.MultiLanguageString; -import com.github._1c_syntax.utils.Lazy; import lombok.Builder; import lombok.Builder.Default; import lombok.EqualsAndHashCode; +import lombok.Getter; import lombok.Singular; import lombok.ToString; import lombok.Value; @@ -71,7 +71,8 @@ public class ExchangePlan implements ReferenceObject, AccessRightsOwner { @Default List modules = Collections.emptyList(); - Lazy> allModules = new Lazy<>(this::computeAllModules); + @Getter(lazy = true) + List allModules = LazyLoader.computeAllModules(this); @Singular List commands; @@ -82,8 +83,10 @@ public class ExchangePlan implements ReferenceObject, AccessRightsOwner { @Singular List tabularSections; - Lazy> storageFields = new Lazy<>(this::computeStorageFields); - Lazy> plainStorageFields = new Lazy<>(this::computePlainStorageFields); + @Getter(lazy = true) + List storageFields = LazyLoader.computeStorageFields(this); + @Getter(lazy = true) + List plainStorageFields = LazyLoader.computePlainStorageFields(this); @Singular List forms; @@ -91,8 +94,10 @@ public class ExchangePlan implements ReferenceObject, AccessRightsOwner { @Singular List templates; - Lazy> children = new Lazy<>(this::computeChildren); - Lazy> plainChildren = new Lazy<>(this::computePlainChildren); + @Getter(lazy = true) + List children = LazyLoader.computeChildren(this); + @Getter(lazy = true) + List plainChildren = LazyLoader.computePlainChildren(this); /* * Свое @@ -141,36 +146,8 @@ public AutoRecordType autoRecord(MdoReference mdoReference) { var value = content.stream() .filter(useContent -> useContent.getMetadata().equals(mdoReference)) .findAny(); - if (value.isPresent()) { - return value.get().getAutoRecord(); - } else { - return AutoRecordType.DENY; - } - } - - @Override - public List getChildren() { - return children.getOrCompute(); - } - - @Override - public List getPlainChildren() { - return plainChildren.getOrCompute(); - } - - @Override - public List getStorageFields() { - return storageFields.getOrCompute(); - } - - @Override - public List getPlainStorageFields() { - return plainStorageFields.getOrCompute(); - } - - @Override - public List getAllModules() { - return allModules.getOrCompute(); + var allow = value.map(RecordContent::isAllow).orElse(false); + return allow ? AutoRecordType.ALLOW : AutoRecordType.DENY; } /** @@ -180,26 +157,6 @@ public static List possibleRights() { return POSSIBLE_RIGHTS; } - private List computeChildren() { - return LazyLoader.computeChildren(this); - } - - private List computePlainChildren() { - return LazyLoader.computePlainChildren(this); - } - - private List computeStorageFields() { - return LazyLoader.computeStorageFields(this); - } - - private List computePlainStorageFields() { - return LazyLoader.computePlainStorageFields(this); - } - - private List computeAllModules() { - return LazyLoader.computeAllModules(this); - } - private static List computePossibleRights() { return List.of( RoleRight.INSERT, @@ -227,7 +184,7 @@ private static List computePossibleRights() { } @Value - @Builder(toBuilder = true) + @Builder public static class RecordContent { /** @@ -237,9 +194,8 @@ public static class RecordContent { MdoReference metadata = MdoReference.EMPTY; /** - * Режим авторегистрации + * Разрешена авторегистрация */ - @Default - AutoRecordType autoRecord = AutoRecordType.DENY; + boolean allow; } } diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/ExternalDataSource.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/ExternalDataSource.java index 19534e46d..4cfec10a8 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/ExternalDataSource.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/ExternalDataSource.java @@ -30,15 +30,14 @@ import com.github._1c_syntax.bsl.support.SupportVariant; import com.github._1c_syntax.bsl.types.MdoReference; import com.github._1c_syntax.bsl.types.MultiLanguageString; -import com.github._1c_syntax.utils.Lazy; import lombok.Builder; import lombok.Builder.Default; import lombok.EqualsAndHashCode; +import lombok.Getter; import lombok.Singular; import lombok.ToString; import lombok.Value; -import java.util.Collections; import java.util.List; @Value @@ -68,8 +67,10 @@ public class ExternalDataSource implements MDObject, ChildrenOwner, AccessRights @Default SupportVariant supportVariant = SupportVariant.NONE; - Lazy> children = new Lazy<>(this::computeChildren); - Lazy> plainChildren = new Lazy<>(this::computePlainChildren); + @Getter(lazy = true) + List children = LazyLoader.computeChildren(this); + @Getter(lazy = true) + List plainChildren = LazyLoader.computePlainChildren(this); /* * Свое @@ -99,16 +100,6 @@ public class ExternalDataSource implements MDObject, ChildrenOwner, AccessRights @Default MultiLanguageString explanation = MultiLanguageString.EMPTY; - @Override - public List getChildren() { - return children.getOrCompute(); - } - - @Override - public List getPlainChildren() { - return plainChildren.getOrCompute(); - } - /** * Возвращает перечень возможных прав доступа */ @@ -116,14 +107,6 @@ public static List possibleRights() { return POSSIBLE_RIGHTS; } - private List computeChildren() { - return LazyLoader.computeChildren(this); - } - - private List computePlainChildren() { - return LazyLoader.computePlainChildren(this); - } - private static List computePossibleRights() { return List.of( RoleRight.USE, diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/FilterCriterion.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/FilterCriterion.java index ba1fcf197..61bf0fe97 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/FilterCriterion.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/FilterCriterion.java @@ -29,10 +29,10 @@ import com.github._1c_syntax.bsl.support.SupportVariant; import com.github._1c_syntax.bsl.types.MdoReference; import com.github._1c_syntax.bsl.types.MultiLanguageString; -import com.github._1c_syntax.utils.Lazy; import lombok.Builder; import lombok.Builder.Default; import lombok.EqualsAndHashCode; +import lombok.Getter; import lombok.Singular; import lombok.ToString; import lombok.Value; @@ -67,7 +67,8 @@ public class FilterCriterion implements MDObject, ModuleOwner, CommandOwner, For @Default SupportVariant supportVariant = SupportVariant.NONE; - Lazy> children = new Lazy<>(this::computeChildren); + @Getter(lazy = true) + List children = LazyLoader.computeChildren(this); /* * ModuleOwner @@ -75,7 +76,8 @@ public class FilterCriterion implements MDObject, ModuleOwner, CommandOwner, For @Default List modules = Collections.emptyList(); - Lazy> allModules = new Lazy<>(this::computeAllModules); + @Getter(lazy = true) + List allModules = LazyLoader.computeAllModules(this); /* * CommandOwner @@ -107,28 +109,10 @@ public class FilterCriterion implements MDObject, ModuleOwner, CommandOwner, For @Default MultiLanguageString explanation = MultiLanguageString.EMPTY; - @Override - public List getChildren() { - return children.getOrCompute(); - } - - @Override - public List getAllModules() { - return allModules.getOrCompute(); - } - /** * Возвращает перечень возможных прав доступа */ public static List possibleRights() { return POSSIBLE_RIGHTS; } - - private List computeChildren() { - return LazyLoader.computeChildren(this); - } - - private List computeAllModules() { - return LazyLoader.computeAllModules(this); - } } diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/HTTPService.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/HTTPService.java index 8b1020155..775ff2eb4 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/HTTPService.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/HTTPService.java @@ -27,10 +27,10 @@ import com.github._1c_syntax.bsl.support.SupportVariant; import com.github._1c_syntax.bsl.types.MdoReference; import com.github._1c_syntax.bsl.types.MultiLanguageString; -import com.github._1c_syntax.utils.Lazy; import lombok.Builder; import lombok.Builder.Default; import lombok.EqualsAndHashCode; +import lombok.Getter; import lombok.Singular; import lombok.ToString; import lombok.Value; @@ -63,7 +63,8 @@ public class HTTPService implements MDObject, ModuleOwner, ChildrenOwner { @Default SupportVariant supportVariant = SupportVariant.NONE; - Lazy> plainChildren = new Lazy<>(this::computePlainChildren); + @Getter(lazy = true) + List plainChildren = LazyLoader.computePlainChildren(this); /* * ModuleOwner @@ -86,14 +87,4 @@ public class HTTPService implements MDObject, ModuleOwner, ChildrenOwner { public List getChildren() { return Collections.unmodifiableList(urlTemplates); } - - @Override - public List getPlainChildren() { - return plainChildren.getOrCompute(); - } - - private List computePlainChildren() { - return LazyLoader.computePlainChildren(this); - } - } diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/InformationRegister.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/InformationRegister.java index 5b4305434..ce2dd410a 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/InformationRegister.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/InformationRegister.java @@ -32,10 +32,10 @@ import com.github._1c_syntax.bsl.support.SupportVariant; import com.github._1c_syntax.bsl.types.MdoReference; import com.github._1c_syntax.bsl.types.MultiLanguageString; -import com.github._1c_syntax.utils.Lazy; import lombok.Builder; import lombok.Builder.Default; import lombok.EqualsAndHashCode; +import lombok.Getter; import lombok.Singular; import lombok.ToString; import lombok.Value; @@ -72,7 +72,8 @@ public class InformationRegister implements Register, AccessRightsOwner { @Default List modules = Collections.emptyList(); - Lazy> allModules = new Lazy<>(this::computeAllModules); + @Getter(lazy = true) + List allModules = LazyLoader.computeAllModules(this); @Singular List commands; @@ -83,8 +84,8 @@ public class InformationRegister implements Register, AccessRightsOwner { List resources; @Singular List dimensions; - - Lazy> allAttributes = new Lazy<>(this::computeAllAttributes); + @Getter(lazy = true) + List allAttributes = LazyLoader.computeAllAttributes(this); @Singular List forms; @@ -92,7 +93,8 @@ public class InformationRegister implements Register, AccessRightsOwner { @Singular List templates; - Lazy> children = new Lazy<>(this::computeChildren); + @Getter(lazy = true) + List children = LazyLoader.computeChildren(this); /* * Свое @@ -104,21 +106,6 @@ public class InformationRegister implements Register, AccessRightsOwner { @Default MultiLanguageString explanation = MultiLanguageString.EMPTY; - @Override - public List getChildren() { - return children.getOrCompute(); - } - - @Override - public List getAllAttributes() { - return allAttributes.getOrCompute(); - } - - @Override - public List getAllModules() { - return allModules.getOrCompute(); - } - /** * Возвращает перечень возможных прав доступа */ @@ -126,18 +113,6 @@ public static List possibleRights() { return POSSIBLE_RIGHTS; } - private List computeChildren() { - return LazyLoader.computeChildren(this); - } - - private List computeAllAttributes() { - return LazyLoader.computeAllAttributes(this); - } - - private List computeAllModules() { - return LazyLoader.computeAllModules(this); - } - private static List computePossibleRights() { return List.of( RoleRight.READ, diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/Report.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/Report.java index 375845d57..e7e5dd460 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/Report.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/Report.java @@ -30,11 +30,10 @@ import com.github._1c_syntax.bsl.support.SupportVariant; import com.github._1c_syntax.bsl.types.MdoReference; import com.github._1c_syntax.bsl.types.MultiLanguageString; -import com.github._1c_syntax.utils.Lazy; import lombok.Builder; import lombok.Builder.Default; import lombok.EqualsAndHashCode; -import lombok.NonNull; +import lombok.Getter; import lombok.Singular; import lombok.ToString; import lombok.Value; @@ -70,8 +69,10 @@ public class Report implements MDObject, ModuleOwner, CommandOwner, AttributeOwn @Default SupportVariant supportVariant = SupportVariant.NONE; - Lazy> children = new Lazy<>(this::computeChildren); - Lazy> plainChildren = new Lazy<>(this::computePlainChildren); + @Getter(lazy = true) + List children = LazyLoader.computeChildren(this); + @Getter(lazy = true) + List plainChildren = LazyLoader.computePlainChildren(this); /* * ModuleOwner @@ -79,7 +80,8 @@ public class Report implements MDObject, ModuleOwner, CommandOwner, AttributeOwn @Default List modules = Collections.emptyList(); - Lazy> allModules = new Lazy<>(this::computeAllModules); + @Getter(lazy = true) + List allModules = LazyLoader.computeAllModules(this); /* * CommandOwner @@ -102,8 +104,10 @@ public class Report implements MDObject, ModuleOwner, CommandOwner, AttributeOwn @Singular List tabularSections; - Lazy> storageFields = new Lazy<>(this::computeStorageFields); - Lazy> plainStorageFields = new Lazy<>(this::computePlainStorageFields); + @Getter(lazy = true) + List storageFields = LazyLoader.computeStorageFields(this); + @Getter(lazy = true) + List plainStorageFields = LazyLoader.computePlainStorageFields(this); /* * FormOwner @@ -130,60 +134,14 @@ public class Report implements MDObject, ModuleOwner, CommandOwner, AttributeOwn MultiLanguageString explanation = MultiLanguageString.EMPTY; @Override - @NonNull public List getAllAttributes() { return getAttributes(); } - @Override - public List getChildren() { - return children.getOrCompute(); - } - - @Override - public List getPlainChildren() { - return plainChildren.getOrCompute(); - } - - @Override - public List getStorageFields() { - return storageFields.getOrCompute(); - } - - @Override - public List getPlainStorageFields() { - return plainStorageFields.getOrCompute(); - } - - @Override - public List getAllModules() { - return allModules.getOrCompute(); - } - /** * Возвращает перечень возможных прав доступа */ public static List possibleRights() { return POSSIBLE_RIGHTS; } - - private List computeChildren() { - return LazyLoader.computeChildren(this); - } - - private List computePlainChildren() { - return LazyLoader.computePlainChildren(this); - } - - private List computeStorageFields() { - return LazyLoader.computeStorageFields(this); - } - - private List computePlainStorageFields() { - return LazyLoader.computePlainStorageFields(this); - } - - private List computeAllModules() { - return LazyLoader.computeAllModules(this); - } } diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/SettingsStorage.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/SettingsStorage.java index 99636aa5e..0e812c618 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/SettingsStorage.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/SettingsStorage.java @@ -28,10 +28,10 @@ import com.github._1c_syntax.bsl.support.SupportVariant; import com.github._1c_syntax.bsl.types.MdoReference; import com.github._1c_syntax.bsl.types.MultiLanguageString; -import com.github._1c_syntax.utils.Lazy; import lombok.Builder; import lombok.Builder.Default; import lombok.EqualsAndHashCode; +import lombok.Getter; import lombok.Singular; import lombok.ToString; import lombok.Value; @@ -64,7 +64,8 @@ public class SettingsStorage implements MDObject, ModuleOwner, FormOwner, Templa @Default SupportVariant supportVariant = SupportVariant.NONE; - Lazy> children = new Lazy<>(this::computeChildren); + @Getter(lazy = true) + List children = LazyLoader.computeChildren(this); /* * ModuleOwner @@ -72,7 +73,8 @@ public class SettingsStorage implements MDObject, ModuleOwner, FormOwner, Templa @Default List modules = Collections.emptyList(); - Lazy> allModules = new Lazy<>(this::computeAllModules); + @Getter(lazy = true) + List allModules = LazyLoader.computeAllModules(this); /* * FormOwner @@ -87,23 +89,4 @@ public class SettingsStorage implements MDObject, ModuleOwner, FormOwner, Templa @Singular List templates; - - @Override - public List getChildren() { - return children.getOrCompute(); - } - - @Override - public List getAllModules() { - return allModules.getOrCompute(); - } - - private List computeChildren() { - return LazyLoader.computeChildren(this); - } - - private List computeAllModules() { - return LazyLoader.computeAllModules(this); - } - } diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/Subsystem.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/Subsystem.java index 5c341154e..356bc79b8 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/Subsystem.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/Subsystem.java @@ -27,10 +27,10 @@ import com.github._1c_syntax.bsl.support.SupportVariant; import com.github._1c_syntax.bsl.types.MdoReference; import com.github._1c_syntax.bsl.types.MultiLanguageString; -import com.github._1c_syntax.utils.Lazy; import lombok.Builder; import lombok.Builder.Default; import lombok.EqualsAndHashCode; +import lombok.Getter; import lombok.Singular; import lombok.ToString; import lombok.Value; @@ -66,7 +66,8 @@ public class Subsystem implements MDObject, ChildrenOwner, AccessRightsOwner { @Default SupportVariant supportVariant = SupportVariant.NONE; - Lazy> plainChildren = new Lazy<>(this::computePlainChildren); + @Getter(lazy = true) + List plainChildren = LazyLoader.computePlainChildren(this); /* * Свое @@ -138,19 +139,10 @@ public List included(MdoReference mdoRef, boolean addParentSubsystem) return includedSubsystems; } - @Override - public List getPlainChildren() { - return plainChildren.getOrCompute(); - } - /** * Возвращает перечень возможных прав доступа */ public static List possibleRights() { return POSSIBLE_RIGHTS; } - - private List computePlainChildren() { - return LazyLoader.computePlainChildren(this); - } } diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/Task.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/Task.java index 82ede9e01..bb6c90d36 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/Task.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/Task.java @@ -31,10 +31,10 @@ import com.github._1c_syntax.bsl.support.SupportVariant; import com.github._1c_syntax.bsl.types.MdoReference; import com.github._1c_syntax.bsl.types.MultiLanguageString; -import com.github._1c_syntax.utils.Lazy; import lombok.Builder; import lombok.Builder.Default; import lombok.EqualsAndHashCode; +import lombok.Getter; import lombok.Singular; import lombok.ToString; import lombok.Value; @@ -71,7 +71,8 @@ public class Task implements ReferenceObject, AccessRightsOwner { @Default List modules = Collections.emptyList(); - Lazy> allModules = new Lazy<>(this::computeAllModules); + @Getter(lazy = true) + List allModules = LazyLoader.computeAllModules(this); @Singular List commands; @@ -82,8 +83,10 @@ public class Task implements ReferenceObject, AccessRightsOwner { @Singular List tabularSections; - Lazy> storageFields = new Lazy<>(this::computeStorageFields); - Lazy> plainStorageFields = new Lazy<>(this::computePlainStorageFields); + @Getter(lazy = true) + List storageFields = LazyLoader.computeStorageFields(this); + @Getter(lazy = true) + List plainStorageFields = LazyLoader.computePlainStorageFields(this); @Singular List forms; @@ -91,8 +94,10 @@ public class Task implements ReferenceObject, AccessRightsOwner { @Singular List templates; - Lazy> children = new Lazy<>(this::computeChildren); - Lazy> plainChildren = new Lazy<>(this::computePlainChildren); + @Getter(lazy = true) + List children = LazyLoader.computeChildren(this); + @Getter(lazy = true) + List plainChildren = LazyLoader.computePlainChildren(this); /* * Свое @@ -110,31 +115,6 @@ public class Task implements ReferenceObject, AccessRightsOwner { @Default MultiLanguageString explanation = MultiLanguageString.EMPTY; - @Override - public List getChildren() { - return children.getOrCompute(); - } - - @Override - public List getPlainChildren() { - return plainChildren.getOrCompute(); - } - - @Override - public List getStorageFields() { - return storageFields.getOrCompute(); - } - - @Override - public List getPlainStorageFields() { - return plainStorageFields.getOrCompute(); - } - - @Override - public List getAllModules() { - return allModules.getOrCompute(); - } - /** * Возвращает перечень возможных прав доступа */ @@ -142,26 +122,6 @@ public static List possibleRights() { return POSSIBLE_RIGHTS; } - private List computeChildren() { - return LazyLoader.computeChildren(this); - } - - private List computePlainChildren() { - return LazyLoader.computePlainChildren(this); - } - - private List computeStorageFields() { - return LazyLoader.computeStorageFields(this); - } - - private List computePlainStorageFields() { - return LazyLoader.computePlainStorageFields(this); - } - - private List computeAllModules() { - return LazyLoader.computeAllModules(this); - } - private static List computePossibleRights() { return List.of( RoleRight.INSERT, diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/WebService.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/WebService.java index b9285c018..aa027e498 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/WebService.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/WebService.java @@ -28,10 +28,10 @@ import com.github._1c_syntax.bsl.support.SupportVariant; import com.github._1c_syntax.bsl.types.MdoReference; import com.github._1c_syntax.bsl.types.MultiLanguageString; -import com.github._1c_syntax.utils.Lazy; import lombok.Builder; import lombok.Builder.Default; import lombok.EqualsAndHashCode; +import lombok.Getter; import lombok.Singular; import lombok.ToString; import lombok.Value; @@ -64,7 +64,8 @@ public class WebService implements MDObject, ChildrenOwner, ModuleOwner { @Default SupportVariant supportVariant = SupportVariant.NONE; - Lazy> plainChildren = new Lazy<>(this::computePlainChildren); + @Getter(lazy = true) + List plainChildren = LazyLoader.computePlainChildren(this); /* * ModuleOwner @@ -111,13 +112,4 @@ public class WebService implements MDObject, ChildrenOwner, ModuleOwner { public List getChildren() { return Collections.unmodifiableList(operations); } - - @Override - public List getPlainChildren() { - return plainChildren.getOrCompute(); - } - - private List computePlainChildren() { - return LazyLoader.computePlainChildren(this); - } } diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/children/ExternalDataSourceCube.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/children/ExternalDataSourceCube.java index 8c65d957a..71f932844 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/children/ExternalDataSourceCube.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/children/ExternalDataSourceCube.java @@ -38,10 +38,10 @@ import com.github._1c_syntax.bsl.support.SupportVariant; import com.github._1c_syntax.bsl.types.MdoReference; import com.github._1c_syntax.bsl.types.MultiLanguageString; -import com.github._1c_syntax.utils.Lazy; import lombok.Builder; import lombok.Builder.Default; import lombok.EqualsAndHashCode; +import lombok.Getter; import lombok.Singular; import lombok.ToString; import lombok.Value; @@ -79,8 +79,10 @@ public class ExternalDataSourceCube implements MDChild, ModuleOwner, CommandOwne @Default MdoReference owner = MdoReference.EMPTY; - Lazy> children = new Lazy<>(this::computeChildren); - Lazy> plainChildren = new Lazy<>(this::computePlainChildren); + @Getter(lazy = true) + List children = LazyLoader.computeChildren(this); + @Getter(lazy = true) + List plainChildren = LazyLoader.computePlainChildren(this); /* * ModuleOwner @@ -88,7 +90,8 @@ public class ExternalDataSourceCube implements MDChild, ModuleOwner, CommandOwne @Default List modules = Collections.emptyList(); - Lazy> allModules = new Lazy<>(this::computeAllModules); + @Getter(lazy = true) + List allModules = LazyLoader.computeAllModules(this); /* * CommandOwner @@ -118,8 +121,8 @@ public class ExternalDataSourceCube implements MDChild, ModuleOwner, CommandOwne */ @Singular List dimensionTables; - - Lazy> allAttributes = new Lazy<>(this::computeAllAttributes); + @Getter(lazy = true) + List allAttributes = LazyLoader.computeAllAttributes(this); /* * FormOwner @@ -145,26 +148,6 @@ public class ExternalDataSourceCube implements MDChild, ModuleOwner, CommandOwne @Default DataLockControlMode dataLockControlMode = DataLockControlMode.AUTOMATIC; - @Override - public List getChildren() { - return children.getOrCompute(); - } - - @Override - public List getPlainChildren() { - return plainChildren.getOrCompute(); - } - - @Override - public List getAllAttributes() { - return allAttributes.getOrCompute(); - } - - @Override - public List getAllModules() { - return allModules.getOrCompute(); - } - /** * Возвращает перечень возможных прав доступа */ @@ -172,22 +155,6 @@ public static List possibleRights() { return POSSIBLE_RIGHTS; } - private List computeChildren() { - return LazyLoader.computeChildren(this); - } - - private List computePlainChildren() { - return LazyLoader.computePlainChildren(this); - } - - private List computeAllAttributes() { - return LazyLoader.computeAllAttributes(this); - } - - private List computeAllModules() { - return LazyLoader.computeAllModules(this); - } - private static List computePossibleRights() { return List.of( RoleRight.READ, diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/children/ExternalDataSourceCubeDimensionTable.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/children/ExternalDataSourceCubeDimensionTable.java index d082e1f7a..a536a21c1 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/children/ExternalDataSourceCubeDimensionTable.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/children/ExternalDataSourceCubeDimensionTable.java @@ -38,10 +38,10 @@ import com.github._1c_syntax.bsl.support.SupportVariant; import com.github._1c_syntax.bsl.types.MdoReference; import com.github._1c_syntax.bsl.types.MultiLanguageString; -import com.github._1c_syntax.utils.Lazy; import lombok.Builder; import lombok.Builder.Default; import lombok.EqualsAndHashCode; +import lombok.Getter; import lombok.Singular; import lombok.ToString; import lombok.Value; @@ -79,7 +79,8 @@ public class ExternalDataSourceCubeDimensionTable implements MDChild, ModuleOwne @Default MdoReference owner = MdoReference.EMPTY; - Lazy> children = new Lazy<>(this::computeChildren); + @Getter(lazy = true) + List children = LazyLoader.computeChildren(this); /* * ModuleOwner @@ -87,7 +88,8 @@ public class ExternalDataSourceCubeDimensionTable implements MDChild, ModuleOwne @Default List modules = Collections.emptyList(); - Lazy> allModules = new Lazy<>(this::computeAllModules); + @Getter(lazy = true) + List allModules = LazyLoader.computeAllModules(this); /* * CommandOwner @@ -135,16 +137,6 @@ public List getAllAttributes() { return Collections.unmodifiableList(fields); } - @Override - public List getChildren() { - return children.getOrCompute(); - } - - @Override - public List getAllModules() { - return allModules.getOrCompute(); - } - /** * Возвращает перечень возможных прав доступа */ @@ -152,14 +144,6 @@ public static List possibleRights() { return POSSIBLE_RIGHTS; } - private List computeChildren() { - return LazyLoader.computeChildren(this); - } - - private List computeAllModules() { - return LazyLoader.computeAllModules(this); - } - private static List computePossibleRights() { return List.of( RoleRight.INSERT, diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/children/ExternalDataSourceTable.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/children/ExternalDataSourceTable.java index 58909a12c..da786d2dc 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/children/ExternalDataSourceTable.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/children/ExternalDataSourceTable.java @@ -38,10 +38,10 @@ import com.github._1c_syntax.bsl.support.SupportVariant; import com.github._1c_syntax.bsl.types.MdoReference; import com.github._1c_syntax.bsl.types.MultiLanguageString; -import com.github._1c_syntax.utils.Lazy; import lombok.Builder; import lombok.Builder.Default; import lombok.EqualsAndHashCode; +import lombok.Getter; import lombok.Singular; import lombok.ToString; import lombok.Value; @@ -79,7 +79,8 @@ public class ExternalDataSourceTable implements MDChild, ModuleOwner, CommandOwn @Default MdoReference owner = MdoReference.EMPTY; - Lazy> children = new Lazy<>(this::computeChildren); + @Getter(lazy = true) + List children = LazyLoader.computeChildren(this); /* * ModuleOwner @@ -87,7 +88,8 @@ public class ExternalDataSourceTable implements MDChild, ModuleOwner, CommandOwn @Default List modules = Collections.emptyList(); - Lazy> allModules = new Lazy<>(this::computeAllModules); + @Getter(lazy = true) + List allModules = LazyLoader.computeAllModules(this); /* * CommandOwner @@ -135,16 +137,6 @@ public List getAllAttributes() { return Collections.unmodifiableList(fields); } - @Override - public List getChildren() { - return children.getOrCompute(); - } - - @Override - public List getAllModules() { - return allModules.getOrCompute(); - } - /** * Возвращает перечень возможных прав доступа */ @@ -152,14 +144,6 @@ public static List possibleRights() { return POSSIBLE_RIGHTS; } - private List computeChildren() { - return LazyLoader.computeChildren(this); - } - - private List computeAllModules() { - return LazyLoader.computeAllModules(this); - } - private static List computePossibleRights() { return List.of( RoleRight.INSERT, diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/storage/DataCompositionSchema.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/storage/DataCompositionSchema.java index 6ec96ef84..7f5ba2f44 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/storage/DataCompositionSchema.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/storage/DataCompositionSchema.java @@ -22,19 +22,16 @@ package com.github._1c_syntax.bsl.mdo.storage; import com.github._1c_syntax.bsl.mdo.support.DataSetType; -import com.github._1c_syntax.utils.Lazy; import lombok.Builder; -import lombok.Builder.Default; -import lombok.EqualsAndHashCode; import lombok.Getter; import lombok.NonNull; import lombok.Singular; -import lombok.ToString; import lombok.Value; import java.nio.file.Path; import java.util.ArrayList; import java.util.List; +import java.util.Objects; /** * Реализация хранения содержимого макета-схемы компоновки данных @@ -50,7 +47,8 @@ public class DataCompositionSchema implements TemplateData { /** * Плоский список наборов данных */ - Lazy> plainDataSets = new Lazy<>(this::computePlainDataSets); + @Getter(lazy = true) + List plainDataSets = computePlainDataSets(); /** * Путь к файлу с данными макета @@ -68,13 +66,9 @@ public boolean isEmpty() { return false; } - public List getPlainDataSets() { - return plainDataSets.getOrCompute(); - } - private List computePlainDataSets() { List result = new ArrayList<>(); - fillPlainDataSetByList(result, dataSets); + fillPlainDataSetByList(result, Objects.requireNonNull(dataSets)); return result; } @@ -82,56 +76,31 @@ private List computePlainDataSets() { private static void fillPlainDataSetByList(List result, List items) { items.forEach((DataSet dataSet) -> { result.add(dataSet); - fillPlainDataSetByList(result, dataSet.getItems()); + fillPlainDataSetByList(result, dataSet.items()); }); } - @Value - @ToString(of = {"name"}) - @EqualsAndHashCode(of = {"name"}) + /** + * @param name Имя набора данных + * @param type Тип набора данных + * @param dataSource Имя источника данных + * @param items Подчиненные наборы данных + * @param querySource Текста запроса (опционально) + * @param fields Поля набора данных + */ @Builder - public static class DataSet { - /** - * Имя набора данных - */ - @Default - String name = ""; - - /** - * Тип набора данных - */ - @Default - DataSetType type = DataSetType.DATA_SET_QUERY; - - /** - * Имя источника данных - */ - @Default - String dataSource = ""; - - /** - * Подчиненные наборы данных - */ - @Singular - List items; - - /** - * Текста запроса (опционально) - */ - @Default - QuerySource querySource = QuerySource.empty(); - - /** - * Поля набора данных - */ - @Singular - List fields; + public record DataSet(@NonNull String name, + @NonNull DataSetType type, + @NonNull String dataSource, + @NonNull @Singular List items, + @NonNull QuerySource querySource, + @NonNull @Singular List fields) { } /** * @param dataPath Путь к данным поля * @param name Имя поля */ - public record DataSetField(String dataPath, String name) { + public record DataSetField(@NonNull String dataPath, @NonNull String name) { } } diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/storage/ManagedFormData.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/storage/ManagedFormData.java index 9961e79f1..ae298dfc5 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/storage/ManagedFormData.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/storage/ManagedFormData.java @@ -26,9 +26,9 @@ import com.github._1c_syntax.bsl.mdo.storage.form.FormItem; import com.github._1c_syntax.bsl.mdo.utils.LazyLoader; import com.github._1c_syntax.bsl.types.MultiLanguageString; -import com.github._1c_syntax.utils.Lazy; import lombok.Builder; import lombok.Builder.Default; +import lombok.Getter; import lombok.Singular; import lombok.Value; @@ -48,15 +48,6 @@ public class ManagedFormData implements FormData { List items; @Singular("addAttributes") List attributes; - - Lazy> plainItems = new Lazy<>(this::computePlainItems); - - @Override - public List getPlainItems() { - return plainItems.getOrCompute(); - } - - private List computePlainItems() { - return LazyLoader.computePlainFormItems(this); - } + @Getter(lazy = true) + List plainItems = LazyLoader.computePlainFormItems(this); } diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/storage/QuerySource.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/storage/QuerySource.java index 12bf8c025..e249a4d97 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/storage/QuerySource.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/storage/QuerySource.java @@ -21,27 +21,19 @@ */ package com.github._1c_syntax.bsl.mdo.storage; -import com.github._1c_syntax.bsl.mdo.support.SourcePosition; +import lombok.NonNull; /** * Модель хранения информации о запросе СКД * - * @param position Позиция запроса в исходном файле + * @param line Номер строки позиции запроса в исходном файле + * @param column Номер первого символа позиции запроса в исходном файле * @param textQuery Текст запроса */ -public record QuerySource(SourcePosition position, String textQuery) { +public record QuerySource(int line, int column, @NonNull String textQuery) { /** * Пустой запрос */ - private static final QuerySource EMPTY = new QuerySource(new SourcePosition(0, 0), ""); - - /** - * Ссылка на пустой запрос - * - * @return Пустой запрос - */ - public static QuerySource empty() { - return EMPTY; - } + public static final QuerySource EMPTY = new QuerySource(0, 0, ""); } diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/storage/RoleData.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/storage/RoleData.java index 90a97cbc2..1165b493d 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/storage/RoleData.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/storage/RoleData.java @@ -25,77 +25,38 @@ import com.github._1c_syntax.bsl.types.MdoReference; import com.github._1c_syntax.utils.GenericInterner; import lombok.Builder; -import lombok.Builder.Default; -import lombok.EqualsAndHashCode; +import lombok.NonNull; import lombok.Singular; -import lombok.ToString; -import lombok.Value; -import lombok.extern.slf4j.Slf4j; import java.util.List; /** * Хранилище данных конкретной роли + * + * @param setForNewObjects Устанавливать права для новых объектов + * @param setForAttributesByDefault Устанавливать права для реквизитов и табличных частей по умолчанию + * @param independentRightsOfChildObjects Независимые права подчиненных объектов */ -@Value -@ToString -@EqualsAndHashCode @Builder -@Slf4j -public class RoleData { +public record RoleData(boolean setForNewObjects, boolean setForAttributesByDefault, + boolean independentRightsOfChildObjects, @NonNull @Singular List objectRights) { public static final RoleData EMPTY = RoleData.builder().build(); public static final GenericInterner RIGHT_INTERNER = new GenericInterner<>(); /** - * Устанавливать права для новых объектов - */ - boolean setForNewObjects; - - /** - * Устанавливать права для реквизитов и табличных частей по умолчанию - */ - boolean setForAttributesByDefault; - - /** - * Независимые права подчиненных объектов + * @param name Имя субъекта права (mdoref и базовые) + * @param rights Набор самих прав */ - boolean independentRightsOfChildObjects; - - @Singular - List objectRights; - - @Value - @ToString(of = {"name"}) - @EqualsAndHashCode(of = {"name"}) @Builder - public static class ObjectRight { - /** - * Имя субъекта права (mdoref и базовые) - */ - @Default - MdoReference name = MdoReference.EMPTY; - - /** - * Набор самих прав - */ - @Singular - List rights; + public record ObjectRight(@NonNull MdoReference name, @NonNull @Singular List rights) { } - @Value - @ToString(of = {"name", "value"}) - @EqualsAndHashCode(of = {"name", "value"}) + /** + * @param name Право + * @param value Признак установленности права + */ @Builder - public static class Right { - /** - * Право - */ - RoleRight name; - - /** - * Признак установленности права - */ - boolean value; + public record Right(@NonNull RoleRight name, boolean value) { } } diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/storage/XdtoPackageData.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/storage/XdtoPackageData.java index eaecad63f..1c9387e0c 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/storage/XdtoPackageData.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/storage/XdtoPackageData.java @@ -22,151 +22,74 @@ package com.github._1c_syntax.bsl.mdo.storage; import lombok.Builder; -import lombok.Builder.Default; -import lombok.EqualsAndHashCode; +import lombok.NonNull; import lombok.Singular; -import lombok.ToString; -import lombok.Value; -import lombok.extern.slf4j.Slf4j; +import java.util.Collections; import java.util.List; /** * Хранилище данных XSD схемы пакета + * + * @param targetNamespace Пространство имен пакета + * @param imports Список импортов пакета + * @param valueTypes Список типов значений + * @param objectTypes Список типов объектов + * @param properties Список глобальных атрибутов */ -@Value -@ToString(of = {"targetNamespace"}) -@EqualsAndHashCode(of = {"targetNamespace"}) @Builder -@Slf4j -public class XdtoPackageData { - - public static final XdtoPackageData EMPTY = XdtoPackageData.builder().build(); - - /** - * Пространство имен пакета - */ - @Default - String targetNamespace = ""; - - /** - * Список импортов пакета - */ - @Singular("oneImport") - List imports; +public record XdtoPackageData(@NonNull String targetNamespace, + @NonNull @Singular("oneImport") List imports, + @NonNull @Singular List valueTypes, + @NonNull @Singular List objectTypes, + @NonNull @Singular List properties) { + + public static final XdtoPackageData EMPTY = new XdtoPackageData( + "", + Collections.emptyList(), + Collections.emptyList(), + Collections.emptyList(), + Collections.emptyList() + ); /** - * Список типов значений + * @param name Имя типа значений + * @param base Ссылка на базовый тип + * @param variety Тип коллекции + * @param enumerations Значения элементов перечисления */ - @Singular - List valueTypes; - - /** - * Список типов объектов - */ - @Singular - List objectTypes; - - /** - * Список глобальных атрибутов - */ - @Singular - List properties; - - @Value - @ToString(of = {"name"}) - @EqualsAndHashCode(of = {"name"}) @Builder - public static class ValueType { - /** - * Имя типа значений - */ - String name; - - /** - * Ссылка на базовый тип - */ - @Default - String base = ""; - - /** - * Тип коллекции - */ - @Default - String variety = ""; - - /** - * Значения элементов перечисления - */ - @Singular - List enumerations; + public record ValueType(@NonNull String name, + @NonNull String base, + @NonNull String variety, + @NonNull @Singular List enumerations) { } - @Value - @ToString(of = {"name"}) - @EqualsAndHashCode(of = {"name"}) + /** + * @param name Имя типа объекта + * @param base Ссылка на базовый тип + * @param properties Список атрибутов объекта + */ @Builder - public static class ObjectType { - - /** - * Имя типа объекта - */ - String name; - - /** - * Ссылка на базовый тип - */ - @Default - String base = ""; - - /** - * Список атрибутов объекта - */ - @Singular - List properties; + public record ObjectType(@NonNull String name, @NonNull String base, @NonNull @Singular List properties) { } - @Value - @ToString(of = {"name"}) - @EqualsAndHashCode(of = {"name"}) + /** + * @param name Имя атрибута + * @param type Тип атрибута + * @param lowerBound Минимальное количество атрибутов (для множественных) + * @param upperBound Максимальное количество атрибутов (для множественных) + * @param nillable Возможность принимать NULL + * @param form Имя формы + * @param typeDef Свойства поля + */ @Builder - public static class Property { - /** - * Имя атрибута - */ - String name; - - /** - * Тип атрибута - */ - @Default - String type = ""; - - /** - * Минимальное количество атрибутов (для множественных) - */ - int lowerBound; - - /** - * Максимальное количество атрибутов (для множественных) - */ - int upperBound; - - /** - * Возможность принимать NULL - */ - boolean nillable; - - /** - * Имя формы - */ - @Default - String form = ""; - - /** - * Свойства поля - */ - @Singular("property") - List typeDef; + public record Property(@NonNull String name, + @NonNull String type, + int lowerBound, + int upperBound, + boolean nillable, + @NonNull String form, + @NonNull @Singular("property") List typeDef) { } } diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/storage/form/FormAttribute.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/storage/form/FormAttribute.java index e3762bd3d..ebe3abd74 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/storage/form/FormAttribute.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/storage/form/FormAttribute.java @@ -28,7 +28,6 @@ import lombok.Builder; import lombok.Builder.Default; import lombok.Getter; -import lombok.NonNull; import lombok.Value; /** @@ -65,7 +64,6 @@ public class FormAttribute implements ValueTypeOwner { ValueTypeDescription type = ValueTypeDescription.EMPTY; @Override - @NonNull public ValueTypeDescription getValueType() { return type; } diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/storage/form/FormDataPath.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/storage/form/FormDataPath.java deleted file mode 100644 index 37d78cafb..000000000 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/storage/form/FormDataPath.java +++ /dev/null @@ -1,42 +0,0 @@ -/* - * This file is a part of MDClasses. - * - * Copyright (c) 2019 - 2025 - * Tymko Oleg , Maximov Valery and contributors - * - * SPDX-License-Identifier: LGPL-3.0-or-later - * - * MDClasses is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 3.0 of the License, or (at your option) any later version. - * - * MDClasses is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with MDClasses. - */ -package com.github._1c_syntax.bsl.mdo.storage.form; - -/** - * Путь к реквизиту атрибута форма - * - * @param segments Путь к реквизиту - */ -public record FormDataPath(String segments) { - - /** - * Ссылка на пустой элемент - */ - public static final FormDataPath EMPTY = new FormDataPath(""); - - /** - * Признак отсутствия пути - */ - public boolean isEmpty() { - return segments.isEmpty(); - } -} diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/storage/form/FormHandler.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/storage/form/FormHandler.java index e9fceed8d..a43f9b9fd 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/storage/form/FormHandler.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/storage/form/FormHandler.java @@ -1,49 +1,39 @@ -/* - * This file is a part of MDClasses. - * - * Copyright (c) 2019 - 2025 - * Tymko Oleg , Maximov Valery and contributors - * - * SPDX-License-Identifier: LGPL-3.0-or-later - * - * MDClasses is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 3.0 of the License, or (at your option) any later version. - * - * MDClasses is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with MDClasses. - */ -package com.github._1c_syntax.bsl.mdo.storage.form; +/* + * This file is a part of MDClasses. + * + * Copyright (c) 2019 - 2025 + * Tymko Oleg , Maximov Valery and contributors + * + * SPDX-License-Identifier: LGPL-3.0-or-later + * + * MDClasses is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 3.0 of the License, or (at your option) any later version. + * + * MDClasses is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with MDClasses. + */ +package com.github._1c_syntax.bsl.mdo.storage.form; import com.github._1c_syntax.utils.GenericInterner; import com.github._1c_syntax.utils.StringInterner; import edu.umd.cs.findbugs.annotations.Nullable; -import lombok.EqualsAndHashCode; -import lombok.Value; -import lombok.experimental.Accessors; /** * Обработчик события формы */ -@Value -@EqualsAndHashCode -public class FormHandler implements Comparable { +public record FormHandler(String event, String name) implements Comparable { private static final GenericInterner interner = new GenericInterner<>(); private static final StringInterner stringInterner = new StringInterner(); - @Accessors(fluent = true) - String event; - @Accessors(fluent = true) - String name; - - private FormHandler(String event, String name) { + public FormHandler(String event, String name) { this.event = stringInterner.intern(event); this.name = stringInterner.intern(name); } diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/storage/form/FormItem.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/storage/form/FormItem.java index e13bf872e..430dec6f5 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/storage/form/FormItem.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/storage/form/FormItem.java @@ -52,7 +52,7 @@ public interface FormItem { /** * Путь к реквизиту */ - FormDataPath getDataPath(); + String getDataPath(); /** * Список дочерних визуальных элементов (непосредственных потомков) diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/storage/form/SimpleFormItem.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/storage/form/SimpleFormItem.java index e610bd11d..a169d6a2a 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/storage/form/SimpleFormItem.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/storage/form/SimpleFormItem.java @@ -23,9 +23,9 @@ import com.github._1c_syntax.bsl.mdo.utils.LazyLoader; import com.github._1c_syntax.bsl.types.MultiLanguageString; -import com.github._1c_syntax.utils.Lazy; import lombok.Builder; import lombok.Builder.Default; +import lombok.Getter; import lombok.Singular; import lombok.Value; @@ -46,18 +46,10 @@ public class SimpleFormItem implements FormItem { @Default MultiLanguageString title = MultiLanguageString.EMPTY; @Default - FormDataPath dataPath = FormDataPath.EMPTY; + String dataPath = ""; @Singular("addItems") List items; - Lazy> plainItems = new Lazy<>(this::computePlainItems); - - @Override - public List getPlainItems() { - return plainItems.getOrCompute(); - } - - private List computePlainItems() { - return LazyLoader.computePlainFormItems(this); - } + @Getter(lazy = true) + List plainItems = LazyLoader.computePlainFormItems(this); } diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/support/SourcePosition.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/support/SourcePosition.java deleted file mode 100644 index d855285df..000000000 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/support/SourcePosition.java +++ /dev/null @@ -1,31 +0,0 @@ -/* - * This file is a part of MDClasses. - * - * Copyright (c) 2019 - 2025 - * Tymko Oleg , Maximov Valery and contributors - * - * SPDX-License-Identifier: LGPL-3.0-or-later - * - * MDClasses is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 3.0 of the License, or (at your option) any later version. - * - * MDClasses is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with MDClasses. - */ -package com.github._1c_syntax.bsl.mdo.support; - -/** - * Хранение позиции в исходном файле - * - * @param line Номер строки - * @param column Номер первого символа - */ -public record SourcePosition(int line, int column) { -} diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/utils/LazyLoader.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/utils/LazyLoader.java index 481583364..f446de34e 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/utils/LazyLoader.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/utils/LazyLoader.java @@ -261,7 +261,6 @@ public static Map computeChildrenByMdoRef(ChildrenOwner childr .collect(Collectors.toUnmodifiableMap(MD::getMdoReference, child -> child)); } - /** * Создает соответствие URI модуля объекта модулю. * Используется все модуля объекта, включая дочерних объектов. @@ -321,8 +320,7 @@ private List addAll(List result, List source) { return Collections.unmodifiableList(source); } else if (source.isEmpty()) { return result; - } else if ("UnmodifiableRandomAccessList".equals(result.getClass().getSimpleName())) { - // todo надо придумать как красиво тип определить + } else if (isUnmodifiableList(result)) { List newList = new ArrayList<>(result); newList.addAll(source); return newList; @@ -331,4 +329,13 @@ private List addAll(List result, List source) { return result; } } + + public static boolean isUnmodifiableList(List list) { + try { + list.addAll(Collections.emptyList()); + return false; + } catch (UnsupportedOperationException e) { + return true; + } + } } diff --git a/src/main/java/com/github/_1c_syntax/bsl/reader/common/context/MDCReaderContext.java b/src/main/java/com/github/_1c_syntax/bsl/reader/common/context/MDCReaderContext.java index 274ea05b9..636c51cb2 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/reader/common/context/MDCReaderContext.java +++ b/src/main/java/com/github/_1c_syntax/bsl/reader/common/context/MDCReaderContext.java @@ -32,7 +32,6 @@ import lombok.EqualsAndHashCode; import lombok.NonNull; import lombok.Setter; -import lombok.extern.slf4j.Slf4j; import java.util.ArrayList; import java.util.Collections; @@ -44,7 +43,6 @@ * Служебный класс для хранения контекста при "сборке" объекта при чтении из файла */ @EqualsAndHashCode(callSuper = true) -@Slf4j public class MDCReaderContext extends AbstractReaderContext { private static final String UUID_FIELD_NAME = "uuid"; @@ -78,7 +76,7 @@ public MDCReaderContext(@NonNull Class clazz, @NonNull HierarchicalStreamRead builder = TransformationUtils.builder(realClass); var uuid = reader.getAttribute(UUID_FIELD_NAME); - if (uuid != null && !mdReader.getReadSettings().isSkipSupport()) { + if (uuid != null && !mdReader.getReadSettings().skipSupport()) { supportVariant = ParseSupportData.get(uuid, currentPath); } else { supportVariant = SupportVariant.NONE; diff --git a/src/main/java/com/github/_1c_syntax/bsl/reader/common/context/MDReaderContext.java b/src/main/java/com/github/_1c_syntax/bsl/reader/common/context/MDReaderContext.java index e44c7e9fb..0d3202cad 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/reader/common/context/MDReaderContext.java +++ b/src/main/java/com/github/_1c_syntax/bsl/reader/common/context/MDReaderContext.java @@ -43,7 +43,6 @@ import lombok.NonNull; import lombok.Setter; import lombok.ToString; -import lombok.extern.slf4j.Slf4j; import java.nio.file.Path; import java.util.ArrayList; @@ -56,7 +55,6 @@ * Для хранения контекста при чтении MD и ExternalSource объектов */ @EqualsAndHashCode(callSuper = true) -@Slf4j @ToString public class MDReaderContext extends AbstractReaderContext { @@ -95,14 +93,14 @@ public MDReaderContext(@NonNull HierarchicalStreamReader reader) { builder = TransformationUtils.builder(realClass); var uuid = reader.getAttribute(UUID_FIELD_NAME); - if (uuid != null && !mdReader.getReadSettings().isSkipSupport()) { + if (uuid != null && !mdReader.getReadSettings().skipSupport()) { supportVariant = ParseSupportData.get(uuid, currentPath); } else { supportVariant = SupportVariant.NONE; } mdoType = MDOType.fromValue(realClassName).orElse(MDOType.UNKNOWN); - if(mdoType == MDOType.UNKNOWN && realClass.isAssignableFrom(ExternalDataSourceTableField.class)) { + if (mdoType == MDOType.UNKNOWN && ExternalDataSourceTableField.class.isAssignableFrom(realClass)) { realClassName = "Field"; mdoType = MDOType.fromValue(realClassName).orElse(MDOType.UNKNOWN); } diff --git a/src/main/java/com/github/_1c_syntax/bsl/reader/common/context/std_attributes/StdAttributeFiller.java b/src/main/java/com/github/_1c_syntax/bsl/reader/common/context/std_attributes/StdAttributeFiller.java index 416aa269a..bd1e7bb66 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/reader/common/context/std_attributes/StdAttributeFiller.java +++ b/src/main/java/com/github/_1c_syntax/bsl/reader/common/context/std_attributes/StdAttributeFiller.java @@ -47,7 +47,8 @@ public class StdAttributeFiller { private static final String SUPPORT_VALIANT_FIELD_NAME = "SupportVariant"; private static final List EXCLUDED = List.of( MDOType.DATA_PROCESSOR, MDOType.REPORT, MDOType.EXTERNAL_DATA_PROCESSOR, MDOType.EXTERNAL_REPORT, - MDOType.SEQUENCE, MDOType.EXTERNAL_DATA_SOURCE_TABLE); + MDOType.SEQUENCE, MDOType.EXTERNAL_DATA_SOURCE_TABLE, MDOType.EXTERNAL_DATA_SOURCE_CUBE, + MDOType.EXTERNAL_DATA_SOURCE_FUNCTION, MDOType.EXTERNAL_DATA_SOURCE_CUBE_DIMENSION_TABLE); private static final Map> REGISTRY = computeRegistry(); public void fill(MDReaderContext parentContext) { diff --git a/src/main/java/com/github/_1c_syntax/bsl/reader/edt/converter/FormDataPathConverter.java b/src/main/java/com/github/_1c_syntax/bsl/reader/common/converter/AllStringConverter.java similarity index 70% rename from src/main/java/com/github/_1c_syntax/bsl/reader/edt/converter/FormDataPathConverter.java rename to src/main/java/com/github/_1c_syntax/bsl/reader/common/converter/AllStringConverter.java index 76a3e60bc..317d10a02 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/reader/edt/converter/FormDataPathConverter.java +++ b/src/main/java/com/github/_1c_syntax/bsl/reader/common/converter/AllStringConverter.java @@ -19,33 +19,36 @@ * You should have received a copy of the GNU Lesser General Public * License along with MDClasses. */ -package com.github._1c_syntax.bsl.reader.edt.converter; - -import com.github._1c_syntax.bsl.mdo.storage.form.FormDataPath; -import com.github._1c_syntax.bsl.reader.common.xstream.ReadConverter; -import com.thoughtworks.xstream.converters.UnmarshallingContext; -import com.thoughtworks.xstream.io.HierarchicalStreamReader; - -/** - * Конвертор пути элемента формы в формате ЕДТ - */ -@EDTConverter -public class FormDataPathConverter implements ReadConverter { - - @Override - public Object unmarshal(HierarchicalStreamReader reader, UnmarshallingContext context) { - if (reader.hasMoreChildren()) { - reader.moveDown(); - var value = new FormDataPath(reader.getValue().intern()); - reader.moveUp(); - return value; - } - - return null; - } - - @Override - public boolean canConvert(Class type) { - return type == FormDataPath.class; - } -} +package com.github._1c_syntax.bsl.reader.common.converter; + +import com.github._1c_syntax.bsl.reader.common.xstream.ReadConverter; +import com.thoughtworks.xstream.converters.UnmarshallingContext; +import com.thoughtworks.xstream.io.HierarchicalStreamReader; + +/** + * Конвертор для строки, которая может находиться во вложенной структуре + */ +@CommonConverter +public class AllStringConverter implements ReadConverter { + + @Override + public Object unmarshal(HierarchicalStreamReader reader, UnmarshallingContext context) { + return read(reader); + } + + private static Object read(HierarchicalStreamReader reader) { + if (!reader.hasMoreChildren()) { + return reader.getValue(); + } else { + reader.moveDown(); + var result = read(reader); + reader.moveUp(); + return result; + } + } + + @Override + public boolean canConvert(Class type) { + return type == String.class; + } +} diff --git a/src/main/java/com/github/_1c_syntax/bsl/reader/common/converter/DataCompositionSchemaConverter.java b/src/main/java/com/github/_1c_syntax/bsl/reader/common/converter/DataCompositionSchemaConverter.java index 82c22083c..98271cef0 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/reader/common/converter/DataCompositionSchemaConverter.java +++ b/src/main/java/com/github/_1c_syntax/bsl/reader/common/converter/DataCompositionSchemaConverter.java @@ -46,7 +46,7 @@ public class DataCompositionSchemaConverter implements ReadConverter { @SneakyThrows @Override public Object unmarshal(HierarchicalStreamReader reader, UnmarshallingContext context) { - if (ExtendXStream.getCurrentMDReader(reader).getReadSettings().isSkipDataCompositionSchema()) { + if (ExtendXStream.getCurrentMDReader(reader).getReadSettings().skipDataCompositionSchema()) { return EmptyTemplateData.getEmpty(); } diff --git a/src/main/java/com/github/_1c_syntax/bsl/reader/common/converter/DataSetConverter.java b/src/main/java/com/github/_1c_syntax/bsl/reader/common/converter/DataSetConverter.java index fa4c3aecf..0402992db 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/reader/common/converter/DataSetConverter.java +++ b/src/main/java/com/github/_1c_syntax/bsl/reader/common/converter/DataSetConverter.java @@ -46,7 +46,11 @@ public class DataSetConverter implements ReadConverter { @Override public Object unmarshal(HierarchicalStreamReader reader, UnmarshallingContext context) { var dataSet = DataCompositionSchema.DataSet.builder(); - dataSet.type(DataSetType.valueByName(reader.getAttribute(TYPE_ATTRIBUTE_NAME))); + dataSet + .name("") // по умолчанию + .dataSource("") // по умолчанию + .querySource(QuerySource.EMPTY) // по умолчанию + .type(DataSetType.valueByName(reader.getAttribute(TYPE_ATTRIBUTE_NAME))); while (reader.hasMoreChildren()) { reader.moveDown(); diff --git a/src/main/java/com/github/_1c_syntax/bsl/reader/common/converter/ExchangePlanAutoRecordConverter.java b/src/main/java/com/github/_1c_syntax/bsl/reader/common/converter/ExchangePlanAutoRecordConverter.java index 9acb63ae7..ef49e11c1 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/reader/common/converter/ExchangePlanAutoRecordConverter.java +++ b/src/main/java/com/github/_1c_syntax/bsl/reader/common/converter/ExchangePlanAutoRecordConverter.java @@ -79,7 +79,7 @@ private static ExchangePlan.RecordContent exchangePlanAutoRecord(HierarchicalStr if (mdoNodeName.equals(node)) { builder.metadata(MdoReference.create(reader.getValue())); } else if (autoRecordNodeName.equals(node)) { - builder.autoRecord(ExtendXStream.readValue(context, AutoRecordType.class)); + builder.allow(ExtendXStream.readValue(context, AutoRecordType.class) == AutoRecordType.ALLOW); } else { // no-op } diff --git a/src/main/java/com/github/_1c_syntax/bsl/reader/common/converter/QuerySourceConverter.java b/src/main/java/com/github/_1c_syntax/bsl/reader/common/converter/QuerySourceConverter.java index 6e97c4982..19848622c 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/reader/common/converter/QuerySourceConverter.java +++ b/src/main/java/com/github/_1c_syntax/bsl/reader/common/converter/QuerySourceConverter.java @@ -22,7 +22,6 @@ package com.github._1c_syntax.bsl.reader.common.converter; import com.github._1c_syntax.bsl.mdo.storage.QuerySource; -import com.github._1c_syntax.bsl.mdo.support.SourcePosition; import com.github._1c_syntax.bsl.reader.common.xstream.ExtendReaderWrapper; import com.github._1c_syntax.bsl.reader.common.xstream.ReadConverter; import com.thoughtworks.xstream.converters.UnmarshallingContext; @@ -37,10 +36,7 @@ public class QuerySourceConverter implements ReadConverter { @Override public Object unmarshal(HierarchicalStreamReader reader, UnmarshallingContext context) { var location = ((ExtendReaderWrapper) reader).getXMLStreamReader().getLocation(); - var query = reader.getValue(); - var position = new SourcePosition(location.getLineNumber(), location.getColumnNumber()); - - return new QuerySource(position, query); + return new QuerySource(location.getLineNumber(), location.getColumnNumber(), reader.getValue()); } @Override diff --git a/src/main/java/com/github/_1c_syntax/bsl/reader/common/converter/RoleDataConverter.java b/src/main/java/com/github/_1c_syntax/bsl/reader/common/converter/RoleDataConverter.java index 0fe820ed5..4bf56e217 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/reader/common/converter/RoleDataConverter.java +++ b/src/main/java/com/github/_1c_syntax/bsl/reader/common/converter/RoleDataConverter.java @@ -39,7 +39,7 @@ public class RoleDataConverter implements ReadConverter { @Override public Object unmarshal(HierarchicalStreamReader reader, UnmarshallingContext context) { - if (ExtendXStream.getCurrentMDReader(reader).getReadSettings().isSkipRoleData()) { + if (ExtendXStream.getCurrentMDReader(reader).getReadSettings().skipRoleData()) { return RoleData.EMPTY; } diff --git a/src/main/java/com/github/_1c_syntax/bsl/reader/common/converter/XdtoPackageDataConverter.java b/src/main/java/com/github/_1c_syntax/bsl/reader/common/converter/XdtoPackageDataConverter.java index fbbe205d3..95e74fda4 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/reader/common/converter/XdtoPackageDataConverter.java +++ b/src/main/java/com/github/_1c_syntax/bsl/reader/common/converter/XdtoPackageDataConverter.java @@ -56,9 +56,10 @@ public class XdtoPackageDataConverter implements ReadConverter { private static final StringInterner stringInterner = new StringInterner(); @Override + @NonNull public Object unmarshal(HierarchicalStreamReader reader, UnmarshallingContext context) { - if (ExtendXStream.getCurrentMDReader(reader).getReadSettings().isSkipXdtoPackage()) { + if (ExtendXStream.getCurrentMDReader(reader).getReadSettings().skipXdtoPackage()) { return XdtoPackageData.EMPTY; } @@ -83,6 +84,7 @@ public Object unmarshal(HierarchicalStreamReader reader, UnmarshallingContext co return builder.build(); } + @NonNull private static XdtoPackageData.ObjectType readObjectType(HierarchicalStreamReader reader) { var builder = XdtoPackageData.ObjectType.builder() .name(stringInterner.intern(reader.getAttribute(NAME_ATTRIBUTE_NAME))); @@ -97,6 +99,7 @@ private static XdtoPackageData.ObjectType readObjectType(HierarchicalStreamReade return builder.build(); } + @NonNull private static XdtoPackageData.ValueType readValueType(HierarchicalStreamReader reader) { var builder = XdtoPackageData.ValueType.builder() .name(stringInterner.intern(reader.getAttribute(NAME_ATTRIBUTE_NAME))) @@ -114,6 +117,7 @@ private static XdtoPackageData.ValueType readValueType(HierarchicalStreamReader return builder.build(); } + @NonNull private static XdtoPackageData.Property readProperty(HierarchicalStreamReader reader) { var builder = XdtoPackageData.Property.builder() .name(stringInterner.intern(reader.getAttribute(NAME_ATTRIBUTE_NAME))) @@ -165,7 +169,8 @@ public boolean canConvert(Class type) { return XdtoPackageData.class.isAssignableFrom(type); } - private static @NonNull String getAttribute(HierarchicalStreamReader reader, String name) { + @NonNull + private static String getAttribute(HierarchicalStreamReader reader, String name) { var value = reader.getAttribute(name); if (value == null) { value = ""; diff --git a/src/main/java/com/github/_1c_syntax/bsl/reader/designer/DesignerReader.java b/src/main/java/com/github/_1c_syntax/bsl/reader/designer/DesignerReader.java index fc5ef003a..ccc892bd6 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/reader/designer/DesignerReader.java +++ b/src/main/java/com/github/_1c_syntax/bsl/reader/designer/DesignerReader.java @@ -118,7 +118,7 @@ public DesignerReader(Path path, MDCReadSettings readSettings) { } this.readSettings = readSettings; - if (!readSettings.isSkipSupport()) { + if (!readSettings.skipSupport()) { var pcbin = parentConfigurationsPath(); if (pcbin.toFile().exists()) { ParseSupportData.read(pcbin); diff --git a/src/main/java/com/github/_1c_syntax/bsl/reader/designer/converter/FormDataPathConverter.java b/src/main/java/com/github/_1c_syntax/bsl/reader/designer/converter/FormDataPathConverter.java deleted file mode 100644 index 626b704d5..000000000 --- a/src/main/java/com/github/_1c_syntax/bsl/reader/designer/converter/FormDataPathConverter.java +++ /dev/null @@ -1,42 +0,0 @@ -/* - * This file is a part of MDClasses. - * - * Copyright (c) 2019 - 2025 - * Tymko Oleg , Maximov Valery and contributors - * - * SPDX-License-Identifier: LGPL-3.0-or-later - * - * MDClasses is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 3.0 of the License, or (at your option) any later version. - * - * MDClasses is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with MDClasses. - */ -package com.github._1c_syntax.bsl.reader.designer.converter; - -import com.github._1c_syntax.bsl.mdo.storage.form.FormDataPath; -import com.thoughtworks.xstream.converters.basic.StringConverter; - -/** - * Конвертор пути элемента формы в формате конфигуратора - */ -@DesignerConverter -public class FormDataPathConverter extends StringConverter { - - @Override - public Object fromString(String string) { - return new FormDataPath(string); - } - - @Override - public boolean canConvert(Class type) { - return type == FormDataPath.class; - } -} diff --git a/src/main/java/com/github/_1c_syntax/bsl/reader/designer/converter/FormElementConverter.java b/src/main/java/com/github/_1c_syntax/bsl/reader/designer/converter/FormElementConverter.java index edad762dc..b4c5f8e5c 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/reader/designer/converter/FormElementConverter.java +++ b/src/main/java/com/github/_1c_syntax/bsl/reader/designer/converter/FormElementConverter.java @@ -38,7 +38,7 @@ public class FormElementConverter implements ReadConverter { @Override public Object unmarshal(HierarchicalStreamReader reader, UnmarshallingContext context) { - if (ExtendXStream.getCurrentMDReader(reader).getReadSettings().isSkipFormElementItems()) { + if (ExtendXStream.getCurrentMDReader(reader).getReadSettings().skipFormElementItems()) { return null; } diff --git a/src/main/java/com/github/_1c_syntax/bsl/reader/edt/EDTReader.java b/src/main/java/com/github/_1c_syntax/bsl/reader/edt/EDTReader.java index 6e320faf8..0cb1c9ed2 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/reader/edt/EDTReader.java +++ b/src/main/java/com/github/_1c_syntax/bsl/reader/edt/EDTReader.java @@ -122,7 +122,7 @@ public EDTReader(Path path, MDCReadSettings readSettings) { } this.readSettings = readSettings; - if (!readSettings.isSkipSupport()) { + if (!readSettings.skipSupport()) { var pcbin = parentConfigurationsPath(); if (pcbin.toFile().exists()) { ParseSupportData.read(pcbin); diff --git a/src/main/java/com/github/_1c_syntax/bsl/reader/edt/converter/FormItemConverter.java b/src/main/java/com/github/_1c_syntax/bsl/reader/edt/converter/FormItemConverter.java index 7313a584b..42592b1a3 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/reader/edt/converter/FormItemConverter.java +++ b/src/main/java/com/github/_1c_syntax/bsl/reader/edt/converter/FormItemConverter.java @@ -37,7 +37,7 @@ public class FormItemConverter implements ReadConverter { @Override public Object unmarshal(HierarchicalStreamReader reader, UnmarshallingContext context) { - if (ExtendXStream.getCurrentMDReader(reader).getReadSettings().isSkipFormElementItems()) { + if (ExtendXStream.getCurrentMDReader(reader).getReadSettings().skipFormElementItems()) { return null; } var readerContext = new FormElementReaderContext(reader.getNodeName(), reader); diff --git a/src/test/java/com/github/_1c_syntax/bsl/mdo/DocumentTest.java b/src/test/java/com/github/_1c_syntax/bsl/mdo/DocumentTest.java index ea6d41d42..3610223b8 100644 --- a/src/test/java/com/github/_1c_syntax/bsl/mdo/DocumentTest.java +++ b/src/test/java/com/github/_1c_syntax/bsl/mdo/DocumentTest.java @@ -75,6 +75,6 @@ void test(ArgumentsAccessor argumentsAccessor) { .anyMatch(item -> item.getName().equals("ТабличнаяЧасть1НомерСтроки")) .anyMatch(item -> item.getId() == 35) .anyMatch(item -> item.getType().equals(FormElementType.INPUT_FIELD)) - .anyMatch(item -> item.getDataPath().segments().startsWith("~")); + .anyMatch(item -> item.getDataPath().startsWith("~")); } } diff --git a/src/test/java/com/github/_1c_syntax/bsl/mdo/ExchangePlanTest.java b/src/test/java/com/github/_1c_syntax/bsl/mdo/ExchangePlanTest.java index ec630fde7..f10c1b9b6 100644 --- a/src/test/java/com/github/_1c_syntax/bsl/mdo/ExchangePlanTest.java +++ b/src/test/java/com/github/_1c_syntax/bsl/mdo/ExchangePlanTest.java @@ -28,7 +28,7 @@ import org.junit.jupiter.params.aggregator.ArgumentsAccessor; import org.junit.jupiter.params.provider.CsvSource; -import static org.assertj.core.api.AssertionsForClassTypes.assertThat; +import static org.assertj.core.api.Assertions.assertThat; class ExchangePlanTest { @ParameterizedTest @@ -77,43 +77,8 @@ void testSSL(ArgumentsAccessor argumentsAccessor) { assertThat(exchangePlan.autoRecord(mdo1)).isEqualTo(AutoRecordType.DENY); assertThat(exchangePlan.autoRecord(mdo2)).isEqualTo(AutoRecordType.DENY); assertThat(exchangePlan.autoRecord(mdo3)).isEqualTo(AutoRecordType.DENY); + assertThat(exchangePlan.isDistributedInfoBase()).isFalse(); + assertThat(exchangePlan.isIncludeConfigurationExtensions()).isFalse(); + assertThat(exchangePlan.getContent()).hasSize(349); } -// -// @Override -// @Test -// void testEDT() { -// var mdo = getMDObjectEDT("ExchangePlans.ПланОбмена1"); -// checkBaseField(mdo, ExchangePlan.class, "ПланОбмена1", -// "242cb07d-3d2b-4689-b590-d3ed23ac9d10"); -// checkForms(mdo); -// checkTemplates(mdo); -// checkCommands(mdo); -// assertThat(((AbstractMDObjectComplex) mdo).getAttributes()).isEmpty(); -// checkModules(((AbstractMDObjectBSL) mdo).getModules(), 1, "ExchangePlans/ПланОбмена1", -// ModuleType.ObjectModule); -// var exchangePlan = (ExchangePlan) mdo; -//// assertThat(exchangePlan.isDistributedInfoBase()).isFalse(); -//// assertThat(exchangePlan.isIncludeConfigurationExtensions()).isFalse(); -//// assertThat(exchangePlan.getContent()).hasSize(2); -// } -// -// @Override -// @Test -// void testDesigner() { -// var mdo = getMDObjectDesigner("ExchangePlans.ПланОбмена1"); -// checkBaseField(mdo, ExchangePlan.class, "ПланОбмена1", -// "242cb07d-3d2b-4689-b590-d3ed23ac9d10"); -// checkForms(mdo); -// checkTemplates(mdo); -// checkCommands(mdo); -// assertThat(((AbstractMDObjectComplex) mdo).getAttributes()).isEmpty(); -// assertThat(((AbstractMDObjectBSL) mdo).getModules()).isEmpty(); -// var exchangePlan = (ExchangePlan) mdo; -//// assertThat(exchangePlan.isDistributedInfoBase()).isTrue(); -//// assertThat(exchangePlan.isIncludeConfigurationExtensions()).isTrue(); -//// assertThat(exchangePlan.getContent()).hasSize(2); -// } -// -// } - } \ No newline at end of file diff --git a/src/test/java/com/github/_1c_syntax/bsl/mdo/ReportTest.java b/src/test/java/com/github/_1c_syntax/bsl/mdo/ReportTest.java index 53ab8c57d..897cca5d5 100644 --- a/src/test/java/com/github/_1c_syntax/bsl/mdo/ReportTest.java +++ b/src/test/java/com/github/_1c_syntax/bsl/mdo/ReportTest.java @@ -75,18 +75,18 @@ private void checkDataCompositionSchema(DataCompositionSchema dataCompositionSch assertThat(dataCompositionSchema).isNotNull(); assertThat(dataCompositionSchema.getDataSets()) .hasSize(4) - .anyMatch(dataSet -> dataSet.getName().equals("НаборДанных1") && dataSet.getType() == DataSetType.DATA_SET_QUERY) - .anyMatch(dataSet -> dataSet.getName().equals("НаборДанных2") && dataSet.getType() == DataSetType.DATA_SET_QUERY) - .anyMatch(dataSet -> dataSet.getName().equals("НаборДанных3") && dataSet.getType() == DataSetType.DATA_SET_UNION - && dataSet.getItems().size() == 3) - .anyMatch(dataSet -> dataSet.getName().equals("НаборДанных3") && dataSet.getType() == DataSetType.DATA_SET_OBJECT) + .anyMatch(dataSet -> dataSet.name().equals("НаборДанных1") && dataSet.type() == DataSetType.DATA_SET_QUERY) + .anyMatch(dataSet -> dataSet.name().equals("НаборДанных2") && dataSet.type() == DataSetType.DATA_SET_QUERY) + .anyMatch(dataSet -> dataSet.name().equals("НаборДанных3") && dataSet.type() == DataSetType.DATA_SET_UNION + && dataSet.items().size() == 3) + .anyMatch(dataSet -> dataSet.name().equals("НаборДанных3") && dataSet.type() == DataSetType.DATA_SET_OBJECT) ; assertThat(dataCompositionSchema.getPlainDataSets()) .hasSize(8) - .anyMatch(dataSet -> dataSet.getName().equals("НаборДанных1") - && dataSet.getType() == DataSetType.DATA_SET_QUERY - && dataSet.getQuerySource().textQuery().equals(QUERY_TEXT) - && dataSet.getQuerySource().position().line() == 24); + .anyMatch(dataSet -> dataSet.name().equals("НаборДанных1") + && dataSet.type() == DataSetType.DATA_SET_QUERY + && dataSet.querySource().textQuery().equals(QUERY_TEXT) + && dataSet.querySource().line() == 24); } } \ No newline at end of file diff --git a/src/test/java/com/github/_1c_syntax/bsl/mdo/RoleTest.java b/src/test/java/com/github/_1c_syntax/bsl/mdo/RoleTest.java index 93b128758..32f3bcd8c 100644 --- a/src/test/java/com/github/_1c_syntax/bsl/mdo/RoleTest.java +++ b/src/test/java/com/github/_1c_syntax/bsl/mdo/RoleTest.java @@ -53,19 +53,19 @@ void test(ArgumentsAccessor argumentsAccessor) { var roleData = role.getData(); assertThat(roleData).isNotNull(); - var objectRights = roleData.getObjectRights(); + var objectRights = roleData.objectRights(); assertThat(objectRights).hasSize(3); var confRights = objectRights.get(0); - assertThat(confRights.getName().getMdoRef()).isEqualTo("Configuration.Конфигурация"); - assertThat(confRights.getRights()).hasSize(18); + assertThat(confRights.name().getMdoRef()).isEqualTo("Configuration.Конфигурация"); + assertThat(confRights.rights()).hasSize(18); var documentRights = objectRights.get(1); - assertThat(documentRights.getName().getMdoRef()).isEqualTo("Document.Документ1"); - assertThat(documentRights.getRights()).hasSize(18); + assertThat(documentRights.name().getMdoRef()).isEqualTo("Document.Документ1"); + assertThat(documentRights.rights()).hasSize(18); var catalogRights = objectRights.get(2); - assertThat(catalogRights.getName().getMdoRef()).isEqualTo("Catalog.Справочник1"); - assertThat(catalogRights.getRights()).hasSize(16); + assertThat(catalogRights.name().getMdoRef()).isEqualTo("Catalog.Справочник1"); + assertThat(catalogRights.rights()).hasSize(16); } } \ No newline at end of file diff --git a/src/test/java/com/github/_1c_syntax/bsl/mdo/XDTOPackageTest.java b/src/test/java/com/github/_1c_syntax/bsl/mdo/XDTOPackageTest.java index be13353f5..be4b1b24b 100644 --- a/src/test/java/com/github/_1c_syntax/bsl/mdo/XDTOPackageTest.java +++ b/src/test/java/com/github/_1c_syntax/bsl/mdo/XDTOPackageTest.java @@ -53,41 +53,41 @@ void test(ArgumentsAccessor argumentsAccessor) { var xdto = (XDTOPackage) mdo; assertThat(xdto.getNamespace()).isEqualTo("http://v8.1c.ru/edi/edi_stnd/EnterpriseData/1.8"); assertThat(xdto.getData()).isNotNull(); - assertThat(xdto.getData().getTargetNamespace()).isEqualTo("http://v8.1c.ru/edi/edi_stnd/EnterpriseData/1.8"); - assertThat(xdto.getData().getImports()).hasSize(2) + assertThat(xdto.getData().targetNamespace()).isEqualTo("http://v8.1c.ru/edi/edi_stnd/EnterpriseData/1.8"); + assertThat(xdto.getData().imports()).hasSize(2) .anyMatch("http://www.1c.ru/SSL/Exchange/Message"::equals) .anyMatch("http://www.1c.ru/SSL/Exchange/Message2"::equals); - assertThat(xdto.getData().getValueTypes()).hasSize(278) - .anyMatch(xdtoValueType -> xdtoValueType.getName().equals("ТипКоличество")) - .anyMatch(xdtoValueType -> xdtoValueType.getBase().equals("xs:decimal")) - .anyMatch(xdtoValueType -> xdtoValueType.getEnumerations().size() == 1) - .anyMatch(xdtoValueType -> xdtoValueType.getVariety().equals("Atomic")) + assertThat(xdto.getData().valueTypes()).hasSize(278) + .anyMatch(xdtoValueType -> xdtoValueType.name().equals("ТипКоличество")) + .anyMatch(xdtoValueType -> xdtoValueType.base().equals("xs:decimal")) + .anyMatch(xdtoValueType -> xdtoValueType.enumerations().size() == 1) + .anyMatch(xdtoValueType -> xdtoValueType.variety().equals("Atomic")) ; - assertThat(xdto.getData().getProperties()).hasSize(1); - var xdtoProperty = xdto.getData().getProperties().get(0); - assertThat(xdtoProperty.getName()).isEqualTo("performance"); - assertThat(xdtoProperty.getType()).isEqualTo("d2p1:Performance"); - assertThat(xdtoProperty.getForm()).isEqualTo("Attribute"); + assertThat(xdto.getData().properties()).hasSize(1); + var xdtoProperty = xdto.getData().properties().get(0); + assertThat(xdtoProperty.name()).isEqualTo("performance"); + assertThat(xdtoProperty.type()).isEqualTo("d2p1:Performance"); + assertThat(xdtoProperty.form()).isEqualTo("Attribute"); - assertThat(xdto.getData().getObjectTypes()).hasSize(737) - .anyMatch(xdtoObjectType -> xdtoObjectType.getName().equals("КлючевыеСвойстваМаркиНоменклатуры")) - .anyMatch(xdtoObjectType -> xdtoObjectType.getBase().equals("d2p1:Object")) - .anyMatch(xdtoValueType -> xdtoValueType.getProperties().size() == 5) + assertThat(xdto.getData().objectTypes()).hasSize(737) + .anyMatch(xdtoObjectType -> xdtoObjectType.name().equals("КлючевыеСвойстваМаркиНоменклатуры")) + .anyMatch(xdtoObjectType -> xdtoObjectType.base().equals("d2p1:Object")) + .anyMatch(xdtoValueType -> xdtoValueType.properties().size() == 5) ; - var example = xdto.getData().getObjectTypes().get(732); - assertThat(example.getBase()).isEmpty(); - assertThat(example.getName()).isEqualTo("КлючевыеСвойстваПринадлежностьПрайсЛистаКонтрагенту"); - assertThat(example.getProperties()).hasSize(4); + var example = xdto.getData().objectTypes().get(732); + assertThat(example.base()).isEmpty(); + assertThat(example.name()).isEqualTo("КлючевыеСвойстваПринадлежностьПрайсЛистаКонтрагенту"); + assertThat(example.properties()).hasSize(4); - var exampleProperty = example.getProperties().get(3); - assertThat(exampleProperty.getName()).isEqualTo("status"); - assertThat(exampleProperty.getType()).isEqualTo("xs:int"); - assertThat(exampleProperty.getLowerBound()).isEqualTo(1); - assertThat(exampleProperty.getUpperBound()).isEqualTo(-1); - assertThat(exampleProperty.getForm()).isEmpty(); - assertThat(exampleProperty.isNillable()).isTrue(); + var exampleProperty = example.properties().get(3); + assertThat(exampleProperty.name()).isEqualTo("status"); + assertThat(exampleProperty.type()).isEqualTo("xs:int"); + assertThat(exampleProperty.lowerBound()).isEqualTo(1); + assertThat(exampleProperty.upperBound()).isEqualTo(-1); + assertThat(exampleProperty.form()).isEmpty(); + assertThat(exampleProperty.nillable()).isTrue(); } } \ No newline at end of file diff --git "a/src/test/resources/fixtures/mdclasses/Catalogs.\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721.json" "b/src/test/resources/fixtures/mdclasses/Catalogs.\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721.json" index 46ddaf0a5..e2711bf88 100644 --- "a/src/test/resources/fixtures/mdclasses/Catalogs.\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721.json" +++ "b/src/test/resources/fixtures/mdclasses/Catalogs.\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721.json" @@ -709,9 +709,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Ref" - }, + "dataPath": "Объект.Ref", "items": [] }, { @@ -721,9 +719,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Code" - }, + "dataPath": "Объект.Code", "items": [] }, { @@ -733,9 +729,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Description" - }, + "dataPath": "Объект.Description", "items": [] }, { @@ -745,9 +739,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Объект.DeletionMark" - }, + "dataPath": "Объект.DeletionMark", "items": [] }, { @@ -757,9 +749,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Predefined" - }, + "dataPath": "Объект.Predefined", "items": [] }, { @@ -769,9 +759,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Объект.PredefinedDataName" - }, + "dataPath": "Объект.PredefinedDataName", "items": [] }, { @@ -781,9 +769,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Реквизит1" - }, + "dataPath": "Объект.Реквизит1", "items": [] }, { @@ -793,9 +779,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Реквизит2" - }, + "dataPath": "Объект.Реквизит2", "items": [] }, { @@ -805,9 +789,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Реквизит3" - }, + "dataPath": "Объект.Реквизит3", "items": [] } ], @@ -1049,9 +1031,7 @@ } ] }, - "dataPath": { - "segments": "" - }, + "dataPath": "", "items": [] }, { @@ -1061,9 +1041,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список" - }, + "dataPath": "Список", "items": [ [ { @@ -1073,9 +1051,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список.Ref" - }, + "dataPath": "Список.Ref", "items": [] }, { @@ -1085,9 +1061,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список.Description" - }, + "dataPath": "Список.Description", "items": [] }, { @@ -1097,9 +1071,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список.Code" - }, + "dataPath": "Список.Code", "items": [] }, { @@ -1109,9 +1081,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список.DeletionMark" - }, + "dataPath": "Список.DeletionMark", "items": [] }, { @@ -1121,9 +1091,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список.Predefined" - }, + "dataPath": "Список.Predefined", "items": [] }, { @@ -1133,9 +1101,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список.PredefinedDataName" - }, + "dataPath": "Список.PredefinedDataName", "items": [] }, { @@ -1145,9 +1111,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список.Реквизит1" - }, + "dataPath": "Список.Реквизит1", "items": [] }, { @@ -1157,9 +1121,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список.Реквизит2" - }, + "dataPath": "Список.Реквизит2", "items": [] }, { @@ -1169,9 +1131,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список.Реквизит3" - }, + "dataPath": "Список.Реквизит3", "items": [] } ], @@ -1224,15 +1184,15 @@ "mdoType": "CATALOG", "moduleTypes": [ [ - "ObjectModule", + "ManagerModule", [ - "src/test/resources/ext/designer/mdclasses/src/cf/Catalogs/Справочник1/Ext/ObjectModule.bin" + "src/test/resources/ext/designer/mdclasses/src/cf/Catalogs/Справочник1/Ext/ManagerModule.bsl" ] ], [ - "ManagerModule", + "ObjectModule", [ - "src/test/resources/ext/designer/mdclasses/src/cf/Catalogs/Справочник1/Ext/ManagerModule.bsl" + "src/test/resources/ext/designer/mdclasses/src/cf/Catalogs/Справочник1/Ext/ObjectModule.bin" ] ] ], diff --git "a/src/test/resources/fixtures/mdclasses/Catalogs.\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721_edt.json" "b/src/test/resources/fixtures/mdclasses/Catalogs.\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721_edt.json" index 1d8fd3be2..8af2c2973 100644 --- "a/src/test/resources/fixtures/mdclasses/Catalogs.\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721_edt.json" +++ "b/src/test/resources/fixtures/mdclasses/Catalogs.\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721_edt.json" @@ -709,9 +709,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Ref" - }, + "dataPath": "Объект.Ref", "items": [] }, { @@ -721,9 +719,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Code" - }, + "dataPath": "Объект.Code", "items": [] }, { @@ -733,9 +729,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Description" - }, + "dataPath": "Объект.Description", "items": [] }, { @@ -745,9 +739,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Объект.DeletionMark" - }, + "dataPath": "Объект.DeletionMark", "items": [] }, { @@ -757,9 +749,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Predefined" - }, + "dataPath": "Объект.Predefined", "items": [] }, { @@ -769,9 +759,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Объект.PredefinedDataName" - }, + "dataPath": "Объект.PredefinedDataName", "items": [] }, { @@ -781,9 +769,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Реквизит1" - }, + "dataPath": "Объект.Реквизит1", "items": [] }, { @@ -793,9 +779,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Реквизит2" - }, + "dataPath": "Объект.Реквизит2", "items": [] }, { @@ -805,9 +789,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Реквизит3" - }, + "dataPath": "Объект.Реквизит3", "items": [] } ], @@ -1049,9 +1031,7 @@ } ] }, - "dataPath": { - "segments": "" - }, + "dataPath": "", "items": [] }, { @@ -1061,9 +1041,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список" - }, + "dataPath": "Список", "items": [ [ { @@ -1073,9 +1051,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список.Ref" - }, + "dataPath": "Список.Ref", "items": [] }, { @@ -1085,9 +1061,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список.Description" - }, + "dataPath": "Список.Description", "items": [] }, { @@ -1097,9 +1071,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список.Code" - }, + "dataPath": "Список.Code", "items": [] }, { @@ -1109,9 +1081,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список.DeletionMark" - }, + "dataPath": "Список.DeletionMark", "items": [] }, { @@ -1121,9 +1091,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список.Predefined" - }, + "dataPath": "Список.Predefined", "items": [] }, { @@ -1133,9 +1101,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список.PredefinedDataName" - }, + "dataPath": "Список.PredefinedDataName", "items": [] }, { @@ -1145,9 +1111,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список.Реквизит1" - }, + "dataPath": "Список.Реквизит1", "items": [] }, { @@ -1157,9 +1121,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список.Реквизит2" - }, + "dataPath": "Список.Реквизит2", "items": [] }, { @@ -1169,9 +1131,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список.Реквизит3" - }, + "dataPath": "Список.Реквизит3", "items": [] } ], diff --git "a/src/test/resources/fixtures/mdclasses/DataProcessors.\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601.json" "b/src/test/resources/fixtures/mdclasses/DataProcessors.\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601.json" index 9f5fadf91..8ff79e305 100644 --- "a/src/test/resources/fixtures/mdclasses/DataProcessors.\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601.json" +++ "b/src/test/resources/fixtures/mdclasses/DataProcessors.\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601.json" @@ -60,9 +60,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, - "dataPath": { - "segments": "Реквизит1" - }, + "dataPath": "Реквизит1", "items": [] }, { @@ -72,9 +70,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, - "dataPath": { - "segments": "Реквизит3" - }, + "dataPath": "Реквизит3", "items": [] }, { @@ -84,9 +80,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, - "dataPath": { - "segments": "Реквизит2" - }, + "dataPath": "Реквизит2", "items": [] }, { @@ -96,9 +90,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, - "dataPath": { - "segments": "Реквизит4" - }, + "dataPath": "Реквизит4", "items": [] } ], @@ -408,9 +400,7 @@ } ] }, - "dataPath": { - "segments": "" - }, + "dataPath": "", "items": [ [ { @@ -431,9 +421,7 @@ } ] }, - "dataPath": { - "segments": "КоличествоПоказываемыхСобытий" - }, + "dataPath": "КоличествоПоказываемыхСобытий", "items": [] }, { @@ -443,9 +431,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, - "dataPath": { - "segments": "Критичность" - }, + "dataPath": "Критичность", "items": [] }, { @@ -466,9 +452,7 @@ } ] }, - "dataPath": { - "segments": "ПредставлениеОтбора" - }, + "dataPath": "ПредставлениеОтбора", "items": [] } ], @@ -493,9 +477,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -505,9 +487,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "TABLE", @@ -527,9 +507,7 @@ } ] }, - "dataPath": { - "segments": "Журнал" - }, + "dataPath": "Журнал", "items": [ [ { @@ -550,9 +528,7 @@ } ] }, - "dataPath": { - "segments": "Журнал.Дата" - }, + "dataPath": "Журнал.Дата", "items": [] }, { @@ -562,9 +538,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, - "dataPath": { - "segments": "Журнал.ПредставлениеРазделенияДанныхСеанса" - }, + "dataPath": "Журнал.ПредставлениеРазделенияДанныхСеанса", "items": [] }, { @@ -585,9 +559,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -608,9 +580,7 @@ } ] }, - "dataPath": { - "segments": "Журнал.ИмяПользователя" - }, + "dataPath": "Журнал.ИмяПользователя", "items": [] }, { @@ -631,9 +601,7 @@ } ] }, - "dataPath": { - "segments": "Журнал.Компьютер" - }, + "dataPath": "Журнал.Компьютер", "items": [] }, { @@ -654,9 +622,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -677,9 +643,7 @@ } ] }, - "dataPath": { - "segments": "Журнал.ПредставлениеПриложения" - }, + "dataPath": "Журнал.ПредставлениеПриложения", "items": [] }, { @@ -689,9 +653,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, - "dataPath": { - "segments": "Журнал.Сеанс" - }, + "dataPath": "Журнал.Сеанс", "items": [] } ], @@ -720,9 +682,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -743,9 +703,7 @@ } ] }, - "dataPath": { - "segments": "Журнал.ПредставлениеСобытия" - }, + "dataPath": "Журнал.ПредставлениеСобытия", "items": [] }, { @@ -766,9 +724,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -778,9 +734,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, - "dataPath": { - "segments": "Журнал.Данные" - }, + "dataPath": "Журнал.Данные", "items": [] }, { @@ -801,9 +755,7 @@ } ] }, - "dataPath": { - "segments": "Журнал.ПредставлениеМетаданных" - }, + "dataPath": "Журнал.ПредставлениеМетаданных", "items": [] } ], @@ -828,9 +780,7 @@ } ] }, - "dataPath": { - "segments": "Журнал.Комментарий" - }, + "dataPath": "Журнал.Комментарий", "items": [] } ], @@ -855,9 +805,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -867,9 +815,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, - "dataPath": { - "segments": "Журнал.РабочийСервер" - }, + "dataPath": "Журнал.РабочийСервер", "items": [] }, { @@ -879,9 +825,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, - "dataPath": { - "segments": "Журнал.ОсновнойIPПорт" - }, + "dataPath": "Журнал.ОсновнойIPПорт", "items": [] }, { @@ -891,9 +835,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, - "dataPath": { - "segments": "Журнал.ВспомогательныйIPПорт" - }, + "dataPath": "Журнал.ВспомогательныйIPПорт", "items": [] } ], @@ -918,9 +860,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -941,9 +881,7 @@ } ] }, - "dataPath": { - "segments": "Журнал.СтатусТранзакции" - }, + "dataPath": "Журнал.СтатусТранзакции", "items": [] }, { @@ -953,9 +891,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, - "dataPath": { - "segments": "Журнал.Транзакция" - }, + "dataPath": "Журнал.Транзакция", "items": [] } ], @@ -969,9 +905,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, - "dataPath": { - "segments": "Журнал.ДатаНаСервере" - }, + "dataPath": "Журнал.ДатаНаСервере", "items": [] } ], @@ -998,9 +932,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "SPREAD_SHEET_DOCUMENT_FIELD", @@ -1009,9 +941,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, - "dataPath": { - "segments": "ПолеИндикаторДлительныхОпераций" - }, + "dataPath": "ПолеИндикаторДлительныхОпераций", "items": [] } ] diff --git "a/src/test/resources/fixtures/mdclasses/DataProcessors.\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601_edt.json" "b/src/test/resources/fixtures/mdclasses/DataProcessors.\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601_edt.json" index 1d6ccb022..98bd8af46 100644 --- "a/src/test/resources/fixtures/mdclasses/DataProcessors.\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601_edt.json" +++ "b/src/test/resources/fixtures/mdclasses/DataProcessors.\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601_edt.json" @@ -60,9 +60,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, - "dataPath": { - "segments": "Реквизит1" - }, + "dataPath": "Реквизит1", "items": [] }, { @@ -72,9 +70,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, - "dataPath": { - "segments": "Реквизит3" - }, + "dataPath": "Реквизит3", "items": [] }, { @@ -84,9 +80,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, - "dataPath": { - "segments": "Реквизит2" - }, + "dataPath": "Реквизит2", "items": [] }, { @@ -96,9 +90,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, - "dataPath": { - "segments": "Реквизит4" - }, + "dataPath": "Реквизит4", "items": [] } ], @@ -408,9 +400,7 @@ } ] }, - "dataPath": { - "segments": "" - }, + "dataPath": "", "items": [ [ { @@ -431,9 +421,7 @@ } ] }, - "dataPath": { - "segments": "КоличествоПоказываемыхСобытий" - }, + "dataPath": "КоличествоПоказываемыхСобытий", "items": [] }, { @@ -443,9 +431,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, - "dataPath": { - "segments": "Критичность" - }, + "dataPath": "Критичность", "items": [] }, { @@ -466,9 +452,7 @@ } ] }, - "dataPath": { - "segments": "ПредставлениеОтбора" - }, + "dataPath": "ПредставлениеОтбора", "items": [] } ], @@ -493,9 +477,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -505,9 +487,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "TABLE", @@ -527,9 +507,7 @@ } ] }, - "dataPath": { - "segments": "Журнал" - }, + "dataPath": "Журнал", "items": [ [ { @@ -550,9 +528,7 @@ } ] }, - "dataPath": { - "segments": "Журнал.Дата" - }, + "dataPath": "Журнал.Дата", "items": [] }, { @@ -562,9 +538,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, - "dataPath": { - "segments": "Журнал.ПредставлениеРазделенияДанныхСеанса" - }, + "dataPath": "Журнал.ПредставлениеРазделенияДанныхСеанса", "items": [] }, { @@ -585,9 +559,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -608,9 +580,7 @@ } ] }, - "dataPath": { - "segments": "Журнал.ИмяПользователя" - }, + "dataPath": "Журнал.ИмяПользователя", "items": [] }, { @@ -631,9 +601,7 @@ } ] }, - "dataPath": { - "segments": "Журнал.Компьютер" - }, + "dataPath": "Журнал.Компьютер", "items": [] }, { @@ -654,9 +622,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -677,9 +643,7 @@ } ] }, - "dataPath": { - "segments": "Журнал.ПредставлениеПриложения" - }, + "dataPath": "Журнал.ПредставлениеПриложения", "items": [] }, { @@ -689,9 +653,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, - "dataPath": { - "segments": "Журнал.Сеанс" - }, + "dataPath": "Журнал.Сеанс", "items": [] } ], @@ -720,9 +682,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -743,9 +703,7 @@ } ] }, - "dataPath": { - "segments": "Журнал.ПредставлениеСобытия" - }, + "dataPath": "Журнал.ПредставлениеСобытия", "items": [] }, { @@ -766,9 +724,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -778,9 +734,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, - "dataPath": { - "segments": "Журнал.Данные" - }, + "dataPath": "Журнал.Данные", "items": [] }, { @@ -801,9 +755,7 @@ } ] }, - "dataPath": { - "segments": "Журнал.ПредставлениеМетаданных" - }, + "dataPath": "Журнал.ПредставлениеМетаданных", "items": [] } ], @@ -828,9 +780,7 @@ } ] }, - "dataPath": { - "segments": "Журнал.Комментарий" - }, + "dataPath": "Журнал.Комментарий", "items": [] } ], @@ -855,9 +805,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -867,9 +815,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, - "dataPath": { - "segments": "Журнал.РабочийСервер" - }, + "dataPath": "Журнал.РабочийСервер", "items": [] }, { @@ -879,9 +825,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, - "dataPath": { - "segments": "Журнал.ОсновнойIPПорт" - }, + "dataPath": "Журнал.ОсновнойIPПорт", "items": [] }, { @@ -891,9 +835,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, - "dataPath": { - "segments": "Журнал.ВспомогательныйIPПорт" - }, + "dataPath": "Журнал.ВспомогательныйIPПорт", "items": [] } ], @@ -918,9 +860,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -941,9 +881,7 @@ } ] }, - "dataPath": { - "segments": "Журнал.СтатусТранзакции" - }, + "dataPath": "Журнал.СтатусТранзакции", "items": [] }, { @@ -953,9 +891,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, - "dataPath": { - "segments": "Журнал.Транзакция" - }, + "dataPath": "Журнал.Транзакция", "items": [] } ], @@ -969,9 +905,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, - "dataPath": { - "segments": "Журнал.ДатаНаСервере" - }, + "dataPath": "Журнал.ДатаНаСервере", "items": [] } ], @@ -998,9 +932,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "SPREAD_SHEET_DOCUMENT_FIELD", @@ -1009,9 +941,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, - "dataPath": { - "segments": "ПолеИндикаторДлительныхОпераций" - }, + "dataPath": "ПолеИндикаторДлительныхОпераций", "items": [] } ] diff --git "a/src/test/resources/fixtures/mdclasses/Documents.\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021.json" "b/src/test/resources/fixtures/mdclasses/Documents.\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021.json" index 74c25a248..a7263b893 100644 --- "a/src/test/resources/fixtures/mdclasses/Documents.\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021.json" +++ "b/src/test/resources/fixtures/mdclasses/Documents.\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021.json" @@ -587,9 +587,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Number" - }, + "dataPath": "Объект.Number", "items": [] }, { @@ -599,9 +597,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "~Объект.Date" - }, + "dataPath": "~Объект.Date", "items": [] }, { @@ -611,9 +607,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Реквизит1" - }, + "dataPath": "Объект.Реквизит1", "items": [] }, { @@ -623,9 +617,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Реквизит2" - }, + "dataPath": "Объект.Реквизит2", "items": [] }, { @@ -635,9 +627,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Реквизит3" - }, + "dataPath": "Объект.Реквизит3", "items": [] }, { @@ -647,9 +637,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Объект.ТабличнаяЧасть1" - }, + "dataPath": "Объект.ТабличнаяЧасть1", "items": [ [ { @@ -659,9 +647,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Объект.ТабличнаяЧасть1.LineNumber" - }, + "dataPath": "Объект.ТабличнаяЧасть1.LineNumber", "items": [] }, { @@ -671,9 +657,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Объект.ТабличнаяЧасть1.Реквизит1" - }, + "dataPath": "Объект.ТабличнаяЧасть1.Реквизит1", "items": [] }, { @@ -683,9 +667,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Объект.ТабличнаяЧасть1.Реквизит2" - }, + "dataPath": "Объект.ТабличнаяЧасть1.Реквизит2", "items": [] } ], @@ -799,9 +781,7 @@ } ] }, - "dataPath": { - "segments": "" - }, + "dataPath": "", "items": [] }, { @@ -811,9 +791,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список" - }, + "dataPath": "Список", "items": [ [ { @@ -823,9 +801,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список.Ref" - }, + "dataPath": "Список.Ref", "items": [] }, { @@ -835,9 +811,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список.Date" - }, + "dataPath": "Список.Date", "items": [] }, { @@ -847,9 +821,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список.Number" - }, + "dataPath": "Список.Number", "items": [] }, { @@ -859,9 +831,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список.Posted" - }, + "dataPath": "Список.Posted", "items": [] }, { @@ -871,9 +841,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список.DeletionMark" - }, + "dataPath": "Список.DeletionMark", "items": [] }, { @@ -883,9 +851,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список.Реквизит1" - }, + "dataPath": "Список.Реквизит1", "items": [] }, { @@ -895,9 +861,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список.Реквизит2" - }, + "dataPath": "Список.Реквизит2", "items": [] }, { @@ -907,9 +871,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список.Реквизит3" - }, + "dataPath": "Список.Реквизит3", "items": [] } ], @@ -1005,9 +967,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1017,9 +977,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список" - }, + "dataPath": "Список", "items": [ [ { @@ -1029,9 +987,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список.Ref" - }, + "dataPath": "Список.Ref", "items": [] }, { @@ -1041,9 +997,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список.Date" - }, + "dataPath": "Список.Date", "items": [] }, { @@ -1053,9 +1007,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список.Number" - }, + "dataPath": "Список.Number", "items": [] }, { @@ -1065,9 +1017,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список.Posted" - }, + "dataPath": "Список.Posted", "items": [] }, { @@ -1077,9 +1027,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список.DeletionMark" - }, + "dataPath": "Список.DeletionMark", "items": [] }, { @@ -1089,9 +1037,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список.Реквизит1" - }, + "dataPath": "Список.Реквизит1", "items": [] }, { @@ -1101,9 +1047,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список.Реквизит2" - }, + "dataPath": "Список.Реквизит2", "items": [] }, { @@ -1113,9 +1057,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список.Реквизит3" - }, + "dataPath": "Список.Реквизит3", "items": [] } ], diff --git "a/src/test/resources/fixtures/mdclasses/Documents.\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021_edt.json" "b/src/test/resources/fixtures/mdclasses/Documents.\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021_edt.json" index f989e7dd5..5bfbc17fa 100644 --- "a/src/test/resources/fixtures/mdclasses/Documents.\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021_edt.json" +++ "b/src/test/resources/fixtures/mdclasses/Documents.\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021_edt.json" @@ -587,9 +587,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Number" - }, + "dataPath": "Объект.Number", "items": [] }, { @@ -599,9 +597,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "~Объект.Date" - }, + "dataPath": "~Объект.Date", "items": [] }, { @@ -611,9 +607,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Реквизит1" - }, + "dataPath": "Объект.Реквизит1", "items": [] }, { @@ -623,9 +617,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Реквизит2" - }, + "dataPath": "Объект.Реквизит2", "items": [] }, { @@ -635,9 +627,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Реквизит3" - }, + "dataPath": "Объект.Реквизит3", "items": [] }, { @@ -647,9 +637,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Объект.ТабличнаяЧасть1" - }, + "dataPath": "Объект.ТабличнаяЧасть1", "items": [ [ { @@ -659,9 +647,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Объект.ТабличнаяЧасть1.LineNumber" - }, + "dataPath": "Объект.ТабличнаяЧасть1.LineNumber", "items": [] }, { @@ -671,9 +657,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Объект.ТабличнаяЧасть1.Реквизит1" - }, + "dataPath": "Объект.ТабличнаяЧасть1.Реквизит1", "items": [] }, { @@ -683,9 +667,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Объект.ТабличнаяЧасть1.Реквизит2" - }, + "dataPath": "Объект.ТабличнаяЧасть1.Реквизит2", "items": [] } ], @@ -799,9 +781,7 @@ } ] }, - "dataPath": { - "segments": "" - }, + "dataPath": "", "items": [] }, { @@ -811,9 +791,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список" - }, + "dataPath": "Список", "items": [ [ { @@ -823,9 +801,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список.Ref" - }, + "dataPath": "Список.Ref", "items": [] }, { @@ -835,9 +811,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список.Date" - }, + "dataPath": "Список.Date", "items": [] }, { @@ -847,9 +821,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список.Number" - }, + "dataPath": "Список.Number", "items": [] }, { @@ -859,9 +831,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список.Posted" - }, + "dataPath": "Список.Posted", "items": [] }, { @@ -871,9 +841,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список.DeletionMark" - }, + "dataPath": "Список.DeletionMark", "items": [] }, { @@ -883,9 +851,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список.Реквизит1" - }, + "dataPath": "Список.Реквизит1", "items": [] }, { @@ -895,9 +861,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список.Реквизит2" - }, + "dataPath": "Список.Реквизит2", "items": [] }, { @@ -907,9 +871,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список.Реквизит3" - }, + "dataPath": "Список.Реквизит3", "items": [] } ], @@ -1005,9 +967,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1017,9 +977,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список" - }, + "dataPath": "Список", "items": [ [ { @@ -1029,9 +987,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список.Ref" - }, + "dataPath": "Список.Ref", "items": [] }, { @@ -1041,9 +997,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список.Date" - }, + "dataPath": "Список.Date", "items": [] }, { @@ -1053,9 +1007,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список.Number" - }, + "dataPath": "Список.Number", "items": [] }, { @@ -1065,9 +1017,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список.Posted" - }, + "dataPath": "Список.Posted", "items": [] }, { @@ -1077,9 +1027,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список.DeletionMark" - }, + "dataPath": "Список.DeletionMark", "items": [] }, { @@ -1089,9 +1037,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список.Реквизит1" - }, + "dataPath": "Список.Реквизит1", "items": [] }, { @@ -1101,9 +1047,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список.Реквизит2" - }, + "dataPath": "Список.Реквизит2", "items": [] }, { @@ -1113,9 +1057,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "segments": "Список.Реквизит3" - }, + "dataPath": "Список.Реквизит3", "items": [] } ], diff --git "a/src/test/resources/fixtures/mdclasses/ExchangePlans.\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601.json" "b/src/test/resources/fixtures/mdclasses/ExchangePlans.\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601.json" index db5cac44a..f7e256fc5 100644 --- "a/src/test/resources/fixtures/mdclasses/ExchangePlans.\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601.json" +++ "b/src/test/resources/fixtures/mdclasses/ExchangePlans.\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601.json" @@ -451,7 +451,7 @@ "mdoRef": "Catalog.Справочник1", "mdoRefRu": "Справочник.Справочник1" }, - "autoRecord": "ALLOW" + "allow": true }, { "metadata": { @@ -459,7 +459,7 @@ "mdoRef": "Document.Документ1", "mdoRefRu": "Документ.Документ1" }, - "autoRecord": "DENY" + "allow": false } ], [] diff --git "a/src/test/resources/fixtures/mdclasses/ExchangePlans.\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601_edt.json" "b/src/test/resources/fixtures/mdclasses/ExchangePlans.\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601_edt.json" index 20b8ce73c..f512c2e68 100644 --- "a/src/test/resources/fixtures/mdclasses/ExchangePlans.\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601_edt.json" +++ "b/src/test/resources/fixtures/mdclasses/ExchangePlans.\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601_edt.json" @@ -451,7 +451,7 @@ "mdoRef": "Catalog.Справочник1", "mdoRefRu": "Справочник.Справочник1" }, - "autoRecord": "ALLOW" + "allow": true }, { "metadata": { @@ -459,7 +459,7 @@ "mdoRef": "Document.Документ1", "mdoRefRu": "Документ.Документ1" }, - "autoRecord": "DENY" + "allow": false } ], [] diff --git "a/src/test/resources/fixtures/mdclasses/ExternalDataSources.\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224.json" "b/src/test/resources/fixtures/mdclasses/ExternalDataSources.\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224.json" index 6b1262564..dfe45cb59 100644 --- "a/src/test/resources/fixtures/mdclasses/ExternalDataSources.\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224.json" +++ "b/src/test/resources/fixtures/mdclasses/ExternalDataSources.\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224.json" @@ -641,9 +641,7 @@ } ] }, - "dataPath": { - "segments": "" - }, + "dataPath": "", "items": [] } ], @@ -715,9 +713,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/tables/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/tables/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], diff --git "a/src/test/resources/fixtures/mdclasses/ExternalDataSources.\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224_edt.json" "b/src/test/resources/fixtures/mdclasses/ExternalDataSources.\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224_edt.json" index b280ef88a..b54d73fd9 100644 --- "a/src/test/resources/fixtures/mdclasses/ExternalDataSources.\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224_edt.json" +++ "b/src/test/resources/fixtures/mdclasses/ExternalDataSources.\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224_edt.json" @@ -641,9 +641,7 @@ } ] }, - "dataPath": { - "segments": "" - }, + "dataPath": "", "items": [] } ], @@ -715,9 +713,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/tables/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/tables/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], diff --git "a/src/test/resources/fixtures/mdclasses/Reports.\320\236\321\202\321\207\320\265\321\2021.json" "b/src/test/resources/fixtures/mdclasses/Reports.\320\236\321\202\321\207\320\265\321\2021.json" index 3c2d26e03..63531db34 100644 --- "a/src/test/resources/fixtures/mdclasses/Reports.\320\236\321\202\321\207\320\265\321\2021.json" +++ "b/src/test/resources/fixtures/mdclasses/Reports.\320\236\321\202\321\207\320\265\321\2021.json" @@ -136,10 +136,8 @@ "dataSource": "ИсточникДанных1", "items": [], "querySource": { - "position": { - "line": 24, - "column": 10 - }, + "line": 24, + "column": 10, "textQuery": "ВЫБРАТЬ\n\tПервыйСправочник.Ссылка КАК Ссылка,\n\tПервыйСправочник.Код КАК Код1\nИЗ\n\tСправочник.ПервыйСправочник КАК ПервыйСправочник" }, "fields": [ @@ -162,10 +160,8 @@ "dataSource": "ИсточникДанных1", "items": [], "querySource": { - "position": { - "line": 65, - "column": 10 - }, + "line": 65, + "column": 10, "textQuery": "ВЫБРАТЬ\n\tПервыйСправочник.Ссылка КАК Ссылка,\n\tПервыйСправочник.ВерсияДанных КАК ВерсияДанных,\n\tПервыйСправочник.ПометкаУдаления КАК ПометкаУдаления,\n\tПервыйСправочник.Код КАК Код,\n\tПервыйСправочник.Наименование КАК Наименование,\n\tПервыйСправочник.Реквизит1 КАК Реквизит1,\n\tПервыйСправочник.Предопределенный КАК Предопределенный,\n\tПервыйСправочник.ИмяПредопределенныхДанных КАК ИмяПредопределенныхДанных\nИЗ\n\tСправочник.ПервыйСправочник КАК ПервыйСправочник" }, "fields": [ @@ -218,10 +214,8 @@ "dataSource": "ИсточникДанных1", "items": [], "querySource": { - "position": { - "line": 110, - "column": 11 - }, + "line": 110, + "column": 11, "textQuery": "ВЫБРАТЬ\n\tПервыйСправочник.Ссылка КАК Ссылка,\n\tПервыйСправочник.Код КАК Код1\nИЗ\n\tСправочник.ПервыйСправочник КАК ПервыйСправочник" }, "fields": [ @@ -244,10 +238,8 @@ "dataSource": "ИсточникДанных1", "items": [], "querySource": { - "position": { - "line": 133, - "column": 11 - }, + "line": 133, + "column": 11, "textQuery": "ВЫБРАТЬ\n\tПервыйСправочник.Ссылка КАК Ссылка,\n\tПервыйСправочник.Код КАК Код1\nИЗ\n\tСправочник.ПервыйСправочник КАК ПервыйСправочник" }, "fields": [ @@ -275,10 +267,8 @@ "dataSource": "ИсточникДанных1", "items": [], "querySource": { - "position": { - "line": 0, - "column": 0 - }, + "line": 0, + "column": 0, "textQuery": "" }, "fields": [] diff --git "a/src/test/resources/fixtures/mdclasses/Reports.\320\236\321\202\321\207\320\265\321\2021_edt.json" "b/src/test/resources/fixtures/mdclasses/Reports.\320\236\321\202\321\207\320\265\321\2021_edt.json" index ff025e06e..e01f2881c 100644 --- "a/src/test/resources/fixtures/mdclasses/Reports.\320\236\321\202\321\207\320\265\321\2021_edt.json" +++ "b/src/test/resources/fixtures/mdclasses/Reports.\320\236\321\202\321\207\320\265\321\2021_edt.json" @@ -136,10 +136,8 @@ "dataSource": "ИсточникДанных1", "items": [], "querySource": { - "position": { - "line": 24, - "column": 10 - }, + "line": 24, + "column": 10, "textQuery": "ВЫБРАТЬ\n\tПервыйСправочник.Ссылка КАК Ссылка,\n\tПервыйСправочник.Код КАК Код1\nИЗ\n\tСправочник.ПервыйСправочник КАК ПервыйСправочник" }, "fields": [ @@ -162,10 +160,8 @@ "dataSource": "ИсточникДанных1", "items": [], "querySource": { - "position": { - "line": 65, - "column": 10 - }, + "line": 65, + "column": 10, "textQuery": "ВЫБРАТЬ\n\tПервыйСправочник.Ссылка КАК Ссылка,\n\tПервыйСправочник.ВерсияДанных КАК ВерсияДанных,\n\tПервыйСправочник.ПометкаУдаления КАК ПометкаУдаления,\n\tПервыйСправочник.Код КАК Код,\n\tПервыйСправочник.Наименование КАК Наименование,\n\tПервыйСправочник.Реквизит1 КАК Реквизит1,\n\tПервыйСправочник.Предопределенный КАК Предопределенный,\n\tПервыйСправочник.ИмяПредопределенныхДанных КАК ИмяПредопределенныхДанных\nИЗ\n\tСправочник.ПервыйСправочник КАК ПервыйСправочник" }, "fields": [ @@ -218,10 +214,8 @@ "dataSource": "ИсточникДанных1", "items": [], "querySource": { - "position": { - "line": 110, - "column": 11 - }, + "line": 110, + "column": 11, "textQuery": "ВЫБРАТЬ\n\tПервыйСправочник.Ссылка КАК Ссылка,\n\tПервыйСправочник.Код КАК Код1\nИЗ\n\tСправочник.ПервыйСправочник КАК ПервыйСправочник" }, "fields": [ @@ -244,10 +238,8 @@ "dataSource": "ИсточникДанных1", "items": [], "querySource": { - "position": { - "line": 133, - "column": 11 - }, + "line": 133, + "column": 11, "textQuery": "ВЫБРАТЬ\n\tПервыйСправочник.Ссылка КАК Ссылка,\n\tПервыйСправочник.Код КАК Код1\nИЗ\n\tСправочник.ПервыйСправочник КАК ПервыйСправочник" }, "fields": [ @@ -275,10 +267,8 @@ "dataSource": "ИсточникДанных1", "items": [], "querySource": { - "position": { - "line": 0, - "column": 0 - }, + "line": 0, + "column": 0, "textQuery": "" }, "fields": [] diff --git "a/src/test/resources/fixtures/mdclasses_3_27/ExternalDataSources.\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\230\321\201\321\202\320\276\321\207\320\275\320\270\320\272\320\224\320\260\320\275\320\275\321\213\321\2051.json" "b/src/test/resources/fixtures/mdclasses_3_27/ExternalDataSources.\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\230\321\201\321\202\320\276\321\207\320\275\320\270\320\272\320\224\320\260\320\275\320\275\321\213\321\2051.json" index 9260c24ad..dd1cccebb 100644 --- "a/src/test/resources/fixtures/mdclasses_3_27/ExternalDataSources.\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\230\321\201\321\202\320\276\321\207\320\275\320\270\320\272\320\224\320\260\320\275\320\275\321\213\321\2051.json" +++ "b/src/test/resources/fixtures/mdclasses_3_27/ExternalDataSources.\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\230\321\201\321\202\320\276\321\207\320\275\320\270\320\272\320\224\320\260\320\275\320\275\321\213\321\2051.json" @@ -442,9 +442,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/cubes/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceCube/synonym" }, - "dataPath": { - "segments": "Объект.Parent" - }, + "dataPath": "Объект.Parent", "items": [] }, { @@ -454,9 +452,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/cubes/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceCube/synonym" }, - "dataPath": { - "segments": "Объект.Поле2" - }, + "dataPath": "Объект.Поле2", "items": [] }, { @@ -466,9 +462,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/cubes/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceCube/synonym" }, - "dataPath": { - "segments": "Объект.Поле1" - }, + "dataPath": "Объект.Поле1", "items": [] }, { @@ -478,9 +472,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/cubes/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceCube/synonym" }, - "dataPath": { - "segments": "Объект.Поле3" - }, + "dataPath": "Объект.Поле3", "items": [] } ], @@ -586,9 +578,7 @@ } ] }, - "dataPath": { - "segments": "" - }, + "dataPath": "", "items": [] }, { @@ -598,9 +588,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/cubes/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceCube/synonym" }, - "dataPath": { - "segments": "Список" - }, + "dataPath": "Список", "items": [ [ { @@ -610,9 +598,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/cubes/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceCube/synonym" }, - "dataPath": { - "segments": "Список.Измерение1" - }, + "dataPath": "Список.Измерение1", "items": [] }, { @@ -622,9 +608,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/cubes/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceCube/synonym" }, - "dataPath": { - "segments": "Список.Измерение2" - }, + "dataPath": "Список.Измерение2", "items": [] }, { @@ -634,9 +618,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/cubes/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceCube/synonym" }, - "dataPath": { - "segments": "Список.Ресурс1" - }, + "dataPath": "Список.Ресурс1", "items": [] }, { @@ -646,9 +628,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/cubes/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceCube/synonym" }, - "dataPath": { - "segments": "Список.Ресурс2" - }, + "dataPath": "Список.Ресурс2", "items": [] } ], @@ -974,9 +954,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/cubes/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceCube/synonym" }, - "dataPath": { - "segments": "Объект.Поле1" - }, + "dataPath": "Объект.Поле1", "items": [] }, { @@ -986,9 +964,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/cubes/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceCube/synonym" }, - "dataPath": { - "segments": "Объект.Поле2" - }, + "dataPath": "Объект.Поле2", "items": [] }, { @@ -998,9 +974,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/cubes/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceCube/synonym" }, - "dataPath": { - "segments": "Объект.Поле3" - }, + "dataPath": "Объект.Поле3", "items": [] } ], diff --git "a/src/test/resources/fixtures/mdclasses_3_27/ExternalDataSources.\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\230\321\201\321\202\320\276\321\207\320\275\320\270\320\272\320\224\320\260\320\275\320\275\321\213\321\2051_edt.json" "b/src/test/resources/fixtures/mdclasses_3_27/ExternalDataSources.\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\230\321\201\321\202\320\276\321\207\320\275\320\270\320\272\320\224\320\260\320\275\320\275\321\213\321\2051_edt.json" index 9260c24ad..dd1cccebb 100644 --- "a/src/test/resources/fixtures/mdclasses_3_27/ExternalDataSources.\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\230\321\201\321\202\320\276\321\207\320\275\320\270\320\272\320\224\320\260\320\275\320\275\321\213\321\2051_edt.json" +++ "b/src/test/resources/fixtures/mdclasses_3_27/ExternalDataSources.\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\230\321\201\321\202\320\276\321\207\320\275\320\270\320\272\320\224\320\260\320\275\320\275\321\213\321\2051_edt.json" @@ -442,9 +442,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/cubes/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceCube/synonym" }, - "dataPath": { - "segments": "Объект.Parent" - }, + "dataPath": "Объект.Parent", "items": [] }, { @@ -454,9 +452,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/cubes/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceCube/synonym" }, - "dataPath": { - "segments": "Объект.Поле2" - }, + "dataPath": "Объект.Поле2", "items": [] }, { @@ -466,9 +462,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/cubes/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceCube/synonym" }, - "dataPath": { - "segments": "Объект.Поле1" - }, + "dataPath": "Объект.Поле1", "items": [] }, { @@ -478,9 +472,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/cubes/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceCube/synonym" }, - "dataPath": { - "segments": "Объект.Поле3" - }, + "dataPath": "Объект.Поле3", "items": [] } ], @@ -586,9 +578,7 @@ } ] }, - "dataPath": { - "segments": "" - }, + "dataPath": "", "items": [] }, { @@ -598,9 +588,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/cubes/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceCube/synonym" }, - "dataPath": { - "segments": "Список" - }, + "dataPath": "Список", "items": [ [ { @@ -610,9 +598,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/cubes/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceCube/synonym" }, - "dataPath": { - "segments": "Список.Измерение1" - }, + "dataPath": "Список.Измерение1", "items": [] }, { @@ -622,9 +608,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/cubes/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceCube/synonym" }, - "dataPath": { - "segments": "Список.Измерение2" - }, + "dataPath": "Список.Измерение2", "items": [] }, { @@ -634,9 +618,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/cubes/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceCube/synonym" }, - "dataPath": { - "segments": "Список.Ресурс1" - }, + "dataPath": "Список.Ресурс1", "items": [] }, { @@ -646,9 +628,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/cubes/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceCube/synonym" }, - "dataPath": { - "segments": "Список.Ресурс2" - }, + "dataPath": "Список.Ресурс2", "items": [] } ], @@ -974,9 +954,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/cubes/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceCube/synonym" }, - "dataPath": { - "segments": "Объект.Поле1" - }, + "dataPath": "Объект.Поле1", "items": [] }, { @@ -986,9 +964,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/cubes/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceCube/synonym" }, - "dataPath": { - "segments": "Объект.Поле2" - }, + "dataPath": "Объект.Поле2", "items": [] }, { @@ -998,9 +974,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/cubes/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceCube/synonym" }, - "dataPath": { - "segments": "Объект.Поле3" - }, + "dataPath": "Объект.Поле3", "items": [] } ], diff --git "a/src/test/resources/fixtures/ssl_3_1/BusinessProcesses.\320\227\320\260\320\264\320\260\320\275\320\270\320\265.json" "b/src/test/resources/fixtures/ssl_3_1/BusinessProcesses.\320\227\320\260\320\264\320\260\320\275\320\270\320\265.json" index 36dd58217..a3e2bac38 100644 --- "a/src/test/resources/fixtures/ssl_3_1/BusinessProcesses.\320\227\320\260\320\264\320\260\320\275\320\270\320\265.json" +++ "b/src/test/resources/fixtures/ssl_3_1/BusinessProcesses.\320\227\320\260\320\264\320\260\320\275\320\270\320\265.json" @@ -2199,9 +2199,7 @@ } ] }, - "dataPath": { - "segments": "" - }, + "dataPath": "", "items": [ [ { @@ -2222,9 +2220,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2245,9 +2241,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2268,9 +2262,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2280,9 +2272,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Автор" - }, + "dataPath": "Объект.Автор", "items": [] }, { @@ -2292,9 +2282,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Исполнитель" - }, + "dataPath": "Исполнитель", "items": [] } ], @@ -2319,9 +2307,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2331,9 +2317,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Date" - }, + "dataPath": "Объект.Date", "items": [] }, { @@ -2343,9 +2327,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.СрокИсполнения" - }, + "dataPath": "Объект.СрокИсполнения", "items": [] } ], @@ -2370,9 +2352,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2382,9 +2362,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Number" - }, + "dataPath": "Объект.Number", "items": [] }, { @@ -2394,9 +2372,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Важность" - }, + "dataPath": "Объект.Важность", "items": [] } ], @@ -2425,9 +2401,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2437,9 +2411,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.ДатаНачала" - }, + "dataPath": "Объект.ДатаНачала", "items": [] }, { @@ -2449,9 +2421,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.ДатаНачала" - }, + "dataPath": "Объект.ДатаНачала", "items": [] } ], @@ -2480,9 +2450,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2503,9 +2471,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "USUAL_GROUP", @@ -2514,9 +2480,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[14]/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2526,9 +2490,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Description" - }, + "dataPath": "Объект.Description", "items": [] }, { @@ -2538,9 +2500,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ПредметСтрокой" - }, + "dataPath": "ПредметСтрокой", "items": [] }, { @@ -2550,9 +2510,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ЗаданиеСодержание" - }, + "dataPath": "ЗаданиеСодержание", "items": [] } ], @@ -2579,9 +2537,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "INPUT_FIELD", @@ -2590,9 +2546,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "segments": "ЗаданиеРезультатВыполнения" - }, + "dataPath": "ЗаданиеРезультатВыполнения", "items": [] } ] @@ -2608,9 +2562,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[15]/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2631,9 +2583,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2643,9 +2593,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.РезультатВыполнения" - }, + "dataPath": "Объект.РезультатВыполнения", "items": [] }, { @@ -2666,9 +2614,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2678,9 +2624,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2690,9 +2634,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2713,9 +2655,7 @@ } ] }, - "dataPath": { - "segments": "Объект.ДатаИсполнения" - }, + "dataPath": "Объект.ДатаИсполнения", "items": [] }, { @@ -2725,9 +2665,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.ДатаИсполнения" - }, + "dataPath": "Объект.ДатаИсполнения", "items": [] }, { @@ -2737,9 +2675,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -3072,9 +3008,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3084,9 +3018,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[15]/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3096,9 +3028,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3108,9 +3038,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3120,9 +3048,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3132,9 +3058,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Автор" - }, + "dataPath": "Объект.Автор", "items": [] }, { @@ -3144,9 +3068,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[12]/synonym" }, - "dataPath": { - "segments": "Исполнитель" - }, + "dataPath": "Исполнитель", "items": [] } ], @@ -3160,9 +3082,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3172,9 +3092,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Date" - }, + "dataPath": "Объект.Date", "items": [] }, { @@ -3184,9 +3102,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.СрокИсполнения" - }, + "dataPath": "Объект.СрокИсполнения", "items": [] } ], @@ -3200,9 +3116,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3212,9 +3126,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Number" - }, + "dataPath": "Объект.Number", "items": [] }, { @@ -3224,9 +3136,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Важность" - }, + "dataPath": "Объект.Важность", "items": [] } ], @@ -3244,9 +3154,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3256,9 +3164,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.ДатаНачала" - }, + "dataPath": "Объект.ДатаНачала", "items": [] }, { @@ -3268,9 +3174,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.ДатаНачала" - }, + "dataPath": "Объект.ДатаНачала", "items": [] } ], @@ -3288,9 +3192,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3300,9 +3202,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "USUAL_GROUP", @@ -3311,9 +3211,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[14]/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3323,9 +3221,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Description" - }, + "dataPath": "Объект.Description", "items": [] }, { @@ -3335,9 +3231,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ПредметСтрокой" - }, + "dataPath": "ПредметСтрокой", "items": [] }, { @@ -3347,9 +3241,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[14]/synonym" }, - "dataPath": { - "segments": "ЗаданиеСодержание" - }, + "dataPath": "ЗаданиеСодержание", "items": [] } ], @@ -3365,9 +3257,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "INPUT_FIELD", @@ -3376,9 +3266,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "segments": "ЗаданиеРезультатВыполнения" - }, + "dataPath": "ЗаданиеРезультатВыполнения", "items": [] } ] @@ -3405,9 +3293,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3417,9 +3303,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.РезультатВыполнения" - }, + "dataPath": "Объект.РезультатВыполнения", "items": [] }, { @@ -3440,9 +3324,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3452,9 +3334,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3464,9 +3344,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3476,9 +3354,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3499,9 +3375,7 @@ } ] }, - "dataPath": { - "segments": "Объект.ДатаИсполнения" - }, + "dataPath": "Объект.ДатаИсполнения", "items": [] }, { @@ -3511,9 +3385,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.ДатаИсполнения" - }, + "dataPath": "Объект.ДатаИсполнения", "items": [] }, { @@ -3523,9 +3395,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -3896,9 +3766,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3908,9 +3776,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ГлавнаяЗадачаСтрокой" - }, + "dataPath": "ГлавнаяЗадачаСтрокой", "items": [] }, { @@ -3920,9 +3786,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[15]/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3932,9 +3796,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3944,9 +3806,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ИнфоНадписьЗаголовок" - }, + "dataPath": "ИнфоНадписьЗаголовок", "items": [] } ], @@ -3960,9 +3820,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3983,9 +3841,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3995,9 +3851,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Наименование" - }, + "dataPath": "Объект.Наименование", "items": [] }, { @@ -4007,9 +3861,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Важность" - }, + "dataPath": "Объект.Важность", "items": [] }, { @@ -4019,9 +3871,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Number" - }, + "dataPath": "Объект.Number", "items": [] } ], @@ -4046,9 +3896,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4058,9 +3906,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Исполнитель" - }, + "dataPath": "Объект.Исполнитель", "items": [] }, { @@ -4070,9 +3916,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[16]/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4093,9 +3937,7 @@ } ] }, - "dataPath": { - "segments": "Объект.СрокИсполнения" - }, + "dataPath": "Объект.СрокИсполнения", "items": [] }, { @@ -4105,9 +3947,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[3]/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "segments": "Объект.СрокИсполнения" - }, + "dataPath": "Объект.СрокИсполнения", "items": [] } ], @@ -4129,9 +3969,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[14]/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4141,9 +3979,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ПредметСтрокой" - }, + "dataPath": "ПредметСтрокой", "items": [] }, { @@ -4153,9 +3989,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[14]/synonym" }, - "dataPath": { - "segments": "Объект.Содержание" - }, + "dataPath": "Объект.Содержание", "items": [] } ], @@ -4180,9 +4014,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4203,9 +4035,7 @@ } ] }, - "dataPath": { - "segments": "Объект.НаПроверке" - }, + "dataPath": "Объект.НаПроверке", "items": [] }, { @@ -4215,9 +4045,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[12]/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4227,9 +4055,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Проверяющий" - }, + "dataPath": "Объект.Проверяющий", "items": [] }, { @@ -4239,9 +4065,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[17]/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4251,9 +4075,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[3]/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "segments": "Объект.СрокПроверки" - }, + "dataPath": "Объект.СрокПроверки", "items": [] }, { @@ -4263,9 +4085,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[3]/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "segments": "Объект.СрокПроверки" - }, + "dataPath": "Объект.СрокПроверки", "items": [] } ], @@ -4287,9 +4107,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4299,9 +4117,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Автор" - }, + "dataPath": "Объект.Автор", "items": [] }, { @@ -4322,9 +4138,7 @@ } ] }, - "dataPath": { - "segments": "Объект.Date" - }, + "dataPath": "Объект.Date", "items": [] } ], @@ -4686,9 +4500,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4698,9 +4510,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ПоАвтору" - }, + "dataPath": "ПоАвтору", "items": [] }, { @@ -4710,9 +4520,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ПоИсполнителю" - }, + "dataPath": "ПоИсполнителю", "items": [] }, { @@ -4722,9 +4530,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ПоПроверяющему" - }, + "dataPath": "ПоПроверяющему", "items": [] } ], @@ -4749,9 +4555,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4761,9 +4565,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ПоказыватьЗавершенныеЗадания" - }, + "dataPath": "ПоказыватьЗавершенныеЗадания", "items": [] }, { @@ -4773,9 +4575,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ПоказыватьОстановленные" - }, + "dataPath": "ПоказыватьОстановленные", "items": [] } ], @@ -4800,9 +4600,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -4823,9 +4621,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4835,9 +4631,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Items.Список.CurrentData.Ref" - }, + "dataPath": "Items.Список.CurrentData.Ref", "items": [] }, { @@ -4847,9 +4641,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -4859,9 +4651,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -4886,9 +4676,7 @@ } ] }, - "dataPath": { - "segments": "Список" - }, + "dataPath": "Список", "items": [ [ { @@ -4898,9 +4686,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[2]/synonym" }, - "dataPath": { - "segments": "Список.ВажностьКартинка" - }, + "dataPath": "Список.ВажностьКартинка", "items": [] }, { @@ -4910,9 +4696,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Number" - }, + "dataPath": "Список.Number", "items": [] }, { @@ -4922,9 +4706,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Date" - }, + "dataPath": "Список.Date", "items": [] }, { @@ -4934,9 +4716,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[14]/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4946,9 +4726,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Наименование" - }, + "dataPath": "Список.Наименование", "items": [] }, { @@ -4958,9 +4736,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Предмет" - }, + "dataPath": "Список.Предмет", "items": [] }, { @@ -4970,9 +4746,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Содержание" - }, + "dataPath": "Список.Содержание", "items": [] } ], @@ -4986,9 +4760,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.СрокИсполнения" - }, + "dataPath": "Список.СрокИсполнения", "items": [] }, { @@ -4998,9 +4770,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.СрокПроверки" - }, + "dataPath": "Список.СрокПроверки", "items": [] }, { @@ -5010,9 +4780,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute[3]/synonym" }, - "dataPath": { - "segments": "Список.ДатаЗавершения" - }, + "dataPath": "Список.ДатаЗавершения", "items": [] }, { @@ -5022,9 +4790,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.HeadTask" - }, + "dataPath": "Список.HeadTask", "items": [] }, { @@ -5034,9 +4800,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.НомерИтерации" - }, + "dataPath": "Список.НомерИтерации", "items": [] }, { @@ -5046,9 +4810,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Автор" - }, + "dataPath": "Список.Автор", "items": [] }, { @@ -5058,9 +4820,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Исполнитель" - }, + "dataPath": "Список.Исполнитель", "items": [] }, { @@ -5070,9 +4830,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[8]/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5082,9 +4840,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.НаПроверке" - }, + "dataPath": "Список.НаПроверке", "items": [] }, { @@ -5094,9 +4850,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Проверяющий" - }, + "dataPath": "Список.Проверяющий", "items": [] } ], @@ -5110,9 +4864,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Ref" - }, + "dataPath": "Список.Ref", "items": [] } ], diff --git "a/src/test/resources/fixtures/ssl_3_1/BusinessProcesses.\320\227\320\260\320\264\320\260\320\275\320\270\320\265_edt.json" "b/src/test/resources/fixtures/ssl_3_1/BusinessProcesses.\320\227\320\260\320\264\320\260\320\275\320\270\320\265_edt.json" index ced70c101..dc799dcbe 100644 --- "a/src/test/resources/fixtures/ssl_3_1/BusinessProcesses.\320\227\320\260\320\264\320\260\320\275\320\270\320\265_edt.json" +++ "b/src/test/resources/fixtures/ssl_3_1/BusinessProcesses.\320\227\320\260\320\264\320\260\320\275\320\270\320\265_edt.json" @@ -2187,9 +2187,7 @@ } ] }, - "dataPath": { - "segments": "" - }, + "dataPath": "", "items": [ [ { @@ -2210,9 +2208,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2233,9 +2229,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2256,9 +2250,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2268,9 +2260,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Автор" - }, + "dataPath": "Объект.Автор", "items": [] }, { @@ -2280,9 +2270,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Исполнитель" - }, + "dataPath": "Исполнитель", "items": [] } ], @@ -2307,9 +2295,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2319,9 +2305,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Date" - }, + "dataPath": "Объект.Date", "items": [] }, { @@ -2331,9 +2315,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.СрокИсполнения" - }, + "dataPath": "Объект.СрокИсполнения", "items": [] } ], @@ -2358,9 +2340,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2370,9 +2350,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Number" - }, + "dataPath": "Объект.Number", "items": [] }, { @@ -2382,9 +2360,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Важность" - }, + "dataPath": "Объект.Важность", "items": [] } ], @@ -2413,9 +2389,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2425,9 +2399,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.ДатаНачала" - }, + "dataPath": "Объект.ДатаНачала", "items": [] }, { @@ -2437,9 +2409,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.ДатаНачала" - }, + "dataPath": "Объект.ДатаНачала", "items": [] } ], @@ -2468,9 +2438,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2491,9 +2459,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "USUAL_GROUP", @@ -2502,9 +2468,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[14]/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2514,9 +2478,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Description" - }, + "dataPath": "Объект.Description", "items": [] }, { @@ -2526,9 +2488,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ПредметСтрокой" - }, + "dataPath": "ПредметСтрокой", "items": [] }, { @@ -2538,9 +2498,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ЗаданиеСодержание" - }, + "dataPath": "ЗаданиеСодержание", "items": [] } ], @@ -2567,9 +2525,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "INPUT_FIELD", @@ -2578,9 +2534,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "segments": "ЗаданиеРезультатВыполнения" - }, + "dataPath": "ЗаданиеРезультатВыполнения", "items": [] } ] @@ -2596,9 +2550,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[15]/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2619,9 +2571,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2631,9 +2581,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.РезультатВыполнения" - }, + "dataPath": "Объект.РезультатВыполнения", "items": [] }, { @@ -2654,9 +2602,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2666,9 +2612,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2678,9 +2622,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2701,9 +2643,7 @@ } ] }, - "dataPath": { - "segments": "Объект.ДатаИсполнения" - }, + "dataPath": "Объект.ДатаИсполнения", "items": [] }, { @@ -2713,9 +2653,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.ДатаИсполнения" - }, + "dataPath": "Объект.ДатаИсполнения", "items": [] }, { @@ -2725,9 +2663,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -3051,9 +2987,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3063,9 +2997,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[15]/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3075,9 +3007,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3087,9 +3017,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3099,9 +3027,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3111,9 +3037,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Автор" - }, + "dataPath": "Объект.Автор", "items": [] }, { @@ -3123,9 +3047,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[12]/synonym" }, - "dataPath": { - "segments": "Исполнитель" - }, + "dataPath": "Исполнитель", "items": [] } ], @@ -3139,9 +3061,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3151,9 +3071,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Date" - }, + "dataPath": "Объект.Date", "items": [] }, { @@ -3163,9 +3081,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.СрокИсполнения" - }, + "dataPath": "Объект.СрокИсполнения", "items": [] } ], @@ -3179,9 +3095,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3191,9 +3105,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Number" - }, + "dataPath": "Объект.Number", "items": [] }, { @@ -3203,9 +3115,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Важность" - }, + "dataPath": "Объект.Важность", "items": [] } ], @@ -3223,9 +3133,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3235,9 +3143,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.ДатаНачала" - }, + "dataPath": "Объект.ДатаНачала", "items": [] }, { @@ -3247,9 +3153,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.ДатаНачала" - }, + "dataPath": "Объект.ДатаНачала", "items": [] } ], @@ -3267,9 +3171,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3279,9 +3181,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "USUAL_GROUP", @@ -3290,9 +3190,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[14]/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3302,9 +3200,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Description" - }, + "dataPath": "Объект.Description", "items": [] }, { @@ -3314,9 +3210,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ПредметСтрокой" - }, + "dataPath": "ПредметСтрокой", "items": [] }, { @@ -3326,9 +3220,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[14]/synonym" }, - "dataPath": { - "segments": "ЗаданиеСодержание" - }, + "dataPath": "ЗаданиеСодержание", "items": [] } ], @@ -3344,9 +3236,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "INPUT_FIELD", @@ -3355,9 +3245,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "segments": "ЗаданиеРезультатВыполнения" - }, + "dataPath": "ЗаданиеРезультатВыполнения", "items": [] } ] @@ -3384,9 +3272,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3396,9 +3282,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.РезультатВыполнения" - }, + "dataPath": "Объект.РезультатВыполнения", "items": [] }, { @@ -3419,9 +3303,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3431,9 +3313,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3443,9 +3323,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3455,9 +3333,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3478,9 +3354,7 @@ } ] }, - "dataPath": { - "segments": "Объект.ДатаИсполнения" - }, + "dataPath": "Объект.ДатаИсполнения", "items": [] }, { @@ -3490,9 +3364,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.ДатаИсполнения" - }, + "dataPath": "Объект.ДатаИсполнения", "items": [] }, { @@ -3502,9 +3374,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -3858,9 +3728,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3870,9 +3738,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ГлавнаяЗадачаСтрокой" - }, + "dataPath": "ГлавнаяЗадачаСтрокой", "items": [] }, { @@ -3882,9 +3748,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[15]/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3894,9 +3758,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3906,9 +3768,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ИнфоНадписьЗаголовок" - }, + "dataPath": "ИнфоНадписьЗаголовок", "items": [] } ], @@ -3922,9 +3782,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3945,9 +3803,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3957,9 +3813,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Наименование" - }, + "dataPath": "Объект.Наименование", "items": [] }, { @@ -3969,9 +3823,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Важность" - }, + "dataPath": "Объект.Важность", "items": [] }, { @@ -3981,9 +3833,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Number" - }, + "dataPath": "Объект.Number", "items": [] } ], @@ -4008,9 +3858,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4020,9 +3868,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Исполнитель" - }, + "dataPath": "Объект.Исполнитель", "items": [] }, { @@ -4032,9 +3878,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[16]/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4055,9 +3899,7 @@ } ] }, - "dataPath": { - "segments": "Объект.СрокИсполнения" - }, + "dataPath": "Объект.СрокИсполнения", "items": [] }, { @@ -4067,9 +3909,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[3]/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "segments": "Объект.СрокИсполнения" - }, + "dataPath": "Объект.СрокИсполнения", "items": [] } ], @@ -4091,9 +3931,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[14]/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4103,9 +3941,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ПредметСтрокой" - }, + "dataPath": "ПредметСтрокой", "items": [] }, { @@ -4115,9 +3951,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[14]/synonym" }, - "dataPath": { - "segments": "Объект.Содержание" - }, + "dataPath": "Объект.Содержание", "items": [] } ], @@ -4142,9 +3976,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4165,9 +3997,7 @@ } ] }, - "dataPath": { - "segments": "Объект.НаПроверке" - }, + "dataPath": "Объект.НаПроверке", "items": [] }, { @@ -4177,9 +4007,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[12]/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4189,9 +4017,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Проверяющий" - }, + "dataPath": "Объект.Проверяющий", "items": [] }, { @@ -4201,9 +4027,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[17]/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4213,9 +4037,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[3]/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "segments": "Объект.СрокПроверки" - }, + "dataPath": "Объект.СрокПроверки", "items": [] }, { @@ -4225,9 +4047,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[3]/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "segments": "Объект.СрокПроверки" - }, + "dataPath": "Объект.СрокПроверки", "items": [] } ], @@ -4249,9 +4069,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4261,9 +4079,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Автор" - }, + "dataPath": "Объект.Автор", "items": [] }, { @@ -4284,9 +4100,7 @@ } ] }, - "dataPath": { - "segments": "Объект.Date" - }, + "dataPath": "Объект.Date", "items": [] } ], @@ -4648,9 +4462,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4660,9 +4472,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ПоАвтору" - }, + "dataPath": "ПоАвтору", "items": [] }, { @@ -4672,9 +4482,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ПоИсполнителю" - }, + "dataPath": "ПоИсполнителю", "items": [] }, { @@ -4684,9 +4492,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ПоПроверяющему" - }, + "dataPath": "ПоПроверяющему", "items": [] } ], @@ -4711,9 +4517,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4723,9 +4527,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ПоказыватьЗавершенныеЗадания" - }, + "dataPath": "ПоказыватьЗавершенныеЗадания", "items": [] }, { @@ -4735,9 +4537,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ПоказыватьОстановленные" - }, + "dataPath": "ПоказыватьОстановленные", "items": [] } ], @@ -4762,9 +4562,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -4785,9 +4583,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4797,9 +4593,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Items.Список.CurrentData.Ref" - }, + "dataPath": "Items.Список.CurrentData.Ref", "items": [] }, { @@ -4809,9 +4603,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -4821,9 +4613,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -4848,9 +4638,7 @@ } ] }, - "dataPath": { - "segments": "Список" - }, + "dataPath": "Список", "items": [ [ { @@ -4860,9 +4648,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[2]/synonym" }, - "dataPath": { - "segments": "Список.ВажностьКартинка" - }, + "dataPath": "Список.ВажностьКартинка", "items": [] }, { @@ -4872,9 +4658,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Number" - }, + "dataPath": "Список.Number", "items": [] }, { @@ -4884,9 +4668,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Date" - }, + "dataPath": "Список.Date", "items": [] }, { @@ -4896,9 +4678,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[14]/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4908,9 +4688,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Наименование" - }, + "dataPath": "Список.Наименование", "items": [] }, { @@ -4920,9 +4698,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Предмет" - }, + "dataPath": "Список.Предмет", "items": [] }, { @@ -4932,9 +4708,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Содержание" - }, + "dataPath": "Список.Содержание", "items": [] } ], @@ -4948,9 +4722,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.СрокИсполнения" - }, + "dataPath": "Список.СрокИсполнения", "items": [] }, { @@ -4960,9 +4732,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.СрокПроверки" - }, + "dataPath": "Список.СрокПроверки", "items": [] }, { @@ -4972,9 +4742,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute[3]/synonym" }, - "dataPath": { - "segments": "Список.ДатаЗавершения" - }, + "dataPath": "Список.ДатаЗавершения", "items": [] }, { @@ -4984,9 +4752,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.HeadTask" - }, + "dataPath": "Список.HeadTask", "items": [] }, { @@ -4996,9 +4762,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.НомерИтерации" - }, + "dataPath": "Список.НомерИтерации", "items": [] }, { @@ -5008,9 +4772,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Автор" - }, + "dataPath": "Список.Автор", "items": [] }, { @@ -5020,9 +4782,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Исполнитель" - }, + "dataPath": "Список.Исполнитель", "items": [] }, { @@ -5032,9 +4792,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[8]/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5044,9 +4802,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.НаПроверке" - }, + "dataPath": "Список.НаПроверке", "items": [] }, { @@ -5056,9 +4812,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Проверяющий" - }, + "dataPath": "Список.Проверяющий", "items": [] } ], @@ -5072,9 +4826,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Ref" - }, + "dataPath": "Список.Ref", "items": [] } ], diff --git "a/src/test/resources/fixtures/ssl_3_1/Catalogs.\320\222\320\265\321\200\321\201\320\270\320\270\320\244\320\260\320\271\320\273\320\276\320\262.json" "b/src/test/resources/fixtures/ssl_3_1/Catalogs.\320\222\320\265\321\200\321\201\320\270\320\270\320\244\320\260\320\271\320\273\320\276\320\262.json" index da9a49f43..f70acb3ad 100644 --- "a/src/test/resources/fixtures/ssl_3_1/Catalogs.\320\222\320\265\321\200\321\201\320\270\320\270\320\244\320\260\320\271\320\273\320\276\320\262.json" +++ "b/src/test/resources/fixtures/ssl_3_1/Catalogs.\320\222\320\265\321\200\321\201\320\270\320\270\320\244\320\260\320\271\320\273\320\276\320\262.json" @@ -1828,9 +1828,7 @@ } ] }, - "dataPath": { - "segments": "" - }, + "dataPath": "", "items": [] }, { @@ -1851,9 +1849,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1874,9 +1870,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1897,9 +1891,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1909,9 +1901,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1921,9 +1911,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -1948,9 +1936,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1960,9 +1946,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1972,9 +1956,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -1999,9 +1981,7 @@ } ] }, - "dataPath": { - "segments": "Список" - }, + "dataPath": "Список", "items": [ [ { @@ -2022,9 +2002,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2045,9 +2023,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2068,9 +2044,7 @@ } ] }, - "dataPath": { - "segments": "Список.ПолноеНаименование" - }, + "dataPath": "Список.ПолноеНаименование", "items": [] }, { @@ -2080,9 +2054,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Расширение" - }, + "dataPath": "Список.Расширение", "items": [] }, { @@ -2092,9 +2064,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Owner" - }, + "dataPath": "Список.Owner", "items": [] }, { @@ -2104,9 +2074,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Автор" - }, + "dataPath": "Список.Автор", "items": [] }, { @@ -2116,9 +2084,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.ДатаСоздания" - }, + "dataPath": "Список.ДатаСоздания", "items": [] }, { @@ -2128,9 +2094,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Размер" - }, + "dataPath": "Список.Размер", "items": [] }, { @@ -2140,9 +2104,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.НомерВерсии" - }, + "dataPath": "Список.НомерВерсии", "items": [] } ], @@ -2156,9 +2118,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Комментарий" - }, + "dataPath": "Список.Комментарий", "items": [] } ], @@ -2172,9 +2132,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Ссылка" - }, + "dataPath": "Список.Ссылка", "items": [] } ], @@ -2285,9 +2243,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2297,9 +2253,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2309,9 +2263,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2321,9 +2273,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2333,9 +2283,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2345,9 +2293,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2357,9 +2303,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2369,9 +2313,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2381,9 +2323,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2393,9 +2333,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -2409,9 +2347,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2421,9 +2357,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2433,9 +2367,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2445,9 +2377,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2457,9 +2387,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2469,9 +2397,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2481,9 +2407,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2493,9 +2417,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2505,9 +2427,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2517,9 +2437,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -2533,9 +2451,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title" }, - "dataPath": { - "segments": "Список" - }, + "dataPath": "Список", "items": [ [ { @@ -2545,9 +2461,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2557,9 +2471,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2569,9 +2481,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Владелец" - }, + "dataPath": "Список.Владелец", "items": [] }, { @@ -2581,9 +2491,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.НомерВерсии" - }, + "dataPath": "Список.НомерВерсии", "items": [] }, { @@ -2593,9 +2501,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Автор" - }, + "dataPath": "Список.Автор", "items": [] }, { @@ -2605,9 +2511,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.ДатаСоздания" - }, + "dataPath": "Список.ДатаСоздания", "items": [] }, { @@ -2617,9 +2521,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Размер" - }, + "dataPath": "Список.Размер", "items": [] } ], @@ -2633,9 +2535,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Комментарий" - }, + "dataPath": "Список.Комментарий", "items": [] } ], @@ -2649,9 +2549,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Ссылка" - }, + "dataPath": "Список.Ссылка", "items": [] } ], @@ -2756,9 +2654,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title" }, - "dataPath": { - "segments": "Список" - }, + "dataPath": "Список", "items": [ [ { @@ -2768,9 +2664,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2780,9 +2674,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2792,9 +2684,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Автор" - }, + "dataPath": "Список.Автор", "items": [] }, { @@ -2804,9 +2694,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Владелец" - }, + "dataPath": "Список.Владелец", "items": [] }, { @@ -2816,9 +2704,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.НомерВерсии" - }, + "dataPath": "Список.НомерВерсии", "items": [] }, { @@ -2828,9 +2714,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.ДатаСоздания" - }, + "dataPath": "Список.ДатаСоздания", "items": [] }, { @@ -2840,9 +2724,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Размер" - }, + "dataPath": "Список.Размер", "items": [] } ], @@ -2856,9 +2738,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Комментарий" - }, + "dataPath": "Список.Комментарий", "items": [] } ], @@ -2872,9 +2752,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Ссылка" - }, + "dataPath": "Список.Ссылка", "items": [] } ], @@ -2968,15 +2846,15 @@ "mdoType": "CATALOG", "moduleTypes": [ [ - "ObjectModule", + "ManagerModule", [ - "src/test/resources/ext/designer/ssl_3_1/src/cf/Catalogs/ВерсииФа_лов/Ext/ObjectModule.bsl" + "src/test/resources/ext/designer/ssl_3_1/src/cf/Catalogs/ВерсииФа_лов/Ext/ManagerModule.bsl" ] ], [ - "ManagerModule", + "ObjectModule", [ - "src/test/resources/ext/designer/ssl_3_1/src/cf/Catalogs/ВерсииФа_лов/Ext/ManagerModule.bsl" + "src/test/resources/ext/designer/ssl_3_1/src/cf/Catalogs/ВерсииФа_лов/Ext/ObjectModule.bsl" ] ] ], diff --git "a/src/test/resources/fixtures/ssl_3_1/Catalogs.\320\222\320\265\321\200\321\201\320\270\320\270\320\244\320\260\320\271\320\273\320\276\320\262_edt.json" "b/src/test/resources/fixtures/ssl_3_1/Catalogs.\320\222\320\265\321\200\321\201\320\270\320\270\320\244\320\260\320\271\320\273\320\276\320\262_edt.json" index 5fc7c90d1..2f8f24160 100644 --- "a/src/test/resources/fixtures/ssl_3_1/Catalogs.\320\222\320\265\321\200\321\201\320\270\320\270\320\244\320\260\320\271\320\273\320\276\320\262_edt.json" +++ "b/src/test/resources/fixtures/ssl_3_1/Catalogs.\320\222\320\265\321\200\321\201\320\270\320\270\320\244\320\260\320\271\320\273\320\276\320\262_edt.json" @@ -1828,9 +1828,7 @@ } ] }, - "dataPath": { - "segments": "" - }, + "dataPath": "", "items": [] }, { @@ -1851,9 +1849,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1874,9 +1870,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1897,9 +1891,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1909,9 +1901,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1921,9 +1911,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -1948,9 +1936,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1960,9 +1946,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1972,9 +1956,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -1999,9 +1981,7 @@ } ] }, - "dataPath": { - "segments": "Список" - }, + "dataPath": "Список", "items": [ [ { @@ -2022,9 +2002,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2045,9 +2023,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2068,9 +2044,7 @@ } ] }, - "dataPath": { - "segments": "Список.ПолноеНаименование" - }, + "dataPath": "Список.ПолноеНаименование", "items": [] }, { @@ -2080,9 +2054,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Расширение" - }, + "dataPath": "Список.Расширение", "items": [] }, { @@ -2092,9 +2064,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Owner" - }, + "dataPath": "Список.Owner", "items": [] }, { @@ -2104,9 +2074,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Автор" - }, + "dataPath": "Список.Автор", "items": [] }, { @@ -2116,9 +2084,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.ДатаСоздания" - }, + "dataPath": "Список.ДатаСоздания", "items": [] }, { @@ -2128,9 +2094,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Размер" - }, + "dataPath": "Список.Размер", "items": [] }, { @@ -2140,9 +2104,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.НомерВерсии" - }, + "dataPath": "Список.НомерВерсии", "items": [] } ], @@ -2156,9 +2118,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Комментарий" - }, + "dataPath": "Список.Комментарий", "items": [] } ], @@ -2172,9 +2132,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Ссылка" - }, + "dataPath": "Список.Ссылка", "items": [] } ], @@ -2285,9 +2243,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2297,9 +2253,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2309,9 +2263,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2321,9 +2273,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2333,9 +2283,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2345,9 +2293,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2357,9 +2303,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2369,9 +2313,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2381,9 +2323,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2393,9 +2333,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -2409,9 +2347,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2421,9 +2357,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2433,9 +2367,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2445,9 +2377,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2457,9 +2387,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2469,9 +2397,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2481,9 +2407,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2493,9 +2417,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2505,9 +2427,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2517,9 +2437,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -2533,9 +2451,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title" }, - "dataPath": { - "segments": "Список" - }, + "dataPath": "Список", "items": [ [ { @@ -2545,9 +2461,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2557,9 +2471,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2569,9 +2481,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Владелец" - }, + "dataPath": "Список.Владелец", "items": [] }, { @@ -2581,9 +2491,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.НомерВерсии" - }, + "dataPath": "Список.НомерВерсии", "items": [] }, { @@ -2593,9 +2501,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Автор" - }, + "dataPath": "Список.Автор", "items": [] }, { @@ -2605,9 +2511,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.ДатаСоздания" - }, + "dataPath": "Список.ДатаСоздания", "items": [] }, { @@ -2617,9 +2521,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Размер" - }, + "dataPath": "Список.Размер", "items": [] } ], @@ -2633,9 +2535,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Комментарий" - }, + "dataPath": "Список.Комментарий", "items": [] } ], @@ -2649,9 +2549,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Ссылка" - }, + "dataPath": "Список.Ссылка", "items": [] } ], @@ -2756,9 +2654,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title" }, - "dataPath": { - "segments": "Список" - }, + "dataPath": "Список", "items": [ [ { @@ -2768,9 +2664,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2780,9 +2674,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2792,9 +2684,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Автор" - }, + "dataPath": "Список.Автор", "items": [] }, { @@ -2804,9 +2694,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Владелец" - }, + "dataPath": "Список.Владелец", "items": [] }, { @@ -2816,9 +2704,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.НомерВерсии" - }, + "dataPath": "Список.НомерВерсии", "items": [] }, { @@ -2828,9 +2714,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.ДатаСоздания" - }, + "dataPath": "Список.ДатаСоздания", "items": [] }, { @@ -2840,9 +2724,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Размер" - }, + "dataPath": "Список.Размер", "items": [] } ], @@ -2856,9 +2738,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Комментарий" - }, + "dataPath": "Список.Комментарий", "items": [] } ], @@ -2872,9 +2752,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Ссылка" - }, + "dataPath": "Список.Ссылка", "items": [] } ], diff --git "a/src/test/resources/fixtures/ssl_3_1/Catalogs.\320\227\320\260\320\274\320\265\321\202\320\272\320\270.json" "b/src/test/resources/fixtures/ssl_3_1/Catalogs.\320\227\320\260\320\274\320\265\321\202\320\272\320\270.json" index c00d475a5..cd6c845e6 100644 --- "a/src/test/resources/fixtures/ssl_3_1/Catalogs.\320\227\320\260\320\274\320\265\321\202\320\272\320\270.json" +++ "b/src/test/resources/fixtures/ssl_3_1/Catalogs.\320\227\320\260\320\274\320\265\321\202\320\272\320\270.json" @@ -1099,9 +1099,7 @@ } ] }, - "dataPath": { - "segments": "" - }, + "dataPath": "", "items": [ { "type": "USUAL_GROUP", @@ -1110,9 +1108,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[2]/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1133,9 +1129,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1145,9 +1139,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[2]/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -1163,9 +1155,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[3]/synonym" }, - "dataPath": { - "segments": "ФорматированныйТекст" - }, + "dataPath": "ФорматированныйТекст", "items": [] }, { @@ -1186,9 +1176,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1209,9 +1197,7 @@ } ] }, - "dataPath": { - "segments": "Объект.ДляРабочегоСтола" - }, + "dataPath": "Объект.ДляРабочегоСтола", "items": [] }, { @@ -1232,9 +1218,7 @@ } ] }, - "dataPath": { - "segments": "Объект.Пометка" - }, + "dataPath": "Объект.Пометка", "items": [] }, { @@ -1244,9 +1228,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Parent" - }, + "dataPath": "Объект.Parent", "items": [] } ], @@ -1271,9 +1253,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1294,9 +1274,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1306,9 +1284,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -1333,9 +1309,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -1483,9 +1457,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1495,9 +1467,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "segments": "ВыбранныйЦвет" - }, + "dataPath": "ВыбранныйЦвет", "items": [] }, { @@ -1507,9 +1477,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[2]/synonym" }, - "dataPath": { - "segments": "ВыбранныйПредмет" - }, + "dataPath": "ВыбранныйПредмет", "items": [] }, { @@ -1519,9 +1487,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ПоказыватьУдаленные" - }, + "dataPath": "ПоказыватьУдаленные", "items": [] } ], @@ -1546,9 +1512,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1569,9 +1533,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1592,9 +1554,7 @@ } ] }, - "dataPath": { - "segments": "Список" - }, + "dataPath": "Список", "items": [ [ { @@ -1604,9 +1564,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute[8]/synonym" }, - "dataPath": { - "segments": "Список.Description" - }, + "dataPath": "Список.Description", "items": [] }, { @@ -1616,9 +1574,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.ПредставлениеПредмета" - }, + "dataPath": "Список.ПредставлениеПредмета", "items": [] }, { @@ -1628,9 +1584,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.ДатаИзменения" - }, + "dataPath": "Список.ДатаИзменения", "items": [] }, { @@ -1640,9 +1594,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Ref" - }, + "dataPath": "Список.Ref", "items": [] } ], @@ -1871,9 +1823,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1883,9 +1833,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1895,9 +1843,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/title" }, - "dataPath": { - "segments": "Список" - }, + "dataPath": "Список", "items": [ [ { @@ -1907,9 +1853,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Description" - }, + "dataPath": "Список.Description", "items": [] }, { @@ -1919,9 +1863,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Автор" - }, + "dataPath": "Список.Автор", "items": [] }, { @@ -1931,9 +1873,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Ref" - }, + "dataPath": "Список.Ref", "items": [] } ], @@ -1947,9 +1887,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1959,9 +1897,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ПоказыватьЗаметкиДругихПользователей" - }, + "dataPath": "ПоказыватьЗаметкиДругихПользователей", "items": [] }, { @@ -1971,9 +1907,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ПоказыватьУдаленные" - }, + "dataPath": "ПоказыватьУдаленные", "items": [] } ], @@ -2125,9 +2059,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/title" }, - "dataPath": { - "segments": "Список" - }, + "dataPath": "Список", "items": [ [ { @@ -2137,9 +2069,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[3]/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2149,9 +2079,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Description" - }, + "dataPath": "Список.Description", "items": [] }, { @@ -2161,9 +2089,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.ПредставлениеПредмета" - }, + "dataPath": "Список.ПредставлениеПредмета", "items": [] } ], @@ -2177,9 +2103,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Ref" - }, + "dataPath": "Список.Ref", "items": [] } ], @@ -2286,9 +2210,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2298,9 +2220,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Description" - }, + "dataPath": "Объект.Description", "items": [] }, { @@ -2310,9 +2230,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Parent" - }, + "dataPath": "Объект.Parent", "items": [] }, { @@ -2322,9 +2240,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Автор" - }, + "dataPath": "Объект.Автор", "items": [] } ], @@ -2375,15 +2291,15 @@ "mdoType": "CATALOG", "moduleTypes": [ [ - "ObjectModule", + "ManagerModule", [ - "src/test/resources/ext/designer/ssl_3_1/src/cf/Catalogs/Заметки/Ext/ObjectModule.bsl" + "src/test/resources/ext/designer/ssl_3_1/src/cf/Catalogs/Заметки/Ext/ManagerModule.bsl" ] ], [ - "ManagerModule", + "ObjectModule", [ - "src/test/resources/ext/designer/ssl_3_1/src/cf/Catalogs/Заметки/Ext/ManagerModule.bsl" + "src/test/resources/ext/designer/ssl_3_1/src/cf/Catalogs/Заметки/Ext/ObjectModule.bsl" ] ] ], diff --git "a/src/test/resources/fixtures/ssl_3_1/Catalogs.\320\227\320\260\320\274\320\265\321\202\320\272\320\270_edt.json" "b/src/test/resources/fixtures/ssl_3_1/Catalogs.\320\227\320\260\320\274\320\265\321\202\320\272\320\270_edt.json" index 3cecafefc..d10e0fb29 100644 --- "a/src/test/resources/fixtures/ssl_3_1/Catalogs.\320\227\320\260\320\274\320\265\321\202\320\272\320\270_edt.json" +++ "b/src/test/resources/fixtures/ssl_3_1/Catalogs.\320\227\320\260\320\274\320\265\321\202\320\272\320\270_edt.json" @@ -1080,9 +1080,7 @@ } ] }, - "dataPath": { - "segments": "" - }, + "dataPath": "", "items": [ { "type": "USUAL_GROUP", @@ -1091,9 +1089,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[2]/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1114,9 +1110,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1126,9 +1120,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[2]/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -1144,9 +1136,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[3]/synonym" }, - "dataPath": { - "segments": "ФорматированныйТекст" - }, + "dataPath": "ФорматированныйТекст", "items": [] }, { @@ -1167,9 +1157,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1190,9 +1178,7 @@ } ] }, - "dataPath": { - "segments": "Объект.ДляРабочегоСтола" - }, + "dataPath": "Объект.ДляРабочегоСтола", "items": [] }, { @@ -1213,9 +1199,7 @@ } ] }, - "dataPath": { - "segments": "Объект.Пометка" - }, + "dataPath": "Объект.Пометка", "items": [] }, { @@ -1225,9 +1209,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Parent" - }, + "dataPath": "Объект.Parent", "items": [] } ], @@ -1252,9 +1234,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1275,9 +1255,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1287,9 +1265,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -1314,9 +1290,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -1464,9 +1438,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1476,9 +1448,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "segments": "ВыбранныйЦвет" - }, + "dataPath": "ВыбранныйЦвет", "items": [] }, { @@ -1488,9 +1458,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[2]/synonym" }, - "dataPath": { - "segments": "ВыбранныйПредмет" - }, + "dataPath": "ВыбранныйПредмет", "items": [] }, { @@ -1500,9 +1468,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ПоказыватьУдаленные" - }, + "dataPath": "ПоказыватьУдаленные", "items": [] } ], @@ -1527,9 +1493,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1550,9 +1514,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1573,9 +1535,7 @@ } ] }, - "dataPath": { - "segments": "Список" - }, + "dataPath": "Список", "items": [ [ { @@ -1585,9 +1545,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute[8]/synonym" }, - "dataPath": { - "segments": "Список.Description" - }, + "dataPath": "Список.Description", "items": [] }, { @@ -1597,9 +1555,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.ПредставлениеПредмета" - }, + "dataPath": "Список.ПредставлениеПредмета", "items": [] }, { @@ -1609,9 +1565,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.ДатаИзменения" - }, + "dataPath": "Список.ДатаИзменения", "items": [] }, { @@ -1621,9 +1575,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Ref" - }, + "dataPath": "Список.Ref", "items": [] } ], @@ -1852,9 +1804,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1864,9 +1814,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1876,9 +1824,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/title" }, - "dataPath": { - "segments": "Список" - }, + "dataPath": "Список", "items": [ [ { @@ -1888,9 +1834,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Description" - }, + "dataPath": "Список.Description", "items": [] }, { @@ -1900,9 +1844,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Автор" - }, + "dataPath": "Список.Автор", "items": [] }, { @@ -1912,9 +1854,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Ref" - }, + "dataPath": "Список.Ref", "items": [] } ], @@ -1928,9 +1868,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1940,9 +1878,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ПоказыватьЗаметкиДругихПользователей" - }, + "dataPath": "ПоказыватьЗаметкиДругихПользователей", "items": [] }, { @@ -1952,9 +1888,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ПоказыватьУдаленные" - }, + "dataPath": "ПоказыватьУдаленные", "items": [] } ], @@ -2106,9 +2040,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/title" }, - "dataPath": { - "segments": "Список" - }, + "dataPath": "Список", "items": [ [ { @@ -2118,9 +2050,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[3]/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2130,9 +2060,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Description" - }, + "dataPath": "Список.Description", "items": [] }, { @@ -2142,9 +2070,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.ПредставлениеПредмета" - }, + "dataPath": "Список.ПредставлениеПредмета", "items": [] } ], @@ -2158,9 +2084,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Ref" - }, + "dataPath": "Список.Ref", "items": [] } ], @@ -2258,9 +2182,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2270,9 +2192,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Description" - }, + "dataPath": "Объект.Description", "items": [] }, { @@ -2282,9 +2202,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Parent" - }, + "dataPath": "Объект.Parent", "items": [] }, { @@ -2294,9 +2212,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Автор" - }, + "dataPath": "Объект.Автор", "items": [] } ], diff --git "a/src/test/resources/fixtures/ssl_3_1/ChartsOfCharacteristicTypes.\320\224\320\276\320\277\320\276\320\273\320\275\320\270\321\202\320\265\320\273\321\214\320\275\321\213\320\265\320\240\320\265\320\272\320\262\320\270\320\267\320\270\321\202\321\213\320\230\320\241\320\262\320\265\320\264\320\265\320\275\320\270\321\217.json" "b/src/test/resources/fixtures/ssl_3_1/ChartsOfCharacteristicTypes.\320\224\320\276\320\277\320\276\320\273\320\275\320\270\321\202\320\265\320\273\321\214\320\275\321\213\320\265\320\240\320\265\320\272\320\262\320\270\320\267\320\270\321\202\321\213\320\230\320\241\320\262\320\265\320\264\320\265\320\275\320\270\321\217.json" index ec1b92af1..49cf1e154 100644 --- "a/src/test/resources/fixtures/ssl_3_1/ChartsOfCharacteristicTypes.\320\224\320\276\320\277\320\276\320\273\320\275\320\270\321\202\320\265\320\273\321\214\320\275\321\213\320\265\320\240\320\265\320\272\320\262\320\270\320\267\320\270\321\202\321\213\320\230\320\241\320\262\320\265\320\264\320\265\320\275\320\270\321\217.json" +++ "b/src/test/resources/fixtures/ssl_3_1/ChartsOfCharacteristicTypes.\320\224\320\276\320\277\320\276\320\273\320\275\320\270\321\202\320\265\320\273\321\214\320\275\321\213\320\265\320\240\320\265\320\272\320\262\320\270\320\267\320\270\321\202\321\213\320\230\320\241\320\262\320\265\320\264\320\265\320\275\320\270\321\217.json" @@ -1782,9 +1782,7 @@ } ] }, - "dataPath": { - "segments": "" - }, + "dataPath": "", "items": [ [ { @@ -1805,9 +1803,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1828,9 +1824,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1851,9 +1845,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1874,9 +1866,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "POPUP", @@ -1896,9 +1886,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "COMMAND_BAR_BUTTON", @@ -1907,9 +1895,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ] @@ -1938,9 +1924,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1961,9 +1945,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "PAGES", @@ -1983,9 +1965,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2006,9 +1986,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "TABLE", @@ -2017,9 +1995,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "segments": "НаборыСвойств" - }, + "dataPath": "НаборыСвойств", "items": [ [ { @@ -2040,9 +2016,7 @@ } ] }, - "dataPath": { - "segments": "НаборыСвойств.Представление" - }, + "dataPath": "НаборыСвойств.Представление", "items": [] }, { @@ -2052,9 +2026,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "НаборыСвойств.Ссылка" - }, + "dataPath": "НаборыСвойств.Ссылка", "items": [] } ], @@ -2081,9 +2053,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "TABLE", @@ -2103,9 +2073,7 @@ } ] }, - "dataPath": { - "segments": "ОбщиеНаборыСвойств" - }, + "dataPath": "ОбщиеНаборыСвойств", "items": [ { "type": "LABEL_FIELD", @@ -2125,9 +2093,7 @@ } ] }, - "dataPath": { - "segments": "ОбщиеНаборыСвойств.Представление" - }, + "dataPath": "ОбщиеНаборыСвойств.Представление", "items": [] } ] @@ -2158,9 +2124,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2181,9 +2145,7 @@ } ] }, - "dataPath": { - "segments": "Свойства" - }, + "dataPath": "Свойства", "items": [ { "type": "INPUT_FIELD", @@ -2192,9 +2154,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Свойства.Заголовок" - }, + "dataPath": "Свойства.Заголовок", "items": [] } ] @@ -2217,9 +2177,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2229,9 +2187,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Items.Свойства.CurrentData.ТипЗначения" - }, + "dataPath": "Items.Свойства.CurrentData.ТипЗначения", "items": [] }, { @@ -2252,9 +2208,7 @@ } ] }, - "dataPath": { - "segments": "Items.Свойства.CurrentData.Подсказка" - }, + "dataPath": "Items.Свойства.CurrentData.Подсказка", "items": [] }, { @@ -2264,9 +2218,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Items.Свойства.CurrentData.ЗаголовокФормыЗначения" - }, + "dataPath": "Items.Свойства.CurrentData.ЗаголовокФормыЗначения", "items": [] }, { @@ -2276,9 +2228,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Items.Свойства.CurrentData.ЗаголовокФормыВыбораЗначения" - }, + "dataPath": "Items.Свойства.CurrentData.ЗаголовокФормыВыбораЗначения", "items": [] } ], @@ -2315,9 +2265,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "RADIO_BUTTON_FIELD", @@ -2337,9 +2285,7 @@ } ] }, - "dataPath": { - "segments": "РежимДобавленияРеквизита" - }, + "dataPath": "РежимДобавленияРеквизита", "items": [] } ] @@ -2362,9 +2308,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2385,9 +2329,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2397,9 +2339,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[7]/synonym" }, - "dataPath": { - "segments": "Объект.Заголовок" - }, + "dataPath": "Объект.Заголовок", "items": [] }, { @@ -2409,9 +2349,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ЭтоДополнительноеСведение" - }, + "dataPath": "ЭтоДополнительноеСведение", "items": [] } ], @@ -2436,9 +2374,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2459,9 +2395,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2471,9 +2405,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "segments": "Объект.ValueType" - }, + "dataPath": "Объект.ValueType", "items": [] }, { @@ -2483,9 +2415,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -2510,9 +2440,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2522,9 +2450,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2545,9 +2471,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -2576,9 +2500,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2599,9 +2521,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2611,9 +2531,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ПредставлениеРеквизита" - }, + "dataPath": "ПредставлениеРеквизита", "items": [] }, { @@ -2623,9 +2541,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.ВыводитьВВидеГиперссылки" - }, + "dataPath": "Объект.ВыводитьВВидеГиперссылки", "items": [] } ], @@ -2650,9 +2566,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2662,9 +2576,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ПредставлениеРеквизита" - }, + "dataPath": "ПредставлениеРеквизита", "items": [] }, { @@ -2685,9 +2597,7 @@ } ] }, - "dataPath": { - "segments": "МногострочноеПолеВводаЧисло" - }, + "dataPath": "МногострочноеПолеВводаЧисло", "items": [] } ], @@ -2716,9 +2626,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2739,9 +2647,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2762,9 +2668,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2774,9 +2678,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2797,9 +2699,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2820,9 +2720,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -2836,9 +2734,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[6]/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2859,9 +2755,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2871,9 +2765,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -2887,9 +2779,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[10]/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2910,9 +2800,7 @@ } ] }, - "dataPath": { - "segments": "Объект.ЗаполнятьОбязательно" - }, + "dataPath": "Объект.ЗаполнятьОбязательно", "items": [] }, { @@ -2922,9 +2810,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -2953,9 +2839,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2965,9 +2849,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[18]/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2977,9 +2859,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.ИдентификаторДляФормул" - }, + "dataPath": "Объект.ИдентификаторДляФормул", "items": [] }, { @@ -2989,9 +2869,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -3005,9 +2883,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "segments": "Объект.Подсказка" - }, + "dataPath": "Объект.Подсказка", "items": [] }, { @@ -3028,9 +2904,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3040,9 +2914,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.ЗаголовокФормыЗначения" - }, + "dataPath": "Объект.ЗаголовокФормыЗначения", "items": [] }, { @@ -3052,9 +2924,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.ЗаголовокФормыВыбораЗначения" - }, + "dataPath": "Объект.ЗаголовокФормыВыбораЗначения", "items": [] } ], @@ -3068,9 +2938,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Комментарий" - }, + "dataPath": "Объект.Комментарий", "items": [] } ], @@ -3095,9 +2963,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3118,9 +2984,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3130,9 +2994,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -3161,9 +3023,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3184,9 +3044,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3207,9 +3065,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "TABLE", @@ -3218,9 +3074,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "segments": "Значения" - }, + "dataPath": "Значения", "items": [ [ { @@ -3230,9 +3084,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[7]/synonym" }, - "dataPath": { - "segments": "Значения.Наименование" - }, + "dataPath": "Значения.Наименование", "items": [] }, { @@ -3242,9 +3094,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Значения.Вес" - }, + "dataPath": "Значения.Вес", "items": [] }, { @@ -3254,9 +3104,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Значения.Ref" - }, + "dataPath": "Значения.Ref", "items": [] } ], @@ -3283,9 +3131,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "TABLE", @@ -3305,9 +3151,7 @@ } ] }, - "dataPath": { - "segments": "ЗначенияДополнительныхРеквизитов" - }, + "dataPath": "ЗначенияДополнительныхРеквизитов", "items": [ [ { @@ -3317,9 +3161,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ЗначенияДополнительныхРеквизитов.Наименование" - }, + "dataPath": "ЗначенияДополнительныхРеквизитов.Наименование", "items": [] }, { @@ -3340,9 +3182,7 @@ } ] }, - "dataPath": { - "segments": "ЗначенияДополнительныхРеквизитов.Вес" - }, + "dataPath": "ЗначенияДополнительныхРеквизитов.Вес", "items": [] } ], @@ -3362,9 +3202,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.ДополнительныеЗначенияСВесом" - }, + "dataPath": "Объект.ДополнительныеЗначенияСВесом", "items": [] }, { @@ -3385,9 +3223,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3408,9 +3244,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3420,9 +3254,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -3455,9 +3287,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "INPUT_FIELD", @@ -3466,9 +3296,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Имя" - }, + "dataPath": "Объект.Имя", "items": [] } ] @@ -3499,9 +3327,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3522,9 +3348,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "COMMAND_BAR_BUTTON", @@ -3533,9 +3357,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ] @@ -3558,9 +3380,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3570,9 +3390,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3582,9 +3400,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -4224,9 +4040,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -4247,9 +4061,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -4270,9 +4082,7 @@ } ] }, - "dataPath": { - "segments": "Список" - }, + "dataPath": "Список", "items": [ [ { @@ -4282,9 +4092,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[7]/synonym" }, - "dataPath": { - "segments": "Список.Description" - }, + "dataPath": "Список.Description", "items": [] }, { @@ -4294,9 +4102,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "segments": "Список.ValueType" - }, + "dataPath": "Список.ValueType", "items": [] }, { @@ -4306,9 +4112,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Ref" - }, + "dataPath": "Список.Ref", "items": [] } ], @@ -4418,9 +4222,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4441,9 +4243,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "PAGES", @@ -4463,9 +4263,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4486,9 +4284,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "LABEL_DECORATION", @@ -4508,9 +4304,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ] @@ -4533,9 +4327,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "LABEL_DECORATION", @@ -4555,9 +4347,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ] @@ -4586,9 +4376,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "PAGES", @@ -4608,9 +4396,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4631,9 +4417,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "LABEL_DECORATION", @@ -4653,9 +4437,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ] @@ -4678,9 +4460,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "LABEL_DECORATION", @@ -4700,9 +4480,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ] @@ -4815,9 +4593,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4838,9 +4614,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4861,9 +4635,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4884,9 +4656,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -4907,9 +4677,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -4923,9 +4691,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ОтдельноеСвойствоСОтдельнымСпискомЗначений" - }, + "dataPath": "ОтдельноеСвойствоСОтдельнымСпискомЗначений", "items": [] }, { @@ -4946,9 +4712,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -4969,9 +4733,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4992,9 +4754,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5004,9 +4764,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ОтдельноеСвойствоСОбщимСпискомЗначений" - }, + "dataPath": "ОтдельноеСвойствоСОбщимСпискомЗначений", "items": [] }, { @@ -5027,9 +4785,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -5054,9 +4810,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5066,9 +4820,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ОбщееСвойство" - }, + "dataPath": "ОбщееСвойство", "items": [] }, { @@ -5089,9 +4841,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -5124,9 +4874,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5147,9 +4895,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5170,9 +4916,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -5193,9 +4937,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -5209,9 +4951,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ОтдельноеСвойствоСОтдельнымСпискомЗначений" - }, + "dataPath": "ОтдельноеСвойствоСОтдельнымСпискомЗначений", "items": [] }, { @@ -5232,9 +4972,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -5255,9 +4993,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5278,9 +5014,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5290,9 +5024,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ОтдельноеСвойствоСОбщимСпискомЗначений" - }, + "dataPath": "ОтдельноеСвойствоСОбщимСпискомЗначений", "items": [] }, { @@ -5313,9 +5045,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -5340,9 +5070,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5352,9 +5080,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ОбщееСвойство" - }, + "dataPath": "ОбщееСвойство", "items": [] }, { @@ -5375,9 +5101,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -5689,9 +5413,7 @@ } ] }, - "dataPath": { - "segments": "ЗависимостиРеквизитов" - }, + "dataPath": "ЗависимостиРеквизитов", "items": [ [ { @@ -5701,9 +5423,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ЗависимостиРеквизитов.Представление" - }, + "dataPath": "ЗависимостиРеквизитов.Представление", "items": [] }, { @@ -5713,9 +5433,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ЗависимостиРеквизитов.Условие" - }, + "dataPath": "ЗависимостиРеквизитов.Условие", "items": [] }, { @@ -5725,9 +5443,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ЗависимостиРеквизитов.Значение" - }, + "dataPath": "ЗависимостиРеквизитов.Значение", "items": [] } ], @@ -5968,9 +5684,7 @@ } ] }, - "dataPath": { - "segments": "РеквизитыОбъекта" - }, + "dataPath": "РеквизитыОбъекта", "items": [ { "type": "INPUT_FIELD", @@ -5979,9 +5693,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "РеквизитыОбъекта.Представление" - }, + "dataPath": "РеквизитыОбъекта.Представление", "items": [] } ] @@ -6030,15 +5742,15 @@ "mdoType": "CHART_OF_CHARACTERISTIC_TYPES", "moduleTypes": [ [ - "ObjectModule", + "ManagerModule", [ - "src/test/resources/ext/designer/ssl_3_1/src/cf/ChartsOfCharacteristicTypes/ДополнительныеРеквизитыИСведения/Ext/ObjectModule.bsl" + "src/test/resources/ext/designer/ssl_3_1/src/cf/ChartsOfCharacteristicTypes/ДополнительныеРеквизитыИСведения/Ext/ManagerModule.bsl" ] ], [ - "ManagerModule", + "ObjectModule", [ - "src/test/resources/ext/designer/ssl_3_1/src/cf/ChartsOfCharacteristicTypes/ДополнительныеРеквизитыИСведения/Ext/ManagerModule.bsl" + "src/test/resources/ext/designer/ssl_3_1/src/cf/ChartsOfCharacteristicTypes/ДополнительныеРеквизитыИСведения/Ext/ObjectModule.bsl" ] ] ], diff --git "a/src/test/resources/fixtures/ssl_3_1/ChartsOfCharacteristicTypes.\320\224\320\276\320\277\320\276\320\273\320\275\320\270\321\202\320\265\320\273\321\214\320\275\321\213\320\265\320\240\320\265\320\272\320\262\320\270\320\267\320\270\321\202\321\213\320\230\320\241\320\262\320\265\320\264\320\265\320\275\320\270\321\217_edt.json" "b/src/test/resources/fixtures/ssl_3_1/ChartsOfCharacteristicTypes.\320\224\320\276\320\277\320\276\320\273\320\275\320\270\321\202\320\265\320\273\321\214\320\275\321\213\320\265\320\240\320\265\320\272\320\262\320\270\320\267\320\270\321\202\321\213\320\230\320\241\320\262\320\265\320\264\320\265\320\275\320\270\321\217_edt.json" index c772d3a77..957b6f867 100644 --- "a/src/test/resources/fixtures/ssl_3_1/ChartsOfCharacteristicTypes.\320\224\320\276\320\277\320\276\320\273\320\275\320\270\321\202\320\265\320\273\321\214\320\275\321\213\320\265\320\240\320\265\320\272\320\262\320\270\320\267\320\270\321\202\321\213\320\230\320\241\320\262\320\265\320\264\320\265\320\275\320\270\321\217_edt.json" +++ "b/src/test/resources/fixtures/ssl_3_1/ChartsOfCharacteristicTypes.\320\224\320\276\320\277\320\276\320\273\320\275\320\270\321\202\320\265\320\273\321\214\320\275\321\213\320\265\320\240\320\265\320\272\320\262\320\270\320\267\320\270\321\202\321\213\320\230\320\241\320\262\320\265\320\264\320\265\320\275\320\270\321\217_edt.json" @@ -1758,9 +1758,7 @@ } ] }, - "dataPath": { - "segments": "" - }, + "dataPath": "", "items": [ [ { @@ -1781,9 +1779,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1804,9 +1800,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1827,9 +1821,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1850,9 +1842,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "POPUP", @@ -1872,9 +1862,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "BUTTON", @@ -1883,9 +1871,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ] @@ -1914,9 +1900,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1937,9 +1921,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "PAGES", @@ -1959,9 +1941,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1982,9 +1962,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "TABLE", @@ -1993,9 +1971,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "segments": "НаборыСвойств" - }, + "dataPath": "НаборыСвойств", "items": [ [ { @@ -2016,9 +1992,7 @@ } ] }, - "dataPath": { - "segments": "НаборыСвойств.Представление" - }, + "dataPath": "НаборыСвойств.Представление", "items": [] }, { @@ -2028,9 +2002,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "НаборыСвойств.Ссылка" - }, + "dataPath": "НаборыСвойств.Ссылка", "items": [] } ], @@ -2057,9 +2029,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "TABLE", @@ -2079,9 +2049,7 @@ } ] }, - "dataPath": { - "segments": "ОбщиеНаборыСвойств" - }, + "dataPath": "ОбщиеНаборыСвойств", "items": [ { "type": "LABEL_FIELD", @@ -2101,9 +2069,7 @@ } ] }, - "dataPath": { - "segments": "ОбщиеНаборыСвойств.Представление" - }, + "dataPath": "ОбщиеНаборыСвойств.Представление", "items": [] } ] @@ -2134,9 +2100,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2157,9 +2121,7 @@ } ] }, - "dataPath": { - "segments": "Свойства" - }, + "dataPath": "Свойства", "items": [ { "type": "INPUT_FIELD", @@ -2168,9 +2130,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Свойства.Заголовок" - }, + "dataPath": "Свойства.Заголовок", "items": [] } ] @@ -2193,9 +2153,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2205,9 +2163,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Items.Свойства.CurrentData.ТипЗначения" - }, + "dataPath": "Items.Свойства.CurrentData.ТипЗначения", "items": [] }, { @@ -2228,9 +2184,7 @@ } ] }, - "dataPath": { - "segments": "Items.Свойства.CurrentData.Подсказка" - }, + "dataPath": "Items.Свойства.CurrentData.Подсказка", "items": [] }, { @@ -2240,9 +2194,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Items.Свойства.CurrentData.ЗаголовокФормыЗначения" - }, + "dataPath": "Items.Свойства.CurrentData.ЗаголовокФормыЗначения", "items": [] }, { @@ -2252,9 +2204,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Items.Свойства.CurrentData.ЗаголовокФормыВыбораЗначения" - }, + "dataPath": "Items.Свойства.CurrentData.ЗаголовокФормыВыбораЗначения", "items": [] } ], @@ -2291,9 +2241,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "RADIO_BUTTON_FIELD", @@ -2313,9 +2261,7 @@ } ] }, - "dataPath": { - "segments": "РежимДобавленияРеквизита" - }, + "dataPath": "РежимДобавленияРеквизита", "items": [] } ] @@ -2338,9 +2284,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2361,9 +2305,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2373,9 +2315,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[7]/synonym" }, - "dataPath": { - "segments": "Объект.Заголовок" - }, + "dataPath": "Объект.Заголовок", "items": [] }, { @@ -2385,9 +2325,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ЭтоДополнительноеСведение" - }, + "dataPath": "ЭтоДополнительноеСведение", "items": [] } ], @@ -2412,9 +2350,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2435,9 +2371,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2447,9 +2381,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "segments": "Объект.ValueType" - }, + "dataPath": "Объект.ValueType", "items": [] }, { @@ -2459,9 +2391,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -2486,9 +2416,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2498,9 +2426,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2521,9 +2447,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -2552,9 +2476,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2575,9 +2497,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2587,9 +2507,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ПредставлениеРеквизита" - }, + "dataPath": "ПредставлениеРеквизита", "items": [] }, { @@ -2599,9 +2517,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.ВыводитьВВидеГиперссылки" - }, + "dataPath": "Объект.ВыводитьВВидеГиперссылки", "items": [] } ], @@ -2626,9 +2542,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2638,9 +2552,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ПредставлениеРеквизита" - }, + "dataPath": "ПредставлениеРеквизита", "items": [] }, { @@ -2661,9 +2573,7 @@ } ] }, - "dataPath": { - "segments": "МногострочноеПолеВводаЧисло" - }, + "dataPath": "МногострочноеПолеВводаЧисло", "items": [] } ], @@ -2692,9 +2602,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2715,9 +2623,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2738,9 +2644,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2750,9 +2654,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2773,9 +2675,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2796,9 +2696,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -2812,9 +2710,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[6]/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2835,9 +2731,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2847,9 +2741,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -2863,9 +2755,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[10]/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2886,9 +2776,7 @@ } ] }, - "dataPath": { - "segments": "Объект.ЗаполнятьОбязательно" - }, + "dataPath": "Объект.ЗаполнятьОбязательно", "items": [] }, { @@ -2898,9 +2786,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -2929,9 +2815,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2941,9 +2825,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[18]/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2953,9 +2835,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.ИдентификаторДляФормул" - }, + "dataPath": "Объект.ИдентификаторДляФормул", "items": [] }, { @@ -2965,9 +2845,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -2981,9 +2859,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "segments": "Объект.Подсказка" - }, + "dataPath": "Объект.Подсказка", "items": [] }, { @@ -3004,9 +2880,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3016,9 +2890,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.ЗаголовокФормыЗначения" - }, + "dataPath": "Объект.ЗаголовокФормыЗначения", "items": [] }, { @@ -3028,9 +2900,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.ЗаголовокФормыВыбораЗначения" - }, + "dataPath": "Объект.ЗаголовокФормыВыбораЗначения", "items": [] } ], @@ -3044,9 +2914,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Комментарий" - }, + "dataPath": "Объект.Комментарий", "items": [] } ], @@ -3071,9 +2939,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3094,9 +2960,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3106,9 +2970,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -3137,9 +2999,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3160,9 +3020,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3183,9 +3041,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "TABLE", @@ -3194,9 +3050,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "segments": "Значения" - }, + "dataPath": "Значения", "items": [ [ { @@ -3206,9 +3060,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[7]/synonym" }, - "dataPath": { - "segments": "Значения.Наименование" - }, + "dataPath": "Значения.Наименование", "items": [] }, { @@ -3218,9 +3070,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Значения.Вес" - }, + "dataPath": "Значения.Вес", "items": [] }, { @@ -3230,9 +3080,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Значения.Ref" - }, + "dataPath": "Значения.Ref", "items": [] } ], @@ -3259,9 +3107,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "TABLE", @@ -3281,9 +3127,7 @@ } ] }, - "dataPath": { - "segments": "ЗначенияДополнительныхРеквизитов" - }, + "dataPath": "ЗначенияДополнительныхРеквизитов", "items": [ [ { @@ -3293,9 +3137,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ЗначенияДополнительныхРеквизитов.Наименование" - }, + "dataPath": "ЗначенияДополнительныхРеквизитов.Наименование", "items": [] }, { @@ -3316,9 +3158,7 @@ } ] }, - "dataPath": { - "segments": "ЗначенияДополнительныхРеквизитов.Вес" - }, + "dataPath": "ЗначенияДополнительныхРеквизитов.Вес", "items": [] } ], @@ -3338,9 +3178,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.ДополнительныеЗначенияСВесом" - }, + "dataPath": "Объект.ДополнительныеЗначенияСВесом", "items": [] }, { @@ -3361,9 +3199,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3384,9 +3220,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3396,9 +3230,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -3431,9 +3263,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "INPUT_FIELD", @@ -3442,9 +3272,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Имя" - }, + "dataPath": "Объект.Имя", "items": [] } ] @@ -3475,9 +3303,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3498,9 +3324,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "BUTTON", @@ -3509,9 +3333,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ] @@ -3534,9 +3356,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3546,9 +3366,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3558,9 +3376,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -4200,9 +4016,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -4223,9 +4037,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -4246,9 +4058,7 @@ } ] }, - "dataPath": { - "segments": "Список" - }, + "dataPath": "Список", "items": [ [ { @@ -4258,9 +4068,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[7]/synonym" }, - "dataPath": { - "segments": "Список.Description" - }, + "dataPath": "Список.Description", "items": [] }, { @@ -4270,9 +4078,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "segments": "Список.ValueType" - }, + "dataPath": "Список.ValueType", "items": [] }, { @@ -4282,9 +4088,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Ref" - }, + "dataPath": "Список.Ref", "items": [] } ], @@ -4394,9 +4198,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4417,9 +4219,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "PAGES", @@ -4439,9 +4239,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4462,9 +4260,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "LABEL", @@ -4484,9 +4280,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ] @@ -4509,9 +4303,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "LABEL", @@ -4531,9 +4323,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ] @@ -4562,9 +4352,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "PAGES", @@ -4584,9 +4372,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4607,9 +4393,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "LABEL", @@ -4629,9 +4413,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ] @@ -4654,9 +4436,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "LABEL", @@ -4676,9 +4456,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ] @@ -4791,9 +4569,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4814,9 +4590,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4837,9 +4611,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4860,9 +4632,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -4883,9 +4653,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -4899,9 +4667,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ОтдельноеСвойствоСОтдельнымСпискомЗначений" - }, + "dataPath": "ОтдельноеСвойствоСОтдельнымСпискомЗначений", "items": [] }, { @@ -4922,9 +4688,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -4945,9 +4709,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4968,9 +4730,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4980,9 +4740,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ОтдельноеСвойствоСОбщимСпискомЗначений" - }, + "dataPath": "ОтдельноеСвойствоСОбщимСпискомЗначений", "items": [] }, { @@ -5003,9 +4761,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -5030,9 +4786,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5042,9 +4796,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ОбщееСвойство" - }, + "dataPath": "ОбщееСвойство", "items": [] }, { @@ -5065,9 +4817,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -5100,9 +4850,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5123,9 +4871,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5146,9 +4892,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -5169,9 +4913,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -5185,9 +4927,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ОтдельноеСвойствоСОтдельнымСпискомЗначений" - }, + "dataPath": "ОтдельноеСвойствоСОтдельнымСпискомЗначений", "items": [] }, { @@ -5208,9 +4948,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -5231,9 +4969,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5254,9 +4990,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5266,9 +5000,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ОтдельноеСвойствоСОбщимСпискомЗначений" - }, + "dataPath": "ОтдельноеСвойствоСОбщимСпискомЗначений", "items": [] }, { @@ -5289,9 +5021,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -5316,9 +5046,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5328,9 +5056,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ОбщееСвойство" - }, + "dataPath": "ОбщееСвойство", "items": [] }, { @@ -5351,9 +5077,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -5665,9 +5389,7 @@ } ] }, - "dataPath": { - "segments": "ЗависимостиРеквизитов" - }, + "dataPath": "ЗависимостиРеквизитов", "items": [ [ { @@ -5677,9 +5399,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ЗависимостиРеквизитов.Представление" - }, + "dataPath": "ЗависимостиРеквизитов.Представление", "items": [] }, { @@ -5689,9 +5409,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ЗависимостиРеквизитов.Условие" - }, + "dataPath": "ЗависимостиРеквизитов.Условие", "items": [] }, { @@ -5701,9 +5419,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "ЗависимостиРеквизитов.Значение" - }, + "dataPath": "ЗависимостиРеквизитов.Значение", "items": [] } ], @@ -5944,9 +5660,7 @@ } ] }, - "dataPath": { - "segments": "РеквизитыОбъекта" - }, + "dataPath": "РеквизитыОбъекта", "items": [ { "type": "INPUT_FIELD", @@ -5955,9 +5669,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "РеквизитыОбъекта.Представление" - }, + "dataPath": "РеквизитыОбъекта.Представление", "items": [] } ] diff --git "a/src/test/resources/fixtures/ssl_3_1/CommonForms.\320\222\320\276\320\277\321\200\320\276\321\201.json" "b/src/test/resources/fixtures/ssl_3_1/CommonForms.\320\222\320\276\320\277\321\200\320\276\321\201.json" index e029b3aac..57143108d 100644 --- "a/src/test/resources/fixtures/ssl_3_1/CommonForms.\320\222\320\276\320\277\321\200\320\276\321\201.json" +++ "b/src/test/resources/fixtures/ssl_3_1/CommonForms.\320\222\320\276\320\277\321\200\320\276\321\201.json" @@ -37,9 +37,7 @@ } ] }, - "dataPath": { - "segments": "" - }, + "dataPath": "", "items": [ [ { @@ -60,9 +58,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.CommonForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -83,9 +79,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.CommonForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -95,9 +89,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.CommonForm/data/title" }, - "dataPath": { - "segments": "ТекстСообщения" - }, + "dataPath": "ТекстСообщения", "items": [] }, { @@ -107,9 +99,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.CommonForm/data/title" }, - "dataPath": { - "segments": "БольшеНеЗадаватьЭтотВопрос" - }, + "dataPath": "БольшеНеЗадаватьЭтотВопрос", "items": [] } ], diff --git "a/src/test/resources/fixtures/ssl_3_1/CommonForms.\320\222\320\276\320\277\321\200\320\276\321\201_edt.json" "b/src/test/resources/fixtures/ssl_3_1/CommonForms.\320\222\320\276\320\277\321\200\320\276\321\201_edt.json" index ffa7135ff..5bb77ccde 100644 --- "a/src/test/resources/fixtures/ssl_3_1/CommonForms.\320\222\320\276\320\277\321\200\320\276\321\201_edt.json" +++ "b/src/test/resources/fixtures/ssl_3_1/CommonForms.\320\222\320\276\320\277\321\200\320\276\321\201_edt.json" @@ -37,9 +37,7 @@ } ] }, - "dataPath": { - "segments": "" - }, + "dataPath": "", "items": [ [ { @@ -60,9 +58,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.CommonForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -83,9 +79,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.CommonForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -95,9 +89,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.CommonForm/data/title" }, - "dataPath": { - "segments": "ТекстСообщения" - }, + "dataPath": "ТекстСообщения", "items": [] }, { @@ -107,9 +99,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.CommonForm/data/title" }, - "dataPath": { - "segments": "БольшеНеЗадаватьЭтотВопрос" - }, + "dataPath": "БольшеНеЗадаватьЭтотВопрос", "items": [] } ], diff --git "a/src/test/resources/fixtures/ssl_3_1/DataProcessors.\320\227\320\260\320\263\321\200\321\203\320\267\320\272\320\260\320\232\321\203\321\200\321\201\320\276\320\262\320\222\320\260\320\273\321\216\321\202.json" "b/src/test/resources/fixtures/ssl_3_1/DataProcessors.\320\227\320\260\320\263\321\200\321\203\320\267\320\272\320\260\320\232\321\203\321\200\321\201\320\276\320\262\320\222\320\260\320\273\321\216\321\202.json" index 6e2c0feb2..3034fde46 100644 --- "a/src/test/resources/fixtures/ssl_3_1/DataProcessors.\320\227\320\260\320\263\321\200\321\203\320\267\320\272\320\260\320\232\321\203\321\200\321\201\320\276\320\262\320\222\320\260\320\273\321\216\321\202.json" +++ "b/src/test/resources/fixtures/ssl_3_1/DataProcessors.\320\227\320\260\320\263\321\200\321\203\320\267\320\272\320\260\320\232\321\203\321\200\321\201\320\276\320\262\320\222\320\260\320\273\321\216\321\202.json" @@ -228,9 +228,7 @@ } ] }, - "dataPath": { - "segments": "" - }, + "dataPath": "", "items": [ [ { @@ -240,9 +238,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -263,9 +259,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -286,9 +280,7 @@ } ] }, - "dataPath": { - "segments": "Объект.НачалоПериодаЗагрузки" - }, + "dataPath": "Объект.НачалоПериодаЗагрузки", "items": [] }, { @@ -309,9 +301,7 @@ } ] }, - "dataPath": { - "segments": "Объект.ОкончаниеПериодаЗагрузки" - }, + "dataPath": "Объект.ОкончаниеПериодаЗагрузки", "items": [] }, { @@ -332,9 +322,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -344,9 +332,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -356,9 +342,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -387,9 +371,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -410,9 +392,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "TABLE", @@ -432,9 +412,7 @@ } ] }, - "dataPath": { - "segments": "Объект.СписокВалют" - }, + "dataPath": "Объект.СписокВалют", "items": [ [ { @@ -444,9 +422,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format" }, - "dataPath": { - "segments": "Объект.СписокВалют.Загружать" - }, + "dataPath": "Объект.СписокВалют.Загружать", "items": [] }, { @@ -467,9 +443,7 @@ } ] }, - "dataPath": { - "segments": "Объект.СписокВалют.КодВалюты" - }, + "dataPath": "Объект.СписокВалют.КодВалюты", "items": [] }, { @@ -490,9 +464,7 @@ } ] }, - "dataPath": { - "segments": "Объект.СписокВалют.СимвольныйКод" - }, + "dataPath": "Объект.СписокВалют.СимвольныйКод", "items": [] }, { @@ -513,9 +485,7 @@ } ] }, - "dataPath": { - "segments": "Объект.СписокВалют.Представление" - }, + "dataPath": "Объект.СписокВалют.Представление", "items": [] }, { @@ -525,9 +495,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format" }, - "dataPath": { - "segments": "Объект.СписокВалют.ДатаКурса" - }, + "dataPath": "Объект.СписокВалют.ДатаКурса", "items": [] }, { @@ -537,9 +505,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format" }, - "dataPath": { - "segments": "Объект.СписокВалют.Курс" - }, + "dataPath": "Объект.СписокВалют.Курс", "items": [] }, { @@ -549,9 +515,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format" }, - "dataPath": { - "segments": "Объект.СписокВалют.Кратность" - }, + "dataPath": "Объект.СписокВалют.Кратность", "items": [] }, { @@ -561,9 +525,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format" }, - "dataPath": { - "segments": "Объект.СписокВалют.Отступ" - }, + "dataPath": "Объект.СписокВалют.Отступ", "items": [] } ], @@ -590,9 +552,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -613,9 +573,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -636,9 +594,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -789,9 +745,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format" }, - "dataPath": { - "segments": "Текст" - }, + "dataPath": "Текст", "items": [] } ], @@ -953,9 +907,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -976,9 +928,7 @@ } ] }, - "dataPath": { - "segments": "ЦелаяЧастьРод" - }, + "dataPath": "ЦелаяЧастьРод", "items": [] }, { @@ -999,9 +949,7 @@ } ] }, - "dataPath": { - "segments": "ЦелаяЧастьОдин" - }, + "dataPath": "ЦелаяЧастьОдин", "items": [] }, { @@ -1022,9 +970,7 @@ } ] }, - "dataPath": { - "segments": "ЦелаяЧатьДва" - }, + "dataPath": "ЦелаяЧатьДва", "items": [] }, { @@ -1045,9 +991,7 @@ } ] }, - "dataPath": { - "segments": "ЦелаяЧастьПять" - }, + "dataPath": "ЦелаяЧастьПять", "items": [] } ], @@ -1072,9 +1016,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1095,9 +1037,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1107,9 +1047,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[3]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "segments": "ДробнаяЧастьРод" - }, + "dataPath": "ДробнаяЧастьРод", "items": [] }, { @@ -1119,9 +1057,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[3]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "segments": "ДробнаяЧастьОдин" - }, + "dataPath": "ДробнаяЧастьОдин", "items": [] }, { @@ -1131,9 +1067,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[3]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title" }, - "dataPath": { - "segments": "ДробнаяЧастьДва" - }, + "dataPath": "ДробнаяЧастьДва", "items": [] }, { @@ -1143,9 +1077,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[3]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/title" }, - "dataPath": { - "segments": "ДробнаяЧастьПять" - }, + "dataPath": "ДробнаяЧастьПять", "items": [] } ], @@ -1170,9 +1102,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "INPUT_FIELD", @@ -1181,9 +1111,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format" }, - "dataPath": { - "segments": "ДлинаДробнойЧасти" - }, + "dataPath": "ДлинаДробнойЧасти", "items": [] } ] @@ -1210,9 +1138,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1233,9 +1159,7 @@ } ] }, - "dataPath": { - "segments": "СуммаЧисло" - }, + "dataPath": "СуммаЧисло", "items": [] }, { @@ -1245,9 +1169,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format" }, - "dataPath": { - "segments": "СуммаПрописью" - }, + "dataPath": "СуммаПрописью", "items": [] } ], @@ -1836,9 +1758,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "segments": "Валюты" - }, + "dataPath": "Валюты", "items": [ [ { @@ -1848,9 +1768,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "segments": "Валюты.КодВалютыЦифровой" - }, + "dataPath": "Валюты.КодВалютыЦифровой", "items": [] }, { @@ -1860,9 +1778,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title" }, - "dataPath": { - "segments": "Валюты.КодВалютыБуквенный" - }, + "dataPath": "Валюты.КодВалютыБуквенный", "items": [] }, { @@ -1872,9 +1788,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format" }, - "dataPath": { - "segments": "Валюты.Наименование" - }, + "dataPath": "Валюты.Наименование", "items": [] }, { @@ -1884,9 +1798,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format" }, - "dataPath": { - "segments": "Валюты.СтраныИТерритории" - }, + "dataPath": "Валюты.СтраныИТерритории", "items": [] }, { @@ -1896,9 +1808,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format" }, - "dataPath": { - "segments": "Валюты.Загружается" - }, + "dataPath": "Валюты.Загружается", "items": [] } ], @@ -1960,15 +1870,15 @@ "mdoType": "DATA_PROCESSOR", "moduleTypes": [ [ - "ObjectModule", + "ManagerModule", [ - "src/test/resources/ext/designer/ssl_3_1/src/cf/DataProcessors/ЗагрузкаКурсовВалют/Ext/ObjectModule.bsl" + "src/test/resources/ext/designer/ssl_3_1/src/cf/DataProcessors/ЗагрузкаКурсовВалют/Ext/ManagerModule.bsl" ] ], [ - "ManagerModule", + "ObjectModule", [ - "src/test/resources/ext/designer/ssl_3_1/src/cf/DataProcessors/ЗагрузкаКурсовВалют/Ext/ManagerModule.bsl" + "src/test/resources/ext/designer/ssl_3_1/src/cf/DataProcessors/ЗагрузкаКурсовВалют/Ext/ObjectModule.bsl" ] ] ], diff --git "a/src/test/resources/fixtures/ssl_3_1/DataProcessors.\320\227\320\260\320\263\321\200\321\203\320\267\320\272\320\260\320\232\321\203\321\200\321\201\320\276\320\262\320\222\320\260\320\273\321\216\321\202_edt.json" "b/src/test/resources/fixtures/ssl_3_1/DataProcessors.\320\227\320\260\320\263\321\200\321\203\320\267\320\272\320\260\320\232\321\203\321\200\321\201\320\276\320\262\320\222\320\260\320\273\321\216\321\202_edt.json" index 3973176f3..af6c625df 100644 --- "a/src/test/resources/fixtures/ssl_3_1/DataProcessors.\320\227\320\260\320\263\321\200\321\203\320\267\320\272\320\260\320\232\321\203\321\200\321\201\320\276\320\262\320\222\320\260\320\273\321\216\321\202_edt.json" +++ "b/src/test/resources/fixtures/ssl_3_1/DataProcessors.\320\227\320\260\320\263\321\200\321\203\320\267\320\272\320\260\320\232\321\203\321\200\321\201\320\276\320\262\320\222\320\260\320\273\321\216\321\202_edt.json" @@ -228,9 +228,7 @@ } ] }, - "dataPath": { - "segments": "" - }, + "dataPath": "", "items": [ [ { @@ -240,9 +238,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -263,9 +259,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -286,9 +280,7 @@ } ] }, - "dataPath": { - "segments": "Объект.НачалоПериодаЗагрузки" - }, + "dataPath": "Объект.НачалоПериодаЗагрузки", "items": [] }, { @@ -309,9 +301,7 @@ } ] }, - "dataPath": { - "segments": "Объект.ОкончаниеПериодаЗагрузки" - }, + "dataPath": "Объект.ОкончаниеПериодаЗагрузки", "items": [] }, { @@ -332,9 +322,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -344,9 +332,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -356,9 +342,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -387,9 +371,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -410,9 +392,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "TABLE", @@ -432,9 +412,7 @@ } ] }, - "dataPath": { - "segments": "Объект.СписокВалют" - }, + "dataPath": "Объект.СписокВалют", "items": [ [ { @@ -444,9 +422,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format" }, - "dataPath": { - "segments": "Объект.СписокВалют.Загружать" - }, + "dataPath": "Объект.СписокВалют.Загружать", "items": [] }, { @@ -467,9 +443,7 @@ } ] }, - "dataPath": { - "segments": "Объект.СписокВалют.КодВалюты" - }, + "dataPath": "Объект.СписокВалют.КодВалюты", "items": [] }, { @@ -490,9 +464,7 @@ } ] }, - "dataPath": { - "segments": "Объект.СписокВалют.СимвольныйКод" - }, + "dataPath": "Объект.СписокВалют.СимвольныйКод", "items": [] }, { @@ -513,9 +485,7 @@ } ] }, - "dataPath": { - "segments": "Объект.СписокВалют.Представление" - }, + "dataPath": "Объект.СписокВалют.Представление", "items": [] }, { @@ -525,9 +495,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format" }, - "dataPath": { - "segments": "Объект.СписокВалют.ДатаКурса" - }, + "dataPath": "Объект.СписокВалют.ДатаКурса", "items": [] }, { @@ -537,9 +505,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format" }, - "dataPath": { - "segments": "Объект.СписокВалют.Курс" - }, + "dataPath": "Объект.СписокВалют.Курс", "items": [] }, { @@ -549,9 +515,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format" }, - "dataPath": { - "segments": "Объект.СписокВалют.Кратность" - }, + "dataPath": "Объект.СписокВалют.Кратность", "items": [] }, { @@ -561,9 +525,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format" }, - "dataPath": { - "segments": "Объект.СписокВалют.Отступ" - }, + "dataPath": "Объект.СписокВалют.Отступ", "items": [] } ], @@ -590,9 +552,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -613,9 +573,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -636,9 +594,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -789,9 +745,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format" }, - "dataPath": { - "segments": "Текст" - }, + "dataPath": "Текст", "items": [] } ], @@ -953,9 +907,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -976,9 +928,7 @@ } ] }, - "dataPath": { - "segments": "ЦелаяЧастьРод" - }, + "dataPath": "ЦелаяЧастьРод", "items": [] }, { @@ -999,9 +949,7 @@ } ] }, - "dataPath": { - "segments": "ЦелаяЧастьОдин" - }, + "dataPath": "ЦелаяЧастьОдин", "items": [] }, { @@ -1022,9 +970,7 @@ } ] }, - "dataPath": { - "segments": "ЦелаяЧатьДва" - }, + "dataPath": "ЦелаяЧатьДва", "items": [] }, { @@ -1045,9 +991,7 @@ } ] }, - "dataPath": { - "segments": "ЦелаяЧастьПять" - }, + "dataPath": "ЦелаяЧастьПять", "items": [] } ], @@ -1072,9 +1016,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1095,9 +1037,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1107,9 +1047,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[3]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "segments": "ДробнаяЧастьРод" - }, + "dataPath": "ДробнаяЧастьРод", "items": [] }, { @@ -1119,9 +1057,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[3]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "segments": "ДробнаяЧастьОдин" - }, + "dataPath": "ДробнаяЧастьОдин", "items": [] }, { @@ -1131,9 +1067,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[3]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title" }, - "dataPath": { - "segments": "ДробнаяЧастьДва" - }, + "dataPath": "ДробнаяЧастьДва", "items": [] }, { @@ -1143,9 +1077,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[3]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/title" }, - "dataPath": { - "segments": "ДробнаяЧастьПять" - }, + "dataPath": "ДробнаяЧастьПять", "items": [] } ], @@ -1170,9 +1102,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "INPUT_FIELD", @@ -1181,9 +1111,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format" }, - "dataPath": { - "segments": "ДлинаДробнойЧасти" - }, + "dataPath": "ДлинаДробнойЧасти", "items": [] } ] @@ -1210,9 +1138,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1233,9 +1159,7 @@ } ] }, - "dataPath": { - "segments": "СуммаЧисло" - }, + "dataPath": "СуммаЧисло", "items": [] }, { @@ -1245,9 +1169,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format" }, - "dataPath": { - "segments": "СуммаПрописью" - }, + "dataPath": "СуммаПрописью", "items": [] } ], @@ -1836,9 +1758,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "segments": "Валюты" - }, + "dataPath": "Валюты", "items": [ [ { @@ -1848,9 +1768,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "segments": "Валюты.КодВалютыЦифровой" - }, + "dataPath": "Валюты.КодВалютыЦифровой", "items": [] }, { @@ -1860,9 +1778,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title" }, - "dataPath": { - "segments": "Валюты.КодВалютыБуквенный" - }, + "dataPath": "Валюты.КодВалютыБуквенный", "items": [] }, { @@ -1872,9 +1788,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format" }, - "dataPath": { - "segments": "Валюты.Наименование" - }, + "dataPath": "Валюты.Наименование", "items": [] }, { @@ -1884,9 +1798,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format" }, - "dataPath": { - "segments": "Валюты.СтраныИТерритории" - }, + "dataPath": "Валюты.СтраныИТерритории", "items": [] }, { @@ -1896,9 +1808,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format" }, - "dataPath": { - "segments": "Валюты.Загружается" - }, + "dataPath": "Валюты.Загружается", "items": [] } ], diff --git "a/src/test/resources/fixtures/ssl_3_1/DocumentJournals.\320\222\320\267\320\260\320\270\320\274\320\276\320\264\320\265\320\271\321\201\321\202\320\262\320\270\321\217.json" "b/src/test/resources/fixtures/ssl_3_1/DocumentJournals.\320\222\320\267\320\260\320\270\320\274\320\276\320\264\320\265\320\271\321\201\321\202\320\262\320\270\321\217.json" index 261db998c..4f30fe087 100644 --- "a/src/test/resources/fixtures/ssl_3_1/DocumentJournals.\320\222\320\267\320\260\320\270\320\274\320\276\320\264\320\265\320\271\321\201\321\202\320\262\320\270\321\217.json" +++ "b/src/test/resources/fixtures/ssl_3_1/DocumentJournals.\320\222\320\267\320\260\320\270\320\274\320\276\320\264\320\265\320\271\321\201\321\202\320\262\320\270\321\217.json" @@ -1448,9 +1448,7 @@ } ] }, - "dataPath": { - "segments": "" - }, + "dataPath": "", "items": [ [ { @@ -1471,9 +1469,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1494,9 +1490,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -1521,9 +1515,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1544,9 +1536,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1567,9 +1557,7 @@ } ] }, - "dataPath": { - "segments": "СтрокаПоиска" - }, + "dataPath": "СтрокаПоиска", "items": [] }, { @@ -1590,9 +1578,7 @@ } ] }, - "dataPath": { - "segments": "ТипВзаимодействия" - }, + "dataPath": "ТипВзаимодействия", "items": [] }, { @@ -1602,9 +1588,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "Статус" - }, + "dataPath": "Статус", "items": [] }, { @@ -1614,9 +1598,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/columns/c/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn[3]/synonym" }, - "dataPath": { - "segments": "Ответственный" - }, + "dataPath": "Ответственный", "items": [] } ], @@ -1641,9 +1623,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1664,9 +1644,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1676,9 +1654,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1699,9 +1675,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1711,9 +1685,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1723,9 +1695,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1735,9 +1705,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1747,9 +1715,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -1774,9 +1740,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1797,9 +1761,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1809,9 +1771,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1821,9 +1781,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1833,9 +1791,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1845,9 +1801,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1857,9 +1811,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -1884,9 +1836,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1907,9 +1857,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1919,9 +1867,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1931,9 +1877,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1943,9 +1887,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -1959,9 +1901,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1982,9 +1922,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2005,9 +1943,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2017,9 +1953,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2029,9 +1963,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2041,9 +1973,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2053,9 +1983,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2065,9 +1993,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -2092,9 +2018,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2115,9 +2039,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2138,9 +2060,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2150,9 +2070,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2162,9 +2080,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2185,9 +2101,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "COMMAND_BAR_BUTTON", @@ -2196,9 +2110,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ] @@ -2210,9 +2122,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2222,9 +2132,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2234,9 +2142,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2246,9 +2152,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -2266,9 +2170,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2278,9 +2180,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2290,9 +2190,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2302,9 +2200,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2314,9 +2210,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2326,9 +2220,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -2353,9 +2245,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2365,9 +2255,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -2392,9 +2280,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2415,9 +2301,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "PAGES", @@ -2437,9 +2321,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2460,9 +2342,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2483,9 +2363,7 @@ } ] }, - "dataPath": { - "segments": "КонтактыПанельНавигации" - }, + "dataPath": "КонтактыПанельНавигации", "items": [ { "type": "COLUMN_GROUP", @@ -2505,9 +2383,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2517,9 +2393,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "КонтактыПанельНавигации.Контакт" - }, + "dataPath": "КонтактыПанельНавигации.Контакт", "items": [] }, { @@ -2540,9 +2414,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2552,9 +2424,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "КонтактыПанельНавигации.КоличествоНеРассмотрено" - }, + "dataPath": "КонтактыПанельНавигации.КоличествоНеРассмотрено", "items": [] }, { @@ -2575,9 +2445,7 @@ } ] }, - "dataPath": { - "segments": "КонтактыПанельНавигации.ДатаПоследнегоВзаимодействия" - }, + "dataPath": "КонтактыПанельНавигации.ДатаПоследнегоВзаимодействия", "items": [] } ], @@ -2597,9 +2465,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -2624,9 +2490,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2647,9 +2511,7 @@ } ] }, - "dataPath": { - "segments": "ПредметыПанельНавигации" - }, + "dataPath": "ПредметыПанельНавигации", "items": [ { "type": "COLUMN_GROUP", @@ -2669,9 +2531,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2692,9 +2552,7 @@ } ] }, - "dataPath": { - "segments": "ПредметыПанельНавигации.Предмет" - }, + "dataPath": "ПредметыПанельНавигации.Предмет", "items": [] }, { @@ -2715,9 +2573,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2727,9 +2583,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "ПредметыПанельНавигации.КоличествоНеРассмотрено" - }, + "dataPath": "ПредметыПанельНавигации.КоличествоНеРассмотрено", "items": [] }, { @@ -2739,9 +2593,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "segments": "ПредметыПанельНавигации.ДатаПоследнегоВзаимодействия" - }, + "dataPath": "ПредметыПанельНавигации.ДатаПоследнегоВзаимодействия", "items": [] } ], @@ -2761,9 +2613,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -2788,9 +2638,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "TABLE", @@ -2810,9 +2658,7 @@ } ] }, - "dataPath": { - "segments": "Закладки" - }, + "dataPath": "Закладки", "items": [ { "type": "LABEL_FIELD", @@ -2821,9 +2667,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "segments": "Закладки.Description" - }, + "dataPath": "Закладки.Description", "items": [] } ] @@ -2848,9 +2692,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "TABLE", @@ -2870,9 +2712,7 @@ } ] }, - "dataPath": { - "segments": "Свойства" - }, + "dataPath": "Свойства", "items": [ { "type": "COLUMN_GROUP", @@ -2892,9 +2732,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2904,9 +2742,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "Свойства.Представление" - }, + "dataPath": "Свойства.Представление", "items": [] }, { @@ -2916,9 +2752,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "Свойства.НомерКартинки" - }, + "dataPath": "Свойства.НомерКартинки", "items": [] } ], @@ -2947,9 +2781,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "TABLE", @@ -2969,9 +2801,7 @@ } ] }, - "dataPath": { - "segments": "Папки" - }, + "dataPath": "Папки", "items": [ { "type": "COLUMN_GROUP", @@ -2991,9 +2821,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3003,9 +2831,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "Папки.НомерКартинки" - }, + "dataPath": "Папки.НомерКартинки", "items": [] }, { @@ -3015,9 +2841,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "Папки.Представление" - }, + "dataPath": "Папки.Представление", "items": [] } ], @@ -3046,9 +2870,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "TABLE", @@ -3068,9 +2890,7 @@ } ] }, - "dataPath": { - "segments": "Категории" - }, + "dataPath": "Категории", "items": [ { "type": "COLUMN_GROUP", @@ -3090,9 +2910,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3102,9 +2920,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "Категории.НомерКартинки" - }, + "dataPath": "Категории.НомерКартинки", "items": [] }, { @@ -3114,9 +2930,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "Категории.Представление" - }, + "dataPath": "Категории.Представление", "items": [] } ], @@ -3151,9 +2965,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3163,9 +2975,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "segments": "Список" - }, + "dataPath": "Список", "items": [ [ { @@ -3186,9 +2996,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3209,9 +3017,7 @@ } ] }, - "dataPath": { - "segments": "Список.НомерКартинки" - }, + "dataPath": "Список.НомерКартинки", "items": [] }, { @@ -3232,9 +3038,7 @@ } ] }, - "dataPath": { - "segments": "Список.ВажностьНомерКартинки" - }, + "dataPath": "Список.ВажностьНомерКартинки", "items": [] } ], @@ -3259,9 +3063,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3282,9 +3084,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3294,9 +3094,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "Список.Участники" - }, + "dataPath": "Список.Участники", "items": [] }, { @@ -3317,9 +3115,7 @@ } ] }, - "dataPath": { - "segments": "Список.ПолученоОтправлено" - }, + "dataPath": "Список.ПолученоОтправлено", "items": [] }, { @@ -3329,9 +3125,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "Список.Date" - }, + "dataPath": "Список.Date", "items": [] }, { @@ -3341,9 +3135,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "Список.ЕстьВложения" - }, + "dataPath": "Список.ЕстьВложения", "items": [] } ], @@ -3357,9 +3149,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "Список.Тема" - }, + "dataPath": "Список.Тема", "items": [] } ], @@ -3373,9 +3163,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/columns/c/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn[11]/synonym" }, - "dataPath": { - "segments": "Список.Размер" - }, + "dataPath": "Список.Размер", "items": [] }, { @@ -3385,9 +3173,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "Список.УчетнаяЗапись" - }, + "dataPath": "Список.УчетнаяЗапись", "items": [] }, { @@ -3397,9 +3183,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "Список.Ref" - }, + "dataPath": "Список.Ref", "items": [] } ], @@ -3424,9 +3208,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3447,9 +3229,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "TEXT_DOCUMENT_FIELD", @@ -3458,9 +3238,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "Предпросмотр" - }, + "dataPath": "Предпросмотр", "items": [] } ] @@ -3483,9 +3261,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3506,9 +3282,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3518,9 +3292,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3541,9 +3313,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -3557,9 +3327,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "ПредпросмотрHTML" - }, + "dataPath": "ПредпросмотрHTML", "items": [] } ], @@ -3577,9 +3345,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "ОписаниеНайденоПолнотекстовымПоиском" - }, + "dataPath": "ОписаниеНайденоПолнотекстовымПоиском", "items": [] } ], @@ -4948,9 +4714,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -4960,9 +4724,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4972,9 +4734,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -4984,9 +4744,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "ТипВзаимодействия" - }, + "dataPath": "ТипВзаимодействия", "items": [] }, { @@ -4996,9 +4754,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "Статус" - }, + "dataPath": "Статус", "items": [] }, { @@ -5008,9 +4764,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/columns/c/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn[3]/synonym" }, - "dataPath": { - "segments": "Ответственный" - }, + "dataPath": "Ответственный", "items": [] } ], @@ -5035,9 +4789,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5058,9 +4810,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "TABLE", @@ -5069,9 +4819,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "segments": "Список" - }, + "dataPath": "Список", "items": [ [ { @@ -5081,9 +4829,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5104,9 +4850,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5116,9 +4860,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "segments": "Список.НомерКартинки" - }, + "dataPath": "Список.НомерКартинки", "items": [] }, { @@ -5128,9 +4870,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "Список.Участники" - }, + "dataPath": "Список.Участники", "items": [] }, { @@ -5140,9 +4880,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "Список.Date" - }, + "dataPath": "Список.Date", "items": [] }, { @@ -5152,9 +4890,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "Список.ЕстьВложения" - }, + "dataPath": "Список.ЕстьВложения", "items": [] } ], @@ -5168,9 +4904,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/columns/c/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn[4]/synonym" }, - "dataPath": { - "segments": "Список.Тема" - }, + "dataPath": "Список.Тема", "items": [] } ], @@ -5184,9 +4918,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "Список.Ref" - }, + "dataPath": "Список.Ref", "items": [] } ], @@ -5213,9 +4945,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "TABLE", @@ -5235,9 +4965,7 @@ } ] }, - "dataPath": { - "segments": "ДеревоВзаимодействий" - }, + "dataPath": "ДеревоВзаимодействий", "items": [ { "type": "COLUMN_GROUP", @@ -5257,9 +4985,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5280,9 +5006,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5292,9 +5016,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "ДеревоВзаимодействий.НомерКартинки" - }, + "dataPath": "ДеревоВзаимодействий.НомерКартинки", "items": [] }, { @@ -5304,9 +5026,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "ДеревоВзаимодействий.Участники" - }, + "dataPath": "ДеревоВзаимодействий.Участники", "items": [] }, { @@ -5316,9 +5036,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "ДеревоВзаимодействий.Дата" - }, + "dataPath": "ДеревоВзаимодействий.Дата", "items": [] } ], @@ -5332,9 +5050,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "ДеревоВзаимодействий.Тема" - }, + "dataPath": "ДеревоВзаимодействий.Тема", "items": [] } ], @@ -5740,9 +5456,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5752,9 +5466,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -5764,9 +5476,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -5780,9 +5490,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5792,9 +5500,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -5804,9 +5510,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -5820,9 +5524,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "ТекстHTML" - }, + "dataPath": "ТекстHTML", "items": [] }, { @@ -5843,9 +5545,7 @@ } ] }, - "dataPath": { - "segments": "Вложения" - }, + "dataPath": "Вложения", "items": [ { "type": "COLUMN_GROUP", @@ -5854,9 +5554,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5866,9 +5564,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "Вложения.ИндексКартинки" - }, + "dataPath": "Вложения.ИндексКартинки", "items": [] }, { @@ -5878,9 +5574,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "Вложения.ИмяФайла" - }, + "dataPath": "Вложения.ИмяФайла", "items": [] }, { @@ -5890,9 +5584,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "Вложения.РазмерПредставление" - }, + "dataPath": "Вложения.РазмерПредставление", "items": [] } ], @@ -6495,9 +6187,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -6518,9 +6208,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -6530,9 +6218,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "Создано" - }, + "dataPath": "Создано", "items": [] }, { @@ -6553,9 +6239,7 @@ } ] }, - "dataPath": { - "segments": "ОтправленоПолучено" - }, + "dataPath": "ОтправленоПолучено", "items": [] } ], @@ -6580,9 +6264,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -6592,9 +6274,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "ВнутреннийНомер" - }, + "dataPath": "ВнутреннийНомер", "items": [] }, { @@ -6604,9 +6284,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "ВключатьТелоИсходногоПисьма" - }, + "dataPath": "ВключатьТелоИсходногоПисьма", "items": [] } ], @@ -6624,9 +6302,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "Папка" - }, + "dataPath": "Папка", "items": [] }, { @@ -6647,9 +6323,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -6659,9 +6333,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "УведомитьОДоставке" - }, + "dataPath": "УведомитьОДоставке", "items": [] }, { @@ -6671,9 +6343,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "УведомитьОПрочтении" - }, + "dataPath": "УведомитьОПрочтении", "items": [] } ], @@ -6687,9 +6357,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "ЗаголовкиИнтернета" - }, + "dataPath": "ЗаголовкиИнтернета", "items": [] } ], @@ -7181,9 +6849,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -7204,9 +6870,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -7227,9 +6891,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "USUAL_GROUP", @@ -7249,9 +6911,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -7272,9 +6932,7 @@ } ] }, - "dataPath": { - "segments": "ВключатьПодписьДляНовыхСообщений" - }, + "dataPath": "ВключатьПодписьДляНовыхСообщений", "items": [] }, { @@ -7295,9 +6953,7 @@ } ] }, - "dataPath": { - "segments": "ФорматПодписиДляНовыхСообщений" - }, + "dataPath": "ФорматПодписиДляНовыхСообщений", "items": [] }, { @@ -7318,9 +6974,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -7341,9 +6995,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -7364,9 +7016,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "INPUT_FIELD", @@ -7375,9 +7025,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "ПодписьДляНовыхСообщенийПростойТекст" - }, + "dataPath": "ПодписьДляНовыхСообщенийПростойТекст", "items": [] } ] @@ -7400,9 +7048,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -7423,9 +7069,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -7435,9 +7079,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "НовоеСообщениеФорматированныйДокумент" - }, + "dataPath": "НовоеСообщениеФорматированныйДокумент", "items": [] } ], @@ -7472,9 +7114,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "USUAL_GROUP", @@ -7494,9 +7134,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -7517,9 +7155,7 @@ } ] }, - "dataPath": { - "segments": "ВключатьПодписьПриОтветеПересылке" - }, + "dataPath": "ВключатьПодписьПриОтветеПересылке", "items": [] }, { @@ -7529,9 +7165,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[5]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "segments": "ФорматПодписиПриОтветеПересылке" - }, + "dataPath": "ФорматПодписиПриОтветеПересылке", "items": [] }, { @@ -7552,9 +7186,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -7575,9 +7207,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "INPUT_FIELD", @@ -7586,9 +7216,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "ПодписьПриОтветеПересылкеПростойТекст" - }, + "dataPath": "ПодписьПриОтветеПересылкеПростойТекст", "items": [] } ] @@ -7600,9 +7228,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[5]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -7623,9 +7249,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -7635,9 +7259,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "ПриОтветеПересылкеФорматированныйДокумент" - }, + "dataPath": "ПриОтветеПересылкеФорматированныйДокумент", "items": [] } ], @@ -7672,9 +7294,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "USUAL_GROUP", @@ -7694,9 +7314,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -7717,9 +7335,7 @@ } ] }, - "dataPath": { - "segments": "ВсегдаЗапрашиватьУведомлениеОПрочтении" - }, + "dataPath": "ВсегдаЗапрашиватьУведомлениеОПрочтении", "items": [] }, { @@ -7740,9 +7356,7 @@ } ] }, - "dataPath": { - "segments": "ВсегдаЗапрашиватьУведомленияОДоставке" - }, + "dataPath": "ВсегдаЗапрашиватьУведомленияОДоставке", "items": [] }, { @@ -7752,9 +7366,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "ПорядокОтветовНаЗапросыУведомленийОПрочтении" - }, + "dataPath": "ПорядокОтветовНаЗапросыУведомленийОПрочтении", "items": [] } ], @@ -7781,9 +7393,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -7793,9 +7403,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "ОтображатьТелоИсходногоПисьма" - }, + "dataPath": "ОтображатьТелоИсходногоПисьма", "items": [] }, { @@ -7805,9 +7413,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "ВключатьТелоИсходногоПисьма" - }, + "dataPath": "ВключатьТелоИсходногоПисьма", "items": [] }, { @@ -7828,9 +7434,7 @@ } ] }, - "dataPath": { - "segments": "ОтправлятьСообщенияСразу" - }, + "dataPath": "ОтправлятьСообщенияСразу", "items": [] } ], @@ -8400,9 +8004,7 @@ } ] }, - "dataPath": { - "segments": "ТаблицаТиповПредметов" - }, + "dataPath": "ТаблицаТиповПредметов", "items": [ { "type": "INPUT_FIELD", @@ -8411,9 +8013,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "ТаблицаТиповПредметов.ПредставлениеТипа" - }, + "dataPath": "ТаблицаТиповПредметов.ПредставлениеТипа", "items": [] } ] @@ -8425,9 +8025,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "НеОтображатьВзаимодействия" - }, + "dataPath": "НеОтображатьВзаимодействия", "items": [] } ], @@ -8650,10 +8248,8 @@ "dataSource": "ИсточникДанных1", "items": [], "querySource": { - "position": { - "line": 142, - "column": 10 - }, + "line": 142, + "column": 10, "textQuery": "ВЫБРАТЬ РАЗРЕШЕННЫЕ\n\tЖурналДокументовВзаимодействия.Ссылка,\n\tЖурналДокументовВзаимодействия.Дата,\n\tЖурналДокументовВзаимодействия.ПометкаУдаления,\n\tЖурналДокументовВзаимодействия.Номер,\n\tЖурналДокументовВзаимодействия.Проведен,\n\tЖурналДокументовВзаимодействия.Автор,\n\tЖурналДокументовВзаимодействия.Входящий,\n\tЖурналДокументовВзаимодействия.Тема,\n\tЖурналДокументовВзаимодействия.Ответственный КАК Ответственный,\n\tЕСТЬNULL(ПредметыВзаимодействий.Рассмотрено, Ложь) КАК Рассмотрено,\n\tЕСТЬNULL(ПредметыВзаимодействий.РассмотретьПосле, ДатаВремя(1,1,1)) КАК РассмотретьПосле,\n\tЖурналДокументовВзаимодействия.Участники,\n\tЖурналДокументовВзаимодействия.Тип,\n\tЖурналДокументовВзаимодействия.СтатусИсходящегоПисьма,\n\tЖурналДокументовВзаимодействия.ЕстьВложения,\n\tЖурналДокументовВзаимодействия.УчетнаяЗапись,\n\tЕСТЬNULL(ПредметыВзаимодействий.Предмет, НЕОПРЕДЕЛЕНО) КАК Предмет,\n\tТИПЗНАЧЕНИЯ(ПредметыВзаимодействий.Предмет) КАК ТипПредмета,\n\tСостоянияПредметовВзаимодействий.Активен КАК ПредметАктивен,\n\tПредметыВзаимодействий.ПапкаЭлектронногоПисьма КАК Папка,\n\tЖурналДокументовВзаимодействия.ПолученоОтправлено,\n\tЖурналДокументовВзаимодействия.Размер,\n\tЖурналДокументовВзаимодействия.Важность,\n\tВЫБОР\n\t\tКОГДА ЖурналДокументовВзаимодействия.Важность = ЗНАЧЕНИЕ(Перечисление.ВариантыВажностиВзаимодействия.Высокая) ТОГДА 2\n\t\tКОГДА ЖурналДокументовВзаимодействия.Важность = ЗНАЧЕНИЕ(Перечисление.ВариантыВажностиВзаимодействия.Низкая) ТОГДА 0\n\t\tИНАЧЕ 1\n\tКОНЕЦ КАК ВажностьНомерКартинки\nИЗ\n\tЖурналДокументов.Взаимодействия КАК ЖурналДокументовВзаимодействия\n\t\t{ЛЕВОЕ СОЕДИНЕНИЕ РегистрСведений.ПредметыПапкиВзаимодействий КАК ПредметыВзаимодействий\n\t\t\tЛЕВОЕ СОЕДИНЕНИЕ РегистрСведений.СостоянияПредметовВзаимодействий КАК СостоянияПредметовВзаимодействий\n\t\t\tПО ПредметыВзаимодействий.Предмет = СостоянияПредметовВзаимодействий.Предмет\n\t\tПО ЖурналДокументовВзаимодействия.Ссылка = ПредметыВзаимодействий.Взаимодействие}\n{ГДЕ\n\t(ЖурналДокументовВзаимодействия.Дата МЕЖДУ &ДатаНачала И &ДатаОкончания)}" }, "fields": [ @@ -8801,10 +8397,8 @@ "dataSource": "ИсточникДанных1", "items": [], "querySource": { - "position": { - "line": 90, - "column": 10 - }, + "line": 90, + "column": 10, "textQuery": "ВЫБРАТЬ РАЗРЕШЕННЫЕ\n\tВзаимодействия.Ссылка,\n\tПредметыПапкиВзаимодействий.Предмет,\n\tВзаимодействия.Ответственный КАК Ответственный,\n\tЕСТЬNULL(ПредметыПапкиВзаимодействий.Рассмотрено, Ложь) КАК Рассмотрено,\n\tЕСТЬNULL(ПредметыПапкиВзаимодействий.РассмотретьПосле, ДатаВремя(1,1,1)) КАК РассмотретьПосле,\n\tВзаимодействия.Тип,\n\tВзаимодействия.СтатусИсходящегоПисьма,\n\tВзаимодействия.ПометкаУдаления,\n\tВзаимодействия.Входящий\nПОМЕСТИТЬ ПредОтбор\nИЗ\n\tЖурналДокументов.Взаимодействия КАК Взаимодействия\n\t\tВНУТРЕННЕЕ СОЕДИНЕНИЕ РегистрСведений.ПредметыПапкиВзаимодействий КАК ПредметыПапкиВзаимодействий\n\t\tПО Взаимодействия.Ссылка = ПредметыПапкиВзаимодействий.Взаимодействие\n{ГДЕ\n\t(Взаимодействия.Дата МЕЖДУ &НачалоПериода И &КонецПериода)}\n;\n\n////////////////////////////////////////////////////////////////////////////////\nВЫБРАТЬ РАЗРЕШЕННЫЕ\n\tВЫБОР\n\t\tКОГДА Взаимодействия.Ссылка ССЫЛКА Документ.Встреча\n\t\t\tТОГДА ВЫБОР\n\t\t\t\t\tКОГДА Взаимодействия.ПометкаУдаления\n\t\t\t\t\t\tТОГДА 10\n\t\t\t\t\tИНАЧЕ 0\n\t\t\t\tКОНЕЦ\n\t\tКОГДА Взаимодействия.Ссылка ССЫЛКА Документ.ЗапланированноеВзаимодействие\n\t\t\tТОГДА ВЫБОР\n\t\t\t\t\tКОГДА Взаимодействия.ПометкаУдаления\n\t\t\t\t\t\tТОГДА 11\n\t\t\t\t\tИНАЧЕ 1\n\t\t\t\tКОНЕЦ\n\t\tКОГДА Взаимодействия.Ссылка ССЫЛКА Документ.ТелефонныйЗвонок\n\t\t\tТОГДА ВЫБОР\n\t\t\t\t\tКОГДА Взаимодействия.ПометкаУдаления\n\t\t\t\t\t\tТОГДА 12\n\t\t\t\t\tИНАЧЕ 2\n\t\t\t\tКОНЕЦ\n\t\tКОГДА Взаимодействия.Ссылка ССЫЛКА Документ.ЭлектронноеПисьмоВходящее\n\t\t\tТОГДА ВЫБОР\n\t\t\t\t\tКОГДА Взаимодействия.ПометкаУдаления\n\t\t\t\t\t\tТОГДА 13\n\t\t\t\t\tИНАЧЕ 3\n\t\t\t\tКОНЕЦ\n\t\tКОГДА Взаимодействия.Ссылка ССЫЛКА Документ.ЭлектронноеПисьмоИсходящее\n\t\t\tТОГДА ВЫБОР\n\t\t\t\t\tКОГДА Взаимодействия.ПометкаУдаления\n\t\t\t\t\t\tТОГДА 14\n\t\t\t\t\tИНАЧЕ ВЫБОР\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СтатусыИсходящегоЭлектронногоПисьма.Черновик)\n\t\t\t\t\t\t\t\tТОГДА 15\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СтатусыИсходящегоЭлектронногоПисьма.Исходящее)\n\t\t\t\t\t\t\t\tТОГДА 16\n\t\t\t\t\t\t\tИНАЧЕ 4\n\t\t\t\t\t\tКОНЕЦ\n\t\t\t\tКОНЕЦ\n\t\tКОГДА Взаимодействия.Ссылка ССЫЛКА Документ.СообщениеSMS\n\t\t\tТОГДА ВЫБОР\n\t\t\t\t\tКОГДА Взаимодействия.ПометкаУдаления\n\t\t\t\t\t\tТОГДА 22\n\t\t\t\t\tИНАЧЕ ВЫБОР\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СостоянияДокументаСообщениеSMS.Черновик)\n\t\t\t\t\t\t\t\tТОГДА 17\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СостоянияДокументаСообщениеSMS.Исходящее)\n\t\t\t\t\t\t\t\tТОГДА 18\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СостоянияДокументаСообщениеSMS.Доставляется)\n\t\t\t\t\t\t\t\tТОГДА 19\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СостоянияДокументаСообщениеSMS.ЧастичноДоставлено)\n\t\t\t\t\t\t\t\tТОГДА 21\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СостоянияДокументаСообщениеSMS.НеДоставлено)\n\t\t\t\t\t\t\t\tТОГДА 23\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СостоянияДокументаСообщениеSMS.Доставлено)\n\t\t\t\t\t\t\t\tТОГДА 24\n\t\t\t\t\t\t\tИНАЧЕ 17\n\t\t\t\t\t\tКОНЕЦ\n\t\t\t\tКОНЕЦ\n\tКОНЕЦ КАК НомерКартинки,\n\tВзаимодействия.Ссылка КАК Ссылка,\n\tЕСТЬNULL(ПредОтбор.Ссылка, НЕОПРЕДЕЛЕНО) КАК ВзаимодействиеОснование,\n\tПредметыПапкиВзаимодействий.Предмет,\n\tВзаимодействия.Ответственный КАК Ответственный,\n\tЕСТЬNULL(ПредметыПапкиВзаимодействий.Рассмотрено, Ложь) КАК Рассмотрено,\n\tЕСТЬNULL(ПредметыПапкиВзаимодействий.РассмотретьПосле, ДатаВремя(1,1,1)) КАК РассмотретьПосле,\n\tВзаимодействия.Дата,\n\tВзаимодействия.Тема,\n\tВзаимодействия.Участники,\n\tВзаимодействия.ПометкаУдаления,\n\tВзаимодействия.Тип,\n\tВзаимодействия.СтатусИсходящегоПисьма,\n\tВзаимодействия.Входящий\nИЗ\n\tЖурналДокументов.Взаимодействия КАК Взаимодействия\n\t\tЛЕВОЕ СОЕДИНЕНИЕ ПредОтбор КАК ПредОтбор\n\t\tПО Взаимодействия.ВзаимодействиеОснование = ПредОтбор.Ссылка\n\t\tВНУТРЕННЕЕ СОЕДИНЕНИЕ РегистрСведений.ПредметыПапкиВзаимодействий КАК ПредметыПапкиВзаимодействий\n\t\tПО Взаимодействия.Ссылка = ПредметыПапкиВзаимодействий.Взаимодействие\n{ГДЕ\n\t(Взаимодействия.Дата МЕЖДУ &НачалоПериода И &КонецПериода)}" }, "fields": [ @@ -8912,10 +8506,8 @@ "dataSource": "ИсточникДанных1", "items": [], "querySource": { - "position": { - "line": 120, - "column": 10 - }, + "line": 120, + "column": 10, "textQuery": "ВЫБРАТЬ РАЗРЕШЕННЫЕ РАЗЛИЧНЫЕ\n\tВзаимодействия.Ссылка КАК Ссылка\nПОМЕСТИТЬ ВзаимодействияПоКонтакту\nИЗ\n\tРегистрСведений.КонтактыВзаимодействий КАК КонтактыВзаимодействий\n\t\tВНУТРЕННЕЕ СОЕДИНЕНИЕ ЖурналДокументов.Взаимодействия КАК Взаимодействия\n\t\tПО КонтактыВзаимодействий.Взаимодействие = Взаимодействия.Ссылка\nГДЕ\n\tКонтактыВзаимодействий.Контакт = &Контакт\n{ГДЕ\n\t(Взаимодействия.Дата МЕЖДУ &НачалоПериода И &КонецПериода)}\n;\n\n////////////////////////////////////////////////////////////////////////////////\nВЫБРАТЬ РАЗРЕШЕННЫЕ РАЗЛИЧНЫЕ\n\tВзаимодействия.Ссылка,\n\tВзаимодействия.Ответственный,\n\tЕСТЬNULL(ПредметыПапкиВзаимодействий.Рассмотрено, ЛОЖЬ) КАК Рассмотрено,\n\tЕСТЬNULL(ПредметыПапкиВзаимодействий.РассмотретьПосле, ДАТАВРЕМЯ(1, 1, 1)) КАК РассмотретьПосле,\n\tВзаимодействия.Тип,\n\tВзаимодействия.СтатусИсходящегоПисьма,\n\tВзаимодействия.ПометкаУдаления,\n\tВзаимодействия.Входящий\nПОМЕСТИТЬ ПредОтбор\nИЗ\n\tЖурналДокументов.Взаимодействия КАК Взаимодействия\n\t\tВНУТРЕННЕЕ СОЕДИНЕНИЕ РегистрСведений.ПредметыПапкиВзаимодействий КАК ПредметыПапкиВзаимодействий\n\t\tПО Взаимодействия.Ссылка = ПредметыПапкиВзаимодействий.Взаимодействие\nГДЕ\n\tВзаимодействия.Ссылка В\n\t\t\t(ВЫБРАТЬ\n\t\t\t\tВзаимодействияПоКонтакту.Ссылка\n\t\t\tИЗ\n\t\t\t\tВзаимодействияПоКонтакту КАК ВзаимодействияПоКонтакту)\n;\n\n////////////////////////////////////////////////////////////////////////////////\nВЫБРАТЬ РАЗРЕШЕННЫЕ\n\tВЫБОР\n\t\tКОГДА Взаимодействия.Ссылка ССЫЛКА Документ.Встреча\n\t\t\tТОГДА ВЫБОР\n\t\t\t\t\tКОГДА Взаимодействия.ПометкаУдаления\n\t\t\t\t\t\tТОГДА 10\n\t\t\t\t\tИНАЧЕ 0\n\t\t\t\tКОНЕЦ\n\t\tКОГДА Взаимодействия.Ссылка ССЫЛКА Документ.ЗапланированноеВзаимодействие\n\t\t\tТОГДА ВЫБОР\n\t\t\t\t\tКОГДА Взаимодействия.ПометкаУдаления\n\t\t\t\t\t\tТОГДА 11\n\t\t\t\t\tИНАЧЕ 1\n\t\t\t\tКОНЕЦ\n\t\tКОГДА Взаимодействия.Ссылка ССЫЛКА Документ.ТелефонныйЗвонок\n\t\t\tТОГДА ВЫБОР\n\t\t\t\t\tКОГДА Взаимодействия.ПометкаУдаления\n\t\t\t\t\t\tТОГДА 12\n\t\t\t\t\tИНАЧЕ 2\n\t\t\t\tКОНЕЦ\n\t\tКОГДА Взаимодействия.Ссылка ССЫЛКА Документ.ЭлектронноеПисьмоВходящее\n\t\t\tТОГДА ВЫБОР\n\t\t\t\t\tКОГДА Взаимодействия.ПометкаУдаления\n\t\t\t\t\t\tТОГДА 13\n\t\t\t\t\tИНАЧЕ 3\n\t\t\t\tКОНЕЦ\n\t\tКОГДА Взаимодействия.Ссылка ССЫЛКА Документ.ЭлектронноеПисьмоИсходящее\n\t\t\tТОГДА ВЫБОР\n\t\t\t\t\tКОГДА Взаимодействия.ПометкаУдаления\n\t\t\t\t\t\tТОГДА 14\n\t\t\t\t\tИНАЧЕ ВЫБОР\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СтатусыИсходящегоЭлектронногоПисьма.Черновик)\n\t\t\t\t\t\t\t\tТОГДА 15\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СтатусыИсходящегоЭлектронногоПисьма.Исходящее)\n\t\t\t\t\t\t\t\tТОГДА 16\n\t\t\t\t\t\t\tИНАЧЕ 4\n\t\t\t\t\t\tКОНЕЦ\n\t\t\t\tКОНЕЦ\n\t\tКОГДА Взаимодействия.Ссылка ССЫЛКА Документ.СообщениеSMS\n\t\t\tТОГДА ВЫБОР\n\t\t\t\t\tКОГДА Взаимодействия.ПометкаУдаления\n\t\t\t\t\t\tТОГДА 22\n\t\t\t\t\tИНАЧЕ ВЫБОР\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СостоянияДокументаСообщениеSMS.Черновик)\n\t\t\t\t\t\t\t\tТОГДА 17\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СостоянияДокументаСообщениеSMS.Исходящее)\n\t\t\t\t\t\t\t\tТОГДА 18\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СостоянияДокументаСообщениеSMS.Доставляется)\n\t\t\t\t\t\t\t\tТОГДА 19\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СостоянияДокументаСообщениеSMS.ЧастичноДоставлено)\n\t\t\t\t\t\t\t\tТОГДА 21\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СостоянияДокументаСообщениеSMS.НеДоставлено)\n\t\t\t\t\t\t\t\tТОГДА 23\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СостоянияДокументаСообщениеSMS.Доставлено)\n\t\t\t\t\t\t\t\tТОГДА 24\n\t\t\t\t\t\t\tИНАЧЕ 17\n\t\t\t\t\t\tКОНЕЦ\n\t\t\t\tКОНЕЦ\n\tКОНЕЦ КАК НомерКартинки,\n\tВзаимодействия.Ссылка КАК Ссылка,\n\tВзаимодействия.Ответственный КАК Ответственный,\n\tЕСТЬNULL(ПредОтбор.Ссылка, НЕОПРЕДЕЛЕНО) КАК ВзаимодействиеОснование,\n\tПредметыПапкиВзаимодействий.Предмет,\n\tЕСТЬNULL(ПредметыПапкиВзаимодействий.Рассмотрено, ЛОЖЬ) КАК Рассмотрено,\n\tЕСТЬNULL(ПредметыПапкиВзаимодействий.РассмотретьПосле, ДАТАВРЕМЯ(1, 1, 1)) КАК РассмотретьПосле,\n\tВзаимодействия.Дата,\n\tВзаимодействия.Тема,\n\tВзаимодействия.Участники,\n\tВзаимодействия.ПометкаУдаления,\n\tВзаимодействия.Тип,\n\tВзаимодействия.СтатусИсходящегоПисьма,\n\tВзаимодействия.Входящий\nИЗ\n\tЖурналДокументов.Взаимодействия КАК Взаимодействия\n\t\tЛЕВОЕ СОЕДИНЕНИЕ ПредОтбор КАК ПредОтбор\n\t\tПО Взаимодействия.ВзаимодействиеОснование = ПредОтбор.Ссылка\n\t\tВНУТРЕННЕЕ СОЕДИНЕНИЕ РегистрСведений.ПредметыПапкиВзаимодействий КАК ПредметыПапкиВзаимодействий\n\t\tПО Взаимодействия.Ссылка = ПредметыПапкиВзаимодействий.Взаимодействие\nГДЕ\n\tВзаимодействия.Ссылка В\n\t\t\t(ВЫБРАТЬ\n\t\t\t\tВзаимодействияПоКонтакту.Ссылка\n\t\t\tИЗ\n\t\t\t\tВзаимодействияПоКонтакту КАК ВзаимодействияПоКонтакту)" }, "fields": [ @@ -9023,10 +8615,8 @@ "dataSource": "ИсточникДанных1", "items": [], "querySource": { - "position": { - "line": 158, - "column": 10 - }, + "line": 158, + "column": 10, "textQuery": "ВЫБРАТЬ РАЗРЕШЕННЫЕ\n\tЖурналДокументовВзаимодействия.Ссылка,\n\tЖурналДокументовВзаимодействия.Дата,\n\tЖурналДокументовВзаимодействия.ПометкаУдаления,\n\tЖурналДокументовВзаимодействия.Номер,\n\tЖурналДокументовВзаимодействия.Проведен,\n\tЖурналДокументовВзаимодействия.Автор,\n\tЖурналДокументовВзаимодействия.Входящий,\n\tЖурналДокументовВзаимодействия.Тема,\n\tЖурналДокументовВзаимодействия.Ответственный КАК Ответственный,\n\tЕСТЬNULL(ПредметыВзаимодействий.Рассмотрено, Ложь) КАК Рассмотрено,\n\tЕСТЬNULL(ПредметыВзаимодействий.РассмотретьПосле, ДатаВремя(1,1,1)) КАК РассмотретьПосле,\n\tЖурналДокументовВзаимодействия.Участники,\n\tЖурналДокументовВзаимодействия.Тип,\n\tЖурналДокументовВзаимодействия.СтатусИсходящегоПисьма,\n\tЖурналДокументовВзаимодействия.ЕстьВложения,\n\tЖурналДокументовВзаимодействия.УчетнаяЗапись,\n\tЕСТЬNULL(ПредметыВзаимодействий.Предмет, НЕОПРЕДЕЛЕНО) КАК Предмет,\n\tТИПЗНАЧЕНИЯ(ПредметыВзаимодействий.Предмет) КАК ТипПредмета,\n\tПредметыВзаимодействий.ПапкаЭлектронногоПисьма КАК Папка,\n\tЖурналДокументовВзаимодействия.ПолученоОтправлено,\n\tЖурналДокументовВзаимодействия.Размер,\n\tЖурналДокументовВзаимодействия.Важность,\n\tВЫБОР\n\t\tКОГДА ЖурналДокументовВзаимодействия.Важность = ЗНАЧЕНИЕ(Перечисление.ВариантыВажностиВзаимодействия.Высокая) ТОГДА 2\n\t\tКОГДА ЖурналДокументовВзаимодействия.Важность = ЗНАЧЕНИЕ(Перечисление.ВариантыВажностиВзаимодействия.Низкая) ТОГДА 0\n\t\tИНАЧЕ 1\n\tКОНЕЦ КАК ВажностьНомерКартинки\nИЗ\n\tЖурналДокументов.Взаимодействия КАК ЖурналДокументовВзаимодействия\n\t\t\tВНУТРЕННЕЕ СОЕДИНЕНИЕ РегистрСведений.ПредметыПапкиВзаимодействий КАК ПредметыВзаимодействий\n\t\tПО ЖурналДокументовВзаимодействия.Ссылка = ПредметыВзаимодействий.Взаимодействие\n\t\t{ВНУТРЕННЕЕ СОЕДИНЕНИЕ РегистрСведений.КонтактыВзаимодействий КАК КонтактыВзаимодействий\nПО ЖурналДокументовВзаимодействия.Ссылка = КонтактыВзаимодействий.Взаимодействие}\n{ГДЕ\n\tЖурналДокументовВзаимодействия.Ссылка КАК Поиск\n\t,\nКонтактыВзаимодействий.Контакт}\n{ГДЕ\n\t(ЖурналДокументовВзаимодействия.Дата МЕЖДУ &ДатаНачала И &ДатаОкончания)}" }, "fields": [ diff --git "a/src/test/resources/fixtures/ssl_3_1/DocumentJournals.\320\222\320\267\320\260\320\270\320\274\320\276\320\264\320\265\320\271\321\201\321\202\320\262\320\270\321\217_edt.json" "b/src/test/resources/fixtures/ssl_3_1/DocumentJournals.\320\222\320\267\320\260\320\270\320\274\320\276\320\264\320\265\320\271\321\201\321\202\320\262\320\270\321\217_edt.json" index b81ae2b14..125d6b15a 100644 --- "a/src/test/resources/fixtures/ssl_3_1/DocumentJournals.\320\222\320\267\320\260\320\270\320\274\320\276\320\264\320\265\320\271\321\201\321\202\320\262\320\270\321\217_edt.json" +++ "b/src/test/resources/fixtures/ssl_3_1/DocumentJournals.\320\222\320\267\320\260\320\270\320\274\320\276\320\264\320\265\320\271\321\201\321\202\320\262\320\270\321\217_edt.json" @@ -1448,9 +1448,7 @@ } ] }, - "dataPath": { - "segments": "" - }, + "dataPath": "", "items": [ [ { @@ -1471,9 +1469,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1494,9 +1490,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -1521,9 +1515,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1544,9 +1536,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1567,9 +1557,7 @@ } ] }, - "dataPath": { - "segments": "СтрокаПоиска" - }, + "dataPath": "СтрокаПоиска", "items": [] }, { @@ -1590,9 +1578,7 @@ } ] }, - "dataPath": { - "segments": "ТипВзаимодействия" - }, + "dataPath": "ТипВзаимодействия", "items": [] }, { @@ -1602,9 +1588,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "Статус" - }, + "dataPath": "Статус", "items": [] }, { @@ -1614,9 +1598,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/columns/c/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn[3]/synonym" }, - "dataPath": { - "segments": "Ответственный" - }, + "dataPath": "Ответственный", "items": [] } ], @@ -1641,9 +1623,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1664,9 +1644,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1676,9 +1654,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1699,9 +1675,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1711,9 +1685,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1723,9 +1695,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1735,9 +1705,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1747,9 +1715,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -1774,9 +1740,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1797,9 +1761,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1809,9 +1771,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1821,9 +1781,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1833,9 +1791,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1845,9 +1801,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1857,9 +1811,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -1884,9 +1836,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1907,9 +1857,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1919,9 +1867,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1931,9 +1877,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1943,9 +1887,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -1959,9 +1901,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1982,9 +1922,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2005,9 +1943,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2017,9 +1953,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2029,9 +1963,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2041,9 +1973,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2053,9 +1983,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2065,9 +1993,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -2092,9 +2018,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2115,9 +2039,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2138,9 +2060,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2150,9 +2070,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2162,9 +2080,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2185,9 +2101,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "BUTTON", @@ -2196,9 +2110,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ] @@ -2210,9 +2122,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2222,9 +2132,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2234,9 +2142,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2246,9 +2152,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -2266,9 +2170,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2278,9 +2180,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2290,9 +2190,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2302,9 +2200,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2314,9 +2210,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2326,9 +2220,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -2353,9 +2245,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2365,9 +2255,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -2392,9 +2280,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2415,9 +2301,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "PAGES", @@ -2437,9 +2321,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2460,9 +2342,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2483,9 +2363,7 @@ } ] }, - "dataPath": { - "segments": "КонтактыПанельНавигации" - }, + "dataPath": "КонтактыПанельНавигации", "items": [ { "type": "COLUMN_GROUP", @@ -2505,9 +2383,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2517,9 +2393,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "КонтактыПанельНавигации.Контакт" - }, + "dataPath": "КонтактыПанельНавигации.Контакт", "items": [] }, { @@ -2540,9 +2414,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2552,9 +2424,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "КонтактыПанельНавигации.КоличествоНеРассмотрено" - }, + "dataPath": "КонтактыПанельНавигации.КоличествоНеРассмотрено", "items": [] }, { @@ -2575,9 +2445,7 @@ } ] }, - "dataPath": { - "segments": "КонтактыПанельНавигации.ДатаПоследнегоВзаимодействия" - }, + "dataPath": "КонтактыПанельНавигации.ДатаПоследнегоВзаимодействия", "items": [] } ], @@ -2597,9 +2465,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -2624,9 +2490,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2647,9 +2511,7 @@ } ] }, - "dataPath": { - "segments": "ПредметыПанельНавигации" - }, + "dataPath": "ПредметыПанельНавигации", "items": [ { "type": "COLUMN_GROUP", @@ -2669,9 +2531,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2692,9 +2552,7 @@ } ] }, - "dataPath": { - "segments": "ПредметыПанельНавигации.Предмет" - }, + "dataPath": "ПредметыПанельНавигации.Предмет", "items": [] }, { @@ -2715,9 +2573,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2727,9 +2583,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "ПредметыПанельНавигации.КоличествоНеРассмотрено" - }, + "dataPath": "ПредметыПанельНавигации.КоличествоНеРассмотрено", "items": [] }, { @@ -2739,9 +2593,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "segments": "ПредметыПанельНавигации.ДатаПоследнегоВзаимодействия" - }, + "dataPath": "ПредметыПанельНавигации.ДатаПоследнегоВзаимодействия", "items": [] } ], @@ -2761,9 +2613,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -2788,9 +2638,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "TABLE", @@ -2810,9 +2658,7 @@ } ] }, - "dataPath": { - "segments": "Закладки" - }, + "dataPath": "Закладки", "items": [ { "type": "LABEL_FIELD", @@ -2821,9 +2667,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "segments": "Закладки.Description" - }, + "dataPath": "Закладки.Description", "items": [] } ] @@ -2848,9 +2692,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "TABLE", @@ -2870,9 +2712,7 @@ } ] }, - "dataPath": { - "segments": "Свойства" - }, + "dataPath": "Свойства", "items": [ { "type": "COLUMN_GROUP", @@ -2892,9 +2732,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2904,9 +2742,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "Свойства.Представление" - }, + "dataPath": "Свойства.Представление", "items": [] }, { @@ -2916,9 +2752,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "Свойства.НомерКартинки" - }, + "dataPath": "Свойства.НомерКартинки", "items": [] } ], @@ -2947,9 +2781,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "TABLE", @@ -2969,9 +2801,7 @@ } ] }, - "dataPath": { - "segments": "Папки" - }, + "dataPath": "Папки", "items": [ { "type": "COLUMN_GROUP", @@ -2991,9 +2821,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3003,9 +2831,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "Папки.НомерКартинки" - }, + "dataPath": "Папки.НомерКартинки", "items": [] }, { @@ -3015,9 +2841,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "Папки.Представление" - }, + "dataPath": "Папки.Представление", "items": [] } ], @@ -3046,9 +2870,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "TABLE", @@ -3068,9 +2890,7 @@ } ] }, - "dataPath": { - "segments": "Категории" - }, + "dataPath": "Категории", "items": [ { "type": "COLUMN_GROUP", @@ -3090,9 +2910,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3102,9 +2920,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "Категории.НомерКартинки" - }, + "dataPath": "Категории.НомерКартинки", "items": [] }, { @@ -3114,9 +2930,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "Категории.Представление" - }, + "dataPath": "Категории.Представление", "items": [] } ], @@ -3151,9 +2965,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3163,9 +2975,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "segments": "Список" - }, + "dataPath": "Список", "items": [ [ { @@ -3186,9 +2996,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3209,9 +3017,7 @@ } ] }, - "dataPath": { - "segments": "Список.НомерКартинки" - }, + "dataPath": "Список.НомерКартинки", "items": [] }, { @@ -3232,9 +3038,7 @@ } ] }, - "dataPath": { - "segments": "Список.ВажностьНомерКартинки" - }, + "dataPath": "Список.ВажностьНомерКартинки", "items": [] } ], @@ -3259,9 +3063,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3282,9 +3084,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3294,9 +3094,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "Список.Участники" - }, + "dataPath": "Список.Участники", "items": [] }, { @@ -3317,9 +3115,7 @@ } ] }, - "dataPath": { - "segments": "Список.ПолученоОтправлено" - }, + "dataPath": "Список.ПолученоОтправлено", "items": [] }, { @@ -3329,9 +3125,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "Список.Date" - }, + "dataPath": "Список.Date", "items": [] }, { @@ -3341,9 +3135,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "Список.ЕстьВложения" - }, + "dataPath": "Список.ЕстьВложения", "items": [] } ], @@ -3357,9 +3149,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "Список.Тема" - }, + "dataPath": "Список.Тема", "items": [] } ], @@ -3373,9 +3163,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/columns/c/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn[11]/synonym" }, - "dataPath": { - "segments": "Список.Размер" - }, + "dataPath": "Список.Размер", "items": [] }, { @@ -3385,9 +3173,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "Список.УчетнаяЗапись" - }, + "dataPath": "Список.УчетнаяЗапись", "items": [] }, { @@ -3397,9 +3183,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "Список.Ref" - }, + "dataPath": "Список.Ref", "items": [] } ], @@ -3424,9 +3208,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3447,9 +3229,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "TEXT_DOCUMENT_FIELD", @@ -3458,9 +3238,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "Предпросмотр" - }, + "dataPath": "Предпросмотр", "items": [] } ] @@ -3483,9 +3261,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3506,9 +3282,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3518,9 +3292,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3541,9 +3313,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -3557,9 +3327,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "ПредпросмотрHTML" - }, + "dataPath": "ПредпросмотрHTML", "items": [] } ], @@ -3577,9 +3345,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "ОписаниеНайденоПолнотекстовымПоиском" - }, + "dataPath": "ОписаниеНайденоПолнотекстовымПоиском", "items": [] } ], @@ -4948,9 +4714,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -4960,9 +4724,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4972,9 +4734,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -4984,9 +4744,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "ТипВзаимодействия" - }, + "dataPath": "ТипВзаимодействия", "items": [] }, { @@ -4996,9 +4754,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "Статус" - }, + "dataPath": "Статус", "items": [] }, { @@ -5008,9 +4764,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/columns/c/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn[3]/synonym" }, - "dataPath": { - "segments": "Ответственный" - }, + "dataPath": "Ответственный", "items": [] } ], @@ -5035,9 +4789,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5058,9 +4810,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "TABLE", @@ -5069,9 +4819,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "segments": "Список" - }, + "dataPath": "Список", "items": [ [ { @@ -5081,9 +4829,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5104,9 +4850,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5116,9 +4860,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "segments": "Список.НомерКартинки" - }, + "dataPath": "Список.НомерКартинки", "items": [] }, { @@ -5128,9 +4870,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "Список.Участники" - }, + "dataPath": "Список.Участники", "items": [] }, { @@ -5140,9 +4880,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "Список.Date" - }, + "dataPath": "Список.Date", "items": [] }, { @@ -5152,9 +4890,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "Список.ЕстьВложения" - }, + "dataPath": "Список.ЕстьВложения", "items": [] } ], @@ -5168,9 +4904,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/columns/c/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn[4]/synonym" }, - "dataPath": { - "segments": "Список.Тема" - }, + "dataPath": "Список.Тема", "items": [] } ], @@ -5184,9 +4918,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "Список.Ref" - }, + "dataPath": "Список.Ref", "items": [] } ], @@ -5213,9 +4945,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "TABLE", @@ -5235,9 +4965,7 @@ } ] }, - "dataPath": { - "segments": "ДеревоВзаимодействий" - }, + "dataPath": "ДеревоВзаимодействий", "items": [ { "type": "COLUMN_GROUP", @@ -5257,9 +4985,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5280,9 +5006,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5292,9 +5016,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "ДеревоВзаимодействий.НомерКартинки" - }, + "dataPath": "ДеревоВзаимодействий.НомерКартинки", "items": [] }, { @@ -5304,9 +5026,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "ДеревоВзаимодействий.Участники" - }, + "dataPath": "ДеревоВзаимодействий.Участники", "items": [] }, { @@ -5316,9 +5036,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "ДеревоВзаимодействий.Дата" - }, + "dataPath": "ДеревоВзаимодействий.Дата", "items": [] } ], @@ -5332,9 +5050,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "ДеревоВзаимодействий.Тема" - }, + "dataPath": "ДеревоВзаимодействий.Тема", "items": [] } ], @@ -5740,9 +5456,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5752,9 +5466,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -5764,9 +5476,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -5780,9 +5490,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5792,9 +5500,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -5804,9 +5510,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -5820,9 +5524,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "ТекстHTML" - }, + "dataPath": "ТекстHTML", "items": [] }, { @@ -5843,9 +5545,7 @@ } ] }, - "dataPath": { - "segments": "Вложения" - }, + "dataPath": "Вложения", "items": [ { "type": "COLUMN_GROUP", @@ -5854,9 +5554,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5866,9 +5564,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "Вложения.ИндексКартинки" - }, + "dataPath": "Вложения.ИндексКартинки", "items": [] }, { @@ -5878,9 +5574,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "Вложения.ИмяФайла" - }, + "dataPath": "Вложения.ИмяФайла", "items": [] }, { @@ -5890,9 +5584,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "Вложения.РазмерПредставление" - }, + "dataPath": "Вложения.РазмерПредставление", "items": [] } ], @@ -6495,9 +6187,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -6518,9 +6208,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -6530,9 +6218,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "Создано" - }, + "dataPath": "Создано", "items": [] }, { @@ -6553,9 +6239,7 @@ } ] }, - "dataPath": { - "segments": "ОтправленоПолучено" - }, + "dataPath": "ОтправленоПолучено", "items": [] } ], @@ -6580,9 +6264,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -6592,9 +6274,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "ВнутреннийНомер" - }, + "dataPath": "ВнутреннийНомер", "items": [] }, { @@ -6604,9 +6284,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "ВключатьТелоИсходногоПисьма" - }, + "dataPath": "ВключатьТелоИсходногоПисьма", "items": [] } ], @@ -6624,9 +6302,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "Папка" - }, + "dataPath": "Папка", "items": [] }, { @@ -6647,9 +6323,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -6659,9 +6333,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "УведомитьОДоставке" - }, + "dataPath": "УведомитьОДоставке", "items": [] }, { @@ -6671,9 +6343,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "УведомитьОПрочтении" - }, + "dataPath": "УведомитьОПрочтении", "items": [] } ], @@ -6687,9 +6357,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "ЗаголовкиИнтернета" - }, + "dataPath": "ЗаголовкиИнтернета", "items": [] } ], @@ -7181,9 +6849,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -7204,9 +6870,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -7227,9 +6891,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "USUAL_GROUP", @@ -7249,9 +6911,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -7272,9 +6932,7 @@ } ] }, - "dataPath": { - "segments": "ВключатьПодписьДляНовыхСообщений" - }, + "dataPath": "ВключатьПодписьДляНовыхСообщений", "items": [] }, { @@ -7295,9 +6953,7 @@ } ] }, - "dataPath": { - "segments": "ФорматПодписиДляНовыхСообщений" - }, + "dataPath": "ФорматПодписиДляНовыхСообщений", "items": [] }, { @@ -7318,9 +6974,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -7341,9 +6995,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -7364,9 +7016,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "INPUT_FIELD", @@ -7375,9 +7025,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "ПодписьДляНовыхСообщенийПростойТекст" - }, + "dataPath": "ПодписьДляНовыхСообщенийПростойТекст", "items": [] } ] @@ -7400,9 +7048,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -7423,9 +7069,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -7435,9 +7079,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "НовоеСообщениеФорматированныйДокумент" - }, + "dataPath": "НовоеСообщениеФорматированныйДокумент", "items": [] } ], @@ -7472,9 +7114,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "USUAL_GROUP", @@ -7494,9 +7134,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -7517,9 +7155,7 @@ } ] }, - "dataPath": { - "segments": "ВключатьПодписьПриОтветеПересылке" - }, + "dataPath": "ВключатьПодписьПриОтветеПересылке", "items": [] }, { @@ -7529,9 +7165,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[5]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "segments": "ФорматПодписиПриОтветеПересылке" - }, + "dataPath": "ФорматПодписиПриОтветеПересылке", "items": [] }, { @@ -7552,9 +7186,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -7575,9 +7207,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "INPUT_FIELD", @@ -7586,9 +7216,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "ПодписьПриОтветеПересылкеПростойТекст" - }, + "dataPath": "ПодписьПриОтветеПересылкеПростойТекст", "items": [] } ] @@ -7600,9 +7228,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[5]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -7623,9 +7249,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -7635,9 +7259,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "ПриОтветеПересылкеФорматированныйДокумент" - }, + "dataPath": "ПриОтветеПересылкеФорматированныйДокумент", "items": [] } ], @@ -7672,9 +7294,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "USUAL_GROUP", @@ -7694,9 +7314,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -7717,9 +7335,7 @@ } ] }, - "dataPath": { - "segments": "ВсегдаЗапрашиватьУведомлениеОПрочтении" - }, + "dataPath": "ВсегдаЗапрашиватьУведомлениеОПрочтении", "items": [] }, { @@ -7740,9 +7356,7 @@ } ] }, - "dataPath": { - "segments": "ВсегдаЗапрашиватьУведомленияОДоставке" - }, + "dataPath": "ВсегдаЗапрашиватьУведомленияОДоставке", "items": [] }, { @@ -7752,9 +7366,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "ПорядокОтветовНаЗапросыУведомленийОПрочтении" - }, + "dataPath": "ПорядокОтветовНаЗапросыУведомленийОПрочтении", "items": [] } ], @@ -7781,9 +7393,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -7793,9 +7403,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "ОтображатьТелоИсходногоПисьма" - }, + "dataPath": "ОтображатьТелоИсходногоПисьма", "items": [] }, { @@ -7805,9 +7413,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "ВключатьТелоИсходногоПисьма" - }, + "dataPath": "ВключатьТелоИсходногоПисьма", "items": [] }, { @@ -7828,9 +7434,7 @@ } ] }, - "dataPath": { - "segments": "ОтправлятьСообщенияСразу" - }, + "dataPath": "ОтправлятьСообщенияСразу", "items": [] } ], @@ -8400,9 +8004,7 @@ } ] }, - "dataPath": { - "segments": "ТаблицаТиповПредметов" - }, + "dataPath": "ТаблицаТиповПредметов", "items": [ { "type": "INPUT_FIELD", @@ -8411,9 +8013,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "ТаблицаТиповПредметов.ПредставлениеТипа" - }, + "dataPath": "ТаблицаТиповПредметов.ПредставлениеТипа", "items": [] } ] @@ -8425,9 +8025,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, - "dataPath": { - "segments": "НеОтображатьВзаимодействия" - }, + "dataPath": "НеОтображатьВзаимодействия", "items": [] } ], @@ -8650,10 +8248,8 @@ "dataSource": "ИсточникДанных1", "items": [], "querySource": { - "position": { - "line": 142, - "column": 10 - }, + "line": 142, + "column": 10, "textQuery": "ВЫБРАТЬ РАЗРЕШЕННЫЕ\n\tЖурналДокументовВзаимодействия.Ссылка,\n\tЖурналДокументовВзаимодействия.Дата,\n\tЖурналДокументовВзаимодействия.ПометкаУдаления,\n\tЖурналДокументовВзаимодействия.Номер,\n\tЖурналДокументовВзаимодействия.Проведен,\n\tЖурналДокументовВзаимодействия.Автор,\n\tЖурналДокументовВзаимодействия.Входящий,\n\tЖурналДокументовВзаимодействия.Тема,\n\tЖурналДокументовВзаимодействия.Ответственный КАК Ответственный,\n\tЕСТЬNULL(ПредметыВзаимодействий.Рассмотрено, Ложь) КАК Рассмотрено,\n\tЕСТЬNULL(ПредметыВзаимодействий.РассмотретьПосле, ДатаВремя(1,1,1)) КАК РассмотретьПосле,\n\tЖурналДокументовВзаимодействия.Участники,\n\tЖурналДокументовВзаимодействия.Тип,\n\tЖурналДокументовВзаимодействия.СтатусИсходящегоПисьма,\n\tЖурналДокументовВзаимодействия.ЕстьВложения,\n\tЖурналДокументовВзаимодействия.УчетнаяЗапись,\n\tЕСТЬNULL(ПредметыВзаимодействий.Предмет, НЕОПРЕДЕЛЕНО) КАК Предмет,\n\tТИПЗНАЧЕНИЯ(ПредметыВзаимодействий.Предмет) КАК ТипПредмета,\n\tСостоянияПредметовВзаимодействий.Активен КАК ПредметАктивен,\n\tПредметыВзаимодействий.ПапкаЭлектронногоПисьма КАК Папка,\n\tЖурналДокументовВзаимодействия.ПолученоОтправлено,\n\tЖурналДокументовВзаимодействия.Размер,\n\tЖурналДокументовВзаимодействия.Важность,\n\tВЫБОР\n\t\tКОГДА ЖурналДокументовВзаимодействия.Важность = ЗНАЧЕНИЕ(Перечисление.ВариантыВажностиВзаимодействия.Высокая) ТОГДА 2\n\t\tКОГДА ЖурналДокументовВзаимодействия.Важность = ЗНАЧЕНИЕ(Перечисление.ВариантыВажностиВзаимодействия.Низкая) ТОГДА 0\n\t\tИНАЧЕ 1\n\tКОНЕЦ КАК ВажностьНомерКартинки\nИЗ\n\tЖурналДокументов.Взаимодействия КАК ЖурналДокументовВзаимодействия\n\t\t{ЛЕВОЕ СОЕДИНЕНИЕ РегистрСведений.ПредметыПапкиВзаимодействий КАК ПредметыВзаимодействий\n\t\t\tЛЕВОЕ СОЕДИНЕНИЕ РегистрСведений.СостоянияПредметовВзаимодействий КАК СостоянияПредметовВзаимодействий\n\t\t\tПО ПредметыВзаимодействий.Предмет = СостоянияПредметовВзаимодействий.Предмет\n\t\tПО ЖурналДокументовВзаимодействия.Ссылка = ПредметыВзаимодействий.Взаимодействие}\n{ГДЕ\n\t(ЖурналДокументовВзаимодействия.Дата МЕЖДУ &ДатаНачала И &ДатаОкончания)}" }, "fields": [ @@ -8801,10 +8397,8 @@ "dataSource": "ИсточникДанных1", "items": [], "querySource": { - "position": { - "line": 90, - "column": 10 - }, + "line": 90, + "column": 10, "textQuery": "ВЫБРАТЬ РАЗРЕШЕННЫЕ\n\tВзаимодействия.Ссылка,\n\tПредметыПапкиВзаимодействий.Предмет,\n\tВзаимодействия.Ответственный КАК Ответственный,\n\tЕСТЬNULL(ПредметыПапкиВзаимодействий.Рассмотрено, Ложь) КАК Рассмотрено,\n\tЕСТЬNULL(ПредметыПапкиВзаимодействий.РассмотретьПосле, ДатаВремя(1,1,1)) КАК РассмотретьПосле,\n\tВзаимодействия.Тип,\n\tВзаимодействия.СтатусИсходящегоПисьма,\n\tВзаимодействия.ПометкаУдаления,\n\tВзаимодействия.Входящий\nПОМЕСТИТЬ ПредОтбор\nИЗ\n\tЖурналДокументов.Взаимодействия КАК Взаимодействия\n\t\tВНУТРЕННЕЕ СОЕДИНЕНИЕ РегистрСведений.ПредметыПапкиВзаимодействий КАК ПредметыПапкиВзаимодействий\n\t\tПО Взаимодействия.Ссылка = ПредметыПапкиВзаимодействий.Взаимодействие\n{ГДЕ\n\t(Взаимодействия.Дата МЕЖДУ &НачалоПериода И &КонецПериода)}\n;\n\n////////////////////////////////////////////////////////////////////////////////\nВЫБРАТЬ РАЗРЕШЕННЫЕ\n\tВЫБОР\n\t\tКОГДА Взаимодействия.Ссылка ССЫЛКА Документ.Встреча\n\t\t\tТОГДА ВЫБОР\n\t\t\t\t\tКОГДА Взаимодействия.ПометкаУдаления\n\t\t\t\t\t\tТОГДА 10\n\t\t\t\t\tИНАЧЕ 0\n\t\t\t\tКОНЕЦ\n\t\tКОГДА Взаимодействия.Ссылка ССЫЛКА Документ.ЗапланированноеВзаимодействие\n\t\t\tТОГДА ВЫБОР\n\t\t\t\t\tКОГДА Взаимодействия.ПометкаУдаления\n\t\t\t\t\t\tТОГДА 11\n\t\t\t\t\tИНАЧЕ 1\n\t\t\t\tКОНЕЦ\n\t\tКОГДА Взаимодействия.Ссылка ССЫЛКА Документ.ТелефонныйЗвонок\n\t\t\tТОГДА ВЫБОР\n\t\t\t\t\tКОГДА Взаимодействия.ПометкаУдаления\n\t\t\t\t\t\tТОГДА 12\n\t\t\t\t\tИНАЧЕ 2\n\t\t\t\tКОНЕЦ\n\t\tКОГДА Взаимодействия.Ссылка ССЫЛКА Документ.ЭлектронноеПисьмоВходящее\n\t\t\tТОГДА ВЫБОР\n\t\t\t\t\tКОГДА Взаимодействия.ПометкаУдаления\n\t\t\t\t\t\tТОГДА 13\n\t\t\t\t\tИНАЧЕ 3\n\t\t\t\tКОНЕЦ\n\t\tКОГДА Взаимодействия.Ссылка ССЫЛКА Документ.ЭлектронноеПисьмоИсходящее\n\t\t\tТОГДА ВЫБОР\n\t\t\t\t\tКОГДА Взаимодействия.ПометкаУдаления\n\t\t\t\t\t\tТОГДА 14\n\t\t\t\t\tИНАЧЕ ВЫБОР\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СтатусыИсходящегоЭлектронногоПисьма.Черновик)\n\t\t\t\t\t\t\t\tТОГДА 15\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СтатусыИсходящегоЭлектронногоПисьма.Исходящее)\n\t\t\t\t\t\t\t\tТОГДА 16\n\t\t\t\t\t\t\tИНАЧЕ 4\n\t\t\t\t\t\tКОНЕЦ\n\t\t\t\tКОНЕЦ\n\t\tКОГДА Взаимодействия.Ссылка ССЫЛКА Документ.СообщениеSMS\n\t\t\tТОГДА ВЫБОР\n\t\t\t\t\tКОГДА Взаимодействия.ПометкаУдаления\n\t\t\t\t\t\tТОГДА 22\n\t\t\t\t\tИНАЧЕ ВЫБОР\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СостоянияДокументаСообщениеSMS.Черновик)\n\t\t\t\t\t\t\t\tТОГДА 17\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СостоянияДокументаСообщениеSMS.Исходящее)\n\t\t\t\t\t\t\t\tТОГДА 18\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СостоянияДокументаСообщениеSMS.Доставляется)\n\t\t\t\t\t\t\t\tТОГДА 19\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СостоянияДокументаСообщениеSMS.ЧастичноДоставлено)\n\t\t\t\t\t\t\t\tТОГДА 21\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СостоянияДокументаСообщениеSMS.НеДоставлено)\n\t\t\t\t\t\t\t\tТОГДА 23\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СостоянияДокументаСообщениеSMS.Доставлено)\n\t\t\t\t\t\t\t\tТОГДА 24\n\t\t\t\t\t\t\tИНАЧЕ 17\n\t\t\t\t\t\tКОНЕЦ\n\t\t\t\tКОНЕЦ\n\tКОНЕЦ КАК НомерКартинки,\n\tВзаимодействия.Ссылка КАК Ссылка,\n\tЕСТЬNULL(ПредОтбор.Ссылка, НЕОПРЕДЕЛЕНО) КАК ВзаимодействиеОснование,\n\tПредметыПапкиВзаимодействий.Предмет,\n\tВзаимодействия.Ответственный КАК Ответственный,\n\tЕСТЬNULL(ПредметыПапкиВзаимодействий.Рассмотрено, Ложь) КАК Рассмотрено,\n\tЕСТЬNULL(ПредметыПапкиВзаимодействий.РассмотретьПосле, ДатаВремя(1,1,1)) КАК РассмотретьПосле,\n\tВзаимодействия.Дата,\n\tВзаимодействия.Тема,\n\tВзаимодействия.Участники,\n\tВзаимодействия.ПометкаУдаления,\n\tВзаимодействия.Тип,\n\tВзаимодействия.СтатусИсходящегоПисьма,\n\tВзаимодействия.Входящий\nИЗ\n\tЖурналДокументов.Взаимодействия КАК Взаимодействия\n\t\tЛЕВОЕ СОЕДИНЕНИЕ ПредОтбор КАК ПредОтбор\n\t\tПО Взаимодействия.ВзаимодействиеОснование = ПредОтбор.Ссылка\n\t\tВНУТРЕННЕЕ СОЕДИНЕНИЕ РегистрСведений.ПредметыПапкиВзаимодействий КАК ПредметыПапкиВзаимодействий\n\t\tПО Взаимодействия.Ссылка = ПредметыПапкиВзаимодействий.Взаимодействие\n{ГДЕ\n\t(Взаимодействия.Дата МЕЖДУ &НачалоПериода И &КонецПериода)}" }, "fields": [ @@ -8912,10 +8506,8 @@ "dataSource": "ИсточникДанных1", "items": [], "querySource": { - "position": { - "line": 120, - "column": 10 - }, + "line": 120, + "column": 10, "textQuery": "ВЫБРАТЬ РАЗРЕШЕННЫЕ РАЗЛИЧНЫЕ\n\tВзаимодействия.Ссылка КАК Ссылка\nПОМЕСТИТЬ ВзаимодействияПоКонтакту\nИЗ\n\tРегистрСведений.КонтактыВзаимодействий КАК КонтактыВзаимодействий\n\t\tВНУТРЕННЕЕ СОЕДИНЕНИЕ ЖурналДокументов.Взаимодействия КАК Взаимодействия\n\t\tПО КонтактыВзаимодействий.Взаимодействие = Взаимодействия.Ссылка\nГДЕ\n\tКонтактыВзаимодействий.Контакт = &Контакт\n{ГДЕ\n\t(Взаимодействия.Дата МЕЖДУ &НачалоПериода И &КонецПериода)}\n;\n\n////////////////////////////////////////////////////////////////////////////////\nВЫБРАТЬ РАЗРЕШЕННЫЕ РАЗЛИЧНЫЕ\n\tВзаимодействия.Ссылка,\n\tВзаимодействия.Ответственный,\n\tЕСТЬNULL(ПредметыПапкиВзаимодействий.Рассмотрено, ЛОЖЬ) КАК Рассмотрено,\n\tЕСТЬNULL(ПредметыПапкиВзаимодействий.РассмотретьПосле, ДАТАВРЕМЯ(1, 1, 1)) КАК РассмотретьПосле,\n\tВзаимодействия.Тип,\n\tВзаимодействия.СтатусИсходящегоПисьма,\n\tВзаимодействия.ПометкаУдаления,\n\tВзаимодействия.Входящий\nПОМЕСТИТЬ ПредОтбор\nИЗ\n\tЖурналДокументов.Взаимодействия КАК Взаимодействия\n\t\tВНУТРЕННЕЕ СОЕДИНЕНИЕ РегистрСведений.ПредметыПапкиВзаимодействий КАК ПредметыПапкиВзаимодействий\n\t\tПО Взаимодействия.Ссылка = ПредметыПапкиВзаимодействий.Взаимодействие\nГДЕ\n\tВзаимодействия.Ссылка В\n\t\t\t(ВЫБРАТЬ\n\t\t\t\tВзаимодействияПоКонтакту.Ссылка\n\t\t\tИЗ\n\t\t\t\tВзаимодействияПоКонтакту КАК ВзаимодействияПоКонтакту)\n;\n\n////////////////////////////////////////////////////////////////////////////////\nВЫБРАТЬ РАЗРЕШЕННЫЕ\n\tВЫБОР\n\t\tКОГДА Взаимодействия.Ссылка ССЫЛКА Документ.Встреча\n\t\t\tТОГДА ВЫБОР\n\t\t\t\t\tКОГДА Взаимодействия.ПометкаУдаления\n\t\t\t\t\t\tТОГДА 10\n\t\t\t\t\tИНАЧЕ 0\n\t\t\t\tКОНЕЦ\n\t\tКОГДА Взаимодействия.Ссылка ССЫЛКА Документ.ЗапланированноеВзаимодействие\n\t\t\tТОГДА ВЫБОР\n\t\t\t\t\tКОГДА Взаимодействия.ПометкаУдаления\n\t\t\t\t\t\tТОГДА 11\n\t\t\t\t\tИНАЧЕ 1\n\t\t\t\tКОНЕЦ\n\t\tКОГДА Взаимодействия.Ссылка ССЫЛКА Документ.ТелефонныйЗвонок\n\t\t\tТОГДА ВЫБОР\n\t\t\t\t\tКОГДА Взаимодействия.ПометкаУдаления\n\t\t\t\t\t\tТОГДА 12\n\t\t\t\t\tИНАЧЕ 2\n\t\t\t\tКОНЕЦ\n\t\tКОГДА Взаимодействия.Ссылка ССЫЛКА Документ.ЭлектронноеПисьмоВходящее\n\t\t\tТОГДА ВЫБОР\n\t\t\t\t\tКОГДА Взаимодействия.ПометкаУдаления\n\t\t\t\t\t\tТОГДА 13\n\t\t\t\t\tИНАЧЕ 3\n\t\t\t\tКОНЕЦ\n\t\tКОГДА Взаимодействия.Ссылка ССЫЛКА Документ.ЭлектронноеПисьмоИсходящее\n\t\t\tТОГДА ВЫБОР\n\t\t\t\t\tКОГДА Взаимодействия.ПометкаУдаления\n\t\t\t\t\t\tТОГДА 14\n\t\t\t\t\tИНАЧЕ ВЫБОР\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СтатусыИсходящегоЭлектронногоПисьма.Черновик)\n\t\t\t\t\t\t\t\tТОГДА 15\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СтатусыИсходящегоЭлектронногоПисьма.Исходящее)\n\t\t\t\t\t\t\t\tТОГДА 16\n\t\t\t\t\t\t\tИНАЧЕ 4\n\t\t\t\t\t\tКОНЕЦ\n\t\t\t\tКОНЕЦ\n\t\tКОГДА Взаимодействия.Ссылка ССЫЛКА Документ.СообщениеSMS\n\t\t\tТОГДА ВЫБОР\n\t\t\t\t\tКОГДА Взаимодействия.ПометкаУдаления\n\t\t\t\t\t\tТОГДА 22\n\t\t\t\t\tИНАЧЕ ВЫБОР\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СостоянияДокументаСообщениеSMS.Черновик)\n\t\t\t\t\t\t\t\tТОГДА 17\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СостоянияДокументаСообщениеSMS.Исходящее)\n\t\t\t\t\t\t\t\tТОГДА 18\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СостоянияДокументаСообщениеSMS.Доставляется)\n\t\t\t\t\t\t\t\tТОГДА 19\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СостоянияДокументаСообщениеSMS.ЧастичноДоставлено)\n\t\t\t\t\t\t\t\tТОГДА 21\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СостоянияДокументаСообщениеSMS.НеДоставлено)\n\t\t\t\t\t\t\t\tТОГДА 23\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СостоянияДокументаСообщениеSMS.Доставлено)\n\t\t\t\t\t\t\t\tТОГДА 24\n\t\t\t\t\t\t\tИНАЧЕ 17\n\t\t\t\t\t\tКОНЕЦ\n\t\t\t\tКОНЕЦ\n\tКОНЕЦ КАК НомерКартинки,\n\tВзаимодействия.Ссылка КАК Ссылка,\n\tВзаимодействия.Ответственный КАК Ответственный,\n\tЕСТЬNULL(ПредОтбор.Ссылка, НЕОПРЕДЕЛЕНО) КАК ВзаимодействиеОснование,\n\tПредметыПапкиВзаимодействий.Предмет,\n\tЕСТЬNULL(ПредметыПапкиВзаимодействий.Рассмотрено, ЛОЖЬ) КАК Рассмотрено,\n\tЕСТЬNULL(ПредметыПапкиВзаимодействий.РассмотретьПосле, ДАТАВРЕМЯ(1, 1, 1)) КАК РассмотретьПосле,\n\tВзаимодействия.Дата,\n\tВзаимодействия.Тема,\n\tВзаимодействия.Участники,\n\tВзаимодействия.ПометкаУдаления,\n\tВзаимодействия.Тип,\n\tВзаимодействия.СтатусИсходящегоПисьма,\n\tВзаимодействия.Входящий\nИЗ\n\tЖурналДокументов.Взаимодействия КАК Взаимодействия\n\t\tЛЕВОЕ СОЕДИНЕНИЕ ПредОтбор КАК ПредОтбор\n\t\tПО Взаимодействия.ВзаимодействиеОснование = ПредОтбор.Ссылка\n\t\tВНУТРЕННЕЕ СОЕДИНЕНИЕ РегистрСведений.ПредметыПапкиВзаимодействий КАК ПредметыПапкиВзаимодействий\n\t\tПО Взаимодействия.Ссылка = ПредметыПапкиВзаимодействий.Взаимодействие\nГДЕ\n\tВзаимодействия.Ссылка В\n\t\t\t(ВЫБРАТЬ\n\t\t\t\tВзаимодействияПоКонтакту.Ссылка\n\t\t\tИЗ\n\t\t\t\tВзаимодействияПоКонтакту КАК ВзаимодействияПоКонтакту)" }, "fields": [ @@ -9023,10 +8615,8 @@ "dataSource": "ИсточникДанных1", "items": [], "querySource": { - "position": { - "line": 158, - "column": 10 - }, + "line": 158, + "column": 10, "textQuery": "ВЫБРАТЬ РАЗРЕШЕННЫЕ\n\tЖурналДокументовВзаимодействия.Ссылка,\n\tЖурналДокументовВзаимодействия.Дата,\n\tЖурналДокументовВзаимодействия.ПометкаУдаления,\n\tЖурналДокументовВзаимодействия.Номер,\n\tЖурналДокументовВзаимодействия.Проведен,\n\tЖурналДокументовВзаимодействия.Автор,\n\tЖурналДокументовВзаимодействия.Входящий,\n\tЖурналДокументовВзаимодействия.Тема,\n\tЖурналДокументовВзаимодействия.Ответственный КАК Ответственный,\n\tЕСТЬNULL(ПредметыВзаимодействий.Рассмотрено, Ложь) КАК Рассмотрено,\n\tЕСТЬNULL(ПредметыВзаимодействий.РассмотретьПосле, ДатаВремя(1,1,1)) КАК РассмотретьПосле,\n\tЖурналДокументовВзаимодействия.Участники,\n\tЖурналДокументовВзаимодействия.Тип,\n\tЖурналДокументовВзаимодействия.СтатусИсходящегоПисьма,\n\tЖурналДокументовВзаимодействия.ЕстьВложения,\n\tЖурналДокументовВзаимодействия.УчетнаяЗапись,\n\tЕСТЬNULL(ПредметыВзаимодействий.Предмет, НЕОПРЕДЕЛЕНО) КАК Предмет,\n\tТИПЗНАЧЕНИЯ(ПредметыВзаимодействий.Предмет) КАК ТипПредмета,\n\tПредметыВзаимодействий.ПапкаЭлектронногоПисьма КАК Папка,\n\tЖурналДокументовВзаимодействия.ПолученоОтправлено,\n\tЖурналДокументовВзаимодействия.Размер,\n\tЖурналДокументовВзаимодействия.Важность,\n\tВЫБОР\n\t\tКОГДА ЖурналДокументовВзаимодействия.Важность = ЗНАЧЕНИЕ(Перечисление.ВариантыВажностиВзаимодействия.Высокая) ТОГДА 2\n\t\tКОГДА ЖурналДокументовВзаимодействия.Важность = ЗНАЧЕНИЕ(Перечисление.ВариантыВажностиВзаимодействия.Низкая) ТОГДА 0\n\t\tИНАЧЕ 1\n\tКОНЕЦ КАК ВажностьНомерКартинки\nИЗ\n\tЖурналДокументов.Взаимодействия КАК ЖурналДокументовВзаимодействия\n\t\t\tВНУТРЕННЕЕ СОЕДИНЕНИЕ РегистрСведений.ПредметыПапкиВзаимодействий КАК ПредметыВзаимодействий\n\t\tПО ЖурналДокументовВзаимодействия.Ссылка = ПредметыВзаимодействий.Взаимодействие\n\t\t{ВНУТРЕННЕЕ СОЕДИНЕНИЕ РегистрСведений.КонтактыВзаимодействий КАК КонтактыВзаимодействий\nПО ЖурналДокументовВзаимодействия.Ссылка = КонтактыВзаимодействий.Взаимодействие}\n{ГДЕ\n\tЖурналДокументовВзаимодействия.Ссылка КАК Поиск\n\t,\nКонтактыВзаимодействий.Контакт}\n{ГДЕ\n\t(ЖурналДокументовВзаимодействия.Дата МЕЖДУ &ДатаНачала И &ДатаОкончания)}" }, "fields": [ diff --git "a/src/test/resources/fixtures/ssl_3_1/Documents.\320\220\320\275\320\272\320\265\321\202\320\260.json" "b/src/test/resources/fixtures/ssl_3_1/Documents.\320\220\320\275\320\272\320\265\321\202\320\260.json" index 8a7cb56d8..63474d089 100644 --- "a/src/test/resources/fixtures/ssl_3_1/Documents.\320\220\320\275\320\272\320\265\321\202\320\260.json" +++ "b/src/test/resources/fixtures/ssl_3_1/Documents.\320\220\320\275\320\272\320\265\321\202\320\260.json" @@ -898,9 +898,7 @@ } ] }, - "dataPath": { - "segments": "" - }, + "dataPath": "", "items": [ [ { @@ -910,9 +908,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -922,9 +918,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -934,9 +928,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -957,9 +949,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -980,9 +970,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -992,9 +980,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1004,9 +990,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1016,9 +1000,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1028,9 +1010,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1040,9 +1020,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1063,9 +1041,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1075,9 +1051,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1087,9 +1061,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1099,9 +1071,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -1126,9 +1096,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1149,9 +1117,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1172,9 +1138,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1184,9 +1148,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Number" - }, + "dataPath": "Объект.Number", "items": [] }, { @@ -1196,9 +1158,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Date" - }, + "dataPath": "Объект.Date", "items": [] } ], @@ -1212,9 +1172,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.РежимАнкетирования" - }, + "dataPath": "Объект.РежимАнкетирования", "items": [] }, { @@ -1224,9 +1182,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Опрос" - }, + "dataPath": "Объект.Опрос", "items": [] }, { @@ -1236,9 +1192,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.ШаблонАнкеты" - }, + "dataPath": "Объект.ШаблонАнкеты", "items": [] } ], @@ -1263,9 +1217,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1275,9 +1227,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.ДатаРедактирования" - }, + "dataPath": "Объект.ДатаРедактирования", "items": [] }, { @@ -1287,9 +1237,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Респондент" - }, + "dataPath": "Объект.Респондент", "items": [] }, { @@ -1299,9 +1247,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Интервьюер" - }, + "dataPath": "Объект.Интервьюер", "items": [] } ], @@ -1330,9 +1276,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1353,9 +1297,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "COMMAND_BAR_BUTTON", @@ -1375,9 +1317,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ] @@ -1400,9 +1340,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1412,9 +1350,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1435,9 +1371,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -1466,9 +1400,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1489,9 +1421,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "TABLE", @@ -1500,9 +1430,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "segments": "ДеревоРазделов" - }, + "dataPath": "ДеревоРазделов", "items": [ { "type": "LABEL_FIELD", @@ -1522,9 +1450,7 @@ } ] }, - "dataPath": { - "segments": "ДеревоРазделов.Формулировка" - }, + "dataPath": "ДеревоРазделов.Формулировка", "items": [] } ] @@ -1549,9 +1475,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "LABEL_DECORATION", @@ -1560,9 +1484,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ] @@ -1585,9 +1507,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "USUAL_GROUP", @@ -1607,9 +1527,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1630,9 +1548,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1653,9 +1569,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1676,9 +1590,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -1709,9 +1621,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1732,9 +1642,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1744,9 +1652,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -1760,9 +1666,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Комментарий" - }, + "dataPath": "Объект.Комментарий", "items": [] } ], @@ -2286,9 +2190,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2309,9 +2211,7 @@ } ] }, - "dataPath": { - "segments": "Список" - }, + "dataPath": "Список", "items": [ [ { @@ -2321,9 +2221,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Number" - }, + "dataPath": "Список.Number", "items": [] }, { @@ -2333,9 +2231,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Date" - }, + "dataPath": "Список.Date", "items": [] }, { @@ -2356,9 +2252,7 @@ } ] }, - "dataPath": { - "segments": "Список.РежимАнкетирования" - }, + "dataPath": "Список.РежимАнкетирования", "items": [] }, { @@ -2379,9 +2273,7 @@ } ] }, - "dataPath": { - "segments": "Список.ШаблонАнкеты" - }, + "dataPath": "Список.ШаблонАнкеты", "items": [] }, { @@ -2391,9 +2283,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Опрос" - }, + "dataPath": "Список.Опрос", "items": [] }, { @@ -2403,9 +2293,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Респондент" - }, + "dataPath": "Список.Респондент", "items": [] }, { @@ -2415,9 +2303,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.ДатаРедактирования" - }, + "dataPath": "Список.ДатаРедактирования", "items": [] }, { @@ -2427,9 +2313,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Ref" - }, + "dataPath": "Список.Ref", "items": [] } ], diff --git "a/src/test/resources/fixtures/ssl_3_1/Documents.\320\220\320\275\320\272\320\265\321\202\320\260_edt.json" "b/src/test/resources/fixtures/ssl_3_1/Documents.\320\220\320\275\320\272\320\265\321\202\320\260_edt.json" index 0bfacee81..0de760f18 100644 --- "a/src/test/resources/fixtures/ssl_3_1/Documents.\320\220\320\275\320\272\320\265\321\202\320\260_edt.json" +++ "b/src/test/resources/fixtures/ssl_3_1/Documents.\320\220\320\275\320\272\320\265\321\202\320\260_edt.json" @@ -890,9 +890,7 @@ } ] }, - "dataPath": { - "segments": "" - }, + "dataPath": "", "items": [ [ { @@ -902,9 +900,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -914,9 +910,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -926,9 +920,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -949,9 +941,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -972,9 +962,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -984,9 +972,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -996,9 +982,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1008,9 +992,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1020,9 +1002,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1032,9 +1012,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1055,9 +1033,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1067,9 +1043,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1079,9 +1053,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1091,9 +1063,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -1118,9 +1088,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1141,9 +1109,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1164,9 +1130,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1176,9 +1140,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Number" - }, + "dataPath": "Объект.Number", "items": [] }, { @@ -1188,9 +1150,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Date" - }, + "dataPath": "Объект.Date", "items": [] } ], @@ -1204,9 +1164,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.РежимАнкетирования" - }, + "dataPath": "Объект.РежимАнкетирования", "items": [] }, { @@ -1216,9 +1174,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Опрос" - }, + "dataPath": "Объект.Опрос", "items": [] }, { @@ -1228,9 +1184,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.ШаблонАнкеты" - }, + "dataPath": "Объект.ШаблонАнкеты", "items": [] } ], @@ -1255,9 +1209,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1267,9 +1219,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.ДатаРедактирования" - }, + "dataPath": "Объект.ДатаРедактирования", "items": [] }, { @@ -1279,9 +1229,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Респондент" - }, + "dataPath": "Объект.Респондент", "items": [] }, { @@ -1291,9 +1239,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Интервьюер" - }, + "dataPath": "Объект.Интервьюер", "items": [] } ], @@ -1322,9 +1268,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1345,9 +1289,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "BUTTON", @@ -1367,9 +1309,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ] @@ -1392,9 +1332,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1404,9 +1342,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1427,9 +1363,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -1458,9 +1392,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1481,9 +1413,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "TABLE", @@ -1492,9 +1422,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "segments": "ДеревоРазделов" - }, + "dataPath": "ДеревоРазделов", "items": [ { "type": "LABEL_FIELD", @@ -1514,9 +1442,7 @@ } ] }, - "dataPath": { - "segments": "ДеревоРазделов.Формулировка" - }, + "dataPath": "ДеревоРазделов.Формулировка", "items": [] } ] @@ -1541,9 +1467,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "LABEL", @@ -1552,9 +1476,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ] @@ -1577,9 +1499,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "USUAL_GROUP", @@ -1599,9 +1519,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1622,9 +1540,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1645,9 +1561,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1668,9 +1582,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -1701,9 +1613,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1724,9 +1634,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1736,9 +1644,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -1752,9 +1658,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Объект.Комментарий" - }, + "dataPath": "Объект.Комментарий", "items": [] } ], @@ -2278,9 +2182,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2301,9 +2203,7 @@ } ] }, - "dataPath": { - "segments": "Список" - }, + "dataPath": "Список", "items": [ [ { @@ -2313,9 +2213,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Number" - }, + "dataPath": "Список.Number", "items": [] }, { @@ -2325,9 +2223,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Date" - }, + "dataPath": "Список.Date", "items": [] }, { @@ -2348,9 +2244,7 @@ } ] }, - "dataPath": { - "segments": "Список.РежимАнкетирования" - }, + "dataPath": "Список.РежимАнкетирования", "items": [] }, { @@ -2371,9 +2265,7 @@ } ] }, - "dataPath": { - "segments": "Список.ШаблонАнкеты" - }, + "dataPath": "Список.ШаблонАнкеты", "items": [] }, { @@ -2383,9 +2275,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Опрос" - }, + "dataPath": "Список.Опрос", "items": [] }, { @@ -2395,9 +2285,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Респондент" - }, + "dataPath": "Список.Респондент", "items": [] }, { @@ -2407,9 +2295,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.ДатаРедактирования" - }, + "dataPath": "Список.ДатаРедактирования", "items": [] }, { @@ -2419,9 +2305,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute/synonym" }, - "dataPath": { - "segments": "Список.Ref" - }, + "dataPath": "Список.Ref", "items": [] } ], diff --git "a/src/test/resources/fixtures/ssl_3_1/ExchangePlans.\320\236\320\261\320\275\320\276\320\262\320\273\320\265\320\275\320\270\320\265\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\320\276\320\275\320\275\320\276\320\271\320\221\320\260\320\267\321\213.json" "b/src/test/resources/fixtures/ssl_3_1/ExchangePlans.\320\236\320\261\320\275\320\276\320\262\320\273\320\265\320\275\320\270\320\265\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\320\276\320\275\320\275\320\276\320\271\320\221\320\260\320\267\321\213.json" index eea8b687a..66c9d793e 100644 --- "a/src/test/resources/fixtures/ssl_3_1/ExchangePlans.\320\236\320\261\320\275\320\276\320\262\320\273\320\265\320\275\320\270\320\265\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\320\276\320\275\320\275\320\276\320\271\320\221\320\260\320\267\321\213.json" +++ "b/src/test/resources/fixtures/ssl_3_1/ExchangePlans.\320\236\320\261\320\275\320\276\320\262\320\273\320\265\320\275\320\270\320\265\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\320\276\320\275\320\275\320\276\320\271\320\221\320\260\320\267\321\213.json" @@ -523,7 +523,7 @@ "mdoRef": "InformationRegister.СостоянияРассылокОтчетов", "mdoRefRu": "РегистрСведений.СостоянияРассылокОтчетов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -531,7 +531,7 @@ "mdoRef": "Catalog.ЭлектронноеПисьмоВходящееПрисоединенныеФайлы", "mdoRefRu": "Справочник.ЭлектронноеПисьмоВходящееПрисоединенныеФайлы" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -539,7 +539,7 @@ "mdoRef": "Catalog.ШаблоныАнкет", "mdoRefRu": "Справочник.ШаблоныАнкет" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -547,7 +547,7 @@ "mdoRef": "InformationRegister.ПроцессыДляЗапуска", "mdoRefRu": "РегистрСведений.ПроцессыДляЗапуска" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -555,7 +555,7 @@ "mdoRef": "InformationRegister.НаличиеФайлов", "mdoRefRu": "РегистрСведений.НаличиеФайлов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -563,7 +563,7 @@ "mdoRef": "Constant.ИспользоватьПочтовыйКлиент", "mdoRefRu": "Константа.ИспользоватьПочтовыйКлиент" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -571,7 +571,7 @@ "mdoRef": "InformationRegister.УдалитьХранимыеФайлыВерсий", "mdoRefRu": "РегистрСведений.УдалитьХранимыеФайлыВерсий" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -579,7 +579,7 @@ "mdoRef": "Constant.ПараметрыАдминистрированияИБ", "mdoRefRu": "Константа.ПараметрыАдминистрированияИБ" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -587,7 +587,7 @@ "mdoRef": "Constant.ИспользоватьШаблоныСообщений", "mdoRefRu": "Константа.ИспользоватьШаблоныСообщений" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -595,7 +595,7 @@ "mdoRef": "Constant.ПараметрыИтоговИАгрегатов", "mdoRefRu": "Константа.ПараметрыИтоговИАгрегатов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -603,7 +603,7 @@ "mdoRef": "InformationRegister.СообщенияОбменаДанными", "mdoRefRu": "РегистрСведений.СообщенияОбменаДанными" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -611,7 +611,7 @@ "mdoRef": "Catalog.НаборыДополнительныхРеквизитовИСведений", "mdoRefRu": "Справочник.НаборыДополнительныхРеквизитовИСведений" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -619,7 +619,7 @@ "mdoRef": "InformationRegister.ПериодыНерабочихДнейКалендаря", "mdoRefRu": "РегистрСведений.ПериодыНерабочихДнейКалендаря" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -627,7 +627,7 @@ "mdoRef": "Catalog.ПапкиЭлектронныхПисем", "mdoRefRu": "Справочник.ПапкиЭлектронныхПисем" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -635,7 +635,7 @@ "mdoRef": "Catalog.ВариантыОтчетов", "mdoRefRu": "Справочник.ВариантыОтчетов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -643,7 +643,7 @@ "mdoRef": "InformationRegister.ОтветыНаВопросыАнкет", "mdoRefRu": "РегистрСведений.ОтветыНаВопросыАнкет" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -651,7 +651,7 @@ "mdoRef": "InformationRegister.ВерсииОбъектов", "mdoRefRu": "РегистрСведений.ВерсииОбъектов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -659,7 +659,7 @@ "mdoRef": "Constant.ДатаУведомленияОНовыхЗадачах", "mdoRefRu": "Константа.ДатаУведомленияОНовыхЗадачах" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -667,7 +667,7 @@ "mdoRef": "InformationRegister.КэшПереводов", "mdoRefRu": "РегистрСведений.КэшПереводов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -675,7 +675,7 @@ "mdoRef": "InformationRegister.ЗамерыКомментарииСтатистики", "mdoRefRu": "РегистрСведений.ЗамерыКомментарииСтатистики" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -683,7 +683,7 @@ "mdoRef": "Constant.ИспользоватьЭлектронныеПодписи", "mdoRefRu": "Константа.ИспользоватьЭлектронныеПодписи" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -691,7 +691,7 @@ "mdoRef": "Catalog.ПрофилиКлючевыхОпераций", "mdoRefRu": "Справочник.ПрофилиКлючевыхОпераций" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -699,7 +699,7 @@ "mdoRef": "Constant.ПараметрыРезервногоКопирования", "mdoRefRu": "Константа.ПараметрыРезервногоКопирования" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -707,7 +707,7 @@ "mdoRef": "Constant.ИспользоватьДополнительныеОтчетыИОбработки", "mdoRefRu": "Константа.ИспользоватьДополнительныеОтчетыИОбработки" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -715,7 +715,7 @@ "mdoRef": "InformationRegister.СтатистикаКонфигурации", "mdoRefRu": "РегистрСведений.СтатистикаКонфигурации" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -723,7 +723,7 @@ "mdoRef": "InformationRegister.НомераОтсканированныхФайлов", "mdoRefRu": "РегистрСведений.НомераОтсканированныхФайлов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -731,7 +731,7 @@ "mdoRef": "ChartOfCharacteristicTypes.РазделыДатЗапретаИзменения", "mdoRefRu": "ПланВидовХарактеристик.РазделыДатЗапретаИзменения" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -739,7 +739,7 @@ "mdoRef": "InformationRegister.НеудаленныеОбъекты", "mdoRefRu": "РегистрСведений.НеудаленныеОбъекты" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -747,7 +747,7 @@ "mdoRef": "Constant.ПериодХраненияЗамеров", "mdoRefRu": "Константа.ПериодХраненияЗамеров" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -755,7 +755,7 @@ "mdoRef": "Constant.НастройкиПодчиненногоУзлаРИБ", "mdoRefRu": "Константа.НастройкиПодчиненногоУзлаРИБ" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -763,7 +763,7 @@ "mdoRef": "InformationRegister.НепринятыеКОбработкеПочтовымСерверомИсходящиеПисьма", "mdoRefRu": "РегистрСведений.НепринятыеКОбработкеПочтовымСерверомИсходящиеПисьма" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -771,7 +771,7 @@ "mdoRef": "Catalog.ВопросыШаблонаАнкеты", "mdoRefRu": "Справочник.ВопросыШаблонаАнкеты" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -779,7 +779,7 @@ "mdoRef": "InformationRegister.ЗамерыВремени", "mdoRefRu": "РегистрСведений.ЗамерыВремени" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -787,7 +787,7 @@ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения", "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -795,7 +795,7 @@ "mdoRef": "InformationRegister.КурсыВалют", "mdoRefRu": "РегистрСведений.КурсыВалют" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -803,7 +803,7 @@ "mdoRef": "Constant.ВерсияДатЗапретаИзменения", "mdoRefRu": "Константа.ВерсияДатЗапретаИзменения" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -811,7 +811,7 @@ "mdoRef": "Constant.НастройкаПроксиСервера", "mdoRefRu": "Константа.НастройкаПроксиСервера" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -819,7 +819,7 @@ "mdoRef": "Constant.ЗапрещатьЗагрузкуФайловПоРасширению", "mdoRefRu": "Константа.ЗапрещатьЗагрузкуФайловПоРасширению" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -827,7 +827,7 @@ "mdoRef": "InformationRegister.ОбработчикиСобытийСинхронизацииДанных", "mdoRefRu": "РегистрСведений.ОбработчикиСобытийСинхронизацииДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -835,7 +835,7 @@ "mdoRef": "Catalog.ВнешниеКомпоненты", "mdoRefRu": "Справочник.ВнешниеКомпоненты" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -843,7 +843,7 @@ "mdoRef": "Constant.АдресПубликацииИнформационнойБазыВИнтернете", "mdoRefRu": "Константа.АдресПубликацииИнформационнойБазыВИнтернете" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -851,7 +851,7 @@ "mdoRef": "Catalog.КлючиДоступа", "mdoRefRu": "Справочник.КлючиДоступа" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -859,7 +859,7 @@ "mdoRef": "InformationRegister.НаборыЗначенийДоступа", "mdoRefRu": "РегистрСведений.НаборыЗначенийДоступа" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -867,7 +867,7 @@ "mdoRef": "InformationRegister.НастройкиУчетныхЗаписейЭлектроннойПочты", "mdoRefRu": "РегистрСведений.НастройкиУчетныхЗаписейЭлектроннойПочты" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -875,7 +875,7 @@ "mdoRef": "InformationRegister.КалендарныеГрафики", "mdoRefRu": "РегистрСведений.КалендарныеГрафики" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -883,7 +883,7 @@ "mdoRef": "InformationRegister.ДомаЗданияСтроения", "mdoRefRu": "РегистрСведений.ДомаЗданияСтроения" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -891,7 +891,7 @@ "mdoRef": "Constant.ЗапретитьОтображениеНебезопасногоСодержимогоВПисьмах", "mdoRefRu": "Константа.ЗапретитьОтображениеНебезопасногоСодержимогоВПисьмах" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -899,7 +899,7 @@ "mdoRef": "Catalog.ШаблоныСообщенийПрисоединенныеФайлы", "mdoRefRu": "Справочник.ШаблоныСообщенийПрисоединенныеФайлы" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -907,7 +907,7 @@ "mdoRef": "Catalog.Календари", "mdoRefRu": "Справочник.Календари" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -915,7 +915,7 @@ "mdoRef": "InformationRegister.ИдентификаторыПолученныхЭлектронныхПисем", "mdoRefRu": "РегистрСведений.ИдентификаторыПолученныхЭлектронныхПисем" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -923,7 +923,7 @@ "mdoRef": "InformationRegister.ОбновлениеКлючейДоступаКДанным", "mdoRefRu": "РегистрСведений.ОбновлениеКлючейДоступаКДанным" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -931,7 +931,7 @@ "mdoRef": "Catalog.Валюты", "mdoRefRu": "Справочник.Валюты" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -939,7 +939,7 @@ "mdoRef": "Catalog.ШаблоныСообщений", "mdoRefRu": "Справочник.ШаблоныСообщений" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -947,7 +947,7 @@ "mdoRef": "InformationRegister.ЗависимостиПравДоступа", "mdoRefRu": "РегистрСведений.ЗависимостиПравДоступа" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -955,7 +955,7 @@ "mdoRef": "InformationRegister.СлужебныеАдресныеСведения", "mdoRefRu": "РегистрСведений.СлужебныеАдресныеСведения" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -963,7 +963,7 @@ "mdoRef": "InformationRegister.УровниСокращенийАдресныхСведений", "mdoRefRu": "РегистрСведений.УровниСокращенийАдресныхСведений" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -971,7 +971,7 @@ "mdoRef": "InformationRegister.СостоянияОригиналовПервичныхДокументов", "mdoRefRu": "РегистрСведений.СостоянияОригиналовПервичныхДокументов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -979,7 +979,7 @@ "mdoRef": "InformationRegister.СоответствияОбъектовИнформационныхБаз", "mdoRefRu": "РегистрСведений.СоответствияОбъектовИнформационныхБаз" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -987,7 +987,7 @@ "mdoRef": "Constant.ИспользоватьСинхронизациюДанныхВЛокальномРежиме", "mdoRefRu": "Константа.ИспользоватьСинхронизациюДанныхВЛокальномРежиме" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -995,7 +995,7 @@ "mdoRef": "Constant.ВерсияКлассификатораБанков", "mdoRefRu": "Константа.ВерсияКлассификатораБанков" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1003,7 +1003,7 @@ "mdoRef": "Constant.ВыполнятьЗамерыПроизводительности", "mdoRefRu": "Константа.ВыполнятьЗамерыПроизводительности" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1011,7 +1011,7 @@ "mdoRef": "Constant.ПрофильБезопасностиИнформационнойБазы", "mdoRefRu": "Константа.ПрофильБезопасностиИнформационнойБазы" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1019,7 +1019,7 @@ "mdoRef": "Constant.ДнейДоСкрытияПерсональныхДанныхСубъектов", "mdoRefRu": "Константа.ДнейДоСкрытияПерсональныхДанныхСубъектов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1027,7 +1027,7 @@ "mdoRef": "Catalog.ЗапланированноеВзаимодействиеПрисоединенныеФайлы", "mdoRefRu": "Справочник.ЗапланированноеВзаимодействиеПрисоединенныеФайлы" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1035,7 +1035,7 @@ "mdoRef": "InformationRegister.НастройкиОбменаДаннымиXDTO", "mdoRefRu": "РегистрСведений.НастройкиОбменаДаннымиXDTO" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1043,7 +1043,7 @@ "mdoRef": "Constant.ИспользоватьПризнакРассмотрено", "mdoRefRu": "Константа.ИспользоватьПризнакРассмотрено" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1051,7 +1051,7 @@ "mdoRef": "InformationRegister.ПредопределенныеВариантыОтчетовВерсийРасширений", "mdoRefRu": "РегистрСведений.ПредопределенныеВариантыОтчетовВерсийРасширений" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1059,7 +1059,7 @@ "mdoRef": "InformationRegister.СубъектыДляСкрытияПерсональныхДанных", "mdoRefRu": "РегистрСведений.СубъектыДляСкрытияПерсональныхДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1067,7 +1067,7 @@ "mdoRef": "Constant.СписокРасширенийФайловOpenDocumentОбластиДанных", "mdoRefRu": "Константа.СписокРасширенийФайловOpenDocumentОбластиДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1075,7 +1075,7 @@ "mdoRef": "Constant.ИспользоватьСинхронизациюДанныхВМоделиСервиса", "mdoRefRu": "Константа.ИспользоватьСинхронизациюДанныхВМоделиСервиса" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1083,7 +1083,7 @@ "mdoRef": "InformationRegister.ИспользованиеПоставляемыхДополнительныхОтчетовИОбработокВОбластяхДанных", "mdoRefRu": "РегистрСведений.ИспользованиеПоставляемыхДополнительныхОтчетовИОбработокВОбластяхДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1091,7 +1091,7 @@ "mdoRef": "InformationRegister.РазрешенияНаИспользованиеВнешнихРесурсов", "mdoRefRu": "РегистрСведений.РазрешенияНаИспользованиеВнешнихРесурсов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1099,7 +1099,7 @@ "mdoRef": "InformationRegister.НастройкиСинхронизацииФайлов", "mdoRefRu": "РегистрСведений.НастройкиСинхронизацииФайлов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1107,7 +1107,7 @@ "mdoRef": "InformationRegister.УдалитьОбластиПерсональныхДанных", "mdoRefRu": "РегистрСведений.УдалитьОбластиПерсональныхДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1115,7 +1115,7 @@ "mdoRef": "Catalog.КлючевыеОперации", "mdoRefRu": "Справочник.КлючевыеОперации" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1123,7 +1123,7 @@ "mdoRef": "Catalog.ВидыПроверок", "mdoRefRu": "Справочник.ВидыПроверок" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1131,7 +1131,7 @@ "mdoRef": "Constant.НезависимоеИспользованиеДополнительныхОтчетовИОбработокВМоделиСервиса", "mdoRefRu": "Константа.НезависимоеИспользованиеДополнительныхОтчетовИОбработокВМоделиСервиса" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1139,7 +1139,7 @@ "mdoRef": "Catalog.ВариантыОтветовАнкет", "mdoRefRu": "Справочник.ВариантыОтветовАнкет" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1147,7 +1147,7 @@ "mdoRef": "Catalog.Заметки", "mdoRefRu": "Справочник.Заметки" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1155,7 +1155,7 @@ "mdoRef": "Constant.АдресДляВосстановленияПароляУчетнойЗаписи", "mdoRefRu": "Константа.АдресДляВосстановленияПароляУчетнойЗаписи" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1163,7 +1163,7 @@ "mdoRef": "Task.ЗадачаИсполнителя", "mdoRefRu": "Задача.ЗадачаИсполнителя" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1171,7 +1171,7 @@ "mdoRef": "InformationRegister.ДополнительныеСведения", "mdoRefRu": "РегистрСведений.ДополнительныеСведения" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1179,7 +1179,7 @@ "mdoRef": "Catalog.ПредопределенныеВариантыОтчетовРасширений", "mdoRefRu": "Справочник.ПредопределенныеВариантыОтчетовРасширений" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1187,7 +1187,7 @@ "mdoRef": "InformationRegister.КлючиДоступаКРегиструРезультатыПроверкиУчета", "mdoRefRu": "РегистрСведений.КлючиДоступаКРегиструРезультатыПроверкиУчета" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1195,7 +1195,7 @@ "mdoRef": "InformationRegister.ПутиКПрограммамЭлектроннойПодписиИШифрованияНаСерверахLinux", "mdoRefRu": "РегистрСведений.ПутиКПрограммамЭлектроннойПодписиИШифрованияНаСерверахLinux" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1203,7 +1203,7 @@ "mdoRef": "InformationRegister.СостоянияПроверокВеденияУчета", "mdoRefRu": "РегистрСведений.СостоянияПроверокВеденияУчета" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1211,7 +1211,7 @@ "mdoRef": "Document.НазначениеОпросов", "mdoRefRu": "Документ.НазначениеОпросов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1219,7 +1219,7 @@ "mdoRef": "Catalog.СценарииОбменовДанными", "mdoRefRu": "Справочник.СценарииОбменовДанными" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1227,7 +1227,7 @@ "mdoRef": "Constant.ИспользоватьСкрытиеПерсональныхДанныхСубъектов", "mdoRefRu": "Константа.ИспользоватьСкрытиеПерсональныхДанныхСубъектов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1235,7 +1235,7 @@ "mdoRef": "Catalog.ИдентификаторыОбъектовМетаданных", "mdoRefRu": "Справочник.ИдентификаторыОбъектовМетаданных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1243,7 +1243,7 @@ "mdoRef": "InformationRegister.ФайлыВРабочемКаталоге", "mdoRefRu": "РегистрСведений.ФайлыВРабочемКаталоге" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1251,7 +1251,7 @@ "mdoRef": "Constant.ИспользоватьШифрование", "mdoRefRu": "Константа.ИспользоватьШифрование" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1259,7 +1259,7 @@ "mdoRef": "InformationRegister.ДанныеОбработанныеВЦентральномУзлеРИБ", "mdoRefRu": "РегистрСведений.ДанныеОбработанныеВЦентральномУзлеРИБ" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1267,7 +1267,7 @@ "mdoRef": "InformationRegister.ОбработчикиОбновления", "mdoRefRu": "РегистрСведений.ОбработчикиОбновления" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1275,7 +1275,7 @@ "mdoRef": "InformationRegister.ИсполнителиЗадач", "mdoRefRu": "РегистрСведений.ИсполнителиЗадач" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1283,7 +1283,7 @@ "mdoRef": "Document.ТелефонныйЗвонок", "mdoRefRu": "Документ.ТелефонныйЗвонок" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1291,7 +1291,7 @@ "mdoRef": "InformationRegister.НастройкиВерсионированияОбъектов", "mdoRefRu": "РегистрСведений.НастройкиВерсионированияОбъектов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1299,7 +1299,7 @@ "mdoRef": "Catalog.РолиИсполнителей", "mdoRefRu": "Справочник.РолиИсполнителей" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1307,7 +1307,7 @@ "mdoRef": "Catalog.ОбщиеВнешниеКомпоненты", "mdoRefRu": "Справочник.ОбщиеВнешниеКомпоненты" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1315,7 +1315,7 @@ "mdoRef": "Constant.СписокЗапрещенныхРасширенийОбластиДанных", "mdoRefRu": "Константа.СписокЗапрещенныхРасширенийОбластиДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1323,7 +1323,7 @@ "mdoRef": "InformationRegister.НастройкиТранспортаОбменаОбластейДанных", "mdoRefRu": "РегистрСведений.НастройкиТранспортаОбменаОбластейДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1331,7 +1331,7 @@ "mdoRef": "Constant.ОтправлятьПисьмаВФорматеHTML", "mdoRefRu": "Константа.ОтправлятьПисьмаВФорматеHTML" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1339,7 +1339,7 @@ "mdoRef": "Constant.ИспользоватьПодчиненныеБизнесПроцессы", "mdoRefRu": "Константа.ИспользоватьПодчиненныеБизнесПроцессы" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1347,7 +1347,7 @@ "mdoRef": "Constant.УдалитьЛогинДоступаКСервисуMorpher", "mdoRefRu": "Константа.УдалитьЛогинДоступаКСервисуMorpher" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1355,7 +1355,7 @@ "mdoRef": "InformationRegister.СостоянияКонтактовВзаимодействий", "mdoRefRu": "РегистрСведений.СостоянияКонтактовВзаимодействий" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1363,7 +1363,7 @@ "mdoRef": "InformationRegister.ОбластиПерсональныхДанных", "mdoRefRu": "РегистрСведений.ОбластиПерсональныхДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1371,7 +1371,7 @@ "mdoRef": "InformationRegister.СтатусыСинхронизацииФайловСОблачнымСервисом", "mdoRefRu": "РегистрСведений.СтатусыСинхронизацииФайловСОблачнымСервисом" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1379,7 +1379,7 @@ "mdoRef": "Constant.ИспользоватьДатыЗапретаЗагрузки", "mdoRefRu": "Константа.ИспользоватьДатыЗапретаЗагрузки" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1387,7 +1387,7 @@ "mdoRef": "InformationRegister.ДанныеПроизводственногоКалендаря", "mdoRefRu": "РегистрСведений.ДанныеПроизводственногоКалендаря" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1395,7 +1395,7 @@ "mdoRef": "Constant.ИспользоватьВерсионированиеОбъектов", "mdoRefRu": "Константа.ИспользоватьВерсионированиеОбъектов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1403,7 +1403,7 @@ "mdoRef": "Catalog.ВерсииРасширений", "mdoRefRu": "Справочник.ВерсииРасширений" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1411,7 +1411,7 @@ "mdoRef": "InformationRegister.НаследованиеНастроекПравОбъектов", "mdoRefRu": "РегистрСведений.НаследованиеНастроекПравОбъектов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1419,7 +1419,7 @@ "mdoRef": "InformationRegister.ПричиныИзмененияАдресныхСведений", "mdoRefRu": "РегистрСведений.ПричиныИзмененияАдресныхСведений" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1427,7 +1427,7 @@ "mdoRef": "InformationRegister.СессииОбменаСообщениямиСистемы", "mdoRefRu": "РегистрСведений.СессииОбменаСообщениямиСистемы" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1435,7 +1435,7 @@ "mdoRef": "Constant.СписокРасширенийТекстовыхФайлов", "mdoRefRu": "Константа.СписокРасширенийТекстовыхФайлов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1443,7 +1443,7 @@ "mdoRef": "InformationRegister.ЗагруженныеВерсииАдресныхСведений", "mdoRefRu": "РегистрСведений.ЗагруженныеВерсииАдресныхСведений" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1451,7 +1451,7 @@ "mdoRef": "InformationRegister.ПраваРолей", "mdoRefRu": "РегистрСведений.ПраваРолей" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1459,7 +1459,7 @@ "mdoRef": "Catalog.ТелефонныйЗвонокПрисоединенныеФайлы", "mdoRefRu": "Справочник.ТелефонныйЗвонокПрисоединенныеФайлы" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1467,7 +1467,7 @@ "mdoRef": "Document.ЗапланированноеВзаимодействие", "mdoRefRu": "Документ.ЗапланированноеВзаимодействие" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1475,7 +1475,7 @@ "mdoRef": "Constant.СписокРасширенийФайловOpenDocument", "mdoRefRu": "Константа.СписокРасширенийФайловOpenDocument" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1483,7 +1483,7 @@ "mdoRef": "Catalog.ПравилаПроверкиУчета", "mdoRefRu": "Справочник.ПравилаПроверкиУчета" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1491,7 +1491,7 @@ "mdoRef": "Constant.ДатаПоследнейВыгрузкиЗамеровПроизводительностиUTC", "mdoRefRu": "Константа.ДатаПоследнейВыгрузкиЗамеровПроизводительностиUTC" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1499,7 +1499,7 @@ "mdoRef": "Document.Встреча", "mdoRefRu": "Документ.Встреча" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1507,7 +1507,7 @@ "mdoRef": "Catalog.Пользователи", "mdoRefRu": "Справочник.Пользователи" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1515,7 +1515,7 @@ "mdoRef": "Constant.ЗагрузитьСообщениеОбменаДанными", "mdoRefRu": "Константа.ЗагрузитьСообщениеОбменаДанными" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1523,7 +1523,7 @@ "mdoRef": "Constant.ПроверятьЭлектронныеПодписиНаСервере", "mdoRefRu": "Константа.ПроверятьЭлектронныеПодписиНаСервере" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1531,7 +1531,7 @@ "mdoRef": "Constant.ПровайдерSMS", "mdoRefRu": "Константа.ПровайдерSMS" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1539,7 +1539,7 @@ "mdoRef": "Constant.ПользовательСтандартногоИнтерфейсаOData", "mdoRefRu": "Константа.ПользовательСтандартногоИнтерфейсаOData" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1547,7 +1547,7 @@ "mdoRef": "InformationRegister.ВерсииПодсистем", "mdoRefRu": "РегистрСведений.ВерсииПодсистем" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1555,7 +1555,7 @@ "mdoRef": "Catalog.ПользовательскиеНастройкиОтчетов", "mdoRefRu": "Справочник.ПользовательскиеНастройкиОтчетов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1563,7 +1563,7 @@ "mdoRef": "InformationRegister.СостоянияОбменовДанными", "mdoRefRu": "РегистрСведений.СостоянияОбменовДанными" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1571,7 +1571,7 @@ "mdoRef": "Constant.ИспользоватьАвтономнуюРаботуВМоделиСервиса", "mdoRefRu": "Константа.ИспользоватьАвтономнуюРаботуВМоделиСервиса" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1579,7 +1579,7 @@ "mdoRef": "InformationRegister.ПредметыПапкиВзаимодействий", "mdoRefRu": "РегистрСведений.ПредметыПапкиВзаимодействий" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1587,7 +1587,7 @@ "mdoRef": "InformationRegister.ЗначенияГруппДоступаПоУмолчанию", "mdoRefRu": "РегистрСведений.ЗначенияГруппДоступаПоУмолчанию" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1595,7 +1595,7 @@ "mdoRef": "Constant.ОтложенноеОбновлениеЗавершеноУспешно", "mdoRefRu": "Константа.ОтложенноеОбновлениеЗавершеноУспешно" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1603,7 +1603,7 @@ "mdoRef": "Constant.ИзвлекатьТекстыФайловНаСервере", "mdoRefRu": "Константа.ИзвлекатьТекстыФайловНаСервере" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1611,7 +1611,7 @@ "mdoRef": "Constant.ИспользоватьПрофилиБезопасностиДляДОО", "mdoRefRu": "Константа.ИспользоватьПрофилиБезопасностиДляДОО" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1619,7 +1619,7 @@ "mdoRef": "Constant.КоличествоЗамеровВПакетеЭкспорта", "mdoRefRu": "Константа.КоличествоЗамеровВПакетеЭкспорта" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1627,7 +1627,7 @@ "mdoRef": "Constant.ИспользоватьДополнительныеРеквизитыИСведения", "mdoRefRu": "Константа.ИспользоватьДополнительныеРеквизитыИСведения" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1635,7 +1635,7 @@ "mdoRef": "InformationRegister.КлючиДоступаВнешнихПользователей", "mdoRefRu": "РегистрСведений.КлючиДоступаВнешнихПользователей" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1643,7 +1643,7 @@ "mdoRef": "Constant.РазрешитьВыполнениеДООРегламентнымиЗаданиямиВМоделиСервиса", "mdoRefRu": "Константа.РазрешитьВыполнениеДООРегламентнымиЗаданиямиВМоделиСервиса" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1651,7 +1651,7 @@ "mdoRef": "Document.СообщениеSMS", "mdoRefRu": "Документ.СообщениеSMS" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1659,7 +1659,7 @@ "mdoRef": "InformationRegister.ОчередьИзвлеченияТекста", "mdoRefRu": "РегистрСведений.ОчередьИзвлеченияТекста" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1667,7 +1667,7 @@ "mdoRef": "Constant.ИспользоватьАнкетирование", "mdoRefRu": "Константа.ИспользоватьАнкетирование" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1675,7 +1675,7 @@ "mdoRef": "Catalog.УчетныеЗаписиЭлектроннойПочты", "mdoRefRu": "Справочник.УчетныеЗаписиЭлектроннойПочты" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1683,7 +1683,7 @@ "mdoRef": "Constant.МаксимальныйРазмерФайла", "mdoRefRu": "Константа.МаксимальныйРазмерФайла" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1691,7 +1691,7 @@ "mdoRef": "InformationRegister.ЗапросыРазрешенийНаИспользованиеВнешнихРесурсов", "mdoRefRu": "РегистрСведений.ЗапросыРазрешенийНаИспользованиеВнешнихРесурсов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1699,7 +1699,7 @@ "mdoRef": "InformationRegister.ПользовательскиеНастройкиДоступаКОбработкам", "mdoRefRu": "РегистрСведений.ПользовательскиеНастройкиДоступаКОбработкам" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1707,7 +1707,7 @@ "mdoRef": "InformationRegister.ПакетыИнформацииПриЗапуске", "mdoRefRu": "РегистрСведений.ПакетыИнформацииПриЗапуске" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1715,7 +1715,7 @@ "mdoRef": "InformationRegister.ЗамерыОбластиСтатистики", "mdoRefRu": "РегистрСведений.ЗамерыОбластиСтатистики" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1723,7 +1723,7 @@ "mdoRef": "Constant.ПараметрыБлокировкиРаботыСВнешнимиРесурсами", "mdoRefRu": "Константа.ПараметрыБлокировкиРаботыСВнешнимиРесурсами" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1731,7 +1731,7 @@ "mdoRef": "Constant.ПриоритетОбновленияВОбластяхДанных", "mdoRefRu": "Константа.ПриоритетОбновленияВОбластяхДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1739,7 +1739,7 @@ "mdoRef": "Document.Анкета", "mdoRefRu": "Документ.Анкета" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1747,7 +1747,7 @@ "mdoRef": "InformationRegister.КлючиДоступаНаборовГруппДоступа", "mdoRefRu": "РегистрСведений.КлючиДоступаНаборовГруппДоступа" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1755,7 +1755,7 @@ "mdoRef": "Constant.НастройкиВходаПользователей", "mdoRefRu": "Константа.НастройкиВходаПользователей" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1763,7 +1763,7 @@ "mdoRef": "Constant.ПараметрыАдресногоКлассификатора", "mdoRefRu": "Константа.ПараметрыАдресногоКлассификатора" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1771,7 +1771,7 @@ "mdoRef": "Catalog.ПроизводственныеКалендари", "mdoRefRu": "Справочник.ПроизводственныеКалендари" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1779,7 +1779,7 @@ "mdoRef": "Catalog.СтроковыеКонтактыВзаимодействий", "mdoRefRu": "Справочник.СтроковыеКонтактыВзаимодействий" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1787,7 +1787,7 @@ "mdoRef": "Catalog.ПоставляемыеДополнительныеОтчетыИОбработки", "mdoRefRu": "Справочник.ПоставляемыеДополнительныеОтчетыИОбработки" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1795,7 +1795,7 @@ "mdoRef": "Catalog.ЭлектронноеПисьмоИсходящееПрисоединенныеФайлы", "mdoRefRu": "Справочник.ЭлектронноеПисьмоИсходящееПрисоединенныеФайлы" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1803,7 +1803,7 @@ "mdoRef": "InformationRegister.НазначениеДополнительныхОбработок", "mdoRefRu": "РегистрСведений.НазначениеДополнительныхОбработок" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1811,7 +1811,7 @@ "mdoRef": "Catalog.ВидыКонтактнойИнформации", "mdoRefRu": "Справочник.ВидыКонтактнойИнформации" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1819,7 +1819,7 @@ "mdoRef": "Catalog.СтраныМира", "mdoRefRu": "Справочник.СтраныМира" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1827,7 +1827,7 @@ "mdoRef": "Constant.СоздаватьЭлектронныеПодписиНаСервере", "mdoRefRu": "Константа.СоздаватьЭлектронныеПодписиНаСервере" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1835,7 +1835,7 @@ "mdoRef": "Constant.ИспользоватьДатуИВремяВСрокахЗадач", "mdoRefRu": "Константа.ИспользоватьДатуИВремяВСрокахЗадач" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1843,7 +1843,7 @@ "mdoRef": "InformationRegister.СклоненияПредставленийОбъектов", "mdoRefRu": "РегистрСведений.СклоненияПредставленийОбъектов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1851,7 +1851,7 @@ "mdoRef": "InformationRegister.СогласияНаОбработкуПерсональныхДанных", "mdoRefRu": "РегистрСведений.СогласияНаОбработкуПерсональныхДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1859,7 +1859,7 @@ "mdoRef": "InformationRegister.ПубличныеИдентификаторыСинхронизируемыхОбъектов", "mdoRefRu": "РегистрСведений.ПубличныеИдентификаторыСинхронизируемыхОбъектов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1867,7 +1867,7 @@ "mdoRef": "Document.ОтзывСогласияНаОбработкуПерсональныхДанных", "mdoRefRu": "Документ.ОтзывСогласияНаОбработкуПерсональныхДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1875,7 +1875,7 @@ "mdoRef": "InformationRegister.ДополнительныеАдресныеСведения", "mdoRefRu": "РегистрСведений.ДополнительныеАдресныеСведения" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1883,7 +1883,7 @@ "mdoRef": "Catalog.СертификатыКлючейЭлектроннойПодписиИШифрования", "mdoRefRu": "Справочник.СертификатыКлючейЭлектроннойПодписиИШифрования" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1891,7 +1891,7 @@ "mdoRef": "InformationRegister.НастройкиТранспортаОбменаДанными", "mdoRefRu": "РегистрСведений.НастройкиТранспортаОбменаДанными" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1899,7 +1899,7 @@ "mdoRef": "Constant.СтатусОбновленияКонфигурации", "mdoRefRu": "Константа.СтатусОбновленияКонфигурации" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1907,7 +1907,7 @@ "mdoRef": "Constant.ИспользоватьОтправкуSMSВШаблонахСообщений", "mdoRefRu": "Константа.ИспользоватьОтправкуSMSВШаблонахСообщений" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1915,7 +1915,7 @@ "mdoRef": "InformationRegister.ОбновлениеКлючейДоступаТекущиеЗадания", "mdoRefRu": "РегистрСведений.ОбновлениеКлючейДоступаТекущиеЗадания" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1923,7 +1923,7 @@ "mdoRef": "InformationRegister.СведенияОФайлах", "mdoRefRu": "РегистрСведений.СведенияОФайлах" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1931,7 +1931,7 @@ "mdoRef": "Constant.КоличествоПотоковОбновленияДоступа", "mdoRefRu": "Константа.КоличествоПотоковОбновленияДоступа" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1939,7 +1939,7 @@ "mdoRef": "InformationRegister.СоставыГруппПользователей", "mdoRefRu": "РегистрСведений.СоставыГруппПользователей" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1947,7 +1947,7 @@ "mdoRef": "InformationRegister.ПотокиОбновления", "mdoRefRu": "РегистрСведений.ПотокиОбновления" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1955,7 +1955,7 @@ "mdoRef": "InformationRegister.ПользовательскиеМакетыПечати", "mdoRefRu": "РегистрСведений.ПользовательскиеМакетыПечати" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1963,7 +1963,7 @@ "mdoRef": "InformationRegister.БезопасноеХранилищеДанныхОбластейДанных", "mdoRefRu": "РегистрСведений.БезопасноеХранилищеДанныхОбластейДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1971,7 +1971,7 @@ "mdoRef": "InformationRegister.ТаблицыГруппДоступа", "mdoRefRu": "РегистрСведений.ТаблицыГруппДоступа" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1979,7 +1979,7 @@ "mdoRef": "Catalog.ЗакладкиВзаимодействий", "mdoRefRu": "Справочник.ЗакладкиВзаимодействий" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1987,7 +1987,7 @@ "mdoRef": "Catalog.СостоянияОригиналовПервичныхДокументов", "mdoRefRu": "Справочник.СостоянияОригиналовПервичныхДокументов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1995,7 +1995,7 @@ "mdoRef": "InformationRegister.ИзмененияОбщихДанныхУзлов", "mdoRefRu": "РегистрСведений.ИзмененияОбщихДанныхУзлов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2003,7 +2003,7 @@ "mdoRef": "InformationRegister.ОбновлениеКлючейДоступаПользователей", "mdoRefRu": "РегистрСведений.ОбновлениеКлючейДоступаПользователей" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2011,7 +2011,7 @@ "mdoRef": "Catalog.РассылкиОтчетов", "mdoRefRu": "Справочник.РассылкиОтчетов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2019,7 +2019,7 @@ "mdoRef": "InformationRegister.НеразделенныеПользователи", "mdoRefRu": "РегистрСведений.НеразделенныеПользователи" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2027,7 +2027,7 @@ "mdoRef": "InformationRegister.УведомленияОПрочтении", "mdoRefRu": "РегистрСведений.УведомленияОПрочтении" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2035,7 +2035,7 @@ "mdoRef": "InformationRegister.ДанныеОбъектовДляРегистрацииВОбменах", "mdoRefRu": "РегистрСведений.ДанныеОбъектовДляРегистрацииВОбменах" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2043,7 +2043,7 @@ "mdoRef": "InformationRegister.ДанныеБизнесПроцессов", "mdoRefRu": "РегистрСведений.ДанныеБизнесПроцессов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2051,7 +2051,7 @@ "mdoRef": "Document.ЭлектронноеПисьмоИсходящее", "mdoRefRu": "Документ.ЭлектронноеПисьмоИсходящее" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2059,7 +2059,7 @@ "mdoRef": "Constant.МинимальныйИнтервалРегламентныхЗаданийДОИОВМоделиСервиса", "mdoRefRu": "Константа.МинимальныйИнтервалРегламентныхЗаданийДОИОВМоделиСервиса" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2067,7 +2067,7 @@ "mdoRef": "Constant.ИспользованиеКаталогаДополнительныхОтчетовИОбработокВМоделиСервиса", "mdoRefRu": "Константа.ИспользованиеКаталогаДополнительныхОтчетовИОбработокВМоделиСервиса" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2075,7 +2075,7 @@ "mdoRef": "InformationRegister.УдалитьЗамерыВремени3", "mdoRefRu": "РегистрСведений.УдалитьЗамерыВремени3" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2083,7 +2083,7 @@ "mdoRef": "InformationRegister.НастройкиПравОбъектов", "mdoRefRu": "РегистрСведений.НастройкиПравОбъектов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2091,7 +2091,7 @@ "mdoRef": "Catalog.ДополнительныеОтчетыИОбработки", "mdoRefRu": "Справочник.ДополнительныеОтчетыИОбработки" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2099,7 +2099,7 @@ "mdoRef": "Catalog.ВнешниеПользователи", "mdoRefRu": "Справочник.ВнешниеПользователи" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2107,7 +2107,7 @@ "mdoRef": "Catalog.ПапкиФайлов", "mdoRefRu": "Справочник.ПапкиФайлов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2115,7 +2115,7 @@ "mdoRef": "InformationRegister.НапоминанияПользователя", "mdoRefRu": "РегистрСведений.НапоминанияПользователя" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2123,7 +2123,7 @@ "mdoRef": "Constant.ДатаОбновленияПовторноИспользуемыхЗначенийМРО", "mdoRefRu": "Константа.ДатаОбновленияПовторноИспользуемыхЗначенийМРО" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2131,7 +2131,7 @@ "mdoRef": "InformationRegister.ЗначенияГруппДоступа", "mdoRefRu": "РегистрСведений.ЗначенияГруппДоступа" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2139,7 +2139,7 @@ "mdoRef": "Constant.ИспользоватьАльтернативныйСерверДляЗагрузкиКурсовВалют", "mdoRefRu": "Константа.ИспользоватьАльтернативныйСерверДляЗагрузкиКурсовВалют" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2147,7 +2147,7 @@ "mdoRef": "Constant.ИспользоватьПолнотекстовыйПоиск", "mdoRefRu": "Константа.ИспользоватьПолнотекстовыйПоиск" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2155,7 +2155,7 @@ "mdoRef": "Constant.КаталогСообщенийОбменаДаннымиДляWindows", "mdoRefRu": "Константа.КаталогСообщенийОбменаДаннымиДляWindows" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2163,7 +2163,7 @@ "mdoRef": "Constant.АвтоматическиНастраиватьРазрешенияВПрофиляхБезопасности", "mdoRefRu": "Константа.АвтоматическиНастраиватьРазрешенияВПрофиляхБезопасности" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2171,7 +2171,7 @@ "mdoRef": "InformationRegister.КэшПрограммныхИнтерфейсов", "mdoRefRu": "РегистрСведений.КэшПрограммныхИнтерфейсов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2179,7 +2179,7 @@ "mdoRef": "InformationRegister.ГруппыЗначенийДоступа", "mdoRefRu": "РегистрСведений.ГруппыЗначенийДоступа" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2187,7 +2187,7 @@ "mdoRef": "InformationRegister.НастройкиКомандПечати", "mdoRefRu": "РегистрСведений.НастройкиКомандПечати" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2195,7 +2195,7 @@ "mdoRef": "Constant.ДанныеДляОтложенногоОбновления", "mdoRefRu": "Константа.ДанныеДляОтложенногоОбновления" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2203,7 +2203,7 @@ "mdoRef": "Constant.НеИспользоватьРазделениеПоОбластямДанных", "mdoRefRu": "Константа.НеИспользоватьРазделениеПоОбластямДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2211,7 +2211,7 @@ "mdoRef": "Constant.КаталогСообщенийОбменаДаннымиДляLinux", "mdoRefRu": "Константа.КаталогСообщенийОбменаДаннымиДляLinux" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2219,7 +2219,7 @@ "mdoRef": "Constant.СведенияОБлокируемыхОбъектах", "mdoRefRu": "Константа.СведенияОБлокируемыхОбъектах" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2227,7 +2227,7 @@ "mdoRef": "Catalog.ПредопределенныеВариантыОтчетов", "mdoRefRu": "Справочник.ПредопределенныеВариантыОтчетов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2235,7 +2235,7 @@ "mdoRef": "Constant.ИспользоватьЭлектроннуюПочтуВШаблонахСообщений", "mdoRefRu": "Константа.ИспользоватьЭлектроннуюПочтуВШаблонахСообщений" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2243,7 +2243,7 @@ "mdoRef": "Constant.ИспользоватьСинхронизациюДанныхВМоделиСервисаСПриложениемВИнтернете", "mdoRefRu": "Константа.ИспользоватьСинхронизациюДанныхВМоделиСервисаСПриложениемВИнтернете" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2251,7 +2251,7 @@ "mdoRef": "Constant.ОценкаПроизводительностиПериодЗаписи", "mdoRefRu": "Константа.ОценкаПроизводительностиПериодЗаписи" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2259,7 +2259,7 @@ "mdoRef": "Constant.ГлавныйУзел", "mdoRefRu": "Константа.ГлавныйУзел" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2267,7 +2267,7 @@ "mdoRef": "Constant.ЗаголовокСистемы", "mdoRefRu": "Константа.ЗаголовокСистемы" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2275,7 +2275,7 @@ "mdoRef": "InformationRegister.РучныеИзмененияГрафиковРаботы", "mdoRefRu": "РегистрСведений.РучныеИзмененияГрафиковРаботы" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2283,7 +2283,7 @@ "mdoRef": "Constant.ИспользоватьБизнесПроцессыИЗадачи", "mdoRefRu": "Константа.ИспользоватьБизнесПроцессыИЗадачи" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2291,7 +2291,7 @@ "mdoRef": "InformationRegister.СостоянияОбменовДаннымиОбластейДанных", "mdoRefRu": "РегистрСведений.СостоянияОбменовДаннымиОбластейДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2299,7 +2299,7 @@ "mdoRef": "Catalog.ГруппыПользователей", "mdoRefRu": "Справочник.ГруппыПользователей" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2307,7 +2307,7 @@ "mdoRef": "Constant.ИспользуютсяПрофилиБезопасности", "mdoRefRu": "Константа.ИспользуютсяПрофилиБезопасности" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2315,7 +2315,7 @@ "mdoRef": "Constant.ОграничиватьДоступНаУровнеЗаписейУниверсально", "mdoRefRu": "Константа.ОграничиватьДоступНаУровнеЗаписейУниверсально" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2323,7 +2323,7 @@ "mdoRef": "Constant.ЗарегистрированыИзмененияДанных", "mdoRefRu": "Константа.ЗарегистрированыИзмененияДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2331,7 +2331,7 @@ "mdoRef": "InformationRegister.НастройкиОчисткиФайлов", "mdoRefRu": "РегистрСведений.НастройкиОчисткиФайлов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2339,7 +2339,7 @@ "mdoRef": "InformationRegister.ОбщиеНастройкиУзловИнформационныхБаз", "mdoRefRu": "РегистрСведений.ОбщиеНастройкиУзловИнформационныхБаз" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2347,7 +2347,7 @@ "mdoRef": "Catalog.ЗначенияСвойствОбъектовИерархия", "mdoRefRu": "Справочник.ЗначенияСвойствОбъектовИерархия" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2355,7 +2355,7 @@ "mdoRef": "Constant.МаксимальныйРазмерФайлаОбластиДанных", "mdoRefRu": "Константа.МаксимальныйРазмерФайлаОбластиДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2363,7 +2363,7 @@ "mdoRef": "Constant.ИспользоватьВнешнихПользователей", "mdoRefRu": "Константа.ИспользоватьВнешнихПользователей" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2371,7 +2371,7 @@ "mdoRef": "Catalog.УчетныеЗаписиСинхронизацииФайлов", "mdoRefRu": "Справочник.УчетныеЗаписиСинхронизацииФайлов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2379,7 +2379,7 @@ "mdoRef": "InformationRegister.ПараметрыРаботыПрограммы", "mdoRefRu": "РегистрСведений.ПараметрыРаботыПрограммы" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2387,7 +2387,7 @@ "mdoRef": "Catalog.ПрограммыЭлектроннойПодписиИШифрования", "mdoRefRu": "Справочник.ПрограммыЭлектроннойПодписиИШифрования" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2395,7 +2395,7 @@ "mdoRef": "Catalog.ИдентификаторыОбъектовРасширений", "mdoRefRu": "Справочник.ИдентификаторыОбъектовРасширений" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2403,7 +2403,7 @@ "mdoRef": "InformationRegister.СостоянияПапокПисем", "mdoRefRu": "РегистрСведений.СостоянияПапокПисем" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2411,7 +2411,7 @@ "mdoRef": "Constant.НастройкиКолонтитулов", "mdoRefRu": "Константа.НастройкиКолонтитулов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2419,7 +2419,7 @@ "mdoRef": "Constant.ИспользоватьОнлайнПоддержку", "mdoRefRu": "Константа.ИспользоватьОнлайнПоддержку" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2427,7 +2427,7 @@ "mdoRef": "InformationRegister.УдалитьНастройкиТранспортаОбмена", "mdoRefRu": "РегистрСведений.УдалитьНастройкиТранспортаОбмена" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2435,7 +2435,7 @@ "mdoRef": "ChartOfCharacteristicTypes.ОбъектыАдресацииЗадач", "mdoRefRu": "ПланВидовХарактеристик.ОбъектыАдресацииЗадач" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2443,7 +2443,7 @@ "mdoRef": "Constant.ИспользоватьГруппыПользователей", "mdoRefRu": "Константа.ИспользоватьГруппыПользователей" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2451,7 +2451,7 @@ "mdoRef": "Constant.СинхронизироватьДанныеСПриложениемВИнтернетеПриНачалеРаботыПрограммы", "mdoRefRu": "Константа.СинхронизироватьДанныеСПриложениемВИнтернетеПриНачалеРаботыПрограммы" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2459,7 +2459,7 @@ "mdoRef": "InformationRegister.ПсевдонимыПредопределенныхУзлов", "mdoRefRu": "РегистрСведений.ПсевдонимыПредопределенныхУзлов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2467,7 +2467,7 @@ "mdoRef": "InformationRegister.СостоянияУспешныхОбменовДаннымиОбластейДанных", "mdoRefRu": "РегистрСведений.СостоянияУспешныхОбменовДаннымиОбластейДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2475,7 +2475,7 @@ "mdoRef": "Constant.ИспользоватьНесколькоПроизводственныхКалендарей", "mdoRefRu": "Константа.ИспользоватьНесколькоПроизводственныхКалендарей" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2483,7 +2483,7 @@ "mdoRef": "InformationRegister.ПравилаДляОбменаДанными", "mdoRefRu": "РегистрСведений.ПравилаДляОбменаДанными" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2491,7 +2491,7 @@ "mdoRef": "InformationRegister.ОбластиСтатистики", "mdoRefRu": "РегистрСведений.ОбластиСтатистики" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2499,7 +2499,7 @@ "mdoRef": "InformationRegister.АдресныеОбъекты", "mdoRefRu": "РегистрСведений.АдресныеОбъекты" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2507,7 +2507,7 @@ "mdoRef": "Constant.НастройкаПодчиненногоУзлаРИБЗавершена", "mdoRefRu": "Константа.НастройкаПодчиненногоУзлаРИБЗавершена" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2515,7 +2515,7 @@ "mdoRef": "Catalog.ГруппыИсполнителейЗадач", "mdoRefRu": "Справочник.ГруппыИсполнителейЗадач" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2523,7 +2523,7 @@ "mdoRef": "Catalog.ЗначенияСвойствОбъектов", "mdoRefRu": "Справочник.ЗначенияСвойствОбъектов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2531,7 +2531,7 @@ "mdoRef": "InformationRegister.ДатыПоследнейЗагрузкиПочтовыхСообщений", "mdoRefRu": "РегистрСведений.ДатыПоследнейЗагрузкиПочтовыхСообщений" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2539,7 +2539,7 @@ "mdoRef": "InformationRegister.ЭлектронныеПодписи", "mdoRefRu": "РегистрСведений.ЭлектронныеПодписи" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2547,7 +2547,7 @@ "mdoRef": "InformationRegister.ПараметрыОграниченияДоступа", "mdoRefRu": "РегистрСведений.ПараметрыОграниченияДоступа" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2555,7 +2555,7 @@ "mdoRef": "Catalog.КлассификаторБанков", "mdoRefRu": "Справочник.КлассификаторБанков" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2563,7 +2563,7 @@ "mdoRef": "InformationRegister.ИсторияАдресныхОбъектов", "mdoRefRu": "РегистрСведений.ИсторияАдресныхОбъектов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2571,7 +2571,7 @@ "mdoRef": "Constant.СписокЗапрещенныхРасширений", "mdoRefRu": "Константа.СписокЗапрещенныхРасширений" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2579,7 +2579,7 @@ "mdoRef": "InformationRegister.СвязиАдресныхОбъектов", "mdoRefRu": "РегистрСведений.СвязиАдресныхОбъектов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2587,7 +2587,7 @@ "mdoRef": "InformationRegister.СообщенияОбменаДаннымиОбластейДанных", "mdoRefRu": "РегистрСведений.СообщенияОбменаДаннымиОбластейДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2595,7 +2595,7 @@ "mdoRef": "InformationRegister.НастройкиВариантовОтчетов", "mdoRefRu": "РегистрСведений.НастройкиВариантовОтчетов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2603,7 +2603,7 @@ "mdoRef": "Catalog.СообщениеSMSПрисоединенныеФайлы", "mdoRefRu": "Справочник.СообщениеSMSПрисоединенныеФайлы" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2611,7 +2611,7 @@ "mdoRef": "InformationRegister.СертификатыШифрования", "mdoRefRu": "РегистрСведений.СертификатыШифрования" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2619,7 +2619,7 @@ "mdoRef": "InformationRegister.УдалитьРезультатыОбменаДанными", "mdoRefRu": "РегистрСведений.УдалитьРезультатыОбменаДанными" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2627,7 +2627,7 @@ "mdoRef": "InformationRegister.ИспользованиеДополнительныхОтчетовИОбработокСервисаВАвтономномРабочемМесте", "mdoRefRu": "РегистрСведений.ИспользованиеДополнительныхОтчетовИОбработокСервисаВАвтономномРабочемМесте" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2635,7 +2635,7 @@ "mdoRef": "InformationRegister.ЗаблокированныеДляПолученияУчетныеЗаписи", "mdoRefRu": "РегистрСведений.ЗаблокированныеДляПолученияУчетныеЗаписи" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2643,7 +2643,7 @@ "mdoRef": "InformationRegister.ПараметрыРаботыВерсийРасширений", "mdoRefRu": "РегистрСведений.ПараметрыРаботыВерсийРасширений" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2651,7 +2651,7 @@ "mdoRef": "InformationRegister.НастройкиТранспортаОбменаОбластиДанных", "mdoRefRu": "РегистрСведений.НастройкиТранспортаОбменаОбластиДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2659,7 +2659,7 @@ "mdoRef": "Constant.ИспользоватьНапоминанияПользователя", "mdoRefRu": "Константа.ИспользоватьНапоминанияПользователя" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2667,7 +2667,7 @@ "mdoRef": "Constant.ПрефиксУзлаРаспределеннойИнформационнойБазы", "mdoRefRu": "Константа.ПрефиксУзлаРаспределеннойИнформационнойБазы" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2675,7 +2675,7 @@ "mdoRef": "Constant.СообщениеОбменаДаннымиИзГлавногоУзла", "mdoRefRu": "Константа.СообщениеОбменаДаннымиИзГлавногоУзла" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2683,7 +2683,7 @@ "mdoRef": "Constant.ИспользоватьЗаметки", "mdoRefRu": "Константа.ИспользоватьЗаметки" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2691,7 +2691,7 @@ "mdoRef": "InformationRegister.ОчередьИнсталляцииПоставляемыхДополнительныхОтчетовИОбработокВОбластиДанных", "mdoRefRu": "РегистрСведений.ОчередьИнсталляцииПоставляемыхДополнительныхОтчетовИОбработокВОбластиДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2699,7 +2699,7 @@ "mdoRef": "Catalog.ЯзыкиПечатныхФорм", "mdoRefRu": "Справочник.ЯзыкиПечатныхФорм" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2707,7 +2707,7 @@ "mdoRef": "Document.СогласиеНаОбработкуПерсональныхДанных", "mdoRefRu": "Документ.СогласиеНаОбработкуПерсональныхДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2715,7 +2715,7 @@ "mdoRef": "InformationRegister.РезультатыОбменаДанными", "mdoRefRu": "РегистрСведений.РезультатыОбменаДанными" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2723,7 +2723,7 @@ "mdoRef": "InformationRegister.БуферОперацийСтатистики", "mdoRefRu": "РегистрСведений.БуферОперацийСтатистики" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2731,7 +2731,7 @@ "mdoRef": "Constant.ПараметрыЦентраМониторинга", "mdoRefRu": "Константа.ПараметрыЦентраМониторинга" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2739,7 +2739,7 @@ "mdoRef": "Constant.ОграничиватьДоступНаУровнеЗаписей", "mdoRefRu": "Константа.ОграничиватьДоступНаУровнеЗаписей" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2747,7 +2747,7 @@ "mdoRef": "Catalog.ГруппыВнешнихПользователей", "mdoRefRu": "Справочник.ГруппыВнешнихПользователей" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2755,7 +2755,7 @@ "mdoRef": "InformationRegister.ЗамерыВремениТехнологические", "mdoRefRu": "РегистрСведений.ЗамерыВремениТехнологические" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2763,7 +2763,7 @@ "mdoRef": "Constant.ИспользоватьРазделениеПоОбластямДанных", "mdoRefRu": "Константа.ИспользоватьРазделениеПоОбластямДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2771,7 +2771,7 @@ "mdoRef": "Constant.ХранитьФайлыВТомахНаДиске", "mdoRefRu": "Константа.ХранитьФайлыВТомахНаДиске" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2779,7 +2779,7 @@ "mdoRef": "Constant.ИспользоватьСервисСклоненияMorpher", "mdoRefRu": "Константа.ИспользоватьСервисСклоненияMorpher" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2787,7 +2787,7 @@ "mdoRef": "Constant.СведенияОбОбновленииИБ", "mdoRefRu": "Константа.СведенияОбОбновленииИБ" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2795,7 +2795,7 @@ "mdoRef": "Catalog.ГруппыДоступа", "mdoRefRu": "Справочник.ГруппыДоступа" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2803,7 +2803,7 @@ "mdoRef": "InformationRegister.ОбщиеПоставляемыеМакетыПечати", "mdoRefRu": "РегистрСведений.ОбщиеПоставляемыеМакетыПечати" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2811,7 +2811,7 @@ "mdoRef": "Constant.КоличествоПотоковОбновленияИнформационнойБазы", "mdoRefRu": "Константа.КоличествоПотоковОбновленияИнформационнойБазы" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2819,7 +2819,7 @@ "mdoRef": "InformationRegister.СостоянияУспешныхОбменовДанными", "mdoRefRu": "РегистрСведений.СостоянияУспешныхОбменовДанными" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2827,7 +2827,7 @@ "mdoRef": "InformationRegister.ИспользуемыеВидыДоступа", "mdoRefRu": "РегистрСведений.ИспользуемыеВидыДоступа" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2835,7 +2835,7 @@ "mdoRef": "Constant.ОтложенноеОбновлениеВГлавномУзлеЗавершеноУспешно", "mdoRefRu": "Константа.ОтложенноеОбновлениеВГлавномУзлеЗавершеноУспешно" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2843,7 +2843,7 @@ "mdoRef": "InformationRegister.ДатыЗапретаИзменения", "mdoRefRu": "РегистрСведений.ДатыЗапретаИзменения" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2851,7 +2851,7 @@ "mdoRef": "InformationRegister.УдаляемыеОбъекты", "mdoRefRu": "РегистрСведений.УдаляемыеОбъекты" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2859,7 +2859,7 @@ "mdoRef": "Catalog.ВстречаПрисоединенныеФайлы", "mdoRefRu": "Справочник.ВстречаПрисоединенныеФайлы" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2867,7 +2867,7 @@ "mdoRef": "InformationRegister.КлючиДоступаКРегистрам", "mdoRefRu": "РегистрСведений.КлючиДоступаКРегистрам" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2875,7 +2875,7 @@ "mdoRef": "Constant.ИспользоватьДатыЗапретаИзменения", "mdoRefRu": "Константа.ИспользоватьДатыЗапретаИзменения" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2883,7 +2883,7 @@ "mdoRef": "InformationRegister.ЗемельныеУчастки", "mdoRefRu": "РегистрСведений.ЗемельныеУчастки" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2891,7 +2891,7 @@ "mdoRef": "InformationRegister.КлючиДоступаКОбъектам", "mdoRefRu": "РегистрСведений.КлючиДоступаКОбъектам" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2899,7 +2899,7 @@ "mdoRef": "Constant.ИспользоватьПрочиеВзаимодействия", "mdoRefRu": "Константа.ИспользоватьПрочиеВзаимодействия" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2907,7 +2907,7 @@ "mdoRef": "Constant.ЭтоАвтономноеРабочееМесто", "mdoRefRu": "Константа.ЭтоАвтономноеРабочееМесто" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2915,7 +2915,7 @@ "mdoRef": "Catalog.НаборыГруппДоступа", "mdoRefRu": "Справочник.НаборыГруппДоступа" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2923,7 +2923,7 @@ "mdoRef": "Catalog.ТомаХраненияФайлов", "mdoRefRu": "Справочник.ТомаХраненияФайлов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2931,7 +2931,7 @@ "mdoRef": "InformationRegister.ВерсииПодсистемОбластейДанных", "mdoRefRu": "РегистрСведений.ВерсииПодсистемОбластейДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2939,7 +2939,7 @@ "mdoRef": "Catalog.ПравилаОбработкиЭлектроннойПочты", "mdoRefRu": "Справочник.ПравилаОбработкиЭлектроннойПочты" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2947,7 +2947,7 @@ "mdoRef": "ChartOfCharacteristicTypes.ВопросыДляАнкетирования", "mdoRefRu": "ПланВидовХарактеристик.ВопросыДляАнкетирования" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2955,7 +2955,7 @@ "mdoRef": "BusinessProcess.Задание", "mdoRefRu": "БизнесПроцесс.Задание" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2963,7 +2963,7 @@ "mdoRef": "InformationRegister.ИдентификаторыОбъектовВерсийРасширений", "mdoRefRu": "РегистрСведений.ИдентификаторыОбъектовВерсийРасширений" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2971,7 +2971,7 @@ "mdoRef": "Constant.СинхронизироватьДанныеСПриложениемВИнтернетеПриЗавершенииРаботыПрограммы", "mdoRefRu": "Константа.СинхронизироватьДанныеСПриложениемВИнтернетеПриЗавершенииРаботыПрограммы" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2979,7 +2979,7 @@ "mdoRef": "Constant.КоличествоЭлементовВТранзакцииЗагрузкиДанных", "mdoRefRu": "Константа.КоличествоЭлементовВТранзакцииЗагрузкиДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2987,7 +2987,7 @@ "mdoRef": "Constant.ЗагрузитьРасширенияИзменяющиеСтруктуруДанных", "mdoRefRu": "Константа.ЗагрузитьРасширенияИзменяющиеСтруктуруДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2995,7 +2995,7 @@ "mdoRef": "InformationRegister.КлючиДоступаПользователей", "mdoRefRu": "РегистрСведений.КлючиДоступаПользователей" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3003,7 +3003,7 @@ "mdoRef": "InformationRegister.КлючиДоступаГруппДоступа", "mdoRefRu": "РегистрСведений.КлючиДоступаГруппДоступа" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3011,7 +3011,7 @@ "mdoRef": "InformationRegister.ИспользуемыеВидыДоступаПоТаблицам", "mdoRefRu": "РегистрСведений.ИспользуемыеВидыДоступаПоТаблицам" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3019,7 +3019,7 @@ "mdoRef": "InformationRegister.ДампыПлатформы", "mdoRefRu": "РегистрСведений.ДампыПлатформы" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3027,7 +3027,7 @@ "mdoRef": "Constant.АдресПубликацииИнформационнойБазыВЛокальнойСети", "mdoRefRu": "Константа.АдресПубликацииИнформационнойБазыВЛокальнойСети" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3035,7 +3035,7 @@ "mdoRef": "InformationRegister.КодировкиФайлов", "mdoRefRu": "РегистрСведений.КодировкиФайлов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3043,7 +3043,7 @@ "mdoRef": "InformationRegister.ЗамерыОперацииСтатистики", "mdoRefRu": "РегистрСведений.ЗамерыОперацииСтатистики" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3051,7 +3051,7 @@ "mdoRef": "Constant.ПоследнееОбновлениеДоступа", "mdoRefRu": "Константа.ПоследнееОбновлениеДоступа" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3059,7 +3059,7 @@ "mdoRef": "Catalog.Файлы", "mdoRefRu": "Справочник.Файлы" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3067,7 +3067,7 @@ "mdoRef": "Constant.ПрефиксПоследнегоАвтономногоРабочегоМеста", "mdoRefRu": "Константа.ПрефиксПоследнегоАвтономногоРабочегоМеста" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3075,7 +3075,7 @@ "mdoRef": "Constant.ИсточникДанныхАдресногоКлассификатора", "mdoRefRu": "Константа.ИсточникДанныхАдресногоКлассификатора" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3083,7 +3083,7 @@ "mdoRef": "InformationRegister.ЗамерыСтатистики", "mdoRefRu": "РегистрСведений.ЗамерыСтатистики" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3091,7 +3091,7 @@ "mdoRef": "InformationRegister.КомментарииСтатистики", "mdoRefRu": "РегистрСведений.КомментарииСтатистики" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3099,7 +3099,7 @@ "mdoRef": "InformationRegister.ОриентирыАдресныхОбъектов", "mdoRefRu": "РегистрСведений.ОриентирыАдресныхОбъектов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3107,7 +3107,7 @@ "mdoRef": "Constant.СинхронизироватьФайлы", "mdoRefRu": "Константа.СинхронизироватьФайлы" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3115,7 +3115,7 @@ "mdoRef": "Catalog.ВерсииФайлов", "mdoRefRu": "Справочник.ВерсииФайлов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3123,7 +3123,7 @@ "mdoRef": "InformationRegister.ОперацииСтатистики", "mdoRefRu": "РегистрСведений.ОперацииСтатистики" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3131,7 +3131,7 @@ "mdoRef": "InformationRegister.ДвоичныеДанныеФайлов", "mdoRefRu": "РегистрСведений.ДвоичныеДанныеФайлов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3139,7 +3139,7 @@ "mdoRef": "InformationRegister.ОбработчикиОбновленияОбщихДанных", "mdoRefRu": "РегистрСведений.ОбработчикиОбновленияОбщихДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3147,7 +3147,7 @@ "mdoRef": "Constant.ПовторитьЗагрузкуСообщенияОбменаДаннымиПередЗапуском", "mdoRefRu": "Константа.ПовторитьЗагрузкуСообщенияОбменаДаннымиПередЗапуском" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3155,7 +3155,7 @@ "mdoRef": "InformationRegister.КомментарииОперацииСтатистики", "mdoRefRu": "РегистрСведений.КомментарииОперацииСтатистики" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3163,7 +3163,7 @@ "mdoRef": "InformationRegister.КонтактыВзаимодействий", "mdoRefRu": "РегистрСведений.КонтактыВзаимодействий" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3171,7 +3171,7 @@ "mdoRef": "InformationRegister.РабочиеКаталогиФайлов", "mdoRefRu": "РегистрСведений.РабочиеКаталогиФайлов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3179,7 +3179,7 @@ "mdoRef": "InformationRegister.ПакетыДляОтправки", "mdoRefRu": "РегистрСведений.ПакетыДляОтправки" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3187,7 +3187,7 @@ "mdoRef": "Constant.ДетализироватьОбновлениеИБВЖурналеРегистрации", "mdoRefRu": "Константа.ДетализироватьОбновлениеИБВЖурналеРегистрации" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3195,7 +3195,7 @@ "mdoRef": "Catalog.ПрофилиГруппДоступа", "mdoRefRu": "Справочник.ПрофилиГруппДоступа" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3203,7 +3203,7 @@ "mdoRef": "Document.ЭлектронноеПисьмоВходящее", "mdoRefRu": "Документ.ЭлектронноеПисьмоВходящее" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3211,7 +3211,7 @@ "mdoRef": "Constant.ИспользоватьСинхронизациюДанных", "mdoRefRu": "Константа.ИспользоватьСинхронизациюДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3219,7 +3219,7 @@ "mdoRef": "Constant.ИдентификаторИнформационнойБазы", "mdoRefRu": "Константа.ИдентификаторИнформационнойБазы" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3227,7 +3227,7 @@ "mdoRef": "InformationRegister.ПоставляемыеМакетыПечати", "mdoRefRu": "РегистрСведений.ПоставляемыеМакетыПечати" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3235,7 +3235,7 @@ "mdoRef": "Constant.ИзменятьЗаданияЗаднимЧислом", "mdoRefRu": "Константа.ИзменятьЗаданияЗаднимЧислом" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3243,7 +3243,7 @@ "mdoRef": "InformationRegister.РежимыПодключенияВнешнихМодулей", "mdoRefRu": "РегистрСведений.РежимыПодключенияВнешнихМодулей" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3251,7 +3251,7 @@ "mdoRef": "InformationRegister.БезопасноеХранилищеДанных", "mdoRefRu": "РегистрСведений.БезопасноеХранилищеДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3259,7 +3259,7 @@ "mdoRef": "InformationRegister.СостоянияПредметовВзаимодействий", "mdoRefRu": "РегистрСведений.СостоянияПредметовВзаимодействий" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3267,7 +3267,7 @@ "mdoRef": "InformationRegister.РезультатыПроверкиУчета", "mdoRefRu": "РегистрСведений.РезультатыПроверкиУчета" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3275,7 +3275,7 @@ "mdoRef": "Constant.ИспользоватьСинхронизациюДанныхВМоделиСервисаСЛокальнойПрограммой", "mdoRefRu": "Константа.ИспользоватьСинхронизациюДанныхВМоделиСервисаСЛокальнойПрограммой" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3283,7 +3283,7 @@ "mdoRef": "InformationRegister.СведенияОПользователях", "mdoRefRu": "РегистрСведений.СведенияОПользователях" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3291,7 +3291,7 @@ "mdoRef": "InformationRegister.БлокировкиСеансовОбластейДанных", "mdoRefRu": "РегистрСведений.БлокировкиСеансовОбластейДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3299,7 +3299,7 @@ "mdoRef": "Constant.ИспользоватьУдалениеПомеченныхОбъектов", "mdoRefRu": "Константа.ИспользоватьУдалениеПомеченныхОбъектов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3307,7 +3307,7 @@ "mdoRef": "Constant.ИспользоватьДатуНачалаЗадач", "mdoRefRu": "Константа.ИспользоватьДатуНачалаЗадач" }, - "autoRecord": "DENY" + "allow": false } ], [] diff --git "a/src/test/resources/fixtures/ssl_3_1/ExchangePlans.\320\236\320\261\320\275\320\276\320\262\320\273\320\265\320\275\320\270\320\265\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\320\276\320\275\320\275\320\276\320\271\320\221\320\260\320\267\321\213_edt.json" "b/src/test/resources/fixtures/ssl_3_1/ExchangePlans.\320\236\320\261\320\275\320\276\320\262\320\273\320\265\320\275\320\270\320\265\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\320\276\320\275\320\275\320\276\320\271\320\221\320\260\320\267\321\213_edt.json" index 9f203477e..0938f99a2 100644 --- "a/src/test/resources/fixtures/ssl_3_1/ExchangePlans.\320\236\320\261\320\275\320\276\320\262\320\273\320\265\320\275\320\270\320\265\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\320\276\320\275\320\275\320\276\320\271\320\221\320\260\320\267\321\213_edt.json" +++ "b/src/test/resources/fixtures/ssl_3_1/ExchangePlans.\320\236\320\261\320\275\320\276\320\262\320\273\320\265\320\275\320\270\320\265\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\320\276\320\275\320\275\320\276\320\271\320\221\320\260\320\267\321\213_edt.json" @@ -523,7 +523,7 @@ "mdoRef": "InformationRegister.СостоянияРассылокОтчетов", "mdoRefRu": "РегистрСведений.СостоянияРассылокОтчетов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -531,7 +531,7 @@ "mdoRef": "Catalog.ЭлектронноеПисьмоВходящееПрисоединенныеФайлы", "mdoRefRu": "Справочник.ЭлектронноеПисьмоВходящееПрисоединенныеФайлы" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -539,7 +539,7 @@ "mdoRef": "Catalog.ШаблоныАнкет", "mdoRefRu": "Справочник.ШаблоныАнкет" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -547,7 +547,7 @@ "mdoRef": "InformationRegister.ПроцессыДляЗапуска", "mdoRefRu": "РегистрСведений.ПроцессыДляЗапуска" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -555,7 +555,7 @@ "mdoRef": "InformationRegister.НаличиеФайлов", "mdoRefRu": "РегистрСведений.НаличиеФайлов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -563,7 +563,7 @@ "mdoRef": "Constant.ИспользоватьПочтовыйКлиент", "mdoRefRu": "Константа.ИспользоватьПочтовыйКлиент" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -571,7 +571,7 @@ "mdoRef": "InformationRegister.УдалитьХранимыеФайлыВерсий", "mdoRefRu": "РегистрСведений.УдалитьХранимыеФайлыВерсий" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -579,7 +579,7 @@ "mdoRef": "Constant.ПараметрыАдминистрированияИБ", "mdoRefRu": "Константа.ПараметрыАдминистрированияИБ" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -587,7 +587,7 @@ "mdoRef": "Constant.ИспользоватьШаблоныСообщений", "mdoRefRu": "Константа.ИспользоватьШаблоныСообщений" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -595,7 +595,7 @@ "mdoRef": "Constant.ПараметрыИтоговИАгрегатов", "mdoRefRu": "Константа.ПараметрыИтоговИАгрегатов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -603,7 +603,7 @@ "mdoRef": "InformationRegister.СообщенияОбменаДанными", "mdoRefRu": "РегистрСведений.СообщенияОбменаДанными" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -611,7 +611,7 @@ "mdoRef": "Catalog.НаборыДополнительныхРеквизитовИСведений", "mdoRefRu": "Справочник.НаборыДополнительныхРеквизитовИСведений" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -619,7 +619,7 @@ "mdoRef": "InformationRegister.ПериодыНерабочихДнейКалендаря", "mdoRefRu": "РегистрСведений.ПериодыНерабочихДнейКалендаря" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -627,7 +627,7 @@ "mdoRef": "Catalog.ПапкиЭлектронныхПисем", "mdoRefRu": "Справочник.ПапкиЭлектронныхПисем" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -635,7 +635,7 @@ "mdoRef": "Catalog.ВариантыОтчетов", "mdoRefRu": "Справочник.ВариантыОтчетов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -643,7 +643,7 @@ "mdoRef": "InformationRegister.ОтветыНаВопросыАнкет", "mdoRefRu": "РегистрСведений.ОтветыНаВопросыАнкет" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -651,7 +651,7 @@ "mdoRef": "InformationRegister.ВерсииОбъектов", "mdoRefRu": "РегистрСведений.ВерсииОбъектов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -659,7 +659,7 @@ "mdoRef": "Constant.ДатаУведомленияОНовыхЗадачах", "mdoRefRu": "Константа.ДатаУведомленияОНовыхЗадачах" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -667,7 +667,7 @@ "mdoRef": "InformationRegister.КэшПереводов", "mdoRefRu": "РегистрСведений.КэшПереводов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -675,7 +675,7 @@ "mdoRef": "InformationRegister.ЗамерыКомментарииСтатистики", "mdoRefRu": "РегистрСведений.ЗамерыКомментарииСтатистики" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -683,7 +683,7 @@ "mdoRef": "Constant.ИспользоватьЭлектронныеПодписи", "mdoRefRu": "Константа.ИспользоватьЭлектронныеПодписи" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -691,7 +691,7 @@ "mdoRef": "Catalog.ПрофилиКлючевыхОпераций", "mdoRefRu": "Справочник.ПрофилиКлючевыхОпераций" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -699,7 +699,7 @@ "mdoRef": "Constant.ПараметрыРезервногоКопирования", "mdoRefRu": "Константа.ПараметрыРезервногоКопирования" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -707,7 +707,7 @@ "mdoRef": "Constant.ИспользоватьДополнительныеОтчетыИОбработки", "mdoRefRu": "Константа.ИспользоватьДополнительныеОтчетыИОбработки" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -715,7 +715,7 @@ "mdoRef": "InformationRegister.СтатистикаКонфигурации", "mdoRefRu": "РегистрСведений.СтатистикаКонфигурации" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -723,7 +723,7 @@ "mdoRef": "InformationRegister.НомераОтсканированныхФайлов", "mdoRefRu": "РегистрСведений.НомераОтсканированныхФайлов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -731,7 +731,7 @@ "mdoRef": "ChartOfCharacteristicTypes.РазделыДатЗапретаИзменения", "mdoRefRu": "ПланВидовХарактеристик.РазделыДатЗапретаИзменения" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -739,7 +739,7 @@ "mdoRef": "InformationRegister.НеудаленныеОбъекты", "mdoRefRu": "РегистрСведений.НеудаленныеОбъекты" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -747,7 +747,7 @@ "mdoRef": "Constant.ПериодХраненияЗамеров", "mdoRefRu": "Константа.ПериодХраненияЗамеров" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -755,7 +755,7 @@ "mdoRef": "Constant.НастройкиПодчиненногоУзлаРИБ", "mdoRefRu": "Константа.НастройкиПодчиненногоУзлаРИБ" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -763,7 +763,7 @@ "mdoRef": "InformationRegister.НепринятыеКОбработкеПочтовымСерверомИсходящиеПисьма", "mdoRefRu": "РегистрСведений.НепринятыеКОбработкеПочтовымСерверомИсходящиеПисьма" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -771,7 +771,7 @@ "mdoRef": "Catalog.ВопросыШаблонаАнкеты", "mdoRefRu": "Справочник.ВопросыШаблонаАнкеты" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -779,7 +779,7 @@ "mdoRef": "InformationRegister.ЗамерыВремени", "mdoRefRu": "РегистрСведений.ЗамерыВремени" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -787,7 +787,7 @@ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения", "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -795,7 +795,7 @@ "mdoRef": "InformationRegister.КурсыВалют", "mdoRefRu": "РегистрСведений.КурсыВалют" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -803,7 +803,7 @@ "mdoRef": "Constant.ВерсияДатЗапретаИзменения", "mdoRefRu": "Константа.ВерсияДатЗапретаИзменения" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -811,7 +811,7 @@ "mdoRef": "Constant.НастройкаПроксиСервера", "mdoRefRu": "Константа.НастройкаПроксиСервера" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -819,7 +819,7 @@ "mdoRef": "Constant.ЗапрещатьЗагрузкуФайловПоРасширению", "mdoRefRu": "Константа.ЗапрещатьЗагрузкуФайловПоРасширению" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -827,7 +827,7 @@ "mdoRef": "InformationRegister.ОбработчикиСобытийСинхронизацииДанных", "mdoRefRu": "РегистрСведений.ОбработчикиСобытийСинхронизацииДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -835,7 +835,7 @@ "mdoRef": "Catalog.ВнешниеКомпоненты", "mdoRefRu": "Справочник.ВнешниеКомпоненты" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -843,7 +843,7 @@ "mdoRef": "Constant.АдресПубликацииИнформационнойБазыВИнтернете", "mdoRefRu": "Константа.АдресПубликацииИнформационнойБазыВИнтернете" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -851,7 +851,7 @@ "mdoRef": "Catalog.КлючиДоступа", "mdoRefRu": "Справочник.КлючиДоступа" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -859,7 +859,7 @@ "mdoRef": "InformationRegister.НаборыЗначенийДоступа", "mdoRefRu": "РегистрСведений.НаборыЗначенийДоступа" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -867,7 +867,7 @@ "mdoRef": "InformationRegister.НастройкиУчетныхЗаписейЭлектроннойПочты", "mdoRefRu": "РегистрСведений.НастройкиУчетныхЗаписейЭлектроннойПочты" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -875,7 +875,7 @@ "mdoRef": "InformationRegister.КалендарныеГрафики", "mdoRefRu": "РегистрСведений.КалендарныеГрафики" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -883,7 +883,7 @@ "mdoRef": "InformationRegister.ДомаЗданияСтроения", "mdoRefRu": "РегистрСведений.ДомаЗданияСтроения" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -891,7 +891,7 @@ "mdoRef": "Constant.ЗапретитьОтображениеНебезопасногоСодержимогоВПисьмах", "mdoRefRu": "Константа.ЗапретитьОтображениеНебезопасногоСодержимогоВПисьмах" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -899,7 +899,7 @@ "mdoRef": "Catalog.ШаблоныСообщенийПрисоединенныеФайлы", "mdoRefRu": "Справочник.ШаблоныСообщенийПрисоединенныеФайлы" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -907,7 +907,7 @@ "mdoRef": "Catalog.Календари", "mdoRefRu": "Справочник.Календари" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -915,7 +915,7 @@ "mdoRef": "InformationRegister.ИдентификаторыПолученныхЭлектронныхПисем", "mdoRefRu": "РегистрСведений.ИдентификаторыПолученныхЭлектронныхПисем" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -923,7 +923,7 @@ "mdoRef": "InformationRegister.ОбновлениеКлючейДоступаКДанным", "mdoRefRu": "РегистрСведений.ОбновлениеКлючейДоступаКДанным" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -931,7 +931,7 @@ "mdoRef": "Catalog.Валюты", "mdoRefRu": "Справочник.Валюты" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -939,7 +939,7 @@ "mdoRef": "Catalog.ШаблоныСообщений", "mdoRefRu": "Справочник.ШаблоныСообщений" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -947,7 +947,7 @@ "mdoRef": "InformationRegister.ЗависимостиПравДоступа", "mdoRefRu": "РегистрСведений.ЗависимостиПравДоступа" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -955,7 +955,7 @@ "mdoRef": "InformationRegister.СлужебныеАдресныеСведения", "mdoRefRu": "РегистрСведений.СлужебныеАдресныеСведения" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -963,7 +963,7 @@ "mdoRef": "InformationRegister.УровниСокращенийАдресныхСведений", "mdoRefRu": "РегистрСведений.УровниСокращенийАдресныхСведений" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -971,7 +971,7 @@ "mdoRef": "InformationRegister.СостоянияОригиналовПервичныхДокументов", "mdoRefRu": "РегистрСведений.СостоянияОригиналовПервичныхДокументов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -979,7 +979,7 @@ "mdoRef": "InformationRegister.СоответствияОбъектовИнформационныхБаз", "mdoRefRu": "РегистрСведений.СоответствияОбъектовИнформационныхБаз" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -987,7 +987,7 @@ "mdoRef": "Constant.ИспользоватьСинхронизациюДанныхВЛокальномРежиме", "mdoRefRu": "Константа.ИспользоватьСинхронизациюДанныхВЛокальномРежиме" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -995,7 +995,7 @@ "mdoRef": "Constant.ВерсияКлассификатораБанков", "mdoRefRu": "Константа.ВерсияКлассификатораБанков" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1003,7 +1003,7 @@ "mdoRef": "Constant.ВыполнятьЗамерыПроизводительности", "mdoRefRu": "Константа.ВыполнятьЗамерыПроизводительности" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1011,7 +1011,7 @@ "mdoRef": "Constant.ПрофильБезопасностиИнформационнойБазы", "mdoRefRu": "Константа.ПрофильБезопасностиИнформационнойБазы" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1019,7 +1019,7 @@ "mdoRef": "Constant.ДнейДоСкрытияПерсональныхДанныхСубъектов", "mdoRefRu": "Константа.ДнейДоСкрытияПерсональныхДанныхСубъектов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1027,7 +1027,7 @@ "mdoRef": "Catalog.ЗапланированноеВзаимодействиеПрисоединенныеФайлы", "mdoRefRu": "Справочник.ЗапланированноеВзаимодействиеПрисоединенныеФайлы" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1035,7 +1035,7 @@ "mdoRef": "InformationRegister.НастройкиОбменаДаннымиXDTO", "mdoRefRu": "РегистрСведений.НастройкиОбменаДаннымиXDTO" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1043,7 +1043,7 @@ "mdoRef": "Constant.ИспользоватьПризнакРассмотрено", "mdoRefRu": "Константа.ИспользоватьПризнакРассмотрено" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1051,7 +1051,7 @@ "mdoRef": "InformationRegister.ПредопределенныеВариантыОтчетовВерсийРасширений", "mdoRefRu": "РегистрСведений.ПредопределенныеВариантыОтчетовВерсийРасширений" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1059,7 +1059,7 @@ "mdoRef": "InformationRegister.СубъектыДляСкрытияПерсональныхДанных", "mdoRefRu": "РегистрСведений.СубъектыДляСкрытияПерсональныхДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1067,7 +1067,7 @@ "mdoRef": "Constant.СписокРасширенийФайловOpenDocumentОбластиДанных", "mdoRefRu": "Константа.СписокРасширенийФайловOpenDocumentОбластиДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1075,7 +1075,7 @@ "mdoRef": "Constant.ИспользоватьСинхронизациюДанныхВМоделиСервиса", "mdoRefRu": "Константа.ИспользоватьСинхронизациюДанныхВМоделиСервиса" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1083,7 +1083,7 @@ "mdoRef": "InformationRegister.ИспользованиеПоставляемыхДополнительныхОтчетовИОбработокВОбластяхДанных", "mdoRefRu": "РегистрСведений.ИспользованиеПоставляемыхДополнительныхОтчетовИОбработокВОбластяхДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1091,7 +1091,7 @@ "mdoRef": "InformationRegister.РазрешенияНаИспользованиеВнешнихРесурсов", "mdoRefRu": "РегистрСведений.РазрешенияНаИспользованиеВнешнихРесурсов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1099,7 +1099,7 @@ "mdoRef": "InformationRegister.НастройкиСинхронизацииФайлов", "mdoRefRu": "РегистрСведений.НастройкиСинхронизацииФайлов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1107,7 +1107,7 @@ "mdoRef": "InformationRegister.УдалитьОбластиПерсональныхДанных", "mdoRefRu": "РегистрСведений.УдалитьОбластиПерсональныхДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1115,7 +1115,7 @@ "mdoRef": "Catalog.КлючевыеОперации", "mdoRefRu": "Справочник.КлючевыеОперации" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1123,7 +1123,7 @@ "mdoRef": "Catalog.ВидыПроверок", "mdoRefRu": "Справочник.ВидыПроверок" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1131,7 +1131,7 @@ "mdoRef": "Constant.НезависимоеИспользованиеДополнительныхОтчетовИОбработокВМоделиСервиса", "mdoRefRu": "Константа.НезависимоеИспользованиеДополнительныхОтчетовИОбработокВМоделиСервиса" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1139,7 +1139,7 @@ "mdoRef": "Catalog.ВариантыОтветовАнкет", "mdoRefRu": "Справочник.ВариантыОтветовАнкет" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1147,7 +1147,7 @@ "mdoRef": "Catalog.Заметки", "mdoRefRu": "Справочник.Заметки" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1155,7 +1155,7 @@ "mdoRef": "Constant.АдресДляВосстановленияПароляУчетнойЗаписи", "mdoRefRu": "Константа.АдресДляВосстановленияПароляУчетнойЗаписи" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1163,7 +1163,7 @@ "mdoRef": "Task.ЗадачаИсполнителя", "mdoRefRu": "Задача.ЗадачаИсполнителя" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1171,7 +1171,7 @@ "mdoRef": "InformationRegister.ДополнительныеСведения", "mdoRefRu": "РегистрСведений.ДополнительныеСведения" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1179,7 +1179,7 @@ "mdoRef": "Catalog.ПредопределенныеВариантыОтчетовРасширений", "mdoRefRu": "Справочник.ПредопределенныеВариантыОтчетовРасширений" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1187,7 +1187,7 @@ "mdoRef": "InformationRegister.КлючиДоступаКРегиструРезультатыПроверкиУчета", "mdoRefRu": "РегистрСведений.КлючиДоступаКРегиструРезультатыПроверкиУчета" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1195,7 +1195,7 @@ "mdoRef": "InformationRegister.ПутиКПрограммамЭлектроннойПодписиИШифрованияНаСерверахLinux", "mdoRefRu": "РегистрСведений.ПутиКПрограммамЭлектроннойПодписиИШифрованияНаСерверахLinux" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1203,7 +1203,7 @@ "mdoRef": "InformationRegister.СостоянияПроверокВеденияУчета", "mdoRefRu": "РегистрСведений.СостоянияПроверокВеденияУчета" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1211,7 +1211,7 @@ "mdoRef": "Document.НазначениеОпросов", "mdoRefRu": "Документ.НазначениеОпросов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1219,7 +1219,7 @@ "mdoRef": "Catalog.СценарииОбменовДанными", "mdoRefRu": "Справочник.СценарииОбменовДанными" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1227,7 +1227,7 @@ "mdoRef": "Constant.ИспользоватьСкрытиеПерсональныхДанныхСубъектов", "mdoRefRu": "Константа.ИспользоватьСкрытиеПерсональныхДанныхСубъектов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1235,7 +1235,7 @@ "mdoRef": "Catalog.ИдентификаторыОбъектовМетаданных", "mdoRefRu": "Справочник.ИдентификаторыОбъектовМетаданных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1243,7 +1243,7 @@ "mdoRef": "InformationRegister.ФайлыВРабочемКаталоге", "mdoRefRu": "РегистрСведений.ФайлыВРабочемКаталоге" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1251,7 +1251,7 @@ "mdoRef": "Constant.ИспользоватьШифрование", "mdoRefRu": "Константа.ИспользоватьШифрование" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1259,7 +1259,7 @@ "mdoRef": "InformationRegister.ДанныеОбработанныеВЦентральномУзлеРИБ", "mdoRefRu": "РегистрСведений.ДанныеОбработанныеВЦентральномУзлеРИБ" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1267,7 +1267,7 @@ "mdoRef": "InformationRegister.ОбработчикиОбновления", "mdoRefRu": "РегистрСведений.ОбработчикиОбновления" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1275,7 +1275,7 @@ "mdoRef": "InformationRegister.ИсполнителиЗадач", "mdoRefRu": "РегистрСведений.ИсполнителиЗадач" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1283,7 +1283,7 @@ "mdoRef": "Document.ТелефонныйЗвонок", "mdoRefRu": "Документ.ТелефонныйЗвонок" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1291,7 +1291,7 @@ "mdoRef": "InformationRegister.НастройкиВерсионированияОбъектов", "mdoRefRu": "РегистрСведений.НастройкиВерсионированияОбъектов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1299,7 +1299,7 @@ "mdoRef": "Catalog.РолиИсполнителей", "mdoRefRu": "Справочник.РолиИсполнителей" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1307,7 +1307,7 @@ "mdoRef": "Catalog.ОбщиеВнешниеКомпоненты", "mdoRefRu": "Справочник.ОбщиеВнешниеКомпоненты" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1315,7 +1315,7 @@ "mdoRef": "Constant.СписокЗапрещенныхРасширенийОбластиДанных", "mdoRefRu": "Константа.СписокЗапрещенныхРасширенийОбластиДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1323,7 +1323,7 @@ "mdoRef": "InformationRegister.НастройкиТранспортаОбменаОбластейДанных", "mdoRefRu": "РегистрСведений.НастройкиТранспортаОбменаОбластейДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1331,7 +1331,7 @@ "mdoRef": "Constant.ОтправлятьПисьмаВФорматеHTML", "mdoRefRu": "Константа.ОтправлятьПисьмаВФорматеHTML" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1339,7 +1339,7 @@ "mdoRef": "Constant.ИспользоватьПодчиненныеБизнесПроцессы", "mdoRefRu": "Константа.ИспользоватьПодчиненныеБизнесПроцессы" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1347,7 +1347,7 @@ "mdoRef": "Constant.УдалитьЛогинДоступаКСервисуMorpher", "mdoRefRu": "Константа.УдалитьЛогинДоступаКСервисуMorpher" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1355,7 +1355,7 @@ "mdoRef": "InformationRegister.СостоянияКонтактовВзаимодействий", "mdoRefRu": "РегистрСведений.СостоянияКонтактовВзаимодействий" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1363,7 +1363,7 @@ "mdoRef": "InformationRegister.ОбластиПерсональныхДанных", "mdoRefRu": "РегистрСведений.ОбластиПерсональныхДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1371,7 +1371,7 @@ "mdoRef": "InformationRegister.СтатусыСинхронизацииФайловСОблачнымСервисом", "mdoRefRu": "РегистрСведений.СтатусыСинхронизацииФайловСОблачнымСервисом" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1379,7 +1379,7 @@ "mdoRef": "Constant.ИспользоватьДатыЗапретаЗагрузки", "mdoRefRu": "Константа.ИспользоватьДатыЗапретаЗагрузки" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1387,7 +1387,7 @@ "mdoRef": "InformationRegister.ДанныеПроизводственногоКалендаря", "mdoRefRu": "РегистрСведений.ДанныеПроизводственногоКалендаря" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1395,7 +1395,7 @@ "mdoRef": "Constant.ИспользоватьВерсионированиеОбъектов", "mdoRefRu": "Константа.ИспользоватьВерсионированиеОбъектов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1403,7 +1403,7 @@ "mdoRef": "Catalog.ВерсииРасширений", "mdoRefRu": "Справочник.ВерсииРасширений" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1411,7 +1411,7 @@ "mdoRef": "InformationRegister.НаследованиеНастроекПравОбъектов", "mdoRefRu": "РегистрСведений.НаследованиеНастроекПравОбъектов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1419,7 +1419,7 @@ "mdoRef": "InformationRegister.ПричиныИзмененияАдресныхСведений", "mdoRefRu": "РегистрСведений.ПричиныИзмененияАдресныхСведений" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1427,7 +1427,7 @@ "mdoRef": "InformationRegister.СессииОбменаСообщениямиСистемы", "mdoRefRu": "РегистрСведений.СессииОбменаСообщениямиСистемы" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1435,7 +1435,7 @@ "mdoRef": "Constant.СписокРасширенийТекстовыхФайлов", "mdoRefRu": "Константа.СписокРасширенийТекстовыхФайлов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1443,7 +1443,7 @@ "mdoRef": "InformationRegister.ЗагруженныеВерсииАдресныхСведений", "mdoRefRu": "РегистрСведений.ЗагруженныеВерсииАдресныхСведений" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1451,7 +1451,7 @@ "mdoRef": "InformationRegister.ПраваРолей", "mdoRefRu": "РегистрСведений.ПраваРолей" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1459,7 +1459,7 @@ "mdoRef": "Catalog.ТелефонныйЗвонокПрисоединенныеФайлы", "mdoRefRu": "Справочник.ТелефонныйЗвонокПрисоединенныеФайлы" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1467,7 +1467,7 @@ "mdoRef": "Document.ЗапланированноеВзаимодействие", "mdoRefRu": "Документ.ЗапланированноеВзаимодействие" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1475,7 +1475,7 @@ "mdoRef": "Constant.СписокРасширенийФайловOpenDocument", "mdoRefRu": "Константа.СписокРасширенийФайловOpenDocument" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1483,7 +1483,7 @@ "mdoRef": "Catalog.ПравилаПроверкиУчета", "mdoRefRu": "Справочник.ПравилаПроверкиУчета" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1491,7 +1491,7 @@ "mdoRef": "Constant.ДатаПоследнейВыгрузкиЗамеровПроизводительностиUTC", "mdoRefRu": "Константа.ДатаПоследнейВыгрузкиЗамеровПроизводительностиUTC" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1499,7 +1499,7 @@ "mdoRef": "Document.Встреча", "mdoRefRu": "Документ.Встреча" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1507,7 +1507,7 @@ "mdoRef": "Catalog.Пользователи", "mdoRefRu": "Справочник.Пользователи" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1515,7 +1515,7 @@ "mdoRef": "Constant.ЗагрузитьСообщениеОбменаДанными", "mdoRefRu": "Константа.ЗагрузитьСообщениеОбменаДанными" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1523,7 +1523,7 @@ "mdoRef": "Constant.ПроверятьЭлектронныеПодписиНаСервере", "mdoRefRu": "Константа.ПроверятьЭлектронныеПодписиНаСервере" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1531,7 +1531,7 @@ "mdoRef": "Constant.ПровайдерSMS", "mdoRefRu": "Константа.ПровайдерSMS" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1539,7 +1539,7 @@ "mdoRef": "Constant.ПользовательСтандартногоИнтерфейсаOData", "mdoRefRu": "Константа.ПользовательСтандартногоИнтерфейсаOData" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1547,7 +1547,7 @@ "mdoRef": "InformationRegister.ВерсииПодсистем", "mdoRefRu": "РегистрСведений.ВерсииПодсистем" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1555,7 +1555,7 @@ "mdoRef": "Catalog.ПользовательскиеНастройкиОтчетов", "mdoRefRu": "Справочник.ПользовательскиеНастройкиОтчетов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1563,7 +1563,7 @@ "mdoRef": "InformationRegister.СостоянияОбменовДанными", "mdoRefRu": "РегистрСведений.СостоянияОбменовДанными" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1571,7 +1571,7 @@ "mdoRef": "Constant.ИспользоватьАвтономнуюРаботуВМоделиСервиса", "mdoRefRu": "Константа.ИспользоватьАвтономнуюРаботуВМоделиСервиса" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1579,7 +1579,7 @@ "mdoRef": "InformationRegister.ПредметыПапкиВзаимодействий", "mdoRefRu": "РегистрСведений.ПредметыПапкиВзаимодействий" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1587,7 +1587,7 @@ "mdoRef": "InformationRegister.ЗначенияГруппДоступаПоУмолчанию", "mdoRefRu": "РегистрСведений.ЗначенияГруппДоступаПоУмолчанию" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1595,7 +1595,7 @@ "mdoRef": "Constant.ОтложенноеОбновлениеЗавершеноУспешно", "mdoRefRu": "Константа.ОтложенноеОбновлениеЗавершеноУспешно" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1603,7 +1603,7 @@ "mdoRef": "Constant.ИзвлекатьТекстыФайловНаСервере", "mdoRefRu": "Константа.ИзвлекатьТекстыФайловНаСервере" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1611,7 +1611,7 @@ "mdoRef": "Constant.ИспользоватьПрофилиБезопасностиДляДОО", "mdoRefRu": "Константа.ИспользоватьПрофилиБезопасностиДляДОО" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1619,7 +1619,7 @@ "mdoRef": "Constant.КоличествоЗамеровВПакетеЭкспорта", "mdoRefRu": "Константа.КоличествоЗамеровВПакетеЭкспорта" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1627,7 +1627,7 @@ "mdoRef": "Constant.ИспользоватьДополнительныеРеквизитыИСведения", "mdoRefRu": "Константа.ИспользоватьДополнительныеРеквизитыИСведения" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1635,7 +1635,7 @@ "mdoRef": "InformationRegister.КлючиДоступаВнешнихПользователей", "mdoRefRu": "РегистрСведений.КлючиДоступаВнешнихПользователей" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1643,7 +1643,7 @@ "mdoRef": "Constant.РазрешитьВыполнениеДООРегламентнымиЗаданиямиВМоделиСервиса", "mdoRefRu": "Константа.РазрешитьВыполнениеДООРегламентнымиЗаданиямиВМоделиСервиса" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1651,7 +1651,7 @@ "mdoRef": "Document.СообщениеSMS", "mdoRefRu": "Документ.СообщениеSMS" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1659,7 +1659,7 @@ "mdoRef": "InformationRegister.ОчередьИзвлеченияТекста", "mdoRefRu": "РегистрСведений.ОчередьИзвлеченияТекста" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1667,7 +1667,7 @@ "mdoRef": "Constant.ИспользоватьАнкетирование", "mdoRefRu": "Константа.ИспользоватьАнкетирование" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1675,7 +1675,7 @@ "mdoRef": "Catalog.УчетныеЗаписиЭлектроннойПочты", "mdoRefRu": "Справочник.УчетныеЗаписиЭлектроннойПочты" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1683,7 +1683,7 @@ "mdoRef": "Constant.МаксимальныйРазмерФайла", "mdoRefRu": "Константа.МаксимальныйРазмерФайла" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1691,7 +1691,7 @@ "mdoRef": "InformationRegister.ЗапросыРазрешенийНаИспользованиеВнешнихРесурсов", "mdoRefRu": "РегистрСведений.ЗапросыРазрешенийНаИспользованиеВнешнихРесурсов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1699,7 +1699,7 @@ "mdoRef": "InformationRegister.ПользовательскиеНастройкиДоступаКОбработкам", "mdoRefRu": "РегистрСведений.ПользовательскиеНастройкиДоступаКОбработкам" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1707,7 +1707,7 @@ "mdoRef": "InformationRegister.ПакетыИнформацииПриЗапуске", "mdoRefRu": "РегистрСведений.ПакетыИнформацииПриЗапуске" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1715,7 +1715,7 @@ "mdoRef": "InformationRegister.ЗамерыОбластиСтатистики", "mdoRefRu": "РегистрСведений.ЗамерыОбластиСтатистики" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1723,7 +1723,7 @@ "mdoRef": "Constant.ПараметрыБлокировкиРаботыСВнешнимиРесурсами", "mdoRefRu": "Константа.ПараметрыБлокировкиРаботыСВнешнимиРесурсами" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1731,7 +1731,7 @@ "mdoRef": "Constant.ПриоритетОбновленияВОбластяхДанных", "mdoRefRu": "Константа.ПриоритетОбновленияВОбластяхДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1739,7 +1739,7 @@ "mdoRef": "Document.Анкета", "mdoRefRu": "Документ.Анкета" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1747,7 +1747,7 @@ "mdoRef": "InformationRegister.КлючиДоступаНаборовГруппДоступа", "mdoRefRu": "РегистрСведений.КлючиДоступаНаборовГруппДоступа" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1755,7 +1755,7 @@ "mdoRef": "Constant.НастройкиВходаПользователей", "mdoRefRu": "Константа.НастройкиВходаПользователей" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1763,7 +1763,7 @@ "mdoRef": "Constant.ПараметрыАдресногоКлассификатора", "mdoRefRu": "Константа.ПараметрыАдресногоКлассификатора" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1771,7 +1771,7 @@ "mdoRef": "Catalog.ПроизводственныеКалендари", "mdoRefRu": "Справочник.ПроизводственныеКалендари" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1779,7 +1779,7 @@ "mdoRef": "Catalog.СтроковыеКонтактыВзаимодействий", "mdoRefRu": "Справочник.СтроковыеКонтактыВзаимодействий" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1787,7 +1787,7 @@ "mdoRef": "Catalog.ПоставляемыеДополнительныеОтчетыИОбработки", "mdoRefRu": "Справочник.ПоставляемыеДополнительныеОтчетыИОбработки" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1795,7 +1795,7 @@ "mdoRef": "Catalog.ЭлектронноеПисьмоИсходящееПрисоединенныеФайлы", "mdoRefRu": "Справочник.ЭлектронноеПисьмоИсходящееПрисоединенныеФайлы" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1803,7 +1803,7 @@ "mdoRef": "InformationRegister.НазначениеДополнительныхОбработок", "mdoRefRu": "РегистрСведений.НазначениеДополнительныхОбработок" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1811,7 +1811,7 @@ "mdoRef": "Catalog.ВидыКонтактнойИнформации", "mdoRefRu": "Справочник.ВидыКонтактнойИнформации" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1819,7 +1819,7 @@ "mdoRef": "Catalog.СтраныМира", "mdoRefRu": "Справочник.СтраныМира" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1827,7 +1827,7 @@ "mdoRef": "Constant.СоздаватьЭлектронныеПодписиНаСервере", "mdoRefRu": "Константа.СоздаватьЭлектронныеПодписиНаСервере" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1835,7 +1835,7 @@ "mdoRef": "Constant.ИспользоватьДатуИВремяВСрокахЗадач", "mdoRefRu": "Константа.ИспользоватьДатуИВремяВСрокахЗадач" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1843,7 +1843,7 @@ "mdoRef": "InformationRegister.СклоненияПредставленийОбъектов", "mdoRefRu": "РегистрСведений.СклоненияПредставленийОбъектов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1851,7 +1851,7 @@ "mdoRef": "InformationRegister.СогласияНаОбработкуПерсональныхДанных", "mdoRefRu": "РегистрСведений.СогласияНаОбработкуПерсональныхДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1859,7 +1859,7 @@ "mdoRef": "InformationRegister.ПубличныеИдентификаторыСинхронизируемыхОбъектов", "mdoRefRu": "РегистрСведений.ПубличныеИдентификаторыСинхронизируемыхОбъектов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1867,7 +1867,7 @@ "mdoRef": "Document.ОтзывСогласияНаОбработкуПерсональныхДанных", "mdoRefRu": "Документ.ОтзывСогласияНаОбработкуПерсональныхДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1875,7 +1875,7 @@ "mdoRef": "InformationRegister.ДополнительныеАдресныеСведения", "mdoRefRu": "РегистрСведений.ДополнительныеАдресныеСведения" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1883,7 +1883,7 @@ "mdoRef": "Catalog.СертификатыКлючейЭлектроннойПодписиИШифрования", "mdoRefRu": "Справочник.СертификатыКлючейЭлектроннойПодписиИШифрования" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1891,7 +1891,7 @@ "mdoRef": "InformationRegister.НастройкиТранспортаОбменаДанными", "mdoRefRu": "РегистрСведений.НастройкиТранспортаОбменаДанными" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1899,7 +1899,7 @@ "mdoRef": "Constant.СтатусОбновленияКонфигурации", "mdoRefRu": "Константа.СтатусОбновленияКонфигурации" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1907,7 +1907,7 @@ "mdoRef": "Constant.ИспользоватьОтправкуSMSВШаблонахСообщений", "mdoRefRu": "Константа.ИспользоватьОтправкуSMSВШаблонахСообщений" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1915,7 +1915,7 @@ "mdoRef": "InformationRegister.ОбновлениеКлючейДоступаТекущиеЗадания", "mdoRefRu": "РегистрСведений.ОбновлениеКлючейДоступаТекущиеЗадания" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1923,7 +1923,7 @@ "mdoRef": "InformationRegister.СведенияОФайлах", "mdoRefRu": "РегистрСведений.СведенияОФайлах" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1931,7 +1931,7 @@ "mdoRef": "Constant.КоличествоПотоковОбновленияДоступа", "mdoRefRu": "Константа.КоличествоПотоковОбновленияДоступа" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1939,7 +1939,7 @@ "mdoRef": "InformationRegister.СоставыГруппПользователей", "mdoRefRu": "РегистрСведений.СоставыГруппПользователей" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1947,7 +1947,7 @@ "mdoRef": "InformationRegister.ПотокиОбновления", "mdoRefRu": "РегистрСведений.ПотокиОбновления" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1955,7 +1955,7 @@ "mdoRef": "InformationRegister.ПользовательскиеМакетыПечати", "mdoRefRu": "РегистрСведений.ПользовательскиеМакетыПечати" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1963,7 +1963,7 @@ "mdoRef": "InformationRegister.БезопасноеХранилищеДанныхОбластейДанных", "mdoRefRu": "РегистрСведений.БезопасноеХранилищеДанныхОбластейДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1971,7 +1971,7 @@ "mdoRef": "InformationRegister.ТаблицыГруппДоступа", "mdoRefRu": "РегистрСведений.ТаблицыГруппДоступа" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1979,7 +1979,7 @@ "mdoRef": "Catalog.ЗакладкиВзаимодействий", "mdoRefRu": "Справочник.ЗакладкиВзаимодействий" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1987,7 +1987,7 @@ "mdoRef": "Catalog.СостоянияОригиналовПервичныхДокументов", "mdoRefRu": "Справочник.СостоянияОригиналовПервичныхДокументов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -1995,7 +1995,7 @@ "mdoRef": "InformationRegister.ИзмененияОбщихДанныхУзлов", "mdoRefRu": "РегистрСведений.ИзмененияОбщихДанныхУзлов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2003,7 +2003,7 @@ "mdoRef": "InformationRegister.ОбновлениеКлючейДоступаПользователей", "mdoRefRu": "РегистрСведений.ОбновлениеКлючейДоступаПользователей" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2011,7 +2011,7 @@ "mdoRef": "Catalog.РассылкиОтчетов", "mdoRefRu": "Справочник.РассылкиОтчетов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2019,7 +2019,7 @@ "mdoRef": "InformationRegister.НеразделенныеПользователи", "mdoRefRu": "РегистрСведений.НеразделенныеПользователи" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2027,7 +2027,7 @@ "mdoRef": "InformationRegister.УведомленияОПрочтении", "mdoRefRu": "РегистрСведений.УведомленияОПрочтении" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2035,7 +2035,7 @@ "mdoRef": "InformationRegister.ДанныеОбъектовДляРегистрацииВОбменах", "mdoRefRu": "РегистрСведений.ДанныеОбъектовДляРегистрацииВОбменах" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2043,7 +2043,7 @@ "mdoRef": "InformationRegister.ДанныеБизнесПроцессов", "mdoRefRu": "РегистрСведений.ДанныеБизнесПроцессов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2051,7 +2051,7 @@ "mdoRef": "Document.ЭлектронноеПисьмоИсходящее", "mdoRefRu": "Документ.ЭлектронноеПисьмоИсходящее" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2059,7 +2059,7 @@ "mdoRef": "Constant.МинимальныйИнтервалРегламентныхЗаданийДОИОВМоделиСервиса", "mdoRefRu": "Константа.МинимальныйИнтервалРегламентныхЗаданийДОИОВМоделиСервиса" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2067,7 +2067,7 @@ "mdoRef": "Constant.ИспользованиеКаталогаДополнительныхОтчетовИОбработокВМоделиСервиса", "mdoRefRu": "Константа.ИспользованиеКаталогаДополнительныхОтчетовИОбработокВМоделиСервиса" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2075,7 +2075,7 @@ "mdoRef": "InformationRegister.УдалитьЗамерыВремени3", "mdoRefRu": "РегистрСведений.УдалитьЗамерыВремени3" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2083,7 +2083,7 @@ "mdoRef": "InformationRegister.НастройкиПравОбъектов", "mdoRefRu": "РегистрСведений.НастройкиПравОбъектов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2091,7 +2091,7 @@ "mdoRef": "Catalog.ДополнительныеОтчетыИОбработки", "mdoRefRu": "Справочник.ДополнительныеОтчетыИОбработки" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2099,7 +2099,7 @@ "mdoRef": "Catalog.ВнешниеПользователи", "mdoRefRu": "Справочник.ВнешниеПользователи" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2107,7 +2107,7 @@ "mdoRef": "Catalog.ПапкиФайлов", "mdoRefRu": "Справочник.ПапкиФайлов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2115,7 +2115,7 @@ "mdoRef": "InformationRegister.НапоминанияПользователя", "mdoRefRu": "РегистрСведений.НапоминанияПользователя" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2123,7 +2123,7 @@ "mdoRef": "Constant.ДатаОбновленияПовторноИспользуемыхЗначенийМРО", "mdoRefRu": "Константа.ДатаОбновленияПовторноИспользуемыхЗначенийМРО" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2131,7 +2131,7 @@ "mdoRef": "InformationRegister.ЗначенияГруппДоступа", "mdoRefRu": "РегистрСведений.ЗначенияГруппДоступа" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2139,7 +2139,7 @@ "mdoRef": "Constant.ИспользоватьАльтернативныйСерверДляЗагрузкиКурсовВалют", "mdoRefRu": "Константа.ИспользоватьАльтернативныйСерверДляЗагрузкиКурсовВалют" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2147,7 +2147,7 @@ "mdoRef": "Constant.ИспользоватьПолнотекстовыйПоиск", "mdoRefRu": "Константа.ИспользоватьПолнотекстовыйПоиск" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2155,7 +2155,7 @@ "mdoRef": "Constant.КаталогСообщенийОбменаДаннымиДляWindows", "mdoRefRu": "Константа.КаталогСообщенийОбменаДаннымиДляWindows" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2163,7 +2163,7 @@ "mdoRef": "Constant.АвтоматическиНастраиватьРазрешенияВПрофиляхБезопасности", "mdoRefRu": "Константа.АвтоматическиНастраиватьРазрешенияВПрофиляхБезопасности" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2171,7 +2171,7 @@ "mdoRef": "InformationRegister.КэшПрограммныхИнтерфейсов", "mdoRefRu": "РегистрСведений.КэшПрограммныхИнтерфейсов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2179,7 +2179,7 @@ "mdoRef": "InformationRegister.ГруппыЗначенийДоступа", "mdoRefRu": "РегистрСведений.ГруппыЗначенийДоступа" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2187,7 +2187,7 @@ "mdoRef": "InformationRegister.НастройкиКомандПечати", "mdoRefRu": "РегистрСведений.НастройкиКомандПечати" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2195,7 +2195,7 @@ "mdoRef": "Constant.ДанныеДляОтложенногоОбновления", "mdoRefRu": "Константа.ДанныеДляОтложенногоОбновления" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2203,7 +2203,7 @@ "mdoRef": "Constant.НеИспользоватьРазделениеПоОбластямДанных", "mdoRefRu": "Константа.НеИспользоватьРазделениеПоОбластямДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2211,7 +2211,7 @@ "mdoRef": "Constant.КаталогСообщенийОбменаДаннымиДляLinux", "mdoRefRu": "Константа.КаталогСообщенийОбменаДаннымиДляLinux" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2219,7 +2219,7 @@ "mdoRef": "Constant.СведенияОБлокируемыхОбъектах", "mdoRefRu": "Константа.СведенияОБлокируемыхОбъектах" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2227,7 +2227,7 @@ "mdoRef": "Catalog.ПредопределенныеВариантыОтчетов", "mdoRefRu": "Справочник.ПредопределенныеВариантыОтчетов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2235,7 +2235,7 @@ "mdoRef": "Constant.ИспользоватьЭлектроннуюПочтуВШаблонахСообщений", "mdoRefRu": "Константа.ИспользоватьЭлектроннуюПочтуВШаблонахСообщений" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2243,7 +2243,7 @@ "mdoRef": "Constant.ИспользоватьСинхронизациюДанныхВМоделиСервисаСПриложениемВИнтернете", "mdoRefRu": "Константа.ИспользоватьСинхронизациюДанныхВМоделиСервисаСПриложениемВИнтернете" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2251,7 +2251,7 @@ "mdoRef": "Constant.ОценкаПроизводительностиПериодЗаписи", "mdoRefRu": "Константа.ОценкаПроизводительностиПериодЗаписи" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2259,7 +2259,7 @@ "mdoRef": "Constant.ГлавныйУзел", "mdoRefRu": "Константа.ГлавныйУзел" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2267,7 +2267,7 @@ "mdoRef": "Constant.ЗаголовокСистемы", "mdoRefRu": "Константа.ЗаголовокСистемы" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2275,7 +2275,7 @@ "mdoRef": "InformationRegister.РучныеИзмененияГрафиковРаботы", "mdoRefRu": "РегистрСведений.РучныеИзмененияГрафиковРаботы" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2283,7 +2283,7 @@ "mdoRef": "Constant.ИспользоватьБизнесПроцессыИЗадачи", "mdoRefRu": "Константа.ИспользоватьБизнесПроцессыИЗадачи" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2291,7 +2291,7 @@ "mdoRef": "InformationRegister.СостоянияОбменовДаннымиОбластейДанных", "mdoRefRu": "РегистрСведений.СостоянияОбменовДаннымиОбластейДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2299,7 +2299,7 @@ "mdoRef": "Catalog.ГруппыПользователей", "mdoRefRu": "Справочник.ГруппыПользователей" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2307,7 +2307,7 @@ "mdoRef": "Constant.ИспользуютсяПрофилиБезопасности", "mdoRefRu": "Константа.ИспользуютсяПрофилиБезопасности" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2315,7 +2315,7 @@ "mdoRef": "Constant.ОграничиватьДоступНаУровнеЗаписейУниверсально", "mdoRefRu": "Константа.ОграничиватьДоступНаУровнеЗаписейУниверсально" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2323,7 +2323,7 @@ "mdoRef": "Constant.ЗарегистрированыИзмененияДанных", "mdoRefRu": "Константа.ЗарегистрированыИзмененияДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2331,7 +2331,7 @@ "mdoRef": "InformationRegister.НастройкиОчисткиФайлов", "mdoRefRu": "РегистрСведений.НастройкиОчисткиФайлов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2339,7 +2339,7 @@ "mdoRef": "InformationRegister.ОбщиеНастройкиУзловИнформационныхБаз", "mdoRefRu": "РегистрСведений.ОбщиеНастройкиУзловИнформационныхБаз" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2347,7 +2347,7 @@ "mdoRef": "Catalog.ЗначенияСвойствОбъектовИерархия", "mdoRefRu": "Справочник.ЗначенияСвойствОбъектовИерархия" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2355,7 +2355,7 @@ "mdoRef": "Constant.МаксимальныйРазмерФайлаОбластиДанных", "mdoRefRu": "Константа.МаксимальныйРазмерФайлаОбластиДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2363,7 +2363,7 @@ "mdoRef": "Constant.ИспользоватьВнешнихПользователей", "mdoRefRu": "Константа.ИспользоватьВнешнихПользователей" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2371,7 +2371,7 @@ "mdoRef": "Catalog.УчетныеЗаписиСинхронизацииФайлов", "mdoRefRu": "Справочник.УчетныеЗаписиСинхронизацииФайлов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2379,7 +2379,7 @@ "mdoRef": "InformationRegister.ПараметрыРаботыПрограммы", "mdoRefRu": "РегистрСведений.ПараметрыРаботыПрограммы" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2387,7 +2387,7 @@ "mdoRef": "Catalog.ПрограммыЭлектроннойПодписиИШифрования", "mdoRefRu": "Справочник.ПрограммыЭлектроннойПодписиИШифрования" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2395,7 +2395,7 @@ "mdoRef": "Catalog.ИдентификаторыОбъектовРасширений", "mdoRefRu": "Справочник.ИдентификаторыОбъектовРасширений" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2403,7 +2403,7 @@ "mdoRef": "InformationRegister.СостоянияПапокПисем", "mdoRefRu": "РегистрСведений.СостоянияПапокПисем" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2411,7 +2411,7 @@ "mdoRef": "Constant.НастройкиКолонтитулов", "mdoRefRu": "Константа.НастройкиКолонтитулов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2419,7 +2419,7 @@ "mdoRef": "Constant.ИспользоватьОнлайнПоддержку", "mdoRefRu": "Константа.ИспользоватьОнлайнПоддержку" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2427,7 +2427,7 @@ "mdoRef": "InformationRegister.УдалитьНастройкиТранспортаОбмена", "mdoRefRu": "РегистрСведений.УдалитьНастройкиТранспортаОбмена" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2435,7 +2435,7 @@ "mdoRef": "ChartOfCharacteristicTypes.ОбъектыАдресацииЗадач", "mdoRefRu": "ПланВидовХарактеристик.ОбъектыАдресацииЗадач" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2443,7 +2443,7 @@ "mdoRef": "Constant.ИспользоватьГруппыПользователей", "mdoRefRu": "Константа.ИспользоватьГруппыПользователей" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2451,7 +2451,7 @@ "mdoRef": "Constant.СинхронизироватьДанныеСПриложениемВИнтернетеПриНачалеРаботыПрограммы", "mdoRefRu": "Константа.СинхронизироватьДанныеСПриложениемВИнтернетеПриНачалеРаботыПрограммы" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2459,7 +2459,7 @@ "mdoRef": "InformationRegister.ПсевдонимыПредопределенныхУзлов", "mdoRefRu": "РегистрСведений.ПсевдонимыПредопределенныхУзлов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2467,7 +2467,7 @@ "mdoRef": "InformationRegister.СостоянияУспешныхОбменовДаннымиОбластейДанных", "mdoRefRu": "РегистрСведений.СостоянияУспешныхОбменовДаннымиОбластейДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2475,7 +2475,7 @@ "mdoRef": "Constant.ИспользоватьНесколькоПроизводственныхКалендарей", "mdoRefRu": "Константа.ИспользоватьНесколькоПроизводственныхКалендарей" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2483,7 +2483,7 @@ "mdoRef": "InformationRegister.ПравилаДляОбменаДанными", "mdoRefRu": "РегистрСведений.ПравилаДляОбменаДанными" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2491,7 +2491,7 @@ "mdoRef": "InformationRegister.ОбластиСтатистики", "mdoRefRu": "РегистрСведений.ОбластиСтатистики" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2499,7 +2499,7 @@ "mdoRef": "InformationRegister.АдресныеОбъекты", "mdoRefRu": "РегистрСведений.АдресныеОбъекты" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2507,7 +2507,7 @@ "mdoRef": "Constant.НастройкаПодчиненногоУзлаРИБЗавершена", "mdoRefRu": "Константа.НастройкаПодчиненногоУзлаРИБЗавершена" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2515,7 +2515,7 @@ "mdoRef": "Catalog.ГруппыИсполнителейЗадач", "mdoRefRu": "Справочник.ГруппыИсполнителейЗадач" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2523,7 +2523,7 @@ "mdoRef": "Catalog.ЗначенияСвойствОбъектов", "mdoRefRu": "Справочник.ЗначенияСвойствОбъектов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2531,7 +2531,7 @@ "mdoRef": "InformationRegister.ДатыПоследнейЗагрузкиПочтовыхСообщений", "mdoRefRu": "РегистрСведений.ДатыПоследнейЗагрузкиПочтовыхСообщений" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2539,7 +2539,7 @@ "mdoRef": "InformationRegister.ЭлектронныеПодписи", "mdoRefRu": "РегистрСведений.ЭлектронныеПодписи" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2547,7 +2547,7 @@ "mdoRef": "InformationRegister.ПараметрыОграниченияДоступа", "mdoRefRu": "РегистрСведений.ПараметрыОграниченияДоступа" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2555,7 +2555,7 @@ "mdoRef": "Catalog.КлассификаторБанков", "mdoRefRu": "Справочник.КлассификаторБанков" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2563,7 +2563,7 @@ "mdoRef": "InformationRegister.ИсторияАдресныхОбъектов", "mdoRefRu": "РегистрСведений.ИсторияАдресныхОбъектов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2571,7 +2571,7 @@ "mdoRef": "Constant.СписокЗапрещенныхРасширений", "mdoRefRu": "Константа.СписокЗапрещенныхРасширений" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2579,7 +2579,7 @@ "mdoRef": "InformationRegister.СвязиАдресныхОбъектов", "mdoRefRu": "РегистрСведений.СвязиАдресныхОбъектов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2587,7 +2587,7 @@ "mdoRef": "InformationRegister.СообщенияОбменаДаннымиОбластейДанных", "mdoRefRu": "РегистрСведений.СообщенияОбменаДаннымиОбластейДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2595,7 +2595,7 @@ "mdoRef": "InformationRegister.НастройкиВариантовОтчетов", "mdoRefRu": "РегистрСведений.НастройкиВариантовОтчетов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2603,7 +2603,7 @@ "mdoRef": "Catalog.СообщениеSMSПрисоединенныеФайлы", "mdoRefRu": "Справочник.СообщениеSMSПрисоединенныеФайлы" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2611,7 +2611,7 @@ "mdoRef": "InformationRegister.СертификатыШифрования", "mdoRefRu": "РегистрСведений.СертификатыШифрования" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2619,7 +2619,7 @@ "mdoRef": "InformationRegister.УдалитьРезультатыОбменаДанными", "mdoRefRu": "РегистрСведений.УдалитьРезультатыОбменаДанными" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2627,7 +2627,7 @@ "mdoRef": "InformationRegister.ИспользованиеДополнительныхОтчетовИОбработокСервисаВАвтономномРабочемМесте", "mdoRefRu": "РегистрСведений.ИспользованиеДополнительныхОтчетовИОбработокСервисаВАвтономномРабочемМесте" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2635,7 +2635,7 @@ "mdoRef": "InformationRegister.ЗаблокированныеДляПолученияУчетныеЗаписи", "mdoRefRu": "РегистрСведений.ЗаблокированныеДляПолученияУчетныеЗаписи" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2643,7 +2643,7 @@ "mdoRef": "InformationRegister.ПараметрыРаботыВерсийРасширений", "mdoRefRu": "РегистрСведений.ПараметрыРаботыВерсийРасширений" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2651,7 +2651,7 @@ "mdoRef": "InformationRegister.НастройкиТранспортаОбменаОбластиДанных", "mdoRefRu": "РегистрСведений.НастройкиТранспортаОбменаОбластиДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2659,7 +2659,7 @@ "mdoRef": "Constant.ИспользоватьНапоминанияПользователя", "mdoRefRu": "Константа.ИспользоватьНапоминанияПользователя" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2667,7 +2667,7 @@ "mdoRef": "Constant.ПрефиксУзлаРаспределеннойИнформационнойБазы", "mdoRefRu": "Константа.ПрефиксУзлаРаспределеннойИнформационнойБазы" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2675,7 +2675,7 @@ "mdoRef": "Constant.СообщениеОбменаДаннымиИзГлавногоУзла", "mdoRefRu": "Константа.СообщениеОбменаДаннымиИзГлавногоУзла" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2683,7 +2683,7 @@ "mdoRef": "Constant.ИспользоватьЗаметки", "mdoRefRu": "Константа.ИспользоватьЗаметки" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2691,7 +2691,7 @@ "mdoRef": "InformationRegister.ОчередьИнсталляцииПоставляемыхДополнительныхОтчетовИОбработокВОбластиДанных", "mdoRefRu": "РегистрСведений.ОчередьИнсталляцииПоставляемыхДополнительныхОтчетовИОбработокВОбластиДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2699,7 +2699,7 @@ "mdoRef": "Catalog.ЯзыкиПечатныхФорм", "mdoRefRu": "Справочник.ЯзыкиПечатныхФорм" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2707,7 +2707,7 @@ "mdoRef": "Document.СогласиеНаОбработкуПерсональныхДанных", "mdoRefRu": "Документ.СогласиеНаОбработкуПерсональныхДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2715,7 +2715,7 @@ "mdoRef": "InformationRegister.РезультатыОбменаДанными", "mdoRefRu": "РегистрСведений.РезультатыОбменаДанными" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2723,7 +2723,7 @@ "mdoRef": "InformationRegister.БуферОперацийСтатистики", "mdoRefRu": "РегистрСведений.БуферОперацийСтатистики" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2731,7 +2731,7 @@ "mdoRef": "Constant.ПараметрыЦентраМониторинга", "mdoRefRu": "Константа.ПараметрыЦентраМониторинга" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2739,7 +2739,7 @@ "mdoRef": "Constant.ОграничиватьДоступНаУровнеЗаписей", "mdoRefRu": "Константа.ОграничиватьДоступНаУровнеЗаписей" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2747,7 +2747,7 @@ "mdoRef": "Catalog.ГруппыВнешнихПользователей", "mdoRefRu": "Справочник.ГруппыВнешнихПользователей" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2755,7 +2755,7 @@ "mdoRef": "InformationRegister.ЗамерыВремениТехнологические", "mdoRefRu": "РегистрСведений.ЗамерыВремениТехнологические" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2763,7 +2763,7 @@ "mdoRef": "Constant.ИспользоватьРазделениеПоОбластямДанных", "mdoRefRu": "Константа.ИспользоватьРазделениеПоОбластямДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2771,7 +2771,7 @@ "mdoRef": "Constant.ХранитьФайлыВТомахНаДиске", "mdoRefRu": "Константа.ХранитьФайлыВТомахНаДиске" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2779,7 +2779,7 @@ "mdoRef": "Constant.ИспользоватьСервисСклоненияMorpher", "mdoRefRu": "Константа.ИспользоватьСервисСклоненияMorpher" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2787,7 +2787,7 @@ "mdoRef": "Constant.СведенияОбОбновленииИБ", "mdoRefRu": "Константа.СведенияОбОбновленииИБ" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2795,7 +2795,7 @@ "mdoRef": "Catalog.ГруппыДоступа", "mdoRefRu": "Справочник.ГруппыДоступа" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2803,7 +2803,7 @@ "mdoRef": "InformationRegister.ОбщиеПоставляемыеМакетыПечати", "mdoRefRu": "РегистрСведений.ОбщиеПоставляемыеМакетыПечати" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2811,7 +2811,7 @@ "mdoRef": "Constant.КоличествоПотоковОбновленияИнформационнойБазы", "mdoRefRu": "Константа.КоличествоПотоковОбновленияИнформационнойБазы" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2819,7 +2819,7 @@ "mdoRef": "InformationRegister.СостоянияУспешныхОбменовДанными", "mdoRefRu": "РегистрСведений.СостоянияУспешныхОбменовДанными" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2827,7 +2827,7 @@ "mdoRef": "InformationRegister.ИспользуемыеВидыДоступа", "mdoRefRu": "РегистрСведений.ИспользуемыеВидыДоступа" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2835,7 +2835,7 @@ "mdoRef": "Constant.ОтложенноеОбновлениеВГлавномУзлеЗавершеноУспешно", "mdoRefRu": "Константа.ОтложенноеОбновлениеВГлавномУзлеЗавершеноУспешно" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2843,7 +2843,7 @@ "mdoRef": "InformationRegister.ДатыЗапретаИзменения", "mdoRefRu": "РегистрСведений.ДатыЗапретаИзменения" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2851,7 +2851,7 @@ "mdoRef": "InformationRegister.УдаляемыеОбъекты", "mdoRefRu": "РегистрСведений.УдаляемыеОбъекты" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2859,7 +2859,7 @@ "mdoRef": "Catalog.ВстречаПрисоединенныеФайлы", "mdoRefRu": "Справочник.ВстречаПрисоединенныеФайлы" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2867,7 +2867,7 @@ "mdoRef": "InformationRegister.КлючиДоступаКРегистрам", "mdoRefRu": "РегистрСведений.КлючиДоступаКРегистрам" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2875,7 +2875,7 @@ "mdoRef": "Constant.ИспользоватьДатыЗапретаИзменения", "mdoRefRu": "Константа.ИспользоватьДатыЗапретаИзменения" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2883,7 +2883,7 @@ "mdoRef": "InformationRegister.ЗемельныеУчастки", "mdoRefRu": "РегистрСведений.ЗемельныеУчастки" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2891,7 +2891,7 @@ "mdoRef": "InformationRegister.КлючиДоступаКОбъектам", "mdoRefRu": "РегистрСведений.КлючиДоступаКОбъектам" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2899,7 +2899,7 @@ "mdoRef": "Constant.ИспользоватьПрочиеВзаимодействия", "mdoRefRu": "Константа.ИспользоватьПрочиеВзаимодействия" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2907,7 +2907,7 @@ "mdoRef": "Constant.ЭтоАвтономноеРабочееМесто", "mdoRefRu": "Константа.ЭтоАвтономноеРабочееМесто" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2915,7 +2915,7 @@ "mdoRef": "Catalog.НаборыГруппДоступа", "mdoRefRu": "Справочник.НаборыГруппДоступа" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2923,7 +2923,7 @@ "mdoRef": "Catalog.ТомаХраненияФайлов", "mdoRefRu": "Справочник.ТомаХраненияФайлов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2931,7 +2931,7 @@ "mdoRef": "InformationRegister.ВерсииПодсистемОбластейДанных", "mdoRefRu": "РегистрСведений.ВерсииПодсистемОбластейДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2939,7 +2939,7 @@ "mdoRef": "Catalog.ПравилаОбработкиЭлектроннойПочты", "mdoRefRu": "Справочник.ПравилаОбработкиЭлектроннойПочты" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2947,7 +2947,7 @@ "mdoRef": "ChartOfCharacteristicTypes.ВопросыДляАнкетирования", "mdoRefRu": "ПланВидовХарактеристик.ВопросыДляАнкетирования" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2955,7 +2955,7 @@ "mdoRef": "BusinessProcess.Задание", "mdoRefRu": "БизнесПроцесс.Задание" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2963,7 +2963,7 @@ "mdoRef": "InformationRegister.ИдентификаторыОбъектовВерсийРасширений", "mdoRefRu": "РегистрСведений.ИдентификаторыОбъектовВерсийРасширений" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2971,7 +2971,7 @@ "mdoRef": "Constant.СинхронизироватьДанныеСПриложениемВИнтернетеПриЗавершенииРаботыПрограммы", "mdoRefRu": "Константа.СинхронизироватьДанныеСПриложениемВИнтернетеПриЗавершенииРаботыПрограммы" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2979,7 +2979,7 @@ "mdoRef": "Constant.КоличествоЭлементовВТранзакцииЗагрузкиДанных", "mdoRefRu": "Константа.КоличествоЭлементовВТранзакцииЗагрузкиДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2987,7 +2987,7 @@ "mdoRef": "Constant.ЗагрузитьРасширенияИзменяющиеСтруктуруДанных", "mdoRefRu": "Константа.ЗагрузитьРасширенияИзменяющиеСтруктуруДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -2995,7 +2995,7 @@ "mdoRef": "InformationRegister.КлючиДоступаПользователей", "mdoRefRu": "РегистрСведений.КлючиДоступаПользователей" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3003,7 +3003,7 @@ "mdoRef": "InformationRegister.КлючиДоступаГруппДоступа", "mdoRefRu": "РегистрСведений.КлючиДоступаГруппДоступа" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3011,7 +3011,7 @@ "mdoRef": "InformationRegister.ИспользуемыеВидыДоступаПоТаблицам", "mdoRefRu": "РегистрСведений.ИспользуемыеВидыДоступаПоТаблицам" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3019,7 +3019,7 @@ "mdoRef": "InformationRegister.ДампыПлатформы", "mdoRefRu": "РегистрСведений.ДампыПлатформы" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3027,7 +3027,7 @@ "mdoRef": "Constant.АдресПубликацииИнформационнойБазыВЛокальнойСети", "mdoRefRu": "Константа.АдресПубликацииИнформационнойБазыВЛокальнойСети" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3035,7 +3035,7 @@ "mdoRef": "InformationRegister.КодировкиФайлов", "mdoRefRu": "РегистрСведений.КодировкиФайлов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3043,7 +3043,7 @@ "mdoRef": "InformationRegister.ЗамерыОперацииСтатистики", "mdoRefRu": "РегистрСведений.ЗамерыОперацииСтатистики" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3051,7 +3051,7 @@ "mdoRef": "Constant.ПоследнееОбновлениеДоступа", "mdoRefRu": "Константа.ПоследнееОбновлениеДоступа" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3059,7 +3059,7 @@ "mdoRef": "Catalog.Файлы", "mdoRefRu": "Справочник.Файлы" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3067,7 +3067,7 @@ "mdoRef": "Constant.ПрефиксПоследнегоАвтономногоРабочегоМеста", "mdoRefRu": "Константа.ПрефиксПоследнегоАвтономногоРабочегоМеста" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3075,7 +3075,7 @@ "mdoRef": "Constant.ИсточникДанныхАдресногоКлассификатора", "mdoRefRu": "Константа.ИсточникДанныхАдресногоКлассификатора" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3083,7 +3083,7 @@ "mdoRef": "InformationRegister.ЗамерыСтатистики", "mdoRefRu": "РегистрСведений.ЗамерыСтатистики" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3091,7 +3091,7 @@ "mdoRef": "InformationRegister.КомментарииСтатистики", "mdoRefRu": "РегистрСведений.КомментарииСтатистики" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3099,7 +3099,7 @@ "mdoRef": "InformationRegister.ОриентирыАдресныхОбъектов", "mdoRefRu": "РегистрСведений.ОриентирыАдресныхОбъектов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3107,7 +3107,7 @@ "mdoRef": "Constant.СинхронизироватьФайлы", "mdoRefRu": "Константа.СинхронизироватьФайлы" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3115,7 +3115,7 @@ "mdoRef": "Catalog.ВерсииФайлов", "mdoRefRu": "Справочник.ВерсииФайлов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3123,7 +3123,7 @@ "mdoRef": "InformationRegister.ОперацииСтатистики", "mdoRefRu": "РегистрСведений.ОперацииСтатистики" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3131,7 +3131,7 @@ "mdoRef": "InformationRegister.ДвоичныеДанныеФайлов", "mdoRefRu": "РегистрСведений.ДвоичныеДанныеФайлов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3139,7 +3139,7 @@ "mdoRef": "InformationRegister.ОбработчикиОбновленияОбщихДанных", "mdoRefRu": "РегистрСведений.ОбработчикиОбновленияОбщихДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3147,7 +3147,7 @@ "mdoRef": "Constant.ПовторитьЗагрузкуСообщенияОбменаДаннымиПередЗапуском", "mdoRefRu": "Константа.ПовторитьЗагрузкуСообщенияОбменаДаннымиПередЗапуском" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3155,7 +3155,7 @@ "mdoRef": "InformationRegister.КомментарииОперацииСтатистики", "mdoRefRu": "РегистрСведений.КомментарииОперацииСтатистики" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3163,7 +3163,7 @@ "mdoRef": "InformationRegister.КонтактыВзаимодействий", "mdoRefRu": "РегистрСведений.КонтактыВзаимодействий" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3171,7 +3171,7 @@ "mdoRef": "InformationRegister.РабочиеКаталогиФайлов", "mdoRefRu": "РегистрСведений.РабочиеКаталогиФайлов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3179,7 +3179,7 @@ "mdoRef": "InformationRegister.ПакетыДляОтправки", "mdoRefRu": "РегистрСведений.ПакетыДляОтправки" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3187,7 +3187,7 @@ "mdoRef": "Constant.ДетализироватьОбновлениеИБВЖурналеРегистрации", "mdoRefRu": "Константа.ДетализироватьОбновлениеИБВЖурналеРегистрации" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3195,7 +3195,7 @@ "mdoRef": "Catalog.ПрофилиГруппДоступа", "mdoRefRu": "Справочник.ПрофилиГруппДоступа" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3203,7 +3203,7 @@ "mdoRef": "Document.ЭлектронноеПисьмоВходящее", "mdoRefRu": "Документ.ЭлектронноеПисьмоВходящее" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3211,7 +3211,7 @@ "mdoRef": "Constant.ИспользоватьСинхронизациюДанных", "mdoRefRu": "Константа.ИспользоватьСинхронизациюДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3219,7 +3219,7 @@ "mdoRef": "Constant.ИдентификаторИнформационнойБазы", "mdoRefRu": "Константа.ИдентификаторИнформационнойБазы" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3227,7 +3227,7 @@ "mdoRef": "InformationRegister.ПоставляемыеМакетыПечати", "mdoRefRu": "РегистрСведений.ПоставляемыеМакетыПечати" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3235,7 +3235,7 @@ "mdoRef": "Constant.ИзменятьЗаданияЗаднимЧислом", "mdoRefRu": "Константа.ИзменятьЗаданияЗаднимЧислом" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3243,7 +3243,7 @@ "mdoRef": "InformationRegister.РежимыПодключенияВнешнихМодулей", "mdoRefRu": "РегистрСведений.РежимыПодключенияВнешнихМодулей" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3251,7 +3251,7 @@ "mdoRef": "InformationRegister.БезопасноеХранилищеДанных", "mdoRefRu": "РегистрСведений.БезопасноеХранилищеДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3259,7 +3259,7 @@ "mdoRef": "InformationRegister.СостоянияПредметовВзаимодействий", "mdoRefRu": "РегистрСведений.СостоянияПредметовВзаимодействий" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3267,7 +3267,7 @@ "mdoRef": "InformationRegister.РезультатыПроверкиУчета", "mdoRefRu": "РегистрСведений.РезультатыПроверкиУчета" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3275,7 +3275,7 @@ "mdoRef": "Constant.ИспользоватьСинхронизациюДанныхВМоделиСервисаСЛокальнойПрограммой", "mdoRefRu": "Константа.ИспользоватьСинхронизациюДанныхВМоделиСервисаСЛокальнойПрограммой" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3283,7 +3283,7 @@ "mdoRef": "InformationRegister.СведенияОПользователях", "mdoRefRu": "РегистрСведений.СведенияОПользователях" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3291,7 +3291,7 @@ "mdoRef": "InformationRegister.БлокировкиСеансовОбластейДанных", "mdoRefRu": "РегистрСведений.БлокировкиСеансовОбластейДанных" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3299,7 +3299,7 @@ "mdoRef": "Constant.ИспользоватьУдалениеПомеченныхОбъектов", "mdoRefRu": "Константа.ИспользоватьУдалениеПомеченныхОбъектов" }, - "autoRecord": "DENY" + "allow": false }, { "metadata": { @@ -3307,7 +3307,7 @@ "mdoRef": "Constant.ИспользоватьДатуНачалаЗадач", "mdoRefRu": "Константа.ИспользоватьДатуНачалаЗадач" }, - "autoRecord": "DENY" + "allow": false } ], [] diff --git "a/src/test/resources/fixtures/ssl_3_1/FilterCriteria.\320\244\320\260\320\271\320\273\321\213\320\222\320\242\320\276\320\274\320\265.json" "b/src/test/resources/fixtures/ssl_3_1/FilterCriteria.\320\244\320\260\320\271\320\273\321\213\320\222\320\242\320\276\320\274\320\265.json" index e8ed1a7ba..2e4f3860f 100644 --- "a/src/test/resources/fixtures/ssl_3_1/FilterCriteria.\320\244\320\260\320\271\320\273\321\213\320\222\320\242\320\276\320\274\320\265.json" +++ "b/src/test/resources/fixtures/ssl_3_1/FilterCriteria.\320\244\320\260\320\271\320\273\321\213\320\222\320\242\320\276\320\274\320\265.json" @@ -66,9 +66,7 @@ } ] }, - "dataPath": { - "segments": "" - }, + "dataPath": "", "items": [] }, { @@ -89,9 +87,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/forms/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -101,9 +97,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/forms/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -113,9 +107,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/forms/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -140,9 +132,7 @@ } ] }, - "dataPath": { - "segments": "Список" - }, + "dataPath": "Список", "items": [ [ { @@ -163,9 +153,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/forms/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -175,9 +163,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/explanation" }, - "dataPath": { - "segments": "Список.Ref.ИндексКартинки" - }, + "dataPath": "Список.Ref.ИндексКартинки", "items": [] }, { @@ -187,9 +173,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/explanation" }, - "dataPath": { - "segments": "Список.Ref.ПутьКФайлу" - }, + "dataPath": "Список.Ref.ПутьКФайлу", "items": [] } ], @@ -203,9 +187,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/explanation" }, - "dataPath": { - "segments": "Список.Ref.Размер" - }, + "dataPath": "Список.Ref.Размер", "items": [] }, { @@ -215,9 +197,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/explanation" }, - "dataPath": { - "segments": "Список.Ref.Автор" - }, + "dataPath": "Список.Ref.Автор", "items": [] } ], diff --git "a/src/test/resources/fixtures/ssl_3_1/FilterCriteria.\320\244\320\260\320\271\320\273\321\213\320\222\320\242\320\276\320\274\320\265_edt.json" "b/src/test/resources/fixtures/ssl_3_1/FilterCriteria.\320\244\320\260\320\271\320\273\321\213\320\222\320\242\320\276\320\274\320\265_edt.json" index dc67a0cec..59bbff342 100644 --- "a/src/test/resources/fixtures/ssl_3_1/FilterCriteria.\320\244\320\260\320\271\320\273\321\213\320\222\320\242\320\276\320\274\320\265_edt.json" +++ "b/src/test/resources/fixtures/ssl_3_1/FilterCriteria.\320\244\320\260\320\271\320\273\321\213\320\222\320\242\320\276\320\274\320\265_edt.json" @@ -66,9 +66,7 @@ } ] }, - "dataPath": { - "segments": "" - }, + "dataPath": "", "items": [] }, { @@ -89,9 +87,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/forms/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -101,9 +97,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/forms/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -113,9 +107,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/explanation" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/forms/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -140,9 +132,7 @@ } ] }, - "dataPath": { - "segments": "Список" - }, + "dataPath": "Список", "items": [ [ { @@ -163,9 +153,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/forms/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -175,9 +163,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/explanation" }, - "dataPath": { - "segments": "Список.Ref.ИндексКартинки" - }, + "dataPath": "Список.Ref.ИндексКартинки", "items": [] }, { @@ -187,9 +173,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/explanation" }, - "dataPath": { - "segments": "Список.Ref.ПутьКФайлу" - }, + "dataPath": "Список.Ref.ПутьКФайлу", "items": [] } ], @@ -203,9 +187,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/explanation" }, - "dataPath": { - "segments": "Список.Ref.Размер" - }, + "dataPath": "Список.Ref.Размер", "items": [] }, { @@ -215,9 +197,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/explanation" }, - "dataPath": { - "segments": "Список.Ref.Автор" - }, + "dataPath": "Список.Ref.Автор", "items": [] } ], diff --git "a/src/test/resources/fixtures/ssl_3_1/Reports.\320\220\320\275\320\260\320\273\320\270\320\267\320\222\320\265\321\200\321\201\320\270\320\271\320\236\320\261\321\212\320\265\320\272\321\202\320\276\320\262.json" "b/src/test/resources/fixtures/ssl_3_1/Reports.\320\220\320\275\320\260\320\273\320\270\320\267\320\222\320\265\321\200\321\201\320\270\320\271\320\236\320\261\321\212\320\265\320\272\321\202\320\276\320\262.json" index 30122ae9a..22f6dadec 100644 --- "a/src/test/resources/fixtures/ssl_3_1/Reports.\320\220\320\275\320\260\320\273\320\270\320\267\320\222\320\265\321\200\321\201\320\270\320\271\320\236\320\261\321\212\320\265\320\272\321\202\320\276\320\262.json" +++ "b/src/test/resources/fixtures/ssl_3_1/Reports.\320\220\320\275\320\260\320\273\320\270\320\267\320\222\320\265\321\200\321\201\320\270\320\271\320\236\320\261\321\212\320\265\320\272\321\202\320\276\320\262.json" @@ -80,10 +80,8 @@ "dataSource": "ИсточникДанных1", "items": [], "querySource": { - "position": { - "line": 46, - "column": 10 - }, + "line": 46, + "column": 10, "textQuery": "ВЫБРАТЬ\n\tТИПЗНАЧЕНИЯ(ВерсииОбъектов.Объект) КАК ТипОбъекта,\n\tСУММА(ВерсииОбъектов.РазмерДанных / 1024 / 1024) КАК РазмерДанных,\n\tСУММА(1) КАК Количество\nИЗ\n\tРегистрСведений.ВерсииОбъектов КАК ВерсииОбъектов\nГДЕ\n\tВерсииОбъектов.РазмерДанных > 0\n\nСГРУППИРОВАТЬ ПО\n\tТИПЗНАЧЕНИЯ(ВерсииОбъектов.Объект)\n\nУПОРЯДОЧИТЬ ПО\n\tРазмерДанных УБЫВ,\n\tКоличество УБЫВ" }, "fields": [ diff --git "a/src/test/resources/fixtures/ssl_3_1/Reports.\320\220\320\275\320\260\320\273\320\270\320\267\320\222\320\265\321\200\321\201\320\270\320\271\320\236\320\261\321\212\320\265\320\272\321\202\320\276\320\262_edt.json" "b/src/test/resources/fixtures/ssl_3_1/Reports.\320\220\320\275\320\260\320\273\320\270\320\267\320\222\320\265\321\200\321\201\320\270\320\271\320\236\320\261\321\212\320\265\320\272\321\202\320\276\320\262_edt.json" index 1c3d6701f..b08a59984 100644 --- "a/src/test/resources/fixtures/ssl_3_1/Reports.\320\220\320\275\320\260\320\273\320\270\320\267\320\222\320\265\321\200\321\201\320\270\320\271\320\236\320\261\321\212\320\265\320\272\321\202\320\276\320\262_edt.json" +++ "b/src/test/resources/fixtures/ssl_3_1/Reports.\320\220\320\275\320\260\320\273\320\270\320\267\320\222\320\265\321\200\321\201\320\270\320\271\320\236\320\261\321\212\320\265\320\272\321\202\320\276\320\262_edt.json" @@ -80,10 +80,8 @@ "dataSource": "ИсточникДанных1", "items": [], "querySource": { - "position": { - "line": 46, - "column": 10 - }, + "line": 46, + "column": 10, "textQuery": "ВЫБРАТЬ\n\tТИПЗНАЧЕНИЯ(ВерсииОбъектов.Объект) КАК ТипОбъекта,\n\tСУММА(ВерсииОбъектов.РазмерДанных / 1024 / 1024) КАК РазмерДанных,\n\tСУММА(1) КАК Количество\nИЗ\n\tРегистрСведений.ВерсииОбъектов КАК ВерсииОбъектов\nГДЕ\n\tВерсииОбъектов.РазмерДанных > 0\n\nСГРУППИРОВАТЬ ПО\n\tТИПЗНАЧЕНИЯ(ВерсииОбъектов.Объект)\n\nУПОРЯДОЧИТЬ ПО\n\tРазмерДанных УБЫВ,\n\tКоличество УБЫВ" }, "fields": [ diff --git "a/src/test/resources/fixtures/ssl_3_1/SettingsStorages.\320\245\321\200\320\260\320\275\320\270\320\273\320\270\321\211\320\265\320\222\320\260\321\200\320\270\320\260\320\275\321\202\320\276\320\262\320\236\321\202\321\207\320\265\321\202\320\276\320\262.json" "b/src/test/resources/fixtures/ssl_3_1/SettingsStorages.\320\245\321\200\320\260\320\275\320\270\320\273\320\270\321\211\320\265\320\222\320\260\321\200\320\270\320\260\320\275\321\202\320\276\320\262\320\236\321\202\321\207\320\265\321\202\320\276\320\262.json" index 46698c5f5..4107df36f 100644 --- "a/src/test/resources/fixtures/ssl_3_1/SettingsStorages.\320\245\321\200\320\260\320\275\320\270\320\273\320\270\321\211\320\265\320\222\320\260\321\200\320\270\320\260\320\275\321\202\320\276\320\262\320\236\321\202\321\207\320\265\321\202\320\276\320\262.json" +++ "b/src/test/resources/fixtures/ssl_3_1/SettingsStorages.\320\245\321\200\320\260\320\275\320\270\320\273\320\270\321\211\320\265\320\222\320\260\321\200\320\270\320\260\320\275\321\202\320\276\320\262\320\236\321\202\321\207\320\265\321\202\320\276\320\262.json" @@ -67,9 +67,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/synonym" }, - "dataPath": { - "segments": "БыстрыеНастройки" - }, + "dataPath": "БыстрыеНастройки", "items": [ [ { @@ -90,9 +88,7 @@ } ] }, - "dataPath": { - "segments": "" - }, + "dataPath": "", "items": [ [ { @@ -102,9 +98,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "БыстрыеНастройки.Пометка" - }, + "dataPath": "БыстрыеНастройки.Пометка", "items": [] }, { @@ -114,9 +108,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "БыстрыеНастройки.КартинкаНастройки" - }, + "dataPath": "БыстрыеНастройки.КартинкаНастройки", "items": [] }, { @@ -126,9 +118,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "segments": "БыстрыеНастройки.Заголовок" - }, + "dataPath": "БыстрыеНастройки.Заголовок", "items": [] } ], @@ -142,9 +132,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "БыстрыеНастройки.ВидСравнения" - }, + "dataPath": "БыстрыеНастройки.ВидСравнения", "items": [] } ], @@ -169,9 +157,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -181,9 +167,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -204,9 +188,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -216,9 +198,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -228,9 +208,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -455,9 +433,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "INPUT_FIELD", @@ -466,9 +442,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ОтборАвтор" - }, + "dataPath": "ОтборАвтор", "items": [] } ] @@ -491,9 +465,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -503,9 +475,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -515,9 +485,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -538,9 +506,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -550,9 +516,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -562,9 +526,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -585,9 +547,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -612,9 +572,7 @@ } ] }, - "dataPath": { - "segments": "ДеревоВариантовОтчета" - }, + "dataPath": "ДеревоВариантовОтчета", "items": [ [ { @@ -624,9 +582,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ДеревоВариантовОтчета.Наименование" - }, + "dataPath": "ДеревоВариантовОтчета.Наименование", "items": [] }, { @@ -636,9 +592,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ДеревоВариантовОтчета.КартинкаАвтора" - }, + "dataPath": "ДеревоВариантовОтчета.КартинкаАвтора", "items": [] }, { @@ -648,9 +602,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ДеревоВариантовОтчета.Автор" - }, + "dataPath": "ДеревоВариантовОтчета.Автор", "items": [] } ], @@ -664,9 +616,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ВариантОписание" - }, + "dataPath": "ВариантОписание", "items": [] } ], @@ -972,9 +922,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -1181,9 +1129,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1204,9 +1150,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1216,9 +1160,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1228,9 +1170,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -1244,9 +1184,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ДатаНачалаГода" - }, + "dataPath": "ДатаНачалаГода", "items": [] }, { @@ -1256,9 +1194,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -1272,9 +1208,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[4]/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1295,9 +1229,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1318,9 +1250,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1330,9 +1260,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1342,9 +1270,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1354,9 +1280,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -1381,9 +1305,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1393,9 +1315,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1405,9 +1325,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1417,9 +1335,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -1444,9 +1360,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1456,9 +1370,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1468,9 +1380,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1480,9 +1390,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -1507,9 +1415,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1519,9 +1425,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1531,9 +1435,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1543,9 +1445,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -1574,9 +1474,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1586,9 +1484,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1598,9 +1494,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1610,9 +1504,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1622,9 +1514,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -1649,9 +1539,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1661,9 +1549,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1684,9 +1570,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1696,9 +1580,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1708,9 +1590,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -1739,9 +1619,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1751,9 +1629,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1763,9 +1639,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -2106,9 +1980,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "День" - }, + "dataPath": "День", "items": [] } ], @@ -2226,9 +2098,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ЗаголовокГруппы" - }, + "dataPath": "ЗаголовокГруппы", "items": [] }, { @@ -2238,9 +2108,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "РасположениеГруппы" - }, + "dataPath": "РасположениеГруппы", "items": [] } ], @@ -2426,9 +2294,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2438,9 +2304,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2450,9 +2314,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -2477,9 +2339,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "PAGES", @@ -2488,9 +2348,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[7]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2511,9 +2369,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2523,9 +2379,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[7]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "segments": "Значения" - }, + "dataPath": "Значения", "items": [ [ { @@ -2546,9 +2400,7 @@ } ] }, - "dataPath": { - "segments": "Значения.Check" - }, + "dataPath": "Значения.Check", "items": [] }, { @@ -2569,9 +2421,7 @@ } ] }, - "dataPath": { - "segments": "Значения.Value" - }, + "dataPath": "Значения.Value", "items": [] } ], @@ -2596,9 +2446,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2608,9 +2456,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2631,9 +2477,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -2662,9 +2506,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "PAGES", @@ -2684,9 +2526,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2707,9 +2547,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2730,9 +2568,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2753,9 +2589,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -2780,9 +2614,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2803,9 +2635,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2815,9 +2645,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -2854,9 +2682,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2877,9 +2703,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "CHECK_BOX_FIELD", @@ -2888,9 +2712,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "Использование" - }, + "dataPath": "Использование", "items": [] } ] @@ -2913,9 +2735,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2925,9 +2745,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ВидСравнения" - }, + "dataPath": "ВидСравнения", "items": [] }, { @@ -2937,9 +2755,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ПравоеЗначение" - }, + "dataPath": "ПравоеЗначение", "items": [] } ], @@ -2957,9 +2773,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2980,9 +2794,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2992,9 +2804,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3015,9 +2825,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3027,9 +2835,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3039,9 +2845,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3062,9 +2866,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3085,9 +2887,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3097,9 +2897,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3109,9 +2907,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3121,9 +2917,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3133,9 +2927,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3145,9 +2937,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -3172,9 +2962,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3184,9 +2972,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3196,9 +2982,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3208,9 +2992,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3220,9 +3002,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3232,9 +3012,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -3259,9 +3037,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3271,9 +3047,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3294,9 +3068,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3306,9 +3078,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3318,9 +3088,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ПредставлениеПоля" - }, + "dataPath": "ПредставлениеПоля", "items": [] }, { @@ -3330,9 +3098,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -3346,9 +3112,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -3377,9 +3141,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3400,9 +3162,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3412,9 +3172,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3424,9 +3182,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3436,9 +3192,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -3463,9 +3217,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3486,9 +3238,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3509,9 +3259,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3521,9 +3269,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3533,9 +3279,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ВысотаСтроки" - }, + "dataPath": "ВысотаСтроки", "items": [] }, { @@ -3545,9 +3289,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -3572,9 +3314,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3584,9 +3324,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3596,9 +3334,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ШиринаКолонки" - }, + "dataPath": "ШиринаКолонки", "items": [] }, { @@ -3608,9 +3344,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -3628,9 +3362,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -3644,9 +3376,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3656,9 +3386,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -3680,9 +3408,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3692,9 +3418,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3704,9 +3428,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3716,9 +3438,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -4311,9 +4031,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -4323,9 +4041,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -4443,9 +4159,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "USUAL_GROUP", @@ -4465,9 +4179,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ] @@ -4490,9 +4202,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4502,9 +4212,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ЗакрыватьПослеВыбора" - }, + "dataPath": "ЗакрыватьПослеВыбора", "items": [] }, { @@ -4514,9 +4222,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4526,9 +4232,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -4538,9 +4242,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -4923,9 +4625,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4935,9 +4635,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "Использование1" - }, + "dataPath": "Использование1", "items": [] }, { @@ -4958,9 +4656,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4970,9 +4666,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ЛевоеЗначение1" - }, + "dataPath": "ЛевоеЗначение1", "items": [] }, { @@ -4982,9 +4676,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ПредставлениеЛевогоЗначения1" - }, + "dataPath": "ПредставлениеЛевогоЗначения1", "items": [] } ], @@ -4998,9 +4690,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ВидСравнения1" - }, + "dataPath": "ВидСравнения1", "items": [] }, { @@ -5010,9 +4700,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ПравоеЗначение1" - }, + "dataPath": "ПравоеЗначение1", "items": [] } ], @@ -5026,9 +4714,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[7]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5038,9 +4724,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ИспользованиеГруппы" - }, + "dataPath": "ИспользованиеГруппы", "items": [] }, { @@ -5061,9 +4745,7 @@ } ] }, - "dataPath": { - "segments": "ТипГруппыЭлементовФильтра" - }, + "dataPath": "ТипГруппыЭлементовФильтра", "items": [] } ], @@ -5088,9 +4770,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5111,9 +4791,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5123,9 +4801,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ЛевоеЗначение2" - }, + "dataPath": "ЛевоеЗначение2", "items": [] }, { @@ -5135,9 +4811,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ПредставлениеЛевогоЗначения2" - }, + "dataPath": "ПредставлениеЛевогоЗначения2", "items": [] } ], @@ -5151,9 +4825,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ВидСравнения2" - }, + "dataPath": "ВидСравнения2", "items": [] }, { @@ -5163,9 +4835,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ПравоеЗначение2" - }, + "dataPath": "ПравоеЗначение2", "items": [] } ], @@ -5179,9 +4849,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5191,9 +4859,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -5203,9 +4869,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5215,9 +4879,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -5227,9 +4889,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -5239,9 +4899,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -5788,9 +5446,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5811,9 +5467,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5823,9 +5477,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "Объект.Description" - }, + "dataPath": "Объект.Description", "items": [] }, { @@ -5835,9 +5487,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "Доступен" - }, + "dataPath": "Доступен", "items": [] }, { @@ -5858,9 +5508,7 @@ } ] }, - "dataPath": { - "segments": "ПользователиВарианта" - }, + "dataPath": "ПользователиВарианта", "items": [ [ { @@ -5870,9 +5518,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[7]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "segments": "ПользователиВарианта.Check" - }, + "dataPath": "ПользователиВарианта.Check", "items": [] }, { @@ -5882,9 +5528,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[7]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "segments": "ПользователиВарианта.Value" - }, + "dataPath": "ПользователиВарианта.Value", "items": [] } ], @@ -5898,9 +5542,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "УведомитьПользователей" - }, + "dataPath": "УведомитьПользователей", "items": [] }, { @@ -5910,9 +5552,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/attributes/c/com.github._1c_syntax.bsl.mdo.storage.form.FormAttribute[5]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "INPUT_FIELD", @@ -5921,9 +5561,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "Объект.Описание" - }, + "dataPath": "Объект.Описание", "items": [] } ] @@ -5946,9 +5584,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "PAGES", @@ -5968,9 +5604,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5991,9 +5625,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "LABEL_DECORATION", @@ -6013,9 +5645,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ] @@ -6038,9 +5668,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "LABEL_DECORATION", @@ -6060,9 +5688,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ] @@ -6085,9 +5711,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "LABEL_DECORATION", @@ -6107,9 +5731,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ] @@ -6142,9 +5764,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -6154,9 +5774,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "СброситьНастройки" - }, + "dataPath": "СброситьНастройки", "items": [] }, { @@ -6177,9 +5795,7 @@ } ] }, - "dataPath": { - "segments": "ДеревоПодсистем" - }, + "dataPath": "ДеревоПодсистем", "items": [ [ { @@ -6200,9 +5816,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -6212,9 +5826,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ДеревоПодсистем.Использование" - }, + "dataPath": "ДеревоПодсистем.Использование", "items": [] }, { @@ -6224,9 +5836,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ДеревоПодсистем.Представление" - }, + "dataPath": "ДеревоПодсистем.Представление", "items": [] } ], @@ -6240,9 +5850,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ДеревоПодсистем.Важность" - }, + "dataPath": "ДеревоПодсистем.Важность", "items": [] }, { @@ -6252,9 +5860,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ДеревоПодсистем.ПользователиПредставление" - }, + "dataPath": "ДеревоПодсистем.ПользователиПредставление", "items": [] } ], @@ -6276,9 +5882,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -6299,9 +5903,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "COMMAND_BAR_BUTTON", @@ -6310,9 +5912,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ] @@ -6335,9 +5935,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -6347,9 +5945,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -6359,9 +5955,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -6371,9 +5965,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -6383,9 +5975,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -6990,9 +6580,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -7013,9 +6601,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -7025,9 +6611,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ИмяФайла" - }, + "dataPath": "ИмяФайла", "items": [] }, { @@ -7048,9 +6632,7 @@ } ] }, - "dataPath": { - "segments": "ПользовательскиеНастройки" - }, + "dataPath": "ПользовательскиеНастройки", "items": [ [ { @@ -7060,9 +6642,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[7]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "segments": "ПользовательскиеНастройки.Check" - }, + "dataPath": "ПользовательскиеНастройки.Check", "items": [] }, { @@ -7072,9 +6652,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[7]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "segments": "ПользовательскиеНастройки.Value" - }, + "dataPath": "ПользовательскиеНастройки.Value", "items": [] } ], @@ -7103,9 +6681,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -7115,9 +6691,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ИмяКаталога" - }, + "dataPath": "ИмяКаталога", "items": [] }, { @@ -7138,9 +6712,7 @@ } ] }, - "dataPath": { - "segments": "ОписаниеВариантовОтчетов" - }, + "dataPath": "ОписаниеВариантовОтчетов", "items": [ [ { @@ -7161,9 +6733,7 @@ } ] }, - "dataPath": { - "segments": "ОписаниеВариантовОтчетов.Ссылка" - }, + "dataPath": "ОписаниеВариантовОтчетов.Ссылка", "items": [] }, { @@ -7173,9 +6743,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ОписаниеВариантовОтчетов.ИмяФайлаКраткое" - }, + "dataPath": "ОписаниеВариантовОтчетов.ИмяФайлаКраткое", "items": [] } ], @@ -7447,9 +7015,7 @@ } ] }, - "dataPath": { - "segments": "Отборы" - }, + "dataPath": "Отборы", "items": [ [ { @@ -7459,9 +7025,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "Отборы.ПредставлениеПользовательскойНастройки" - }, + "dataPath": "Отборы.ПредставлениеПользовательскойНастройки", "items": [] }, { @@ -7471,9 +7035,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "Отборы.ВидСравнения" - }, + "dataPath": "Отборы.ВидСравнения", "items": [] } ], @@ -7487,9 +7049,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -7499,9 +7059,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -7511,9 +7069,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -7523,9 +7079,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -7781,9 +7335,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -7804,9 +7356,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -7816,9 +7366,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ВариантВыбораОформляемыхПолей" - }, + "dataPath": "ВариантВыбораОформляемыхПолей", "items": [] }, { @@ -7828,9 +7376,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[14]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -7851,9 +7397,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "INPUT_FIELD", @@ -7862,9 +7406,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ОформляемоеПоле" - }, + "dataPath": "ОформляемоеПоле", "items": [] } ] @@ -7876,9 +7418,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "COMMAND_BAR", @@ -7887,9 +7427,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -7899,9 +7437,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -7922,9 +7458,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -7934,9 +7468,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -7946,9 +7478,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -7973,9 +7503,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -7985,9 +7513,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -7997,9 +7523,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -8027,9 +7551,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[14]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Fields" - }, + "dataPath": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Fields", "items": [ { "type": "COLUMN_GROUP", @@ -8038,9 +7560,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[7]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -8050,9 +7570,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Fields.Use" - }, + "dataPath": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Fields.Use", "items": [] }, { @@ -8062,9 +7580,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Fields.Field" - }, + "dataPath": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Fields.Field", "items": [] } ], @@ -8084,9 +7600,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[7]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "TABLE", @@ -8095,9 +7609,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[7]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/title" }, - "dataPath": { - "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Appearance" - }, + "dataPath": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Appearance", "items": [ [ { @@ -8118,9 +7630,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -8130,9 +7640,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Appearance.Use" - }, + "dataPath": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Appearance.Use", "items": [] }, { @@ -8142,9 +7650,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Appearance.Parameter" - }, + "dataPath": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Appearance.Parameter", "items": [] } ], @@ -8158,9 +7664,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[7]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -8170,9 +7674,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Appearance.ValuePicture" - }, + "dataPath": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Appearance.ValuePicture", "items": [] }, { @@ -8182,9 +7684,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Appearance.Value" - }, + "dataPath": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Appearance.Value", "items": [] } ], @@ -8204,9 +7704,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[13]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -8216,9 +7714,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -8239,9 +7735,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -8251,9 +7745,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -8274,9 +7766,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -8286,9 +7776,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[14]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -8298,9 +7786,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -8310,9 +7796,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -8326,9 +7810,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[14]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -8338,9 +7820,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -8350,9 +7830,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -8374,9 +7852,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[13]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter" - }, + "dataPath": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter", "items": [ [ { @@ -8386,9 +7862,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.Use" - }, + "dataPath": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.Use", "items": [] }, { @@ -8409,9 +7883,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -8432,9 +7904,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -8455,9 +7925,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -8467,9 +7935,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.LeftValuePicture" - }, + "dataPath": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.LeftValuePicture", "items": [] }, { @@ -8479,9 +7945,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.LeftValue" - }, + "dataPath": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.LeftValue", "items": [] } ], @@ -8495,9 +7959,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.ComparisonType" - }, + "dataPath": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.ComparisonType", "items": [] }, { @@ -8507,9 +7969,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[7]/data/attributes/c/com.github._1c_syntax.bsl.mdo.storage.form.FormAttribute[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -8519,9 +7979,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.RightValuePicture" - }, + "dataPath": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.RightValuePicture", "items": [] }, { @@ -8531,9 +7989,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.RightValue" - }, + "dataPath": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.RightValue", "items": [] } ], @@ -8547,9 +8003,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.Date" - }, + "dataPath": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.Date", "items": [] } ], @@ -8563,9 +8017,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.GroupType" - }, + "dataPath": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.GroupType", "items": [] }, { @@ -8586,9 +8038,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -8609,9 +8059,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -8621,9 +8069,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.Application" - }, + "dataPath": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.Application", "items": [] }, { @@ -8633,9 +8079,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.ViewMode" - }, + "dataPath": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.ViewMode", "items": [] } ], @@ -8649,9 +8093,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.Presentation" - }, + "dataPath": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.Presentation", "items": [] } ], @@ -8677,9 +8119,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "Наименование" - }, + "dataPath": "Наименование", "items": [] }, { @@ -8689,9 +8129,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -8701,9 +8139,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[7]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -8724,9 +8160,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -8747,9 +8181,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -8759,9 +8191,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[14]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "BUTTON_GROUP", @@ -8770,9 +8200,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[14]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -8782,9 +8210,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -8794,9 +8220,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -8827,9 +8251,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -8839,9 +8261,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ИспользоватьВГруппировке" - }, + "dataPath": "ИспользоватьВГруппировке", "items": [] }, { @@ -8851,9 +8271,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ИспользоватьВИерархическойГруппировке" - }, + "dataPath": "ИспользоватьВИерархическойГруппировке", "items": [] }, { @@ -8863,9 +8281,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ИспользоватьВОбщемИтоге" - }, + "dataPath": "ИспользоватьВОбщемИтоге", "items": [] }, { @@ -8875,9 +8291,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ИспользоватьВЗаголовкеПолей" - }, + "dataPath": "ИспользоватьВЗаголовкеПолей", "items": [] }, { @@ -8887,9 +8301,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ИспользоватьВЗаголовке" - }, + "dataPath": "ИспользоватьВЗаголовке", "items": [] }, { @@ -8899,9 +8311,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ИспользоватьВПараметрах" - }, + "dataPath": "ИспользоватьВПараметрах", "items": [] }, { @@ -8911,9 +8321,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ИспользоватьВОтборе" - }, + "dataPath": "ИспользоватьВОтборе", "items": [] } ], @@ -8931,9 +8339,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -8943,9 +8349,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -8955,9 +8359,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -8967,9 +8369,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], diff --git "a/src/test/resources/fixtures/ssl_3_1/SettingsStorages.\320\245\321\200\320\260\320\275\320\270\320\273\320\270\321\211\320\265\320\222\320\260\321\200\320\270\320\260\320\275\321\202\320\276\320\262\320\236\321\202\321\207\320\265\321\202\320\276\320\262_edt.json" "b/src/test/resources/fixtures/ssl_3_1/SettingsStorages.\320\245\321\200\320\260\320\275\320\270\320\273\320\270\321\211\320\265\320\222\320\260\321\200\320\270\320\260\320\275\321\202\320\276\320\262\320\236\321\202\321\207\320\265\321\202\320\276\320\262_edt.json" index 74a9d4ee4..d7318dcc4 100644 --- "a/src/test/resources/fixtures/ssl_3_1/SettingsStorages.\320\245\321\200\320\260\320\275\320\270\320\273\320\270\321\211\320\265\320\222\320\260\321\200\320\270\320\260\320\275\321\202\320\276\320\262\320\236\321\202\321\207\320\265\321\202\320\276\320\262_edt.json" +++ "b/src/test/resources/fixtures/ssl_3_1/SettingsStorages.\320\245\321\200\320\260\320\275\320\270\320\273\320\270\321\211\320\265\320\222\320\260\321\200\320\270\320\260\320\275\321\202\320\276\320\262\320\236\321\202\321\207\320\265\321\202\320\276\320\262_edt.json" @@ -67,9 +67,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/synonym" }, - "dataPath": { - "segments": "БыстрыеНастройки" - }, + "dataPath": "БыстрыеНастройки", "items": [ [ { @@ -90,9 +88,7 @@ } ] }, - "dataPath": { - "segments": "" - }, + "dataPath": "", "items": [ [ { @@ -102,9 +98,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "БыстрыеНастройки.Пометка" - }, + "dataPath": "БыстрыеНастройки.Пометка", "items": [] }, { @@ -114,9 +108,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "БыстрыеНастройки.КартинкаНастройки" - }, + "dataPath": "БыстрыеНастройки.КартинкаНастройки", "items": [] }, { @@ -126,9 +118,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "segments": "БыстрыеНастройки.Заголовок" - }, + "dataPath": "БыстрыеНастройки.Заголовок", "items": [] } ], @@ -142,9 +132,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "БыстрыеНастройки.ВидСравнения" - }, + "dataPath": "БыстрыеНастройки.ВидСравнения", "items": [] } ], @@ -169,9 +157,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -181,9 +167,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -204,9 +188,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -216,9 +198,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -228,9 +208,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -455,9 +433,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "INPUT_FIELD", @@ -466,9 +442,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ОтборАвтор" - }, + "dataPath": "ОтборАвтор", "items": [] } ] @@ -491,9 +465,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -503,9 +475,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -515,9 +485,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -538,9 +506,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -550,9 +516,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -562,9 +526,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -585,9 +547,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -612,9 +572,7 @@ } ] }, - "dataPath": { - "segments": "ДеревоВариантовОтчета" - }, + "dataPath": "ДеревоВариантовОтчета", "items": [ [ { @@ -624,9 +582,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ДеревоВариантовОтчета.Наименование" - }, + "dataPath": "ДеревоВариантовОтчета.Наименование", "items": [] }, { @@ -636,9 +592,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ДеревоВариантовОтчета.КартинкаАвтора" - }, + "dataPath": "ДеревоВариантовОтчета.КартинкаАвтора", "items": [] }, { @@ -648,9 +602,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ДеревоВариантовОтчета.Автор" - }, + "dataPath": "ДеревоВариантовОтчета.Автор", "items": [] } ], @@ -664,9 +616,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ВариантОписание" - }, + "dataPath": "ВариантОписание", "items": [] } ], @@ -972,9 +922,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -1181,9 +1129,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1204,9 +1150,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1216,9 +1160,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1228,9 +1170,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -1244,9 +1184,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ДатаНачалаГода" - }, + "dataPath": "ДатаНачалаГода", "items": [] }, { @@ -1256,9 +1194,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -1272,9 +1208,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[4]/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1295,9 +1229,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1318,9 +1250,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1330,9 +1260,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1342,9 +1270,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1354,9 +1280,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -1381,9 +1305,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1393,9 +1315,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1405,9 +1325,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1417,9 +1335,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -1444,9 +1360,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1456,9 +1370,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1468,9 +1380,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1480,9 +1390,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -1507,9 +1415,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1519,9 +1425,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1531,9 +1435,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1543,9 +1445,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -1574,9 +1474,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1586,9 +1484,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1598,9 +1494,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1610,9 +1504,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1622,9 +1514,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -1649,9 +1539,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1661,9 +1549,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1684,9 +1570,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1696,9 +1580,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1708,9 +1590,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -1739,9 +1619,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1751,9 +1629,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -1763,9 +1639,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -2106,9 +1980,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "День" - }, + "dataPath": "День", "items": [] } ], @@ -2226,9 +2098,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ЗаголовокГруппы" - }, + "dataPath": "ЗаголовокГруппы", "items": [] }, { @@ -2238,9 +2108,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "РасположениеГруппы" - }, + "dataPath": "РасположениеГруппы", "items": [] } ], @@ -2426,9 +2294,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2438,9 +2304,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2450,9 +2314,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -2477,9 +2339,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "PAGES", @@ -2488,9 +2348,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[7]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2511,9 +2369,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2523,9 +2379,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[7]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "segments": "Значения" - }, + "dataPath": "Значения", "items": [ [ { @@ -2546,9 +2400,7 @@ } ] }, - "dataPath": { - "segments": "Значения.Check" - }, + "dataPath": "Значения.Check", "items": [] }, { @@ -2569,9 +2421,7 @@ } ] }, - "dataPath": { - "segments": "Значения.Value" - }, + "dataPath": "Значения.Value", "items": [] } ], @@ -2596,9 +2446,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2608,9 +2456,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2631,9 +2477,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -2662,9 +2506,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "PAGES", @@ -2684,9 +2526,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2707,9 +2547,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2730,9 +2568,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2753,9 +2589,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -2780,9 +2614,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2803,9 +2635,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2815,9 +2645,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -2854,9 +2682,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2877,9 +2703,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "CHECK_BOX_FIELD", @@ -2888,9 +2712,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "Использование" - }, + "dataPath": "Использование", "items": [] } ] @@ -2913,9 +2735,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2925,9 +2745,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ВидСравнения" - }, + "dataPath": "ВидСравнения", "items": [] }, { @@ -2937,9 +2755,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ПравоеЗначение" - }, + "dataPath": "ПравоеЗначение", "items": [] } ], @@ -2957,9 +2773,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2980,9 +2794,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2992,9 +2804,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3015,9 +2825,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3027,9 +2835,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3039,9 +2845,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3062,9 +2866,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3085,9 +2887,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3097,9 +2897,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3109,9 +2907,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3121,9 +2917,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3133,9 +2927,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3145,9 +2937,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -3172,9 +2962,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3184,9 +2972,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3196,9 +2982,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3208,9 +2992,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3220,9 +3002,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3232,9 +3012,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -3259,9 +3037,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3271,9 +3047,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3294,9 +3068,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3306,9 +3078,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3318,9 +3088,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ПредставлениеПоля" - }, + "dataPath": "ПредставлениеПоля", "items": [] }, { @@ -3330,9 +3098,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -3346,9 +3112,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -3377,9 +3141,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3400,9 +3162,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3412,9 +3172,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3424,9 +3182,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3436,9 +3192,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -3463,9 +3217,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3486,9 +3238,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3509,9 +3259,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3521,9 +3269,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3533,9 +3279,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ВысотаСтроки" - }, + "dataPath": "ВысотаСтроки", "items": [] }, { @@ -3545,9 +3289,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -3572,9 +3314,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3584,9 +3324,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3596,9 +3334,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ШиринаКолонки" - }, + "dataPath": "ШиринаКолонки", "items": [] }, { @@ -3608,9 +3344,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -3628,9 +3362,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -3644,9 +3376,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3656,9 +3386,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -3680,9 +3408,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3692,9 +3418,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3704,9 +3428,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3716,9 +3438,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -4311,9 +4031,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -4323,9 +4041,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -4443,9 +4159,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "USUAL_GROUP", @@ -4465,9 +4179,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ] @@ -4490,9 +4202,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4502,9 +4212,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ЗакрыватьПослеВыбора" - }, + "dataPath": "ЗакрыватьПослеВыбора", "items": [] }, { @@ -4514,9 +4222,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4526,9 +4232,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -4538,9 +4242,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -4923,9 +4625,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4935,9 +4635,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "Использование1" - }, + "dataPath": "Использование1", "items": [] }, { @@ -4958,9 +4656,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4970,9 +4666,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ЛевоеЗначение1" - }, + "dataPath": "ЛевоеЗначение1", "items": [] }, { @@ -4982,9 +4676,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ПредставлениеЛевогоЗначения1" - }, + "dataPath": "ПредставлениеЛевогоЗначения1", "items": [] } ], @@ -4998,9 +4690,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ВидСравнения1" - }, + "dataPath": "ВидСравнения1", "items": [] }, { @@ -5010,9 +4700,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ПравоеЗначение1" - }, + "dataPath": "ПравоеЗначение1", "items": [] } ], @@ -5026,9 +4714,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[7]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5038,9 +4724,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ИспользованиеГруппы" - }, + "dataPath": "ИспользованиеГруппы", "items": [] }, { @@ -5061,9 +4745,7 @@ } ] }, - "dataPath": { - "segments": "ТипГруппыЭлементовФильтра" - }, + "dataPath": "ТипГруппыЭлементовФильтра", "items": [] } ], @@ -5088,9 +4770,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5111,9 +4791,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5123,9 +4801,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ЛевоеЗначение2" - }, + "dataPath": "ЛевоеЗначение2", "items": [] }, { @@ -5135,9 +4811,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ПредставлениеЛевогоЗначения2" - }, + "dataPath": "ПредставлениеЛевогоЗначения2", "items": [] } ], @@ -5151,9 +4825,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ВидСравнения2" - }, + "dataPath": "ВидСравнения2", "items": [] }, { @@ -5163,9 +4835,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ПравоеЗначение2" - }, + "dataPath": "ПравоеЗначение2", "items": [] } ], @@ -5179,9 +4849,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5191,9 +4859,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -5203,9 +4869,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5215,9 +4879,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -5227,9 +4889,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -5239,9 +4899,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -5788,9 +5446,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5811,9 +5467,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5823,9 +5477,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "Объект.Description" - }, + "dataPath": "Объект.Description", "items": [] }, { @@ -5835,9 +5487,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "Доступен" - }, + "dataPath": "Доступен", "items": [] }, { @@ -5858,9 +5508,7 @@ } ] }, - "dataPath": { - "segments": "ПользователиВарианта" - }, + "dataPath": "ПользователиВарианта", "items": [ [ { @@ -5870,9 +5518,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[7]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "segments": "ПользователиВарианта.Check" - }, + "dataPath": "ПользователиВарианта.Check", "items": [] }, { @@ -5882,9 +5528,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[7]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "segments": "ПользователиВарианта.Value" - }, + "dataPath": "ПользователиВарианта.Value", "items": [] } ], @@ -5898,9 +5542,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "УведомитьПользователей" - }, + "dataPath": "УведомитьПользователей", "items": [] }, { @@ -5910,9 +5552,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/attributes/c/com.github._1c_syntax.bsl.mdo.storage.form.FormAttribute[5]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "INPUT_FIELD", @@ -5921,9 +5561,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "Объект.Описание" - }, + "dataPath": "Объект.Описание", "items": [] } ] @@ -5946,9 +5584,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "PAGES", @@ -5968,9 +5604,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5991,9 +5625,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "LABEL", @@ -6013,9 +5645,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ] @@ -6038,9 +5668,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "LABEL", @@ -6060,9 +5688,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ] @@ -6085,9 +5711,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "LABEL", @@ -6107,9 +5731,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ] @@ -6142,9 +5764,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -6154,9 +5774,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "СброситьНастройки" - }, + "dataPath": "СброситьНастройки", "items": [] }, { @@ -6177,9 +5795,7 @@ } ] }, - "dataPath": { - "segments": "ДеревоПодсистем" - }, + "dataPath": "ДеревоПодсистем", "items": [ [ { @@ -6200,9 +5816,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -6212,9 +5826,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ДеревоПодсистем.Использование" - }, + "dataPath": "ДеревоПодсистем.Использование", "items": [] }, { @@ -6224,9 +5836,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ДеревоПодсистем.Представление" - }, + "dataPath": "ДеревоПодсистем.Представление", "items": [] } ], @@ -6240,9 +5850,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ДеревоПодсистем.Важность" - }, + "dataPath": "ДеревоПодсистем.Важность", "items": [] }, { @@ -6252,9 +5860,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ДеревоПодсистем.ПользователиПредставление" - }, + "dataPath": "ДеревоПодсистем.ПользователиПредставление", "items": [] } ], @@ -6276,9 +5882,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -6299,9 +5903,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "BUTTON", @@ -6310,9 +5912,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ] @@ -6335,9 +5935,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -6347,9 +5945,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -6359,9 +5955,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -6371,9 +5965,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -6383,9 +5975,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -6990,9 +6580,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -7013,9 +6601,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -7025,9 +6611,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ИмяФайла" - }, + "dataPath": "ИмяФайла", "items": [] }, { @@ -7048,9 +6632,7 @@ } ] }, - "dataPath": { - "segments": "ПользовательскиеНастройки" - }, + "dataPath": "ПользовательскиеНастройки", "items": [ [ { @@ -7060,9 +6642,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[7]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "segments": "ПользовательскиеНастройки.Check" - }, + "dataPath": "ПользовательскиеНастройки.Check", "items": [] }, { @@ -7072,9 +6652,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[7]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "segments": "ПользовательскиеНастройки.Value" - }, + "dataPath": "ПользовательскиеНастройки.Value", "items": [] } ], @@ -7103,9 +6681,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -7115,9 +6691,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ИмяКаталога" - }, + "dataPath": "ИмяКаталога", "items": [] }, { @@ -7138,9 +6712,7 @@ } ] }, - "dataPath": { - "segments": "ОписаниеВариантовОтчетов" - }, + "dataPath": "ОписаниеВариантовОтчетов", "items": [ [ { @@ -7161,9 +6733,7 @@ } ] }, - "dataPath": { - "segments": "ОписаниеВариантовОтчетов.Ссылка" - }, + "dataPath": "ОписаниеВариантовОтчетов.Ссылка", "items": [] }, { @@ -7173,9 +6743,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ОписаниеВариантовОтчетов.ИмяФайлаКраткое" - }, + "dataPath": "ОписаниеВариантовОтчетов.ИмяФайлаКраткое", "items": [] } ], @@ -7447,9 +7015,7 @@ } ] }, - "dataPath": { - "segments": "Отборы" - }, + "dataPath": "Отборы", "items": [ [ { @@ -7459,9 +7025,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "Отборы.ПредставлениеПользовательскойНастройки" - }, + "dataPath": "Отборы.ПредставлениеПользовательскойНастройки", "items": [] }, { @@ -7471,9 +7035,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "Отборы.ВидСравнения" - }, + "dataPath": "Отборы.ВидСравнения", "items": [] } ], @@ -7487,9 +7049,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -7499,9 +7059,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -7511,9 +7069,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -7523,9 +7079,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -7781,9 +7335,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -7804,9 +7356,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -7816,9 +7366,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ВариантВыбораОформляемыхПолей" - }, + "dataPath": "ВариантВыбораОформляемыхПолей", "items": [] }, { @@ -7828,9 +7376,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[14]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -7851,9 +7397,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "INPUT_FIELD", @@ -7862,9 +7406,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ОформляемоеПоле" - }, + "dataPath": "ОформляемоеПоле", "items": [] } ] @@ -7876,9 +7418,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "COMMAND_BAR", @@ -7887,9 +7427,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -7899,9 +7437,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -7922,9 +7458,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -7934,9 +7468,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -7946,9 +7478,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -7973,9 +7503,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -7985,9 +7513,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -7997,9 +7523,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -8027,9 +7551,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[14]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Fields" - }, + "dataPath": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Fields", "items": [ { "type": "COLUMN_GROUP", @@ -8038,9 +7560,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[7]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -8050,9 +7570,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Fields.Use" - }, + "dataPath": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Fields.Use", "items": [] }, { @@ -8062,9 +7580,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Fields.Field" - }, + "dataPath": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Fields.Field", "items": [] } ], @@ -8084,9 +7600,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[7]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "TABLE", @@ -8095,9 +7609,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[7]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/title" }, - "dataPath": { - "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Appearance" - }, + "dataPath": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Appearance", "items": [ [ { @@ -8118,9 +7630,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -8130,9 +7640,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Appearance.Use" - }, + "dataPath": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Appearance.Use", "items": [] }, { @@ -8142,9 +7650,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Appearance.Parameter" - }, + "dataPath": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Appearance.Parameter", "items": [] } ], @@ -8158,9 +7664,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[7]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -8170,9 +7674,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Appearance.ValuePicture" - }, + "dataPath": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Appearance.ValuePicture", "items": [] }, { @@ -8182,9 +7684,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Appearance.Value" - }, + "dataPath": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Appearance.Value", "items": [] } ], @@ -8204,9 +7704,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[13]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -8216,9 +7714,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -8239,9 +7735,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -8251,9 +7745,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -8274,9 +7766,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -8286,9 +7776,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[14]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -8298,9 +7786,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -8310,9 +7796,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -8326,9 +7810,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[14]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -8338,9 +7820,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -8350,9 +7830,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -8374,9 +7852,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[13]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter" - }, + "dataPath": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter", "items": [ [ { @@ -8386,9 +7862,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.Use" - }, + "dataPath": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.Use", "items": [] }, { @@ -8409,9 +7883,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -8432,9 +7904,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -8455,9 +7925,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -8467,9 +7935,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.LeftValuePicture" - }, + "dataPath": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.LeftValuePicture", "items": [] }, { @@ -8479,9 +7945,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.LeftValue" - }, + "dataPath": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.LeftValue", "items": [] } ], @@ -8495,9 +7959,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.ComparisonType" - }, + "dataPath": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.ComparisonType", "items": [] }, { @@ -8507,9 +7969,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[7]/data/attributes/c/com.github._1c_syntax.bsl.mdo.storage.form.FormAttribute[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -8519,9 +7979,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.RightValuePicture" - }, + "dataPath": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.RightValuePicture", "items": [] }, { @@ -8531,9 +7989,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.RightValue" - }, + "dataPath": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.RightValue", "items": [] } ], @@ -8547,9 +8003,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.Date" - }, + "dataPath": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.Date", "items": [] } ], @@ -8563,9 +8017,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.GroupType" - }, + "dataPath": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.GroupType", "items": [] }, { @@ -8586,9 +8038,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -8609,9 +8059,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -8621,9 +8069,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.Application" - }, + "dataPath": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.Application", "items": [] }, { @@ -8633,9 +8079,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.ViewMode" - }, + "dataPath": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.ViewMode", "items": [] } ], @@ -8649,9 +8093,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.Presentation" - }, + "dataPath": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.Presentation", "items": [] } ], @@ -8677,9 +8119,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "Наименование" - }, + "dataPath": "Наименование", "items": [] }, { @@ -8689,9 +8129,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -8701,9 +8139,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[7]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -8724,9 +8160,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -8747,9 +8181,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -8759,9 +8191,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[14]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "FORM_GROUP", @@ -8770,9 +8200,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[14]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -8782,9 +8210,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -8794,9 +8220,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -8827,9 +8251,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -8839,9 +8261,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ИспользоватьВГруппировке" - }, + "dataPath": "ИспользоватьВГруппировке", "items": [] }, { @@ -8851,9 +8271,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ИспользоватьВИерархическойГруппировке" - }, + "dataPath": "ИспользоватьВИерархическойГруппировке", "items": [] }, { @@ -8863,9 +8281,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ИспользоватьВОбщемИтоге" - }, + "dataPath": "ИспользоватьВОбщемИтоге", "items": [] }, { @@ -8875,9 +8291,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ИспользоватьВЗаголовкеПолей" - }, + "dataPath": "ИспользоватьВЗаголовкеПолей", "items": [] }, { @@ -8887,9 +8301,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ИспользоватьВЗаголовке" - }, + "dataPath": "ИспользоватьВЗаголовке", "items": [] }, { @@ -8899,9 +8311,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ИспользоватьВПараметрах" - }, + "dataPath": "ИспользоватьВПараметрах", "items": [] }, { @@ -8911,9 +8321,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "segments": "ИспользоватьВОтборе" - }, + "dataPath": "ИспользоватьВОтборе", "items": [] } ], @@ -8931,9 +8339,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -8943,9 +8349,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -8955,9 +8359,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -8967,9 +8369,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], diff --git "a/src/test/resources/fixtures/ssl_3_1/Tasks.\320\227\320\260\320\264\320\260\321\207\320\260\320\230\321\201\320\277\320\276\320\273\320\275\320\270\321\202\320\265\320\273\321\217.json" "b/src/test/resources/fixtures/ssl_3_1/Tasks.\320\227\320\260\320\264\320\260\321\207\320\260\320\230\321\201\320\277\320\276\320\273\320\275\320\270\321\202\320\265\320\273\321\217.json" index a05581fed..885314723 100644 --- "a/src/test/resources/fixtures/ssl_3_1/Tasks.\320\227\320\260\320\264\320\260\321\207\320\260\320\230\321\201\320\277\320\276\320\273\320\275\320\270\321\202\320\265\320\273\321\217.json" +++ "b/src/test/resources/fixtures/ssl_3_1/Tasks.\320\227\320\260\320\264\320\260\321\207\320\260\320\230\321\201\320\277\320\276\320\273\320\275\320\270\321\202\320\265\320\273\321\217.json" @@ -1919,9 +1919,7 @@ } ] }, - "dataPath": { - "segments": "" - }, + "dataPath": "", "items": [ [ { @@ -1931,9 +1929,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Объект.Description" - }, + "dataPath": "Объект.Description", "items": [] }, { @@ -1954,9 +1950,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1966,9 +1960,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Объект.Executed" - }, + "dataPath": "Объект.Executed", "items": [] }, { @@ -1978,9 +1970,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Объект.ДатаИсполнения" - }, + "dataPath": "Объект.ДатаИсполнения", "items": [] } ], @@ -2005,9 +1995,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2017,9 +2005,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Объект.BusinessProcess" - }, + "dataPath": "Объект.BusinessProcess", "items": [] }, { @@ -2029,9 +2015,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Объект.RoutePoint" - }, + "dataPath": "Объект.RoutePoint", "items": [] } ], @@ -2056,9 +2040,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2068,9 +2050,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Объект.Исполнитель" - }, + "dataPath": "Объект.Исполнитель", "items": [] }, { @@ -2080,9 +2060,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Объект.РольИсполнителя" - }, + "dataPath": "Объект.РольИсполнителя", "items": [] }, { @@ -2103,9 +2081,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2115,9 +2091,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2138,9 +2112,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2150,9 +2122,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Объект.ОсновнойОбъектАдресации" - }, + "dataPath": "Объект.ОсновнойОбъектАдресации", "items": [] }, { @@ -2162,9 +2132,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Объект.ДополнительныйОбъектАдресации" - }, + "dataPath": "Объект.ДополнительныйОбъектАдресации", "items": [] } ], @@ -2197,9 +2165,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2209,9 +2175,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Объект.Date" - }, + "dataPath": "Объект.Date", "items": [] }, { @@ -2221,9 +2185,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Объект.СрокИсполнения" - }, + "dataPath": "Объект.СрокИсполнения", "items": [] } ], @@ -2252,9 +2214,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "INPUT_FIELD", @@ -2263,9 +2223,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Объект.Number" - }, + "dataPath": "Объект.Number", "items": [] } ] @@ -2403,9 +2361,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2426,9 +2382,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2449,9 +2403,7 @@ } ] }, - "dataPath": { - "segments": "Список" - }, + "dataPath": "Список", "items": [ [ { @@ -2461,9 +2413,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.Description" - }, + "dataPath": "Список.Description", "items": [] }, { @@ -2484,9 +2434,7 @@ } ] }, - "dataPath": { - "segments": "Список.Number" - }, + "dataPath": "Список.Number", "items": [] }, { @@ -2496,9 +2444,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute[7]/synonym" }, - "dataPath": { - "segments": "Список.Date" - }, + "dataPath": "Список.Date", "items": [] }, { @@ -2508,9 +2454,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.Исполнитель" - }, + "dataPath": "Список.Исполнитель", "items": [] }, { @@ -2520,9 +2464,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.Предмет" - }, + "dataPath": "Список.Предмет", "items": [] }, { @@ -2532,9 +2474,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.Ref" - }, + "dataPath": "Список.Ref", "items": [] } ], @@ -2559,9 +2499,7 @@ } ] }, - "dataPath": { - "segments": "ДеревоЗадач" - }, + "dataPath": "ДеревоЗадач", "items": [ [ { @@ -2571,9 +2509,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "ДеревоЗадач.Важность" - }, + "dataPath": "ДеревоЗадач.Важность", "items": [] }, { @@ -2583,9 +2519,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "ДеревоЗадач.Выполнена" - }, + "dataPath": "ДеревоЗадач.Выполнена", "items": [] }, { @@ -2595,9 +2529,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "ДеревоЗадач.Остановлен" - }, + "dataPath": "ДеревоЗадач.Остановлен", "items": [] }, { @@ -2618,9 +2550,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2630,9 +2560,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "ДеревоЗадач.Тип" - }, + "dataPath": "ДеревоЗадач.Тип", "items": [] }, { @@ -2642,9 +2570,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "ДеревоЗадач.Наименование" - }, + "dataPath": "ДеревоЗадач.Наименование", "items": [] } ], @@ -2658,9 +2584,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "ДеревоЗадач.Исполнитель" - }, + "dataPath": "ДеревоЗадач.Исполнитель", "items": [] }, { @@ -2670,9 +2594,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "ДеревоЗадач.СрокИсполнения" - }, + "dataPath": "ДеревоЗадач.СрокИсполнения", "items": [] } ], @@ -2686,9 +2608,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "ПоказыватьВыполненные" - }, + "dataPath": "ПоказыватьВыполненные", "items": [] } ], @@ -2851,9 +2771,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2863,9 +2781,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "BUTTON_GROUP", @@ -2885,9 +2801,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2908,9 +2822,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2920,9 +2832,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2932,9 +2842,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Items.Список.CurrentData.ОсновнойОбъектАдресации" - }, + "dataPath": "Items.Список.CurrentData.ОсновнойОбъектАдресации", "items": [] }, { @@ -2944,9 +2852,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Items.Список.CurrentData.ОсновнойОбъектАдресации" - }, + "dataPath": "Items.Список.CurrentData.ОсновнойОбъектАдресации", "items": [] } ], @@ -2962,9 +2868,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title" }, - "dataPath": { - "segments": "Список" - }, + "dataPath": "Список", "items": [ [ { @@ -2974,9 +2878,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[2]/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2986,9 +2888,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[2]/synonym" }, - "dataPath": { - "segments": "Список.ВажностьКартинка" - }, + "dataPath": "Список.ВажностьКартинка", "items": [] }, { @@ -3009,9 +2909,7 @@ } ] }, - "dataPath": { - "segments": "Список.Остановлена" - }, + "dataPath": "Список.Остановлена", "items": [] } ], @@ -3025,9 +2923,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[7]/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3048,9 +2944,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3060,9 +2954,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute[2]/synonym" }, - "dataPath": { - "segments": "Список.Description" - }, + "dataPath": "Список.Description", "items": [] }, { @@ -3072,9 +2964,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.Автор" - }, + "dataPath": "Список.Автор", "items": [] } ], @@ -3088,9 +2978,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3100,9 +2988,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "segments": "Список.Number" - }, + "dataPath": "Список.Number", "items": [] }, { @@ -3112,9 +2998,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.Date" - }, + "dataPath": "Список.Date", "items": [] } ], @@ -3143,9 +3027,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3155,9 +3037,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute[2]/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3167,9 +3047,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.Исполнитель" - }, + "dataPath": "Список.Исполнитель", "items": [] }, { @@ -3179,9 +3057,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.РольИсполнителя" - }, + "dataPath": "Список.РольИсполнителя", "items": [] }, { @@ -3191,9 +3067,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.ОсновнойОбъектАдресации" - }, + "dataPath": "Список.ОсновнойОбъектАдресации", "items": [] }, { @@ -3203,9 +3077,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.ДополнительныйОбъектАдресации" - }, + "dataPath": "Список.ДополнительныйОбъектАдресации", "items": [] } ], @@ -3230,9 +3102,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3242,9 +3112,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.СрокИсполнения" - }, + "dataPath": "Список.СрокИсполнения", "items": [] }, { @@ -3254,9 +3122,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.Executed" - }, + "dataPath": "Список.Executed", "items": [] }, { @@ -3266,9 +3132,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.ДатаИсполнения" - }, + "dataPath": "Список.ДатаИсполнения", "items": [] } ], @@ -3286,9 +3150,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.Ref" - }, + "dataPath": "Список.Ref", "items": [] } ], @@ -3302,9 +3164,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "ПоказыватьВыполненные" - }, + "dataPath": "ПоказыватьВыполненные", "items": [] }, { @@ -3314,9 +3174,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/title" }, - "dataPath": { - "segments": "ДеревоЗадач" - }, + "dataPath": "ДеревоЗадач", "items": [ [ { @@ -3326,9 +3184,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "ДеревоЗадач.Важность" - }, + "dataPath": "ДеревоЗадач.Важность", "items": [] }, { @@ -3338,9 +3194,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "ДеревоЗадач.Выполнена" - }, + "dataPath": "ДеревоЗадач.Выполнена", "items": [] }, { @@ -3350,9 +3204,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "ДеревоЗадач.Остановлен" - }, + "dataPath": "ДеревоЗадач.Остановлен", "items": [] }, { @@ -3362,9 +3214,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3374,9 +3224,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "ДеревоЗадач.Тип" - }, + "dataPath": "ДеревоЗадач.Тип", "items": [] }, { @@ -3386,9 +3234,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute[2]/synonym" }, - "dataPath": { - "segments": "ДеревоЗадач.Наименование" - }, + "dataPath": "ДеревоЗадач.Наименование", "items": [] } ], @@ -3402,9 +3248,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "ДеревоЗадач.Исполнитель" - }, + "dataPath": "ДеревоЗадач.Исполнитель", "items": [] }, { @@ -3414,9 +3258,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[13]/synonym" }, - "dataPath": { - "segments": "ДеревоЗадач.СрокИсполнения" - }, + "dataPath": "ДеревоЗадач.СрокИсполнения", "items": [] } ], @@ -3569,9 +3411,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3592,9 +3432,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3615,9 +3453,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3627,9 +3463,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3639,9 +3473,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3651,9 +3483,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3663,9 +3493,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3675,9 +3503,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3687,9 +3513,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -3714,9 +3538,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3737,9 +3559,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3749,9 +3569,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3761,9 +3579,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -3777,9 +3593,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3789,9 +3603,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3801,9 +3613,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -3817,9 +3627,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[3]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3829,9 +3637,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Items.Список.CurrentData.Ref" - }, + "dataPath": "Items.Список.CurrentData.Ref", "items": [] }, { @@ -3841,9 +3647,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Items.Список.CurrentData.Ref" - }, + "dataPath": "Items.Список.CurrentData.Ref", "items": [] }, { @@ -3853,9 +3657,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3876,9 +3678,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3888,9 +3688,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -3904,9 +3702,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title" }, - "dataPath": { - "segments": "Список" - }, + "dataPath": "Список", "items": [ [ { @@ -3916,9 +3712,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[2]/synonym" }, - "dataPath": { - "segments": "Список.ВажностьКартинка" - }, + "dataPath": "Список.ВажностьКартинка", "items": [] }, { @@ -3928,9 +3722,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.Number" - }, + "dataPath": "Список.Number", "items": [] }, { @@ -3940,9 +3732,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.Description" - }, + "dataPath": "Список.Description", "items": [] }, { @@ -3952,9 +3742,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[5]/synonym" }, - "dataPath": { - "segments": "Список.ДатаНачала" - }, + "dataPath": "Список.ДатаНачала", "items": [] }, { @@ -3964,9 +3752,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.СрокИсполнения" - }, + "dataPath": "Список.СрокИсполнения", "items": [] }, { @@ -3976,9 +3762,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.Автор" - }, + "dataPath": "Список.Автор", "items": [] }, { @@ -3988,9 +3772,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.ПредметСтрокой" - }, + "dataPath": "Список.ПредметСтрокой", "items": [] }, { @@ -4000,9 +3782,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute[7]/synonym" }, - "dataPath": { - "segments": "Список.Date" - }, + "dataPath": "Список.Date", "items": [] }, { @@ -4012,9 +3792,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.Ref" - }, + "dataPath": "Список.Ref", "items": [] } ], @@ -4028,9 +3806,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "ПоказыватьВыполненные" - }, + "dataPath": "ПоказыватьВыполненные", "items": [] } ], @@ -4191,9 +3967,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -4203,9 +3977,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[4]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4215,9 +3987,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[4]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -4227,9 +3997,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -4239,9 +4007,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[4]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4251,9 +4017,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -4263,9 +4027,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -4275,9 +4037,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -4287,9 +4047,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -4299,9 +4057,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -4322,9 +4078,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "COMMAND_BAR_BUTTON", @@ -4333,9 +4087,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ] @@ -4351,9 +4103,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[4]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[8]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4363,9 +4113,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -4375,9 +4123,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Items.Список.CurrentData.Ref" - }, + "dataPath": "Items.Список.CurrentData.Ref", "items": [] }, { @@ -4387,9 +4133,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Items.Список.CurrentData.Ref" - }, + "dataPath": "Items.Список.CurrentData.Ref", "items": [] } ], @@ -4407,9 +4151,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title" }, - "dataPath": { - "segments": "Список" - }, + "dataPath": "Список", "items": [ { "type": "COLUMN_GROUP", @@ -4429,9 +4171,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4452,9 +4192,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4464,9 +4202,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.Description" - }, + "dataPath": "Список.Description", "items": [] }, { @@ -4487,9 +4223,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4499,9 +4233,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[2]/synonym" }, - "dataPath": { - "segments": "Список.ВажностьКартинка" - }, + "dataPath": "Список.ВажностьКартинка", "items": [] }, { @@ -4511,9 +4243,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.Автор" - }, + "dataPath": "Список.Автор", "items": [] } ], @@ -4542,9 +4272,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4565,9 +4293,7 @@ } ] }, - "dataPath": { - "segments": "Список.Date" - }, + "dataPath": "Список.Date", "items": [] }, { @@ -4577,9 +4303,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.СрокИсполнения" - }, + "dataPath": "Список.СрокИсполнения", "items": [] } ], @@ -4604,9 +4328,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4616,9 +4338,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[5]/synonym" }, - "dataPath": { - "segments": "Список.ДатаНачала" - }, + "dataPath": "Список.ДатаНачала", "items": [] }, { @@ -4628,9 +4348,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.Number" - }, + "dataPath": "Список.Number", "items": [] } ], @@ -4644,9 +4362,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.Ref" - }, + "dataPath": "Список.Ref", "items": [] } ], @@ -4834,9 +4550,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -4846,9 +4560,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4869,9 +4581,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4892,9 +4602,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4904,9 +4612,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "ТипАдресации" - }, + "dataPath": "ТипАдресации", "items": [] }, { @@ -4916,9 +4622,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Исполнитель" - }, + "dataPath": "Исполнитель", "items": [] } ], @@ -4943,9 +4647,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4955,9 +4657,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "ТипАдресации" - }, + "dataPath": "ТипАдресации", "items": [] }, { @@ -4967,9 +4667,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Роль" - }, + "dataPath": "Роль", "items": [] } ], @@ -4987,9 +4685,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4999,9 +4695,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -5011,9 +4705,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5034,9 +4726,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "INPUT_FIELD", @@ -5045,9 +4735,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "ОсновнойОбъектАдресации" - }, + "dataPath": "ОсновнойОбъектАдресации", "items": [] } ] @@ -5070,9 +4758,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5082,9 +4768,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "ОсновнойОбъектАдресации" - }, + "dataPath": "ОсновнойОбъектАдресации", "items": [] }, { @@ -5094,9 +4778,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "ДополнительныйОбъектАдресации" - }, + "dataPath": "ДополнительныйОбъектАдресации", "items": [] } ], @@ -5118,9 +4800,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Комментарий" - }, + "dataPath": "Комментарий", "items": [] }, { @@ -5130,9 +4810,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "ИгнорироватьПредупреждения" - }, + "dataPath": "ИгнорироватьПредупреждения", "items": [] } ], @@ -5539,9 +5217,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5562,9 +5238,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5585,9 +5259,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -5608,9 +5280,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -5635,9 +5305,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -5647,9 +5315,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute[2]/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5670,9 +5336,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5693,9 +5357,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5705,9 +5367,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Объект.Автор" - }, + "dataPath": "Объект.Автор", "items": [] }, { @@ -5717,9 +5377,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "АвторСтрокой" - }, + "dataPath": "АвторСтрокой", "items": [] }, { @@ -5729,9 +5387,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute[2]/synonym" }, - "dataPath": { - "segments": "Объект.Исполнитель" - }, + "dataPath": "Объект.Исполнитель", "items": [] } ], @@ -5756,9 +5412,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5768,9 +5422,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Объект.Date" - }, + "dataPath": "Объект.Date", "items": [] }, { @@ -5780,9 +5432,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Объект.СрокИсполнения" - }, + "dataPath": "Объект.СрокИсполнения", "items": [] } ], @@ -5807,9 +5457,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5819,9 +5467,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Объект.Number" - }, + "dataPath": "Объект.Number", "items": [] }, { @@ -5831,9 +5477,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Объект.Важность" - }, + "dataPath": "Объект.Важность", "items": [] } ], @@ -5862,9 +5506,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5874,9 +5516,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Объект.ДатаНачала" - }, + "dataPath": "Объект.ДатаНачала", "items": [] }, { @@ -5886,9 +5526,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Объект.ДатаНачала" - }, + "dataPath": "Объект.ДатаНачала", "items": [] } ], @@ -5902,9 +5540,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Объект.Description" - }, + "dataPath": "Объект.Description", "items": [] } ], @@ -5929,9 +5565,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5941,9 +5575,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "ПредметСтрокой" - }, + "dataPath": "ПредметСтрокой", "items": [] }, { @@ -5953,9 +5585,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Объект.Описание" - }, + "dataPath": "Объект.Описание", "items": [] } ], @@ -5969,9 +5599,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[11]/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5981,9 +5609,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -6004,9 +5630,7 @@ } ] }, - "dataPath": { - "segments": "Объект.ДатаИсполнения" - }, + "dataPath": "Объект.ДатаИсполнения", "items": [] }, { @@ -6016,9 +5640,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Объект.ДатаИсполнения" - }, + "dataPath": "Объект.ДатаИсполнения", "items": [] } ], @@ -6241,9 +5863,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -6253,9 +5873,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title" }, - "dataPath": { - "segments": "СтрокаБизнесПроцесса" - }, + "dataPath": "СтрокаБизнесПроцесса", "items": [] }, { @@ -6276,9 +5894,7 @@ } ] }, - "dataPath": { - "segments": "СтрокаЗадачи" - }, + "dataPath": "СтрокаЗадачи", "items": [] } ], @@ -6303,9 +5919,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -6315,9 +5929,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "ПоказыватьЗадачи" - }, + "dataPath": "ПоказыватьЗадачи", "items": [] }, { @@ -6327,9 +5939,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "ПоАвтору" - }, + "dataPath": "ПоАвтору", "items": [] }, { @@ -6339,9 +5949,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "ПоИсполнителю" - }, + "dataPath": "ПоИсполнителю", "items": [] } ], @@ -6355,9 +5963,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -6367,9 +5973,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[4]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -6379,9 +5983,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -6391,9 +5993,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -6403,9 +6003,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -6426,9 +6024,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -6438,9 +6034,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -6450,9 +6044,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -6466,9 +6058,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -6478,9 +6068,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[3]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -6490,9 +6078,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[3]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -6502,9 +6088,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -6514,9 +6098,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Items.Список.CurrentData.Ref" - }, + "dataPath": "Items.Список.CurrentData.Ref", "items": [] }, { @@ -6526,9 +6108,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Items.Список.CurrentData.Ref" - }, + "dataPath": "Items.Список.CurrentData.Ref", "items": [] } ], @@ -6542,9 +6122,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[4]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[8]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -6554,9 +6132,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -6570,9 +6146,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title" }, - "dataPath": { - "segments": "Список" - }, + "dataPath": "Список", "items": [ [ { @@ -6582,9 +6156,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[2]/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -6605,9 +6177,7 @@ } ] }, - "dataPath": { - "segments": "Список.ВажностьКартинка" - }, + "dataPath": "Список.ВажностьКартинка", "items": [] }, { @@ -6617,9 +6187,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[3]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "segments": "Список.Остановлена" - }, + "dataPath": "Список.Остановлена", "items": [] } ], @@ -6644,9 +6212,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -6656,9 +6222,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[3]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -6668,9 +6232,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.Description" - }, + "dataPath": "Список.Description", "items": [] }, { @@ -6680,9 +6242,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.Автор" - }, + "dataPath": "Список.Автор", "items": [] } ], @@ -6696,9 +6256,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.ПредметСтрокой" - }, + "dataPath": "Список.ПредметСтрокой", "items": [] }, { @@ -6708,9 +6266,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -6720,9 +6276,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute[7]/synonym" }, - "dataPath": { - "segments": "Список.Date" - }, + "dataPath": "Список.Date", "items": [] }, { @@ -6732,9 +6286,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.Number" - }, + "dataPath": "Список.Number", "items": [] } ], @@ -6748,9 +6300,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.Описание" - }, + "dataPath": "Список.Описание", "items": [] } ], @@ -6764,9 +6314,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[3]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -6776,9 +6324,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute[2]/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -6788,9 +6334,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.Исполнитель" - }, + "dataPath": "Список.Исполнитель", "items": [] }, { @@ -6800,9 +6344,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.РольИсполнителя" - }, + "dataPath": "Список.РольИсполнителя", "items": [] }, { @@ -6812,9 +6354,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.ОсновнойОбъектАдресации" - }, + "dataPath": "Список.ОсновнойОбъектАдресации", "items": [] }, { @@ -6824,9 +6364,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.ДополнительныйОбъектАдресации" - }, + "dataPath": "Список.ДополнительныйОбъектАдресации", "items": [] } ], @@ -6840,9 +6378,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[3]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -6852,9 +6388,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.СрокИсполнения" - }, + "dataPath": "Список.СрокИсполнения", "items": [] }, { @@ -6864,9 +6398,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.Executed" - }, + "dataPath": "Список.Executed", "items": [] }, { @@ -6876,9 +6408,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.ДатаИсполнения" - }, + "dataPath": "Список.ДатаИсполнения", "items": [] } ], @@ -6896,9 +6426,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.Ref" - }, + "dataPath": "Список.Ref", "items": [] } ], @@ -7136,15 +6664,15 @@ "mdoType": "TASK", "moduleTypes": [ [ - "ObjectModule", + "ManagerModule", [ - "src/test/resources/ext/designer/ssl_3_1/src/cf/Tasks/ЗадачаИсполнителя/Ext/ObjectModule.bsl" + "src/test/resources/ext/designer/ssl_3_1/src/cf/Tasks/ЗадачаИсполнителя/Ext/ManagerModule.bsl" ] ], [ - "ManagerModule", + "ObjectModule", [ - "src/test/resources/ext/designer/ssl_3_1/src/cf/Tasks/ЗадачаИсполнителя/Ext/ManagerModule.bsl" + "src/test/resources/ext/designer/ssl_3_1/src/cf/Tasks/ЗадачаИсполнителя/Ext/ObjectModule.bsl" ] ] ], diff --git "a/src/test/resources/fixtures/ssl_3_1/Tasks.\320\227\320\260\320\264\320\260\321\207\320\260\320\230\321\201\320\277\320\276\320\273\320\275\320\270\321\202\320\265\320\273\321\217_edt.json" "b/src/test/resources/fixtures/ssl_3_1/Tasks.\320\227\320\260\320\264\320\260\321\207\320\260\320\230\321\201\320\277\320\276\320\273\320\275\320\270\321\202\320\265\320\273\321\217_edt.json" index 7434fe9ff..57d795a74 100644 --- "a/src/test/resources/fixtures/ssl_3_1/Tasks.\320\227\320\260\320\264\320\260\321\207\320\260\320\230\321\201\320\277\320\276\320\273\320\275\320\270\321\202\320\265\320\273\321\217_edt.json" +++ "b/src/test/resources/fixtures/ssl_3_1/Tasks.\320\227\320\260\320\264\320\260\321\207\320\260\320\230\321\201\320\277\320\276\320\273\320\275\320\270\321\202\320\265\320\273\321\217_edt.json" @@ -1908,9 +1908,7 @@ } ] }, - "dataPath": { - "segments": "" - }, + "dataPath": "", "items": [ [ { @@ -1920,9 +1918,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Объект.Description" - }, + "dataPath": "Объект.Description", "items": [] }, { @@ -1943,9 +1939,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -1955,9 +1949,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Объект.Executed" - }, + "dataPath": "Объект.Executed", "items": [] }, { @@ -1967,9 +1959,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Объект.ДатаИсполнения" - }, + "dataPath": "Объект.ДатаИсполнения", "items": [] } ], @@ -1994,9 +1984,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2006,9 +1994,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Объект.BusinessProcess" - }, + "dataPath": "Объект.BusinessProcess", "items": [] }, { @@ -2018,9 +2004,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Объект.RoutePoint" - }, + "dataPath": "Объект.RoutePoint", "items": [] } ], @@ -2045,9 +2029,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2057,9 +2039,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Объект.Исполнитель" - }, + "dataPath": "Объект.Исполнитель", "items": [] }, { @@ -2069,9 +2049,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Объект.РольИсполнителя" - }, + "dataPath": "Объект.РольИсполнителя", "items": [] }, { @@ -2092,9 +2070,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2104,9 +2080,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2127,9 +2101,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2139,9 +2111,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Объект.ОсновнойОбъектАдресации" - }, + "dataPath": "Объект.ОсновнойОбъектАдресации", "items": [] }, { @@ -2151,9 +2121,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Объект.ДополнительныйОбъектАдресации" - }, + "dataPath": "Объект.ДополнительныйОбъектАдресации", "items": [] } ], @@ -2186,9 +2154,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2198,9 +2164,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Объект.Date" - }, + "dataPath": "Объект.Date", "items": [] }, { @@ -2210,9 +2174,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Объект.СрокИсполнения" - }, + "dataPath": "Объект.СрокИсполнения", "items": [] } ], @@ -2241,9 +2203,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "INPUT_FIELD", @@ -2252,9 +2212,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Объект.Number" - }, + "dataPath": "Объект.Number", "items": [] } ] @@ -2392,9 +2350,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2415,9 +2371,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2438,9 +2392,7 @@ } ] }, - "dataPath": { - "segments": "Список" - }, + "dataPath": "Список", "items": [ [ { @@ -2450,9 +2402,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.Description" - }, + "dataPath": "Список.Description", "items": [] }, { @@ -2473,9 +2423,7 @@ } ] }, - "dataPath": { - "segments": "Список.Number" - }, + "dataPath": "Список.Number", "items": [] }, { @@ -2485,9 +2433,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute[7]/synonym" }, - "dataPath": { - "segments": "Список.Date" - }, + "dataPath": "Список.Date", "items": [] }, { @@ -2497,9 +2443,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.Исполнитель" - }, + "dataPath": "Список.Исполнитель", "items": [] }, { @@ -2509,9 +2453,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.Предмет" - }, + "dataPath": "Список.Предмет", "items": [] }, { @@ -2521,9 +2463,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.Ref" - }, + "dataPath": "Список.Ref", "items": [] } ], @@ -2548,9 +2488,7 @@ } ] }, - "dataPath": { - "segments": "ДеревоЗадач" - }, + "dataPath": "ДеревоЗадач", "items": [ [ { @@ -2560,9 +2498,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "ДеревоЗадач.Важность" - }, + "dataPath": "ДеревоЗадач.Важность", "items": [] }, { @@ -2572,9 +2508,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "ДеревоЗадач.Выполнена" - }, + "dataPath": "ДеревоЗадач.Выполнена", "items": [] }, { @@ -2584,9 +2518,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "ДеревоЗадач.Остановлен" - }, + "dataPath": "ДеревоЗадач.Остановлен", "items": [] }, { @@ -2607,9 +2539,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2619,9 +2549,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "ДеревоЗадач.Тип" - }, + "dataPath": "ДеревоЗадач.Тип", "items": [] }, { @@ -2631,9 +2559,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "ДеревоЗадач.Наименование" - }, + "dataPath": "ДеревоЗадач.Наименование", "items": [] } ], @@ -2647,9 +2573,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "ДеревоЗадач.Исполнитель" - }, + "dataPath": "ДеревоЗадач.Исполнитель", "items": [] }, { @@ -2659,9 +2583,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "ДеревоЗадач.СрокИсполнения" - }, + "dataPath": "ДеревоЗадач.СрокИсполнения", "items": [] } ], @@ -2675,9 +2597,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "ПоказыватьВыполненные" - }, + "dataPath": "ПоказыватьВыполненные", "items": [] } ], @@ -2840,9 +2760,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2852,9 +2770,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "FORM_GROUP", @@ -2874,9 +2790,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2897,9 +2811,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2909,9 +2821,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -2921,9 +2831,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Items.Список.CurrentData.ОсновнойОбъектАдресации" - }, + "dataPath": "Items.Список.CurrentData.ОсновнойОбъектАдресации", "items": [] }, { @@ -2933,9 +2841,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Items.Список.CurrentData.ОсновнойОбъектАдресации" - }, + "dataPath": "Items.Список.CurrentData.ОсновнойОбъектАдресации", "items": [] } ], @@ -2951,9 +2857,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title" }, - "dataPath": { - "segments": "Список" - }, + "dataPath": "Список", "items": [ [ { @@ -2963,9 +2867,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[2]/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -2975,9 +2877,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[2]/synonym" }, - "dataPath": { - "segments": "Список.ВажностьКартинка" - }, + "dataPath": "Список.ВажностьКартинка", "items": [] }, { @@ -2998,9 +2898,7 @@ } ] }, - "dataPath": { - "segments": "Список.Остановлена" - }, + "dataPath": "Список.Остановлена", "items": [] } ], @@ -3014,9 +2912,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[7]/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3037,9 +2933,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3049,9 +2943,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute[2]/synonym" }, - "dataPath": { - "segments": "Список.Description" - }, + "dataPath": "Список.Description", "items": [] }, { @@ -3061,9 +2953,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.Автор" - }, + "dataPath": "Список.Автор", "items": [] } ], @@ -3077,9 +2967,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3089,9 +2977,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "segments": "Список.Number" - }, + "dataPath": "Список.Number", "items": [] }, { @@ -3101,9 +2987,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.Date" - }, + "dataPath": "Список.Date", "items": [] } ], @@ -3132,9 +3016,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3144,9 +3026,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute[2]/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3156,9 +3036,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.Исполнитель" - }, + "dataPath": "Список.Исполнитель", "items": [] }, { @@ -3168,9 +3046,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.РольИсполнителя" - }, + "dataPath": "Список.РольИсполнителя", "items": [] }, { @@ -3180,9 +3056,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.ОсновнойОбъектАдресации" - }, + "dataPath": "Список.ОсновнойОбъектАдресации", "items": [] }, { @@ -3192,9 +3066,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.ДополнительныйОбъектАдресации" - }, + "dataPath": "Список.ДополнительныйОбъектАдресации", "items": [] } ], @@ -3219,9 +3091,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3231,9 +3101,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.СрокИсполнения" - }, + "dataPath": "Список.СрокИсполнения", "items": [] }, { @@ -3243,9 +3111,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.Executed" - }, + "dataPath": "Список.Executed", "items": [] }, { @@ -3255,9 +3121,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.ДатаИсполнения" - }, + "dataPath": "Список.ДатаИсполнения", "items": [] } ], @@ -3275,9 +3139,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.Ref" - }, + "dataPath": "Список.Ref", "items": [] } ], @@ -3291,9 +3153,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "ПоказыватьВыполненные" - }, + "dataPath": "ПоказыватьВыполненные", "items": [] }, { @@ -3303,9 +3163,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/title" }, - "dataPath": { - "segments": "ДеревоЗадач" - }, + "dataPath": "ДеревоЗадач", "items": [ [ { @@ -3315,9 +3173,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "ДеревоЗадач.Важность" - }, + "dataPath": "ДеревоЗадач.Важность", "items": [] }, { @@ -3327,9 +3183,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "ДеревоЗадач.Выполнена" - }, + "dataPath": "ДеревоЗадач.Выполнена", "items": [] }, { @@ -3339,9 +3193,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "ДеревоЗадач.Остановлен" - }, + "dataPath": "ДеревоЗадач.Остановлен", "items": [] }, { @@ -3351,9 +3203,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3363,9 +3213,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "ДеревоЗадач.Тип" - }, + "dataPath": "ДеревоЗадач.Тип", "items": [] }, { @@ -3375,9 +3223,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute[2]/synonym" }, - "dataPath": { - "segments": "ДеревоЗадач.Наименование" - }, + "dataPath": "ДеревоЗадач.Наименование", "items": [] } ], @@ -3391,9 +3237,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "ДеревоЗадач.Исполнитель" - }, + "dataPath": "ДеревоЗадач.Исполнитель", "items": [] }, { @@ -3403,9 +3247,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[13]/synonym" }, - "dataPath": { - "segments": "ДеревоЗадач.СрокИсполнения" - }, + "dataPath": "ДеревоЗадач.СрокИсполнения", "items": [] } ], @@ -3558,9 +3400,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3581,9 +3421,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3604,9 +3442,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3616,9 +3452,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3628,9 +3462,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3640,9 +3472,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3652,9 +3482,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3664,9 +3492,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3676,9 +3502,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -3703,9 +3527,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3726,9 +3548,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3738,9 +3558,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3750,9 +3568,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -3766,9 +3582,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -3778,9 +3592,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3790,9 +3602,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -3806,9 +3616,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[3]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3818,9 +3626,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Items.Список.CurrentData.Ref" - }, + "dataPath": "Items.Список.CurrentData.Ref", "items": [] }, { @@ -3830,9 +3636,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Items.Список.CurrentData.Ref" - }, + "dataPath": "Items.Список.CurrentData.Ref", "items": [] }, { @@ -3842,9 +3646,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3865,9 +3667,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -3877,9 +3677,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -3893,9 +3691,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title" }, - "dataPath": { - "segments": "Список" - }, + "dataPath": "Список", "items": [ [ { @@ -3905,9 +3701,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[2]/synonym" }, - "dataPath": { - "segments": "Список.ВажностьКартинка" - }, + "dataPath": "Список.ВажностьКартинка", "items": [] }, { @@ -3917,9 +3711,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.Number" - }, + "dataPath": "Список.Number", "items": [] }, { @@ -3929,9 +3721,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.Description" - }, + "dataPath": "Список.Description", "items": [] }, { @@ -3941,9 +3731,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[5]/synonym" }, - "dataPath": { - "segments": "Список.ДатаНачала" - }, + "dataPath": "Список.ДатаНачала", "items": [] }, { @@ -3953,9 +3741,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.СрокИсполнения" - }, + "dataPath": "Список.СрокИсполнения", "items": [] }, { @@ -3965,9 +3751,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.Автор" - }, + "dataPath": "Список.Автор", "items": [] }, { @@ -3977,9 +3761,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.ПредметСтрокой" - }, + "dataPath": "Список.ПредметСтрокой", "items": [] }, { @@ -3989,9 +3771,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute[7]/synonym" }, - "dataPath": { - "segments": "Список.Date" - }, + "dataPath": "Список.Date", "items": [] }, { @@ -4001,9 +3781,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.Ref" - }, + "dataPath": "Список.Ref", "items": [] } ], @@ -4017,9 +3795,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "ПоказыватьВыполненные" - }, + "dataPath": "ПоказыватьВыполненные", "items": [] } ], @@ -4180,9 +3956,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -4192,9 +3966,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[4]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4204,9 +3976,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[4]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -4216,9 +3986,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -4228,9 +3996,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[4]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4240,9 +4006,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -4252,9 +4016,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -4264,9 +4026,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -4276,9 +4036,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -4288,9 +4046,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -4311,9 +4067,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "BUTTON", @@ -4322,9 +4076,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ] @@ -4340,9 +4092,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[4]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[8]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4352,9 +4102,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -4364,9 +4112,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Items.Список.CurrentData.Ref" - }, + "dataPath": "Items.Список.CurrentData.Ref", "items": [] }, { @@ -4376,9 +4122,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Items.Список.CurrentData.Ref" - }, + "dataPath": "Items.Список.CurrentData.Ref", "items": [] } ], @@ -4396,9 +4140,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title" }, - "dataPath": { - "segments": "Список" - }, + "dataPath": "Список", "items": [ { "type": "COLUMN_GROUP", @@ -4418,9 +4160,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4441,9 +4181,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4453,9 +4191,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.Description" - }, + "dataPath": "Список.Description", "items": [] }, { @@ -4476,9 +4212,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4488,9 +4222,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[2]/synonym" }, - "dataPath": { - "segments": "Список.ВажностьКартинка" - }, + "dataPath": "Список.ВажностьКартинка", "items": [] }, { @@ -4500,9 +4232,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.Автор" - }, + "dataPath": "Список.Автор", "items": [] } ], @@ -4531,9 +4261,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4554,9 +4282,7 @@ } ] }, - "dataPath": { - "segments": "Список.Date" - }, + "dataPath": "Список.Date", "items": [] }, { @@ -4566,9 +4292,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.СрокИсполнения" - }, + "dataPath": "Список.СрокИсполнения", "items": [] } ], @@ -4593,9 +4317,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4605,9 +4327,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[5]/synonym" }, - "dataPath": { - "segments": "Список.ДатаНачала" - }, + "dataPath": "Список.ДатаНачала", "items": [] }, { @@ -4617,9 +4337,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.Number" - }, + "dataPath": "Список.Number", "items": [] } ], @@ -4633,9 +4351,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.Ref" - }, + "dataPath": "Список.Ref", "items": [] } ], @@ -4823,9 +4539,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -4835,9 +4549,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4858,9 +4570,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4881,9 +4591,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4893,9 +4601,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "ТипАдресации" - }, + "dataPath": "ТипАдресации", "items": [] }, { @@ -4905,9 +4611,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Исполнитель" - }, + "dataPath": "Исполнитель", "items": [] } ], @@ -4932,9 +4636,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4944,9 +4646,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "ТипАдресации" - }, + "dataPath": "ТипАдресации", "items": [] }, { @@ -4956,9 +4656,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Роль" - }, + "dataPath": "Роль", "items": [] } ], @@ -4976,9 +4674,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -4988,9 +4684,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -5000,9 +4694,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[4]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5023,9 +4715,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ { "type": "INPUT_FIELD", @@ -5034,9 +4724,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "ОсновнойОбъектАдресации" - }, + "dataPath": "ОсновнойОбъектАдресации", "items": [] } ] @@ -5059,9 +4747,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5071,9 +4757,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "ОсновнойОбъектАдресации" - }, + "dataPath": "ОсновнойОбъектАдресации", "items": [] }, { @@ -5083,9 +4767,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "ДополнительныйОбъектАдресации" - }, + "dataPath": "ДополнительныйОбъектАдресации", "items": [] } ], @@ -5107,9 +4789,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Комментарий" - }, + "dataPath": "Комментарий", "items": [] }, { @@ -5119,9 +4799,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "ИгнорироватьПредупреждения" - }, + "dataPath": "ИгнорироватьПредупреждения", "items": [] } ], @@ -5522,9 +5200,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5545,9 +5221,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5568,9 +5242,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -5591,9 +5263,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -5618,9 +5288,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -5630,9 +5298,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute[2]/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5653,9 +5319,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5676,9 +5340,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5688,9 +5350,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Объект.Автор" - }, + "dataPath": "Объект.Автор", "items": [] }, { @@ -5700,9 +5360,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "АвторСтрокой" - }, + "dataPath": "АвторСтрокой", "items": [] }, { @@ -5712,9 +5370,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute[2]/synonym" }, - "dataPath": { - "segments": "Объект.Исполнитель" - }, + "dataPath": "Объект.Исполнитель", "items": [] } ], @@ -5739,9 +5395,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5751,9 +5405,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Объект.Date" - }, + "dataPath": "Объект.Date", "items": [] }, { @@ -5763,9 +5415,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Объект.СрокИсполнения" - }, + "dataPath": "Объект.СрокИсполнения", "items": [] } ], @@ -5790,9 +5440,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5802,9 +5450,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Объект.Number" - }, + "dataPath": "Объект.Number", "items": [] }, { @@ -5814,9 +5460,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Объект.Важность" - }, + "dataPath": "Объект.Важность", "items": [] } ], @@ -5845,9 +5489,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5857,9 +5499,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Объект.ДатаНачала" - }, + "dataPath": "Объект.ДатаНачала", "items": [] }, { @@ -5869,9 +5509,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Объект.ДатаНачала" - }, + "dataPath": "Объект.ДатаНачала", "items": [] } ], @@ -5885,9 +5523,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Объект.Description" - }, + "dataPath": "Объект.Description", "items": [] } ], @@ -5912,9 +5548,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5924,9 +5558,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "ПредметСтрокой" - }, + "dataPath": "ПредметСтрокой", "items": [] }, { @@ -5936,9 +5568,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Объект.Описание" - }, + "dataPath": "Объект.Описание", "items": [] } ], @@ -5952,9 +5582,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[11]/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -5964,9 +5592,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -5987,9 +5613,7 @@ } ] }, - "dataPath": { - "segments": "Объект.ДатаИсполнения" - }, + "dataPath": "Объект.ДатаИсполнения", "items": [] }, { @@ -5999,9 +5623,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Объект.ДатаИсполнения" - }, + "dataPath": "Объект.ДатаИсполнения", "items": [] } ], @@ -6224,9 +5846,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -6236,9 +5856,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title" }, - "dataPath": { - "segments": "СтрокаБизнесПроцесса" - }, + "dataPath": "СтрокаБизнесПроцесса", "items": [] }, { @@ -6259,9 +5877,7 @@ } ] }, - "dataPath": { - "segments": "СтрокаЗадачи" - }, + "dataPath": "СтрокаЗадачи", "items": [] } ], @@ -6286,9 +5902,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -6298,9 +5912,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "ПоказыватьЗадачи" - }, + "dataPath": "ПоказыватьЗадачи", "items": [] }, { @@ -6310,9 +5922,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "ПоАвтору" - }, + "dataPath": "ПоАвтору", "items": [] }, { @@ -6322,9 +5932,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "ПоИсполнителю" - }, + "dataPath": "ПоИсполнителю", "items": [] } ], @@ -6338,9 +5946,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -6350,9 +5956,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[4]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -6362,9 +5966,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -6374,9 +5976,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -6386,9 +5986,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -6409,9 +6007,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -6421,9 +6017,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -6433,9 +6027,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -6449,9 +6041,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -6461,9 +6051,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[3]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -6473,9 +6061,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[3]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -6485,9 +6071,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -6497,9 +6081,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Items.Список.CurrentData.Ref" - }, + "dataPath": "Items.Список.CurrentData.Ref", "items": [] }, { @@ -6509,9 +6091,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Items.Список.CurrentData.Ref" - }, + "dataPath": "Items.Список.CurrentData.Ref", "items": [] } ], @@ -6525,9 +6105,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[4]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[8]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] }, { @@ -6537,9 +6115,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [] } ], @@ -6553,9 +6129,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title" }, - "dataPath": { - "segments": "Список" - }, + "dataPath": "Список", "items": [ [ { @@ -6565,9 +6139,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[2]/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -6588,9 +6160,7 @@ } ] }, - "dataPath": { - "segments": "Список.ВажностьКартинка" - }, + "dataPath": "Список.ВажностьКартинка", "items": [] }, { @@ -6600,9 +6170,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[3]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "segments": "Список.Остановлена" - }, + "dataPath": "Список.Остановлена", "items": [] } ], @@ -6627,9 +6195,7 @@ } ] }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -6639,9 +6205,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[3]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -6651,9 +6215,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.Description" - }, + "dataPath": "Список.Description", "items": [] }, { @@ -6663,9 +6225,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.Автор" - }, + "dataPath": "Список.Автор", "items": [] } ], @@ -6679,9 +6239,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.ПредметСтрокой" - }, + "dataPath": "Список.ПредметСтрокой", "items": [] }, { @@ -6691,9 +6249,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -6703,9 +6259,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.StandardAttribute[7]/synonym" }, - "dataPath": { - "segments": "Список.Date" - }, + "dataPath": "Список.Date", "items": [] }, { @@ -6715,9 +6269,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.Number" - }, + "dataPath": "Список.Number", "items": [] } ], @@ -6731,9 +6283,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.Описание" - }, + "dataPath": "Список.Описание", "items": [] } ], @@ -6747,9 +6297,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[3]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -6759,9 +6307,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute[2]/synonym" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -6771,9 +6317,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.Исполнитель" - }, + "dataPath": "Список.Исполнитель", "items": [] }, { @@ -6783,9 +6327,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.РольИсполнителя" - }, + "dataPath": "Список.РольИсполнителя", "items": [] }, { @@ -6795,9 +6337,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.ОсновнойОбъектАдресации" - }, + "dataPath": "Список.ОсновнойОбъектАдресации", "items": [] }, { @@ -6807,9 +6347,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.ДополнительныйОбъектАдресации" - }, + "dataPath": "Список.ДополнительныйОбъектАдресации", "items": [] } ], @@ -6823,9 +6361,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[3]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[2]/title" }, - "dataPath": { - "@reference": "/com.github._1c_syntax.bsl.mdo.Task/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath" - }, + "dataPath": "", "items": [ [ { @@ -6835,9 +6371,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.СрокИсполнения" - }, + "dataPath": "Список.СрокИсполнения", "items": [] }, { @@ -6847,9 +6381,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.Executed" - }, + "dataPath": "Список.Executed", "items": [] }, { @@ -6859,9 +6391,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.ДатаИсполнения" - }, + "dataPath": "Список.ДатаИсполнения", "items": [] } ], @@ -6879,9 +6409,7 @@ "title": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" }, - "dataPath": { - "segments": "Список.Ref" - }, + "dataPath": "Список.Ref", "items": [] } ],