diff --git a/mvnw b/mvnw old mode 100644 new mode 100755 diff --git a/pom.xml b/pom.xml index 98e33702..aa525e7c 100644 --- a/pom.xml +++ b/pom.xml @@ -9,12 +9,12 @@ 3.8.1 - 1.7.10 + 1.7.21 1.18.24 17 UTF-8 UTF-8 - 2.12.1.Final + 2.15.1.Final true 3.0.0-M7 3.0.0-M7 @@ -69,6 +69,11 @@ io.quarkus quarkus-cache + + com.fasterxml.jackson.module + jackson-module-kotlin + 2.14.1 + io.quarkus quarkus-junit5 diff --git a/src/main/kotlin/org/kravbank/domain/Code.kt b/src/main/kotlin/org/kravbank/domain/Code.kt index 57606b92..cde1e265 100644 --- a/src/main/kotlin/org/kravbank/domain/Code.kt +++ b/src/main/kotlin/org/kravbank/domain/Code.kt @@ -9,8 +9,10 @@ import javax.persistence.* @Entity class Code : PanacheEntity() { + @Column(columnDefinition="TEXT") lateinit var title: String + @Column(columnDefinition="TEXT") lateinit var description: String @Column(unique = true) @@ -22,7 +24,6 @@ class Code : PanacheEntity() { ) @JsonManagedReference(value = "value-codes") @JsonIgnore - @JoinColumn(name = "codelist_id_fk") var codelist: Codelist? = null } diff --git a/src/main/kotlin/org/kravbank/domain/Codelist.kt b/src/main/kotlin/org/kravbank/domain/Codelist.kt index e2f7b5cc..52de376b 100644 --- a/src/main/kotlin/org/kravbank/domain/Codelist.kt +++ b/src/main/kotlin/org/kravbank/domain/Codelist.kt @@ -10,8 +10,10 @@ import javax.persistence.* @Entity class Codelist : PanacheEntity() { + @Column(columnDefinition="TEXT") lateinit var title: String + @Column(columnDefinition="TEXT") lateinit var description: String @Column(unique = true) @@ -31,6 +33,5 @@ class Codelist : PanacheEntity() { ) @JsonManagedReference(value = "val-codelist") @JsonIgnore - @JoinColumn(name = "project_id_fk") var project: Project? = null } \ No newline at end of file diff --git a/src/main/kotlin/org/kravbank/domain/Need.kt b/src/main/kotlin/org/kravbank/domain/Need.kt index 4bb312af..6024da17 100644 --- a/src/main/kotlin/org/kravbank/domain/Need.kt +++ b/src/main/kotlin/org/kravbank/domain/Need.kt @@ -10,8 +10,10 @@ import javax.persistence.* @Entity class Need : PanacheEntity() { + @Column(columnDefinition="TEXT") lateinit var title: String + @Column(columnDefinition="TEXT") lateinit var description: String @Column(unique = true) @@ -23,7 +25,6 @@ class Need : PanacheEntity() { ) @JsonManagedReference(value = "val-need-project") @JsonIgnore - @JoinColumn(name = "project_id_fk") var project: Project? = null @OneToMany( diff --git a/src/main/kotlin/org/kravbank/domain/Product.kt b/src/main/kotlin/org/kravbank/domain/Product.kt index a0dd09ab..58a705a7 100644 --- a/src/main/kotlin/org/kravbank/domain/Product.kt +++ b/src/main/kotlin/org/kravbank/domain/Product.kt @@ -11,8 +11,10 @@ import javax.persistence.* @Where(clause = "deletedDate is null") class Product : SoftDeletable() { + @Column(columnDefinition="TEXT") lateinit var title: String + @Column(columnDefinition="TEXT") lateinit var description: String override var deletedDate: LocalDateTime? = null @@ -26,7 +28,6 @@ class Product : SoftDeletable() { ) @JsonManagedReference(value = "product") @JsonIgnore - @JoinColumn(name = "project_id_fk") var project: Project? = null @ManyToOne( @@ -35,6 +36,5 @@ class Product : SoftDeletable() { ) @JsonManagedReference(value = "val-reqvariant-product") @JsonIgnore - @JoinColumn(name = "requirementvariant_id_fk") var requirementvariant: RequirementVariant? = null } \ No newline at end of file diff --git a/src/main/kotlin/org/kravbank/domain/Project.kt b/src/main/kotlin/org/kravbank/domain/Project.kt index ca6e73d3..1c3ab2bd 100644 --- a/src/main/kotlin/org/kravbank/domain/Project.kt +++ b/src/main/kotlin/org/kravbank/domain/Project.kt @@ -17,10 +17,7 @@ class Project : SoftDeletable() { lateinit var description: String - @Column( - unique = true, - name = "ref" - ) + @Column(unique = true) var ref: String = UUID.randomUUID().toString() override var deletedDate: LocalDateTime? = null diff --git a/src/main/kotlin/org/kravbank/domain/Publication.kt b/src/main/kotlin/org/kravbank/domain/Publication.kt index f06b8657..c933a125 100644 --- a/src/main/kotlin/org/kravbank/domain/Publication.kt +++ b/src/main/kotlin/org/kravbank/domain/Publication.kt @@ -11,6 +11,7 @@ import javax.persistence.* @Where(clause = "deletedDate is null") class Publication : SoftDeletable() { + @Column(columnDefinition="TEXT") lateinit var comment: String var date: LocalDateTime = LocalDateTime.now() @@ -28,7 +29,6 @@ class Publication : SoftDeletable() { ) @JsonManagedReference(value = "val-publication") @JsonIgnore - @JoinColumn(name = "project_id_fk") var project: Project? = null } diff --git a/src/main/kotlin/org/kravbank/domain/Requirement.kt b/src/main/kotlin/org/kravbank/domain/Requirement.kt index e1c04619..f09ba257 100644 --- a/src/main/kotlin/org/kravbank/domain/Requirement.kt +++ b/src/main/kotlin/org/kravbank/domain/Requirement.kt @@ -10,8 +10,10 @@ import javax.persistence.* @Entity class Requirement : PanacheEntity() { + @Column(columnDefinition="TEXT") var title: String = "" + @Column(columnDefinition="TEXT") var description: String = "" @OneToMany( @@ -31,7 +33,6 @@ class Requirement : PanacheEntity() { ) @JsonManagedReference(value = "val-requirement") @JsonIgnore - @JoinColumn(name = "project_id_fk") var project: Project? = null @ManyToOne( @@ -40,6 +41,5 @@ class Requirement : PanacheEntity() { ) @JsonManagedReference(value = "val-need-requirement") @JsonIgnore - @JoinColumn(name = "need_id_fk") var need: Need? = null } diff --git a/src/main/kotlin/org/kravbank/domain/RequirementVariant.kt b/src/main/kotlin/org/kravbank/domain/RequirementVariant.kt index bb45e9e2..7e58c0bc 100644 --- a/src/main/kotlin/org/kravbank/domain/RequirementVariant.kt +++ b/src/main/kotlin/org/kravbank/domain/RequirementVariant.kt @@ -30,7 +30,6 @@ class RequirementVariant : PanacheEntity() { ) @JsonManagedReference(value = "val-requirementVariant") @JsonIgnore - @JoinColumn(name = "requirement_id_fk") var requirement: Requirement? = null @OneToMany( diff --git a/src/main/kotlin/org/kravbank/domain/frontend/FrontendTypes.kt b/src/main/kotlin/org/kravbank/domain/frontend/FrontendTypes.kt new file mode 100644 index 00000000..8f507119 --- /dev/null +++ b/src/main/kotlin/org/kravbank/domain/frontend/FrontendTypes.kt @@ -0,0 +1,207 @@ +package org.kravbank.domain.frontend + +import com.fasterxml.jackson.annotation.JsonProperty + +typealias Banks = List + +data class Bank( + val id: String, + val title: String, + val description: String, + val needs: List, + val codelist: List, + val products: List, + val publications: List, + val tags: List, + val version: Long, + val publishedDate: String?, + val type: String, + val inheritedBanks: List, + val sourceOriginal: Any?, + val sourceRel: Any?, + val projectId: String?, + val deletedDate: Any?, +) + +data class Need( + val id: String, + val title: String, + val description: String, + val requirements: List, + val type: String, + val parent: String, + val sourceOriginal: String?, + val sourceRel: Any?, +) + +data class Requirement( + val id: String, + val title: String, + val description: String, + val needId: String, + val type: String, + val variants: List, + val tags: List?, + val sourceOriginal: String?, + val sourceRel: Any?, + val weight: Long?, + @JsonProperty("requirement_Type") + val requirementType: String?, +) + +data class Variant( + val id: String, + val requirementText: String, + val instruction: String, + val useProduct: Boolean, + // Input data has misspelled field name + @JsonProperty("useSpesification") + val useSpecification: Boolean, + val useQualification: Boolean, + val products: List, + val questions: List, + val type: String?, + val description: String?, +) + +data class Question( + val id: String, + val type: String, + val config: Config?, + val answer: Answer?, + val sourceRel: Any?, + val sourceOriginal: Any?, +) + +data class Config( + val min: Long?, + val max: Long?, + val step: Double?, + val unit: String?, + val defaultPoint: Long?, + val scoreValues: List?, + val fromBoundary: Any?, + val toBoundary: Any?, + val isPeriod: Boolean?, + val periodMin: Long?, + val periodMax: Long?, + val dateScores: List?, + val periodMinutes: Long?, + val periodHours: Long?, + val timeScores: List?, + val pointsUnconfirmed: Long?, + // Input data has misspelled field name + @JsonProperty("pointsNonPrefered") + val pointsNonPreferred: Long?, + @JsonProperty("preferedAlternative") + val preferredAlternative: Boolean?, + @JsonProperty("discountNonPrefered") + val discountNonPreferred: Long?, + @JsonProperty("discountPrefered") + val discountPreferred: Long?, + val defaultDiscount: Long?, + val mandatoryCodes: List?, + val optionalCodes: List?, + val codelist: String?, + val codes: List?, + val optionalCodeMinAmount: Long?, + val optionalCodeMaxAmount: Long?, + val template: Any?, + val uploadInSpec: Boolean?, + val allowMultipleFiles: Boolean?, + val fileEndings: List?, + val specMin: Long?, + val specMax: Long?, + val fromDate: String?, + val toDate: String?, + val multipleSelect: Boolean?, + val fromTime: String?, + val toTime: String?, + val discountValues: List?, + val duration: Long?, + val weekdays: List?, + val discount: Long?, +) + +data class ScoreValue( + val score: Long, + val value: Long, +) + +data class DateScore( + val date: Any?, + val score: Long, +) + +data class TimeScore( + val time: Any?, + val score: Long, +) + +data class Answer( + val point: Long?, + val value: Any?, + val fromDate: Any?, + val toDate: Any?, + val fromTime: Any?, + val toTime: Any?, + val discount: Long?, + val text: String?, + val codes: List?, + val files: List?, +) + +data class Codelist( + val id: String, + val title: String, + val description: String, + val codes: List, + val type: String, + val sourceOriginal: String?, + val sourceRel: Any?, +) + +data class Code( + val id: String, + val title: String, + val description: String, + val type: String, + val sourceOriginal: String?, + val sourceRel: Any?, + val parent: String?, +) + +data class Product( + val id: String, + val title: String, + val description: String, + val type: String, + val parent: String, + val sourceOriginal: String?, + val sourceRel: Any?, + val deletedDate: String?, + val unit: String?, + val requirements: List?, +) + +data class Publication( + val id: String, + val bankId: String, + val comment: String, + val date: String, + val type: String, + val version: Long, + val sourceOriginal: Any?, + val sourceRel: Any?, + val deletedDate: String?, +) + +data class Tag( + val id: String, + val title: String, + val description: String?, + val type: String, + val parent: String, + val sourceOriginal: String, + val sourceRel: Any?, +) diff --git a/src/main/kotlin/org/kravbank/repository/CodeRepository.kt b/src/main/kotlin/org/kravbank/repository/CodeRepository.kt index 6d937c90..bc6deece 100644 --- a/src/main/kotlin/org/kravbank/repository/CodeRepository.kt +++ b/src/main/kotlin/org/kravbank/repository/CodeRepository.kt @@ -15,7 +15,7 @@ class CodeRepository : BackendRepository() { fun findByRef(codelistId: Long, ref: String): Code { val code = find( - "ref = ?1 and codelist_id_fk = ?2", + "ref = ?1 and codelist.id = ?2", ref, codelistId ).firstResult() @@ -23,7 +23,7 @@ class CodeRepository : BackendRepository() { } fun listAllCodes(id: Long): List { - return find("codelist_id_fk", id).stream().toList() + return find("codelist.id", id).stream().toList() } @Throws(BackendException::class) diff --git a/src/main/kotlin/org/kravbank/repository/CodelistRepository.kt b/src/main/kotlin/org/kravbank/repository/CodelistRepository.kt index 5b07d5f7..3ed5f28a 100644 --- a/src/main/kotlin/org/kravbank/repository/CodelistRepository.kt +++ b/src/main/kotlin/org/kravbank/repository/CodelistRepository.kt @@ -16,7 +16,7 @@ class CodelistRepository : BackendRepository() { fun findByRef(projectId: Long, ref: String): Codelist { val codelist = find( - "ref = ?1 and project_id_fk = ?2", + "ref = ?1 and project.id = ?2", ref, projectId ).firstResult() @@ -27,7 +27,7 @@ class CodelistRepository : BackendRepository() { @Throws(BackendException::class) fun listAllCodelists(id: Long): List { - return find("project_id_fk", id).list() + return find("project.id", id).list() } @Throws(BackendException::class) diff --git a/src/main/kotlin/org/kravbank/repository/NeedRepository.kt b/src/main/kotlin/org/kravbank/repository/NeedRepository.kt index 4b250867..7717f78b 100644 --- a/src/main/kotlin/org/kravbank/repository/NeedRepository.kt +++ b/src/main/kotlin/org/kravbank/repository/NeedRepository.kt @@ -16,7 +16,7 @@ class NeedRepository : BackendRepository() { fun findByRef(projectId: Long, ref: String): Need { val need = find( - "ref = ?1 and project_id_fk = ?2", + "ref = ?1 and project.id = ?2", ref, projectId ).firstResult() @@ -37,7 +37,7 @@ class NeedRepository : BackendRepository() { fun listAllNeeds(id: Long): List { - return find("project_id_fk", id) + return find("project.id", id) .stream() .toList() } diff --git a/src/main/kotlin/org/kravbank/repository/ProductRepository.kt b/src/main/kotlin/org/kravbank/repository/ProductRepository.kt index 12fffc51..73ccc437 100644 --- a/src/main/kotlin/org/kravbank/repository/ProductRepository.kt +++ b/src/main/kotlin/org/kravbank/repository/ProductRepository.kt @@ -15,7 +15,7 @@ class ProductRepository : BackendRepository() { fun findByRef(projectId: Long, ref: String): Product { val product = find( - "ref = ?1 and project_id_fk = ?2", + "ref = ?1 and project.id = ?2", ref, projectId ).firstResult() @@ -27,7 +27,7 @@ class ProductRepository : BackendRepository() { } fun listAllProducts(id: Long): List { - return find("project_id_fk", id) + return find("project.id", id) .stream() .toList() } diff --git a/src/main/kotlin/org/kravbank/repository/PublicationRepository.kt b/src/main/kotlin/org/kravbank/repository/PublicationRepository.kt index 0776e937..b8240dd6 100644 --- a/src/main/kotlin/org/kravbank/repository/PublicationRepository.kt +++ b/src/main/kotlin/org/kravbank/repository/PublicationRepository.kt @@ -15,7 +15,7 @@ class PublicationRepository : BackendRepository() { fun findByRef(projectId: Long, ref: String): Publication { val publication = find( - "ref = ?1 and project_id_fk = ?2", + "ref = ?1 and project.id = ?2", ref, projectId ).firstResult() @@ -26,7 +26,7 @@ class PublicationRepository : BackendRepository() { } fun listAllPublications(id: Long): List { - return find("project_id_fk = ?1", id) + return find("project.id = ?1", id) .stream() .toList() } diff --git a/src/main/kotlin/org/kravbank/repository/RequirementRepository.kt b/src/main/kotlin/org/kravbank/repository/RequirementRepository.kt index e364bbcd..cf8b5502 100644 --- a/src/main/kotlin/org/kravbank/repository/RequirementRepository.kt +++ b/src/main/kotlin/org/kravbank/repository/RequirementRepository.kt @@ -15,7 +15,7 @@ class RequirementRepository : BackendRepository() { fun findByRef(projectId: Long, ref: String): Requirement { val requirement = find( - "ref = ?1 and project_id_fk = ?2", + "ref = ?1 and project.id = ?2", ref, projectId ).firstResult() @@ -24,7 +24,7 @@ class RequirementRepository : BackendRepository() { } fun listAllRequirements(id: Long): List { - return find("project_id_fk", id) + return find("project.id", id) .stream() .toList() } diff --git a/src/main/kotlin/org/kravbank/repository/RequirementVariantRepository.kt b/src/main/kotlin/org/kravbank/repository/RequirementVariantRepository.kt index beb9c269..fbddd1b4 100644 --- a/src/main/kotlin/org/kravbank/repository/RequirementVariantRepository.kt +++ b/src/main/kotlin/org/kravbank/repository/RequirementVariantRepository.kt @@ -16,7 +16,7 @@ class RequirementVariantRepository : BackendRepository() { fun findByRef(requirementId: Long, ref: String): RequirementVariant { val reqVariant = find( - "ref = ?1 and requirement_id_fk = ?2", + "ref = ?1 and requirement.id = ?2", ref, requirementId ).firstResult() @@ -37,7 +37,7 @@ class RequirementVariantRepository : BackendRepository() { fun listAllRequirementVariants(id: Long): List { - return find("requirement_id_fk", id) + return find("requirement.id", id) .stream() .toList() } diff --git a/src/main/kotlin/org/kravbank/resource/ImportResource.kt b/src/main/kotlin/org/kravbank/resource/ImportResource.kt new file mode 100644 index 00000000..78c7066f --- /dev/null +++ b/src/main/kotlin/org/kravbank/resource/ImportResource.kt @@ -0,0 +1,124 @@ +package org.kravbank.resource + +import com.fasterxml.jackson.module.kotlin.jacksonObjectMapper +import com.fasterxml.jackson.module.kotlin.readValue +import org.kravbank.domain.* +import org.kravbank.domain.frontend.Banks +import org.kravbank.repository.ProjectRepository +import java.io.InputStream +import javax.annotation.security.RolesAllowed +import javax.inject.Inject +import javax.transaction.Transactional +import javax.ws.rs.POST +import javax.ws.rs.Path +import javax.ws.rs.core.Response + + +@Path("/api/v1/import") +// TODO: Auth +class ImportResource { + private val mapper = jacksonObjectMapper() + + @Inject + private lateinit var projectRepository: ProjectRepository + + @POST + @Path(value = "/bulk") + @RolesAllowed("user") + @Transactional + fun bulkImport(file: InputStream): Response { + + val banks = mapper.readValue(file) + + banks.forEach { bank -> + + val project = Project() + + val products = bank.products.map { product -> + val newProduct = Product() + + newProduct.apply { + title = product.title + description = product.description + this.project = project + // this.requirementvariant TODO + } + } + + val publications = bank.publications.map { publication -> + Publication().apply { + comment = publication.comment + version = publication.version + } + } + + + val needs = bank.needs.map { need -> + val newNeed = Need() + + val requirements = need.requirements.map { requirement -> + Requirement().apply { + title = requirement.title + description = requirement.description + this.project = project + this.need = newNeed + + } + } + + newNeed.apply { + title = need.title + description = need.description + this.requirements = requirements.toMutableList() + this.project = project + } + } + +// val requirements = needs.map { need -> need.requirements } + + + + val codelist = bank.codelist.map { codelist -> + + val newCodelist = Codelist() + + val codes = codelist.codes.map { code -> + + Code().apply { + this.codelist = newCodelist + this.title = code.title + this.description = code.description + } + } + + newCodelist.apply { + title = codelist.title + description = codelist.description + this.project = project + this.codes = codes.toMutableList() + } + } + + project.apply { + + title = bank.title + description = bank.description + ref = bank.id + this.products = products.toMutableList() + this.publications = publications.toMutableList() +// this.requirements = ; + this.needs = needs.toMutableList() + this.codelist = codelist.toMutableList() + } + + projectRepository.persist(project) + + } + + + + + return Response.ok("OK").build() + } + +} \ No newline at end of file diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 57bff5cf..ba7078c7 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -11,6 +11,8 @@ %prod.quarkus.oidc.credentials.secret=${KC_CRED_SECRET} %prod.quarkus.oidc.tls.verification=none # --- Dev --- +%dev.quarkus.http.cors=true +%dev.quarkus.http.cors.origins=http://localhost:3000 # Database configuration %dev.quarkus.hibernate-orm.database.generation=drop-and-create %dev.quarkus.hibernate-orm.sql-load-script=load-script.sql @@ -23,7 +25,7 @@ %dev.quarkus.oidc.tls.verification=none %dev.quarkus.log.min-level=DEBUG %dev.quarkus.log.category."io.quarkus.oidc".level=DEBUG -%dev.kravbank.frontend.link=http://krb-webclient.azurewebsites.net/ +%dev.kravbank.frontend.link=https://krb-webclient.azurewebsites.net/ # --- Test --- # Database configuration %test.quarkus.hibernate-orm.database.generation=drop-and-create diff --git a/src/main/resources/load-script.sql b/src/main/resources/load-script.sql index 1436a120..57997fc7 100644 --- a/src/main/resources/load-script.sql +++ b/src/main/resources/load-script.sql @@ -13,71 +13,71 @@ insert into Project("id", title, description, deleteddate, ref) values (26, 'ScriptProsjekt6', 'Beskrivelse3', null, 'prosjekt6-edb2-431f-855a-4368e2bcddd1'); --CODELIST -insert into Codelist("id", title, description, ref, project_id_fk) +insert into Codelist("id", title, description, ref, project_id) values (4, 'CodelistTittel1', 'CodelistBeskrivelse1', 'qqq4db69-edb2-431f-855a-4368e2bcddd1', 3); -insert into Codelist("id", title, description, ref, project_id_fk) +insert into Codelist("id", title, description, ref, project_id) values (5, 'CodelistTittel2', 'CodelistBeskrivelse2', 'asd4db69-edb2-431f-855a-4368e2bcddd1', 3); -insert into Codelist("id", title, description, ref, project_id_fk) +insert into Codelist("id", title, description, ref, project_id) values (21, 'CodelistTittel3', 'CodelistBeskrivelse2', 'newlist14db69-edb2-431f-855a-4368e2bcddd1', 22); -insert into Codelist("id", title, description, ref, project_id_fk) +insert into Codelist("id", title, description, ref, project_id) values (25, 'CodelistTittel4', 'CodelistBeskrivelse2', 'newlist2222db69-edb2-431f-855a-4368e2bcddd1', 24); -insert into Codelist("id", title, description, ref, project_id_fk) +insert into Codelist("id", title, description, ref, project_id) values (27, 'CodelistTittel4', 'CodelistBeskrivelse2', 'newlist33333db69-edb2-431f-855a-4368e2bcddd1', 26); -- PUBLICATION -insert into Publication("id", comment, version, date, ref, deleteddate, project_id_fk) +insert into Publication("id", comment, version, date, ref, deleteddate, project_id) values (8, 'comment1', 2, '2020-09-29 21:17:30.23195', 'zzz4db69-edb2-431f-855a-4368e2bcddd1', null, 3); -insert into Publication("id", comment, version, date, ref, deleteddate, project_id_fk) +insert into Publication("id", comment, version, date, ref, deleteddate, project_id) values (9, 'comment2', 4, '1999-09-10 21:17:30.23195', 'xxx4db69-edb2-431f-855a-4368e2bcddd1', null, 3); -- NEED -insert into Need("id", title, description, ref, project_id_fk) +insert into Need("id", title, description, ref, project_id) values (10, 'Need tittel fra script', 'Need beskrivelse fra script', 'need1b69-edb2-431f-855a-4368e2bcddd1', 2); -insert into Need("id", title, description, ref, project_id_fk) +insert into Need("id", title, description, ref, project_id) values (11, 'Need tittel fra script #2', 'Need beskrivelse fra script #2', 'need2b69-edb2-431f-855a-4368e2bcddd1', 2); -- REQUIREMENT -insert into Requirement("id", title, description, ref, project_id_fk, need_id_fk) +insert into Requirement("id", title, description, ref, project_id, need_id) values (12, 'Requirement tittel fra script', 'Requirement beskrivelse fra script', 'req1b69-edb2-431f-855a-4368e2bcddd1', 2, 10); -insert into Requirement("id", title, description, ref, project_id_fk, need_id_fk) +insert into Requirement("id", title, description, ref, project_id, need_id) values (13, 'Requirement tittel fra script #2', 'Requirement beskrivelse fra script #2', 'reqd2b69-edb2-431f-855a-4368e2bcddd1', 2, 10); --REQUIREMENT VARIANT insert into RequirementVariant("id", description, instruction, ref, requirementtext, useproduct, usequalification, - usespecification, requirement_id_fk) + usespecification, requirement_id) values (14, 'Requirement variant beskrivelse fra script', 'instruksjon', 'rvrv1b69-edb2-431f-855a-4368e2bcddd1', 'req text', true, true, true, 12); insert into RequirementVariant("id", description, instruction, ref, requirementtext, useproduct, usequalification, - usespecification, requirement_id_fk) + usespecification, requirement_id) values (15, 'Requirement variant beskrivelse fra script #2 ', 'instruksjon', 'rvrv2b69-edb2-431f-855a-4368e2bcddd1', 'req text', true, true, true, 12); insert into RequirementVariant("id", description, instruction, ref, requirementtext, useproduct, usequalification, - usespecification, requirement_id_fk) + usespecification, requirement_id) values (16, 'Requirement variant beskrivelse fra script #2 ', 'instruksjon', 'rvrv3b69-edb2-431f-855a-4368e2bcddd1', 'req text', true, true, true, 12); -- PRODUCT -insert into product("id", title, description, ref, deleteddate, project_id_fk, requirementvariant_id_fk) +insert into product("id", title, description, ref, deleteddate, project_id, requirementvariant_id) values (5, 'ProduktTittel1', 'ProduktBeskrivelse1', 'edb4db69-edb2-431f-855a-4368e2bcddd1', null, 3, 14); -insert into Product("id", title, description, ref, deleteddate, project_id_fk, requirementvariant_id_fk) +insert into Product("id", title, description, ref, deleteddate, project_id, requirementvariant_id) values (6, 'ProduktTittel2', 'ProduktBeskrivelse2', 'kuk4db69-edb2-431f-855a-4368e2bcddd1', null, 3, 14); -insert into Product("id", title, description, ref, deleteddate, project_id_fk, requirementvariant_id_fk) +insert into Product("id", title, description, ref, deleteddate, project_id, requirementvariant_id) values (7, 'ProduktTittel3', 'ProduktBeskrivelse3', 'kua4db69-edb2-431f-855a-4368e2bcddd1', null, 1, 14); -- CODE -insert into Code("id", title, description, ref, codelist_id_fk) +insert into Code("id", title, description, ref, codelist_id) values (17, 'code tittel fra script1', 'code beskrivelse fra script', 'script1b69-edb2-431f-855a-4368e2bcddd1', 4); -insert into Code("id", title, description, ref, codelist_id_fk) +insert into Code("id", title, description, ref, codelist_id) values (18, 'code tittel fra script2', 'code beskrivelse fra script', 'scrip21b69-edb2-431f-855a-4368e2bcddd1', 4); -insert into Code("id", title, description, ref, codelist_id_fk) +insert into Code("id", title, description, ref, codelist_id) values (19, 'code tittel fra script3', 'code beskrivelse fra script', 'script3b69-edb2-431f-855a-4368e2bcddd1', 5); -insert into Code("id", title, description, ref, codelist_id_fk) +insert into Code("id", title, description, ref, codelist_id) values (20, 'code tittel fra script4', 'code beskrivelse fra script', 'script4b69-edb2-431f-855a-4368e2bcddd1', 21); -insert into Code("id", title, description, ref, codelist_id_fk) +insert into Code("id", title, description, ref, codelist_id) values (23, 'code tittel fra script5', 'code beskrivelse fra script', 'script5b69-edb2-431f-855a-4368e2bcddd1', 21); -insert into Code("id", title, description, ref, codelist_id_fk) +insert into Code("id", title, description, ref, codelist_id) values (28, 'code tittel fra script6', 'code beskrivelse fra script', 'script6b69-edb2-431f-855a-4368e2bcddd1', 27); diff --git a/src/test/kotlin/org/kravbank/domain/frontend/BankTest.kt b/src/test/kotlin/org/kravbank/domain/frontend/BankTest.kt new file mode 100644 index 00000000..e48579e6 --- /dev/null +++ b/src/test/kotlin/org/kravbank/domain/frontend/BankTest.kt @@ -0,0 +1,43 @@ +package org.kravbank.domain.frontend + +import com.fasterxml.jackson.module.kotlin.jacksonObjectMapper +import com.fasterxml.jackson.module.kotlin.readValue +import org.junit.jupiter.api.Assertions.assertEquals +import org.junit.jupiter.api.BeforeEach +import org.junit.jupiter.api.Test +import org.junit.jupiter.api.fail +import java.io.InputStream + +class BankTest { + + private lateinit var banksStream: InputStream + private lateinit var projectsStream: InputStream + private val mapper = jacksonObjectMapper() + + @BeforeEach + fun setUp() { + banksStream = javaClass.getResourceAsStream("/banks.json") as InputStream + projectsStream = javaClass.getResourceAsStream("/projects.json") as InputStream + } + + @Test + fun whenDeserializeBanks_thenSuccess() { + + if (this::banksStream.isInitialized) { // Probably overkill : ) + val banks = mapper.readValue(banksStream) + assertEquals(113, banks.size) + } else { + fail { "Could not load test data from resources/banks.json." } + } + } + + @Test + fun whenDeserializeProjects_thenSuccess() { + if (this::banksStream.isInitialized) { + val projects = mapper.readValue(projectsStream) + assertEquals(34, projects.size) + } else { + fail { "Could not load test data from resources/projects.json." } + } + } +} \ No newline at end of file diff --git a/src/test/resources/banks.json b/src/test/resources/banks.json new file mode 100644 index 00000000..11e0c692 --- /dev/null +++ b/src/test/resources/banks.json @@ -0,0 +1,84329 @@ +[ + { + "id": "876b8e36-4f6f-42ac-8f27-680e5a1e1660", + "title": "gjufjh", + "description": "fd", + "needs": [ + { + "id": "e555f0d7-facd-4a57-91df-85fd773e9c98", + "title": "Hei", + "description": "Hå", + "requirements": [ + { + "id": "55e352fc-984c-467a-8aef-22f2542b7a67", + "title": "Må se bra ut", + "description": "", + "needId": "e555f0d7-facd-4a57-91df-85fd773e9c98", + "type": "requirement", + "variants": [ + { + "id": "c0322852-c3b3-4b2e-84e5-9078e424b1ac", + "requirementText": "Har produktet kule farger?", + "instruction": "Her bekrefter du at produktet har kule farger.", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "693fe227-79a0-4625-9aa1-dee70e846d57", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Produktet må ha kule farger" + }, + { + "id": "e4d87f6f-8d7a-4b08-a593-903b8296072c", + "requirementText": "Har produktet kule detaljer?", + "instruction": "Beskriv noen kule detaljer ved produktet", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "83886e3e-6839-460e-afe4-a947f0000a49", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Må ha kule detaljer" + } + ], + "tags": [], + "sourceOriginal": "876b8e36-4f6f-42ac-8f27-680e5a1e1660", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "876b8e36-4f6f-42ac-8f27-680e5a1e1660", + "sourceRel": null + } + ], + "codelist": [], + "products": [], + "publications": [], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "88eae981-ba81-4616-818a-b190c030a0b7", + "title": "Tronds prosjekt", + "description": "", + "needs": [ + { + "id": "dc2ca0a3-7a18-4b42-8b8a-f4ba62f58ad1", + "title": "Behov 4", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "0e63b437-9c7d-4011-8d6a-b7dc64c61dbe", + "title": "Behov 2", + "description": "", + "requirements": [], + "type": "need", + "parent": "dc2ca0a3-7a18-4b42-8b8a-f4ba62f58ad1", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "2945908b-a145-4d6b-8191-b23f95cde021", + "title": "Behov 1", + "description": "", + "requirements": [ + { + "id": "7d9213df-aef4-4bf2-b50c-b2ff93af07fd", + "title": "Krav 2", + "description": "krav 2 beskrivelse", + "needId": "2945908b-a145-4d6b-8191-b23f95cde021", + "tags": [], + "variants": [ + { + "id": "9b690883-b8b2-4f6f-88ee-892a4e5a7440", + "requirementText": "Variant Blazor1", + "instruction": "instruksjon Blazor1", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "7a895086-8b85-4ae6-8ac5-6acd2208a5a5" + ], + "questions": [ + { + "id": "91a86458-5a13-421b-aaa7-cc6f6dc4ab32", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "beskrivelse Blazor1" + }, + { + "id": "1c4db1e1-01e2-4531-8879-4adbf63f67f9", + "requirementText": "Variant Morgul", + "instruction": "Veiledning ", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "4d1e3b40-8cd1-479d-98bc-ac4e0a8339f9", + "7a895086-8b85-4ae6-8ac5-6acd2208a5a5" + ], + "questions": [ + { + "id": "07703d76-6d56-49ce-b39e-92c087737dc9", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "" + } + ], + "type": "requirement", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "d8acc9f7-9590-46fe-8ce1-da5cd3e7f0cd", + "title": "Krav 1", + "description": "Krav 1 beskrivelse", + "needId": "2945908b-a145-4d6b-8191-b23f95cde021", + "tags": [], + "variants": [ + { + "id": "51f28d38-3dce-4831-afdb-59fd2f45d633", + "requirementText": "Variant 1", + "instruction": "bobbo", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "ba267a10-68cc-4c6e-8cf9-57c4f419d527", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "a77f6972-7ed8-4426-8a9f-bb2ceed849d1", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "fccb0316-afd4-446b-845d-54af2b60aa6a", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "c762cf63-8057-4c36-8990-0ae0a70aa8b5", + "type": "Q_FILEUPLOAD", + "config": { + "template": null, + "uploadInSpec": false, + "allowMultipleFiles": false, + "fileEndings": [], + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "files": [ + "" + ] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "45c5664d-fdf4-42f5-a9e7-e449bd0fd419", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "8da33a97-b403-4802-b1c9-abf4b3412e97", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10, + "step": 1, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "81cb32f3-adf5-4a22-ac92-45e7b203230f", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "" + }, + { + "id": "71131b82-d9c8-4aa6-a242-c18847106814", + "requirementText": "Variant 2 kravtekst", + "instruction": "variant 2 instruksjon", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "7a895086-8b85-4ae6-8ac5-6acd2208a5a5" + ], + "questions": [], + "type": "requirement", + "description": "Variant 2 beskrivelse" + } + ], + "type": "requirement", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "type": "need", + "parent": "0e63b437-9c7d-4011-8d6a-b7dc64c61dbe", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "933c7764-0b63-4739-b4ea-cff92b389b69", + "title": "Behov 3", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "7720626a-7590-4dd0-a082-6c9eaa64f0e8", + "title": "Kodeliste1", + "description": "Kodeliste 1 beskrivelse", + "codes": [ + { + "id": "4f87c080-4bff-4d7d-a688-fe60215ca51e", + "title": "Kode 1", + "description": "", + "type": "code", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null, + "parent": "" + }, + { + "id": "15d0f14b-a353-47c5-b35d-4d18b2ecd911", + "title": "Kode 2 rgegerger yrtyrty etyrtrty etyrrtrty rtyrtyrtyrty dfgdfgdfg", + "description": "", + "type": "code", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "products": [ + { + "id": "7d6e5a28-cc4c-4623-995a-d2657f3110c5", + "title": "Produkt1", + "description": "produkt beskrivelse", + "type": "product", + "parent": "", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "4d1e3b40-8cd1-479d-98bc-ac4e0a8339f9", + "title": "Produkt2", + "description": "produkt2 beskrivelse", + "type": "product", + "parent": "7d6e5a28-cc4c-4623-995a-d2657f3110c5", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "7a895086-8b85-4ae6-8ac5-6acd2208a5a5", + "title": "Produkt3", + "description": "produkt3 beskrivelse", + "type": "product", + "parent": "", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "publications": [], + "tags": [ + { + "id": "b14054e2-f162-42a6-974f-c8f3bdb977ba", + "title": "Miljø", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "a716ff8c-4d7f-4156-9427-7777b96e7bcd", + "title": "Merkelapp1", + "type": "tag", + "parent": "", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null, + "description": "Merkelapp1 beskrivelse" + }, + { + "id": "e7c6a0d0-5ef4-4ba2-bc39-bac912627cc8", + "title": "Forurensning", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "version": 4, + "publishedDate": "2022-04-21T12:06:51.614Z", + "deletedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "adc63ede-d4b1-4db1-9a5d-067b11e587ed" + }, + { + "id": "105cbcdc-7191-4398-bbc5-f69dc3f395ce", + "title": "Tronds prosjekt", + "description": "", + "needs": [ + { + "id": "dc2ca0a3-7a18-4b42-8b8a-f4ba62f58ad1", + "title": "Behov 4", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "933c7764-0b63-4739-b4ea-cff92b389b69", + "title": "Behov 3", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "0e63b437-9c7d-4011-8d6a-b7dc64c61dbe", + "title": "Behov 2", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "2945908b-a145-4d6b-8191-b23f95cde021", + "title": "Behov 1", + "description": "", + "requirements": [ + { + "id": "7d9213df-aef4-4bf2-b50c-b2ff93af07fd", + "title": "Krav 2", + "description": "krav 2 beskrivelse", + "needId": "2945908b-a145-4d6b-8191-b23f95cde021", + "tags": [], + "variants": [ + { + "id": "9b690883-b8b2-4f6f-88ee-892a4e5a7440", + "requirementText": "Variant Blazor1", + "instruction": "instruksjon Blazor1", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "7a895086-8b85-4ae6-8ac5-6acd2208a5a5" + ], + "questions": [ + { + "id": "91a86458-5a13-421b-aaa7-cc6f6dc4ab32", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "beskrivelse Blazor1" + } + ], + "type": "requirement", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "d8acc9f7-9590-46fe-8ce1-da5cd3e7f0cd", + "title": "Krav 1", + "description": "Krav 1 beskrivelse", + "needId": "2945908b-a145-4d6b-8191-b23f95cde021", + "tags": [], + "variants": [ + { + "id": "51f28d38-3dce-4831-afdb-59fd2f45d633", + "requirementText": "Variant 1", + "instruction": "bobbo", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "ba267a10-68cc-4c6e-8cf9-57c4f419d527", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "a77f6972-7ed8-4426-8a9f-bb2ceed849d1", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "fccb0316-afd4-446b-845d-54af2b60aa6a", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "c762cf63-8057-4c36-8990-0ae0a70aa8b5", + "type": "Q_FILEUPLOAD", + "config": { + "template": null, + "uploadInSpec": false, + "allowMultipleFiles": false, + "fileEndings": [], + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "files": [ + "" + ] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "45c5664d-fdf4-42f5-a9e7-e449bd0fd419", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "8da33a97-b403-4802-b1c9-abf4b3412e97", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10, + "step": 1, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "81cb32f3-adf5-4a22-ac92-45e7b203230f", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "" + }, + { + "id": "71131b82-d9c8-4aa6-a242-c18847106814", + "requirementText": "Variant 2 kravtekst", + "instruction": "variant 2 instruksjon", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "7a895086-8b85-4ae6-8ac5-6acd2208a5a5" + ], + "questions": [], + "type": "requirement", + "description": "Variant 2 beskrivelse" + } + ], + "type": "requirement", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "7720626a-7590-4dd0-a082-6c9eaa64f0e8", + "title": "Kodeliste1", + "description": "Kodeliste 1 beskrivelse", + "codes": [ + { + "id": "4f87c080-4bff-4d7d-a688-fe60215ca51e", + "title": "Kode 1", + "description": "", + "type": "code", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null, + "parent": "" + }, + { + "id": "15d0f14b-a353-47c5-b35d-4d18b2ecd911", + "title": "Kode 2", + "description": "", + "type": "code", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "products": [ + { + "id": "7d6e5a28-cc4c-4623-995a-d2657f3110c5", + "title": "Produkt1", + "description": "produkt beskrivelse", + "type": "product", + "parent": "", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "4d1e3b40-8cd1-479d-98bc-ac4e0a8339f9", + "title": "Produkt2", + "description": "produkt2 beskrivelse", + "type": "product", + "parent": "7d6e5a28-cc4c-4623-995a-d2657f3110c5", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "7a895086-8b85-4ae6-8ac5-6acd2208a5a5", + "title": "Produkt3", + "description": "produkt3 beskrivelse", + "type": "product", + "parent": "", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "publications": [], + "tags": [ + { + "id": "a716ff8c-4d7f-4156-9427-7777b96e7bcd", + "title": "Merkelapp1", + "type": "tag", + "parent": "", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null, + "description": "Merkelapp1 beskrivelse" + }, + { + "id": "b14054e2-f162-42a6-974f-c8f3bdb977ba", + "title": "Miljø", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "e7c6a0d0-5ef4-4ba2-bc39-bac912627cc8", + "title": "Forurensning", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "version": 3, + "publishedDate": "2022-03-28T08:35:46.465Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "adc63ede-d4b1-4db1-9a5d-067b11e587ed" + }, + { + "id": "a7c5e6ee-7422-4ae5-a289-76cbfe2837a6", + "title": "Tronds prosjekt", + "description": "", + "needs": [ + { + "id": "1751e9fa-4e8a-4095-a62d-41c335b0d69d", + "title": "Behov 1", + "description": "", + "requirements": [ + { + "id": "a87fa21c-90d5-4986-9c64-d03631f1f903", + "title": "Krav 1", + "description": "Krav 1 beskrivelse", + "needId": "1751e9fa-4e8a-4095-a62d-41c335b0d69d", + "tags": [], + "variants": [ + { + "id": "fdc1ad3e-2520-49b5-a983-204c81dc39fa", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "info", + "description": "Variant 1" + }, + { + "id": "5f094f34-7732-40f7-909a-ab0d2edec7ea", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "info", + "description": "Variant 2" + } + ], + "type": "requirement", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "ffb89998-3cac-4ccd-af93-7a9517440713", + "title": "Behov 2", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "8daafe73-fcdd-4ebe-b477-cea6f3881e11", + "title": "Behov 3", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "codelist": [], + "products": [], + "publications": [], + "tags": [], + "version": 2, + "publishedDate": "2022-03-14T10:29:27.715Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "adc63ede-d4b1-4db1-9a5d-067b11e587ed" + }, + { + "id": "f57008ad-3cf7-40e1-a6ed-5c1901ed23b6", + "title": "Tronds prosjekt", + "description": "", + "needs": [ + { + "id": "1751e9fa-4e8a-4095-a62d-41c335b0d69d", + "title": "Behov 1", + "description": "", + "requirements": [ + { + "id": "a87fa21c-90d5-4986-9c64-d03631f1f903", + "title": "Krav 1", + "description": "Krav 1 beskrivelse", + "needId": "1751e9fa-4e8a-4095-a62d-41c335b0d69d", + "tags": [], + "variants": [ + { + "id": "fdc1ad3e-2520-49b5-a983-204c81dc39fa", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "info", + "description": "Variant 1" + }, + { + "id": "5f094f34-7732-40f7-909a-ab0d2edec7ea", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "info", + "description": "Variant 2" + } + ], + "type": "requirement", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "ffb89998-3cac-4ccd-af93-7a9517440713", + "title": "Behov 2", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "8daafe73-fcdd-4ebe-b477-cea6f3881e11", + "title": "Behov 3", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "codelist": [], + "products": [], + "publications": [], + "tags": [], + "version": 1, + "publishedDate": "2022-03-14T10:29:21.113Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "adc63ede-d4b1-4db1-9a5d-067b11e587ed" + }, + { + "id": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "title": "Tronds prosjekt", + "description": "", + "needs": [ + { + "id": "dc2ca0a3-7a18-4b42-8b8a-f4ba62f58ad1", + "title": "Behov 4", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "0e63b437-9c7d-4011-8d6a-b7dc64c61dbe", + "title": "Behov 2", + "description": "", + "requirements": [], + "type": "need", + "parent": "dc2ca0a3-7a18-4b42-8b8a-f4ba62f58ad1", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "2945908b-a145-4d6b-8191-b23f95cde021", + "title": "Behov 1", + "description": "", + "requirements": [ + { + "id": "7d9213df-aef4-4bf2-b50c-b2ff93af07fd", + "title": "Krav 2", + "description": "krav 2 beskrivelse", + "needId": "2945908b-a145-4d6b-8191-b23f95cde021", + "tags": [], + "variants": [ + { + "id": "9b690883-b8b2-4f6f-88ee-892a4e5a7440", + "requirementText": "Variant Blazor1", + "instruction": "instruksjon Blazor1", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "7a895086-8b85-4ae6-8ac5-6acd2208a5a5" + ], + "questions": [ + { + "id": "91a86458-5a13-421b-aaa7-cc6f6dc4ab32", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "beskrivelse Blazor1" + }, + { + "id": "1c4db1e1-01e2-4531-8879-4adbf63f67f9", + "requirementText": "Variant Morgul", + "instruction": "Veiledning ", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "4d1e3b40-8cd1-479d-98bc-ac4e0a8339f9", + "7a895086-8b85-4ae6-8ac5-6acd2208a5a5", + "7d6e5a28-cc4c-4623-995a-d2657f3110c5" + ], + "questions": [ + { + "id": "07703d76-6d56-49ce-b39e-92c087737dc9", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "test" + } + ], + "type": "requirement", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "d8acc9f7-9590-46fe-8ce1-da5cd3e7f0cd", + "title": "Krav 1", + "description": "Krav 1 beskrivelse", + "needId": "2945908b-a145-4d6b-8191-b23f95cde021", + "tags": [], + "variants": [ + { + "id": "51f28d38-3dce-4831-afdb-59fd2f45d633", + "requirementText": "Variant 1", + "instruction": "bobbo", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "ba267a10-68cc-4c6e-8cf9-57c4f419d527", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "a77f6972-7ed8-4426-8a9f-bb2ceed849d1", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "fccb0316-afd4-446b-845d-54af2b60aa6a", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "c762cf63-8057-4c36-8990-0ae0a70aa8b5", + "type": "Q_FILEUPLOAD", + "config": { + "template": null, + "uploadInSpec": false, + "allowMultipleFiles": false, + "fileEndings": [], + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "files": [ + "" + ] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "45c5664d-fdf4-42f5-a9e7-e449bd0fd419", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "8da33a97-b403-4802-b1c9-abf4b3412e97", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10, + "step": 1, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "81cb32f3-adf5-4a22-ac92-45e7b203230f", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "" + }, + { + "id": "71131b82-d9c8-4aa6-a242-c18847106814", + "requirementText": "Variant 2 kravtekst", + "instruction": "variant 2 instruksjon", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "7a895086-8b85-4ae6-8ac5-6acd2208a5a5" + ], + "questions": [], + "type": "requirement", + "description": "Variant 2 beskrivelse" + } + ], + "type": "requirement", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "type": "need", + "parent": "0e63b437-9c7d-4011-8d6a-b7dc64c61dbe", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "933c7764-0b63-4739-b4ea-cff92b389b69", + "title": "Behov 3", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "7720626a-7590-4dd0-a082-6c9eaa64f0e8", + "title": "Kodeliste1", + "description": "Kodeliste 1 beskrivelse", + "codes": [ + { + "id": "4f87c080-4bff-4d7d-a688-fe60215ca51e", + "title": "Kode 1", + "description": "", + "type": "code", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null, + "parent": "" + }, + { + "id": "15d0f14b-a353-47c5-b35d-4d18b2ecd911", + "title": "Kode 2 rgegerger yrtyrty etyrtrty etyrrtrty rtyrtyrtyrty dfgdfgdfg", + "description": "", + "type": "code", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "products": [ + { + "id": "7d6e5a28-cc4c-4623-995a-d2657f3110c5", + "title": "Produkt1", + "description": "produkt beskrivelse", + "type": "product", + "parent": "", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "4d1e3b40-8cd1-479d-98bc-ac4e0a8339f9", + "title": "Produkt2", + "description": "produkt2 beskrivelse", + "type": "product", + "parent": "7d6e5a28-cc4c-4623-995a-d2657f3110c5", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "7a895086-8b85-4ae6-8ac5-6acd2208a5a5", + "title": "Produkt3", + "description": "produkt3 beskrivelse", + "type": "product", + "parent": "", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "publications": [ + { + "id": "f57008ad-3cf7-40e1-a6ed-5c1901ed23b6", + "bankId": "f57008ad-3cf7-40e1-a6ed-5c1901ed23b6", + "comment": "publikasjon 1", + "date": "2022-03-14T10:29:21.113Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "a7c5e6ee-7422-4ae5-a289-76cbfe2837a6", + "bankId": "a7c5e6ee-7422-4ae5-a289-76cbfe2837a6", + "comment": "publikasjon 2", + "date": "2022-03-14T10:29:27.715Z", + "type": "publication", + "version": 2, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "105cbcdc-7191-4398-bbc5-f69dc3f395ce", + "bankId": "105cbcdc-7191-4398-bbc5-f69dc3f395ce", + "comment": "publisering 3", + "date": "2022-03-28T08:35:46.465Z", + "type": "publication", + "version": 3, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "88eae981-ba81-4616-818a-b190c030a0b7", + "bankId": "88eae981-ba81-4616-818a-b190c030a0b7", + "comment": "Publisering 4", + "date": "2022-04-21T12:06:51.614Z", + "type": "publication", + "version": 4, + "sourceOriginal": null, + "sourceRel": null + } + ], + "tags": [ + { + "id": "b14054e2-f162-42a6-974f-c8f3bdb977ba", + "title": "Miljø", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "a716ff8c-4d7f-4156-9427-7777b96e7bcd", + "title": "Merkelapp1", + "type": "tag", + "parent": "", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null, + "description": "Merkelapp1 beskrivelse" + }, + { + "id": "e7c6a0d0-5ef4-4ba2-bc39-bac912627cc8", + "title": "Forurensning", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "version": 1, + "publishedDate": null, + "deletedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "712ffcf0-14ac-4220-8901-0b363cd3bae9" + }, + { + "id": "d9138263-2a89-4f53-a2fd-ca2e6eaf322d", + "title": "Test", + "description": "test", + "needs": [ + { + "id": "0aa8cd91-474c-4f14-959e-5782c09ff3da", + "title": "123", + "description": "123", + "requirements": [ + { + "id": "b71eff94-30bd-4cd1-86f0-2407d06e6016", + "title": "testhello", + "description": "", + "needId": "0aa8cd91-474c-4f14-959e-5782c09ff3da", + "type": "requirement", + "variants": [ + { + "id": "880397ef-c6d6-4eae-81f8-03a3f313c27d", + "requirementText": "tttt", + "instruction": "ttttata", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "test" + }, + { + "id": "10d01eb2-a4c0-47b7-be8c-2569d09de422", + "requirementText": "234234", + "instruction": "234234", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "c9761c1a-cb02-417b-8c6d-5bf2a2eba3cc", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Nytt krav" + } + ], + "tags": [], + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "3be95233-e7ee-4542-9adb-ebf8edf61e96", + "title": "Tester infokrav", + "description": "", + "needId": "0aa8cd91-474c-4f14-959e-5782c09ff3da", + "type": "requirement", + "variants": [ + { + "id": "61fc4346-4905-443b-9cc7-19f7ce2d6976", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "a4704046-33bb-4652-84de-7510be24b712", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "f2c95db9-242e-43bb-bb98-d27326823595", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "InfoInfo" + } + ], + "tags": [], + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "05add316-928f-4299-8bf4-b319131994e2", + "title": "test 2", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "0ec45650-5e53-4e1b-a6d6-47a76221339d", + "title": "test 3", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "153caee6-2238-4c82-a356-a0115d734eb9", + "title": "test 4", + "description": "", + "requirements": [ + { + "id": "7c571ff6-a0ce-4c28-86f1-4a204e9d2791", + "title": "dassadsad", + "description": "", + "needId": "153caee6-2238-4c82-a356-a0115d734eb9", + "type": "requirement", + "variants": [ + { + "id": "dc22ca5c-48dd-4451-bf72-04fe1d0881fa", + "requirementText": "sadsad", + "instruction": "sadsad", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "2b765ed3-fa01-440f-b666-a779fdbfd1bf" + ], + "questions": [], + "type": "requirement", + "description": "dsasad" + } + ], + "tags": [], + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "46cf46bb-102d-464f-a0f9-d527988b4d72", + "title": "test 5", + "description": "", + "requirements": [ + { + "id": "33ff78a8-3c05-43ff-967b-58e329321252", + "title": "zsaasd", + "description": "", + "needId": "46cf46bb-102d-464f-a0f9-d527988b4d72", + "type": "requirement", + "variants": [ + { + "id": "4c8a7d29-f386-4fca-a229-45fe6dd754fc", + "requirementText": "sad", + "instruction": "sad", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "f70e849d-698b-4193-969b-7a84198b011f" + ], + "questions": [ + { + "id": "df6ebe7a-d79e-4b2c-a5b5-0bb7167d014c", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "asda" + } + ], + "tags": [], + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "b7b15aed-5af7-41a9-b074-f7c19e7c5a0a", + "title": "test 6", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "bcf72e49-ae8a-4c38-ba31-13956c0e2903", + "title": "123312", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "b4f24a4d-18c8-44c3-a582-6f0017d820bf", + "title": "213213", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "7540c9cf-a1b9-4830-85b8-1b64d2bc235e", + "title": "213213231", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "3cb7c142-0d35-4059-a741-e823d45442ae", + "title": "12332", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "dfa7a06f-0b4f-4353-928f-98f9ef963310", + "title": "123123", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "feeb0865-2e58-41f8-9401-88864b8c97b5", + "title": "213123", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "e2e8f1ee-0189-411d-a38f-11799d740469", + "title": "4214", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "8803843d-db11-4bd3-8cd5-7cd411819de2", + "title": "132", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + } + ], + "codelist": [], + "products": [ + { + "id": "f70e849d-698b-4193-969b-7a84198b011f", + "title": "test 2", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "84b2941b-55c9-4906-9388-cf3f312d9c08", + "title": "test3", + "description": "grwwrewfwef", + "type": "product", + "parent": "f70e849d-698b-4193-969b-7a84198b011f", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "3e2e0bc3-5e26-4cec-af12-f04879730363", + "title": "jaja 1", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "3aad8bb1-6fe1-4d73-84c3-2f257cf204a2", + "title": "jaja 2", + "description": "", + "type": "product", + "parent": "3e2e0bc3-5e26-4cec-af12-f04879730363", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null, + "deletedDate": "2022-06-14T11:19:06.161Z" + }, + { + "id": "2b765ed3-fa01-440f-b666-a779fdbfd1bf", + "title": "Jaja 3", + "description": "", + "type": "product", + "parent": "3aad8bb1-6fe1-4d73-84c3-2f257cf204a2", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null, + "deletedDate": "2022-06-14T11:19:04.881Z" + } + ], + "publications": [], + "tags": [], + "version": 16, + "publishedDate": "2022-08-12T09:24:38.702Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "deletedDate": null + }, + { + "id": "929ac958-0812-4ae7-9e0a-d0b110b3ddf0", + "title": "Test", + "description": "test", + "needs": [ + { + "id": "0aa8cd91-474c-4f14-959e-5782c09ff3da", + "title": "123", + "description": "123", + "requirements": [ + { + "id": "b71eff94-30bd-4cd1-86f0-2407d06e6016", + "title": "testhello", + "description": "", + "needId": "0aa8cd91-474c-4f14-959e-5782c09ff3da", + "type": "requirement", + "variants": [ + { + "id": "880397ef-c6d6-4eae-81f8-03a3f313c27d", + "requirementText": "tttt", + "instruction": "ttttata", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "test" + }, + { + "id": "10d01eb2-a4c0-47b7-be8c-2569d09de422", + "requirementText": "234234", + "instruction": "234234", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "c9761c1a-cb02-417b-8c6d-5bf2a2eba3cc", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Nytt krav" + } + ], + "tags": [], + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "3be95233-e7ee-4542-9adb-ebf8edf61e96", + "title": "Tester infokrav", + "description": "", + "needId": "0aa8cd91-474c-4f14-959e-5782c09ff3da", + "type": "requirement", + "variants": [ + { + "id": "61fc4346-4905-443b-9cc7-19f7ce2d6976", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "a4704046-33bb-4652-84de-7510be24b712", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "f2c95db9-242e-43bb-bb98-d27326823595", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "InfoInfo" + } + ], + "tags": [], + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "05add316-928f-4299-8bf4-b319131994e2", + "title": "test 2", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "0ec45650-5e53-4e1b-a6d6-47a76221339d", + "title": "test 3", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "153caee6-2238-4c82-a356-a0115d734eb9", + "title": "test 4", + "description": "", + "requirements": [ + { + "id": "7c571ff6-a0ce-4c28-86f1-4a204e9d2791", + "title": "dassadsad", + "description": "", + "needId": "153caee6-2238-4c82-a356-a0115d734eb9", + "type": "requirement", + "variants": [ + { + "id": "dc22ca5c-48dd-4451-bf72-04fe1d0881fa", + "requirementText": "sadsad", + "instruction": "sadsad", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "2b765ed3-fa01-440f-b666-a779fdbfd1bf" + ], + "questions": [], + "type": "requirement", + "description": "dsasad" + } + ], + "tags": [], + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "46cf46bb-102d-464f-a0f9-d527988b4d72", + "title": "test 5", + "description": "", + "requirements": [ + { + "id": "33ff78a8-3c05-43ff-967b-58e329321252", + "title": "zsaasd", + "description": "", + "needId": "46cf46bb-102d-464f-a0f9-d527988b4d72", + "type": "requirement", + "variants": [ + { + "id": "4c8a7d29-f386-4fca-a229-45fe6dd754fc", + "requirementText": "sad", + "instruction": "sad", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "f70e849d-698b-4193-969b-7a84198b011f" + ], + "questions": [ + { + "id": "df6ebe7a-d79e-4b2c-a5b5-0bb7167d014c", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "asda" + } + ], + "tags": [], + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "b7b15aed-5af7-41a9-b074-f7c19e7c5a0a", + "title": "test 6", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "bcf72e49-ae8a-4c38-ba31-13956c0e2903", + "title": "123312", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "b4f24a4d-18c8-44c3-a582-6f0017d820bf", + "title": "213213", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "7540c9cf-a1b9-4830-85b8-1b64d2bc235e", + "title": "213213231", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "3cb7c142-0d35-4059-a741-e823d45442ae", + "title": "12332", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "dfa7a06f-0b4f-4353-928f-98f9ef963310", + "title": "123123", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "feeb0865-2e58-41f8-9401-88864b8c97b5", + "title": "213123", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "e2e8f1ee-0189-411d-a38f-11799d740469", + "title": "4214", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "8803843d-db11-4bd3-8cd5-7cd411819de2", + "title": "132", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + } + ], + "codelist": [], + "products": [ + { + "id": "f70e849d-698b-4193-969b-7a84198b011f", + "title": "test 2", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "84b2941b-55c9-4906-9388-cf3f312d9c08", + "title": "test3", + "description": "grwwrewfwef", + "type": "product", + "parent": "f70e849d-698b-4193-969b-7a84198b011f", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "3e2e0bc3-5e26-4cec-af12-f04879730363", + "title": "jaja 1", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "3aad8bb1-6fe1-4d73-84c3-2f257cf204a2", + "title": "jaja 2", + "description": "", + "type": "product", + "parent": "3e2e0bc3-5e26-4cec-af12-f04879730363", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null, + "deletedDate": "2022-06-14T11:19:06.161Z" + }, + { + "id": "2b765ed3-fa01-440f-b666-a779fdbfd1bf", + "title": "Jaja 3", + "description": "", + "type": "product", + "parent": "3aad8bb1-6fe1-4d73-84c3-2f257cf204a2", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null, + "deletedDate": "2022-06-14T11:19:04.881Z" + } + ], + "publications": [], + "tags": [], + "version": 14, + "publishedDate": "2022-08-12T09:21:03.938Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "deletedDate": null + }, + { + "id": "f7cf278c-7d17-4040-b2bd-8f104c005e2a", + "title": "Test", + "description": "test", + "needs": [ + { + "id": "0aa8cd91-474c-4f14-959e-5782c09ff3da", + "title": "123", + "description": "123", + "requirements": [ + { + "id": "b71eff94-30bd-4cd1-86f0-2407d06e6016", + "title": "testhello", + "description": "", + "needId": "0aa8cd91-474c-4f14-959e-5782c09ff3da", + "type": "requirement", + "variants": [ + { + "id": "880397ef-c6d6-4eae-81f8-03a3f313c27d", + "requirementText": "tttt", + "instruction": "ttttata", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "test" + }, + { + "id": "10d01eb2-a4c0-47b7-be8c-2569d09de422", + "requirementText": "234234", + "instruction": "234234", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "c9761c1a-cb02-417b-8c6d-5bf2a2eba3cc", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Nytt krav" + } + ], + "tags": [], + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "3be95233-e7ee-4542-9adb-ebf8edf61e96", + "title": "Tester infokrav", + "description": "", + "needId": "0aa8cd91-474c-4f14-959e-5782c09ff3da", + "type": "requirement", + "variants": [ + { + "id": "61fc4346-4905-443b-9cc7-19f7ce2d6976", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "a4704046-33bb-4652-84de-7510be24b712", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "f2c95db9-242e-43bb-bb98-d27326823595", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "InfoInfo" + } + ], + "tags": [], + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "05add316-928f-4299-8bf4-b319131994e2", + "title": "test 2", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "0ec45650-5e53-4e1b-a6d6-47a76221339d", + "title": "test 3", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "153caee6-2238-4c82-a356-a0115d734eb9", + "title": "test 4", + "description": "", + "requirements": [ + { + "id": "7c571ff6-a0ce-4c28-86f1-4a204e9d2791", + "title": "dassadsad", + "description": "", + "needId": "153caee6-2238-4c82-a356-a0115d734eb9", + "type": "requirement", + "variants": [ + { + "id": "dc22ca5c-48dd-4451-bf72-04fe1d0881fa", + "requirementText": "sadsad", + "instruction": "sadsad", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "2b765ed3-fa01-440f-b666-a779fdbfd1bf" + ], + "questions": [], + "type": "requirement", + "description": "dsasad" + } + ], + "tags": [], + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "46cf46bb-102d-464f-a0f9-d527988b4d72", + "title": "test 5", + "description": "", + "requirements": [ + { + "id": "33ff78a8-3c05-43ff-967b-58e329321252", + "title": "zsaasd", + "description": "", + "needId": "46cf46bb-102d-464f-a0f9-d527988b4d72", + "type": "requirement", + "variants": [ + { + "id": "4c8a7d29-f386-4fca-a229-45fe6dd754fc", + "requirementText": "sad", + "instruction": "sad", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "f70e849d-698b-4193-969b-7a84198b011f" + ], + "questions": [ + { + "id": "df6ebe7a-d79e-4b2c-a5b5-0bb7167d014c", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "asda" + } + ], + "tags": [], + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "b7b15aed-5af7-41a9-b074-f7c19e7c5a0a", + "title": "test 6", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "bcf72e49-ae8a-4c38-ba31-13956c0e2903", + "title": "123312", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "b4f24a4d-18c8-44c3-a582-6f0017d820bf", + "title": "213213", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "7540c9cf-a1b9-4830-85b8-1b64d2bc235e", + "title": "213213231", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "3cb7c142-0d35-4059-a741-e823d45442ae", + "title": "12332", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "dfa7a06f-0b4f-4353-928f-98f9ef963310", + "title": "123123", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "feeb0865-2e58-41f8-9401-88864b8c97b5", + "title": "213123", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "e2e8f1ee-0189-411d-a38f-11799d740469", + "title": "4214", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "8803843d-db11-4bd3-8cd5-7cd411819de2", + "title": "132", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + } + ], + "codelist": [], + "products": [ + { + "id": "f70e849d-698b-4193-969b-7a84198b011f", + "title": "test 2", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "84b2941b-55c9-4906-9388-cf3f312d9c08", + "title": "test3", + "description": "grwwrewfwef", + "type": "product", + "parent": "f70e849d-698b-4193-969b-7a84198b011f", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "3e2e0bc3-5e26-4cec-af12-f04879730363", + "title": "jaja 1", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "3aad8bb1-6fe1-4d73-84c3-2f257cf204a2", + "title": "jaja 2", + "description": "", + "type": "product", + "parent": "3e2e0bc3-5e26-4cec-af12-f04879730363", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null, + "deletedDate": "2022-06-14T11:19:06.161Z" + }, + { + "id": "2b765ed3-fa01-440f-b666-a779fdbfd1bf", + "title": "Jaja 3", + "description": "", + "type": "product", + "parent": "3aad8bb1-6fe1-4d73-84c3-2f257cf204a2", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null, + "deletedDate": "2022-06-14T11:19:04.881Z" + } + ], + "publications": [], + "tags": [], + "version": 10, + "publishedDate": "2022-08-10T10:25:55.697Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "deletedDate": null + }, + { + "id": "3c9d82e1-ac73-467e-be4a-371438adcc63", + "title": "Test", + "description": "test", + "needs": [ + { + "id": "0aa8cd91-474c-4f14-959e-5782c09ff3da", + "title": "123", + "description": "123", + "requirements": [ + { + "id": "b71eff94-30bd-4cd1-86f0-2407d06e6016", + "title": "testhello", + "description": "", + "needId": "0aa8cd91-474c-4f14-959e-5782c09ff3da", + "type": "requirement", + "variants": [ + { + "id": "880397ef-c6d6-4eae-81f8-03a3f313c27d", + "requirementText": "tttt", + "instruction": "ttttata", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "test" + }, + { + "id": "10d01eb2-a4c0-47b7-be8c-2569d09de422", + "requirementText": "234234", + "instruction": "234234", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "c9761c1a-cb02-417b-8c6d-5bf2a2eba3cc", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Nytt krav" + } + ], + "tags": [], + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "3be95233-e7ee-4542-9adb-ebf8edf61e96", + "title": "Tester infokrav", + "description": "", + "needId": "0aa8cd91-474c-4f14-959e-5782c09ff3da", + "type": "requirement", + "variants": [ + { + "id": "61fc4346-4905-443b-9cc7-19f7ce2d6976", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "a4704046-33bb-4652-84de-7510be24b712", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "f2c95db9-242e-43bb-bb98-d27326823595", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "InfoInfo" + } + ], + "tags": [], + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "05add316-928f-4299-8bf4-b319131994e2", + "title": "test 2", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "0ec45650-5e53-4e1b-a6d6-47a76221339d", + "title": "test 3", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "153caee6-2238-4c82-a356-a0115d734eb9", + "title": "test 4", + "description": "", + "requirements": [ + { + "id": "7c571ff6-a0ce-4c28-86f1-4a204e9d2791", + "title": "dassadsad", + "description": "", + "needId": "153caee6-2238-4c82-a356-a0115d734eb9", + "type": "requirement", + "variants": [ + { + "id": "dc22ca5c-48dd-4451-bf72-04fe1d0881fa", + "requirementText": "sadsad", + "instruction": "sadsad", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "2b765ed3-fa01-440f-b666-a779fdbfd1bf" + ], + "questions": [], + "type": "requirement", + "description": "dsasad" + } + ], + "tags": [], + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "46cf46bb-102d-464f-a0f9-d527988b4d72", + "title": "test 5", + "description": "", + "requirements": [ + { + "id": "33ff78a8-3c05-43ff-967b-58e329321252", + "title": "zsaasd", + "description": "", + "needId": "46cf46bb-102d-464f-a0f9-d527988b4d72", + "type": "requirement", + "variants": [ + { + "id": "4c8a7d29-f386-4fca-a229-45fe6dd754fc", + "requirementText": "sad", + "instruction": "sad", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "f70e849d-698b-4193-969b-7a84198b011f" + ], + "questions": [ + { + "id": "df6ebe7a-d79e-4b2c-a5b5-0bb7167d014c", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "asda" + } + ], + "tags": [], + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "b7b15aed-5af7-41a9-b074-f7c19e7c5a0a", + "title": "test 6", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "bcf72e49-ae8a-4c38-ba31-13956c0e2903", + "title": "123312", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "b4f24a4d-18c8-44c3-a582-6f0017d820bf", + "title": "213213", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "7540c9cf-a1b9-4830-85b8-1b64d2bc235e", + "title": "213213231", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "3cb7c142-0d35-4059-a741-e823d45442ae", + "title": "12332", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "dfa7a06f-0b4f-4353-928f-98f9ef963310", + "title": "123123", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "feeb0865-2e58-41f8-9401-88864b8c97b5", + "title": "213123", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "e2e8f1ee-0189-411d-a38f-11799d740469", + "title": "4214", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "8803843d-db11-4bd3-8cd5-7cd411819de2", + "title": "132", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + } + ], + "codelist": [], + "products": [ + { + "id": "f70e849d-698b-4193-969b-7a84198b011f", + "title": "test 2", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "84b2941b-55c9-4906-9388-cf3f312d9c08", + "title": "test3", + "description": "grwwrewfwef", + "type": "product", + "parent": "f70e849d-698b-4193-969b-7a84198b011f", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "3e2e0bc3-5e26-4cec-af12-f04879730363", + "title": "jaja 1", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "3aad8bb1-6fe1-4d73-84c3-2f257cf204a2", + "title": "jaja 2", + "description": "", + "type": "product", + "parent": "3e2e0bc3-5e26-4cec-af12-f04879730363", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null, + "deletedDate": "2022-06-14T11:19:06.161Z" + }, + { + "id": "2b765ed3-fa01-440f-b666-a779fdbfd1bf", + "title": "Jaja 3", + "description": "", + "type": "product", + "parent": "3aad8bb1-6fe1-4d73-84c3-2f257cf204a2", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null, + "deletedDate": "2022-06-14T11:19:04.881Z" + } + ], + "publications": [], + "tags": [], + "version": 8, + "publishedDate": "2022-08-09T12:23:26.279Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "deletedDate": null + }, + { + "id": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "title": "Test", + "description": "test", + "needs": [ + { + "id": "0aa8cd91-474c-4f14-959e-5782c09ff3da", + "title": "123", + "description": "123", + "requirements": [ + { + "id": "b71eff94-30bd-4cd1-86f0-2407d06e6016", + "title": "testhello", + "description": "", + "needId": "0aa8cd91-474c-4f14-959e-5782c09ff3da", + "type": "requirement", + "variants": [ + { + "id": "880397ef-c6d6-4eae-81f8-03a3f313c27d", + "requirementText": "tttt", + "instruction": "ttttata", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "test" + }, + { + "id": "10d01eb2-a4c0-47b7-be8c-2569d09de422", + "requirementText": "234234", + "instruction": "234234", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "c9761c1a-cb02-417b-8c6d-5bf2a2eba3cc", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Nytt krav" + } + ], + "tags": [], + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "3be95233-e7ee-4542-9adb-ebf8edf61e96", + "title": "Tester infokrav", + "description": "", + "needId": "0aa8cd91-474c-4f14-959e-5782c09ff3da", + "type": "requirement", + "variants": [ + { + "id": "61fc4346-4905-443b-9cc7-19f7ce2d6976", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "a4704046-33bb-4652-84de-7510be24b712", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "f2c95db9-242e-43bb-bb98-d27326823595", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "InfoInfo" + } + ], + "tags": [], + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "05add316-928f-4299-8bf4-b319131994e2", + "title": "test 2", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "0ec45650-5e53-4e1b-a6d6-47a76221339d", + "title": "test 3", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "153caee6-2238-4c82-a356-a0115d734eb9", + "title": "test 4", + "description": "", + "requirements": [ + { + "id": "7c571ff6-a0ce-4c28-86f1-4a204e9d2791", + "title": "dassadsad", + "description": "", + "needId": "153caee6-2238-4c82-a356-a0115d734eb9", + "type": "requirement", + "variants": [ + { + "id": "dc22ca5c-48dd-4451-bf72-04fe1d0881fa", + "requirementText": "sadsad", + "instruction": "sadsad", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "2b765ed3-fa01-440f-b666-a779fdbfd1bf" + ], + "questions": [], + "type": "requirement", + "description": "dsasad" + } + ], + "tags": [], + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "46cf46bb-102d-464f-a0f9-d527988b4d72", + "title": "test 5", + "description": "", + "requirements": [ + { + "id": "33ff78a8-3c05-43ff-967b-58e329321252", + "title": "zsaasd", + "description": "", + "needId": "46cf46bb-102d-464f-a0f9-d527988b4d72", + "type": "requirement", + "variants": [ + { + "id": "4c8a7d29-f386-4fca-a229-45fe6dd754fc", + "requirementText": "sad", + "instruction": "sad", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "f70e849d-698b-4193-969b-7a84198b011f" + ], + "questions": [ + { + "id": "df6ebe7a-d79e-4b2c-a5b5-0bb7167d014c", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "asda" + } + ], + "tags": [], + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "b7b15aed-5af7-41a9-b074-f7c19e7c5a0a", + "title": "test 6", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "bcf72e49-ae8a-4c38-ba31-13956c0e2903", + "title": "123312", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "b4f24a4d-18c8-44c3-a582-6f0017d820bf", + "title": "213213", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "7540c9cf-a1b9-4830-85b8-1b64d2bc235e", + "title": "213213231", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "3cb7c142-0d35-4059-a741-e823d45442ae", + "title": "12332", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "dfa7a06f-0b4f-4353-928f-98f9ef963310", + "title": "123123", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "feeb0865-2e58-41f8-9401-88864b8c97b5", + "title": "213123", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "e2e8f1ee-0189-411d-a38f-11799d740469", + "title": "4214", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "8803843d-db11-4bd3-8cd5-7cd411819de2", + "title": "132", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + } + ], + "codelist": [], + "products": [ + { + "id": "f70e849d-698b-4193-969b-7a84198b011f", + "title": "test 2", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "84b2941b-55c9-4906-9388-cf3f312d9c08", + "title": "test3", + "description": "grwwrewfwef", + "type": "product", + "parent": "f70e849d-698b-4193-969b-7a84198b011f", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "3e2e0bc3-5e26-4cec-af12-f04879730363", + "title": "jaja 1", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "3aad8bb1-6fe1-4d73-84c3-2f257cf204a2", + "title": "jaja 2", + "description": "", + "type": "product", + "parent": "3e2e0bc3-5e26-4cec-af12-f04879730363", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null, + "deletedDate": "2022-06-14T11:19:06.161Z" + }, + { + "id": "2b765ed3-fa01-440f-b666-a779fdbfd1bf", + "title": "Jaja 3", + "description": "", + "type": "product", + "parent": "3aad8bb1-6fe1-4d73-84c3-2f257cf204a2", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null, + "deletedDate": "2022-06-14T11:19:04.881Z" + } + ], + "publications": [ + { + "id": "cb0471f1-a0cc-4f57-89b7-141349164843", + "bankId": "cb0471f1-a0cc-4f57-89b7-141349164843", + "comment": "V1", + "date": "2022-08-09T08:05:51.492Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-08-10T10:03:25.549Z" + }, + { + "id": "4394aa5e-0b77-4b04-bfed-906526db5c23", + "bankId": "4394aa5e-0b77-4b04-bfed-906526db5c23", + "comment": "V2", + "date": "2022-08-09T08:07:03.366Z", + "type": "publication", + "version": 2, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-08-09T12:06:30.577Z" + }, + { + "id": "83c5459f-6fdc-4630-8e28-8314f6ac1eb7", + "bankId": "83c5459f-6fdc-4630-8e28-8314f6ac1eb7", + "comment": "V3", + "date": "2022-08-09T08:07:13.641Z", + "type": "publication", + "version": 3, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-08-10T10:03:20.603Z" + }, + { + "id": "04ee2e84-4c29-4a94-81a4-4c4fcd1a82ee", + "bankId": "04ee2e84-4c29-4a94-81a4-4c4fcd1a82ee", + "comment": "V4", + "date": "2022-08-09T12:09:24.591Z", + "type": "publication", + "version": 4, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-08-10T10:03:18.478Z" + }, + { + "id": "91d856b8-5141-40d9-8926-fa95837df581", + "bankId": "91d856b8-5141-40d9-8926-fa95837df581", + "comment": "V5", + "date": "2022-08-09T12:13:33.236Z", + "type": "publication", + "version": 5, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-08-10T10:03:16.046Z" + }, + { + "id": "2f2447a4-c4f9-4f53-befc-e7cced94c62c", + "bankId": "2f2447a4-c4f9-4f53-befc-e7cced94c62c", + "comment": "V6", + "date": "2022-08-09T12:20:33.712Z", + "type": "publication", + "version": 6, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-08-10T10:03:11.779Z" + }, + { + "id": "d9990172-1e01-4d28-9fe6-efa8207020cd", + "bankId": "d9990172-1e01-4d28-9fe6-efa8207020cd", + "comment": "V7", + "date": "2022-08-09T12:23:22.040Z", + "type": "publication", + "version": 7, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-08-10T10:03:06.918Z" + }, + { + "id": "3c9d82e1-ac73-467e-be4a-371438adcc63", + "bankId": "3c9d82e1-ac73-467e-be4a-371438adcc63", + "comment": "V8", + "date": "2022-08-09T12:23:26.279Z", + "type": "publication", + "version": 8, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "013f4e49-f920-49f7-bdab-888fc37bb6f6", + "bankId": "013f4e49-f920-49f7-bdab-888fc37bb6f6", + "comment": "V9", + "date": "2022-08-09T12:28:49.772Z", + "type": "publication", + "version": 9, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-08-10T10:02:04.662Z" + }, + { + "id": "f7cf278c-7d17-4040-b2bd-8f104c005e2a", + "bankId": "f7cf278c-7d17-4040-b2bd-8f104c005e2a", + "comment": "V10", + "date": "2022-08-10T10:25:55.697Z", + "type": "publication", + "version": 10, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "ec0b9d1d-c999-484b-adb3-9c1e408550d8", + "bankId": "ec0b9d1d-c999-484b-adb3-9c1e408550d8", + "comment": "V11", + "date": "2022-08-12T08:48:05.611Z", + "type": "publication", + "version": 11, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-08-12T08:48:10.744Z" + }, + { + "id": "860c4a19-31f6-4c20-81ab-fb530bd159e4", + "bankId": "860c4a19-31f6-4c20-81ab-fb530bd159e4", + "comment": "V12", + "date": "2022-08-12T08:48:38.593Z", + "type": "publication", + "version": 12, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-08-12T08:48:44.071Z" + }, + { + "id": "e70a2b9d-aa91-41b5-a1e1-d7a94f50632d", + "bankId": "e70a2b9d-aa91-41b5-a1e1-d7a94f50632d", + "comment": "V13", + "date": "2022-08-12T08:50:14.716Z", + "type": "publication", + "version": 13, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-08-12T08:54:07.206Z" + }, + { + "id": "929ac958-0812-4ae7-9e0a-d0b110b3ddf0", + "bankId": "929ac958-0812-4ae7-9e0a-d0b110b3ddf0", + "comment": "V14", + "date": "2022-08-12T09:21:03.938Z", + "type": "publication", + "version": 14, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "cf31ffdd-f883-448c-ac41-6d3105a17fbe", + "bankId": "cf31ffdd-f883-448c-ac41-6d3105a17fbe", + "comment": "V15", + "date": "2022-08-12T09:23:07.189Z", + "type": "publication", + "version": 15, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-08-12T09:24:18.276Z" + }, + { + "id": "d9138263-2a89-4f53-a2fd-ca2e6eaf322d", + "bankId": "d9138263-2a89-4f53-a2fd-ca2e6eaf322d", + "comment": "V16", + "date": "2022-08-12T09:24:38.702Z", + "type": "publication", + "version": 16, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + } + ], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "d884502d-4437-4359-8569-3ce1c3751605", + "title": "TESTING for sletting", + "description": "TEST for å forstå funksjoner", + "needs": [], + "codelist": [], + "products": [], + "publications": [], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "820745cb-8912-451c-aaa3-d4a53c6c52b0", + "title": "Raghad test project", + "description": "test for unit", + "needs": [ + { + "id": "687a5adb-771d-408e-9450-ce77219682a7", + "title": "Frukt", + "description": "", + "requirements": [ + { + "id": "b1ac0701-821e-4d7c-9a8d-f46624f0eec3", + "title": "Eple", + "description": "", + "needId": "687a5adb-771d-408e-9450-ce77219682a7", + "type": "requirement", + "variants": [ + { + "id": "bb99bcfb-973d-4f5b-9c5c-8e1660295a16", + "requirementText": "", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c8f39f9a-3d08-4741-8bd6-7c6a1c699404" + ], + "questions": [ + { + "id": "4f3cd09a-dbc0-4712-bd60-c40de2e33a91", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "test" + } + ], + "tags": [], + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null + }, + { + "id": "2d67715a-1f22-46ed-88a3-1ac2d0eb11f7", + "title": "Antall epler", + "description": "", + "needId": "687a5adb-771d-408e-9450-ce77219682a7", + "type": "requirement", + "variants": [ + { + "id": "9a91bc7d-2acb-4f88-8f88-f0aa3002d6e2", + "requirementText": "", + "instruction": "Test veiledning til oppdragsgiver", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c8f39f9a-3d08-4741-8bd6-7c6a1c699404" + ], + "questions": [ + { + "id": "c42e6f66-67ff-46e3-bc6a-d7d937a43890", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 5000, + "step": 1, + "unit": "Stk", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "test beskrivelse" + } + ], + "tags": [], + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null + }, + { + "id": "f2e0933b-664b-4005-96f4-6c570178e14a", + "title": "Benan", + "description": "", + "needId": "687a5adb-771d-408e-9450-ce77219682a7", + "type": "requirement", + "variants": [ + { + "id": "cb5b8a92-f97d-4482-b15b-399675cd7a7e", + "requirementText": " is simply dummy text of the printing and typesetting industry", + "instruction": " is simply dummy text of the printing and typesetting industry. Lorem", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "c8f39f9a-3d08-4741-8bd6-7c6a1c699404", + "73515fe6-e0a4-4a36-b992-a96401c49a49" + ], + "questions": [ + { + "id": "05f98619-0b43-4b49-a195-84ed0c12447d", + "type": "Q_TEXT", + "config": { + "max": 10000, + "discountValues": [], + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": " is simply dummy text of the printing and typesetting industry" + } + ], + "tags": [], + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null + }, + { + "id": "5f61ed9f-c65d-4610-ad39-76de699b21b6", + "title": "Test for varighet", + "description": "", + "needId": "687a5adb-771d-408e-9450-ce77219682a7", + "type": "requirement", + "variants": [ + { + "id": "2e92ab7b-13fc-462e-807b-e940b14cd82a", + "requirementText": " is simply dummy text of the printing and typesetting industry", + "instruction": " is simply dummy text of the printing and typesetting industry", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "c8f39f9a-3d08-4741-8bd6-7c6a1c699404", + "73515fe6-e0a4-4a36-b992-a96401c49a49" + ], + "questions": [ + { + "id": "5e406881-e5f9-45c2-ae7a-e26febf39b6a", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "duration": 0, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": " is simply dummy text of the printing and typesetting industry" + } + ], + "tags": [], + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null + }, + { + "id": "13534ce2-48eb-4195-8653-7302b1eff59b", + "title": "codes", + "description": "", + "needId": "687a5adb-771d-408e-9450-ce77219682a7", + "type": "requirement", + "variants": [ + { + "id": "ef8dfedb-53b9-45e6-ae9f-9c7496610f5b", + "requirementText": "sdasfdafcsafafassdasfdafcsafafas", + "instruction": "sdasfdafcsafafassdasfdafcsafafassdasfdafcsafafassdasfdafcsafafas", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "e89ca274-91dd-4739-b366-ba7eec2088a9", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "eeed3246-badc-4fe4-a4da-38948e9beecb", + "codes": [], + "defaultDiscount": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "discount": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Codes" + } + ], + "tags": [], + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "eeed3246-badc-4fe4-a4da-38948e9beecb", + "title": "Farger", + "description": "", + "codes": [ + { + "id": "947eb545-da7e-4dc4-9d72-bb347bd73d62", + "title": "Grønn", + "description": "", + "type": "code", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null, + "parent": "" + }, + { + "id": "d3800399-274c-4721-812c-4249149b02fa", + "title": "Gul", + "description": "", + "type": "code", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null, + "parent": "" + }, + { + "id": "86975f04-15f4-4240-b327-f438c0bfd3f1", + "title": "Rød", + "description": "", + "type": "code", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null, + "parent": "" + }, + { + "id": "2265a15a-9b06-476a-88c2-b24d25b2f5bf", + "title": "sdasfdafcsafafassdas", + "description": "sdasfdafcsafafassdasfdafcsafafassdasfdafcsafafassdasfdafcsafafas", + "type": "code", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null + } + ], + "products": [ + { + "id": "c8f39f9a-3d08-4741-8bd6-7c6a1c699404", + "title": "eple", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null, + "deletedDate": null, + "unit": "kg" + }, + { + "id": "73515fe6-e0a4-4a36-b992-a96401c49a49", + "title": "test", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + } + ], + "publications": [], + "tags": [], + "version": 37, + "publishedDate": "2022-12-14T10:42:19.149Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "deletedDate": null + }, + { + "id": "6fd564c2-5043-48dc-9af6-675a6fc7c75e", + "title": "Raghad test project", + "description": "test for unit", + "needs": [ + { + "id": "687a5adb-771d-408e-9450-ce77219682a7", + "title": "Frukt", + "description": "", + "requirements": [ + { + "id": "b1ac0701-821e-4d7c-9a8d-f46624f0eec3", + "title": "Eple", + "description": "", + "needId": "687a5adb-771d-408e-9450-ce77219682a7", + "type": "requirement", + "variants": [ + { + "id": "bb99bcfb-973d-4f5b-9c5c-8e1660295a16", + "requirementText": "", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c8f39f9a-3d08-4741-8bd6-7c6a1c699404" + ], + "questions": [ + { + "id": "4f3cd09a-dbc0-4712-bd60-c40de2e33a91", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "test" + } + ], + "tags": [], + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null + }, + { + "id": "2d67715a-1f22-46ed-88a3-1ac2d0eb11f7", + "title": "Antall epler", + "description": "", + "needId": "687a5adb-771d-408e-9450-ce77219682a7", + "type": "requirement", + "variants": [ + { + "id": "9a91bc7d-2acb-4f88-8f88-f0aa3002d6e2", + "requirementText": "", + "instruction": "Test veiledning til oppdragsgiver", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c8f39f9a-3d08-4741-8bd6-7c6a1c699404" + ], + "questions": [ + { + "id": "c42e6f66-67ff-46e3-bc6a-d7d937a43890", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 5000, + "step": 1, + "unit": "Stk", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "test beskrivelse" + } + ], + "tags": [], + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null + }, + { + "id": "f2e0933b-664b-4005-96f4-6c570178e14a", + "title": "Benan", + "description": "", + "needId": "687a5adb-771d-408e-9450-ce77219682a7", + "type": "requirement", + "variants": [ + { + "id": "cb5b8a92-f97d-4482-b15b-399675cd7a7e", + "requirementText": " is simply dummy text of the printing and typesetting industry", + "instruction": " is simply dummy text of the printing and typesetting industry. Lorem", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "c8f39f9a-3d08-4741-8bd6-7c6a1c699404", + "73515fe6-e0a4-4a36-b992-a96401c49a49" + ], + "questions": [ + { + "id": "05f98619-0b43-4b49-a195-84ed0c12447d", + "type": "Q_TEXT", + "config": { + "max": 10000, + "discountValues": [], + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": " is simply dummy text of the printing and typesetting industry" + } + ], + "tags": [], + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null + }, + { + "id": "5f61ed9f-c65d-4610-ad39-76de699b21b6", + "title": "Test for varighet", + "description": "", + "needId": "687a5adb-771d-408e-9450-ce77219682a7", + "type": "requirement", + "variants": [ + { + "id": "2e92ab7b-13fc-462e-807b-e940b14cd82a", + "requirementText": " is simply dummy text of the printing and typesetting industry", + "instruction": " is simply dummy text of the printing and typesetting industry", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "c8f39f9a-3d08-4741-8bd6-7c6a1c699404", + "73515fe6-e0a4-4a36-b992-a96401c49a49" + ], + "questions": [ + { + "id": "5e406881-e5f9-45c2-ae7a-e26febf39b6a", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "duration": 0, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": " is simply dummy text of the printing and typesetting industry" + } + ], + "tags": [], + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null + }, + { + "id": "5052afb6-ebe3-44e5-9001-9410ffb2e901", + "title": "test for weekdays checkbox", + "description": "", + "needId": "687a5adb-771d-408e-9450-ce77219682a7", + "type": "requirement", + "variants": [ + { + "id": "bed84a19-a853-4002-b4fe-5c777f6c7d62", + "requirementText": "", + "instruction": "AD NVJDSVGBNDSIVGBFCSABIVBSIGUVS", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "b72e00e6-fb5c-4755-8198-b5ccb0d4d193", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "duration": 0, + "weekdays": [], + "defaultDiscount": 1, + "dateScores": [] + }, + "answer": { + "discount": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "dsaadasdadADAd" + } + ], + "tags": [], + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null + }, + { + "id": "82697379-8b77-420e-be95-87ae5ecd080a", + "title": "datoperiode", + "description": "", + "needId": "687a5adb-771d-408e-9450-ce77219682a7", + "type": "requirement", + "variants": [ + { + "id": "14a4373c-9bf1-40b0-9739-7d369059e9a7", + "requirementText": " is simply dummy text of the printing and typesetting industry", + "instruction": " is simply dummy text of the printing and typesetting industry", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "d4a09b9f-834c-419d-a845-82c2bc05979e", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "duration": 0, + "weekdays": [], + "defaultDiscount": 1, + "dateScores": [] + }, + "answer": { + "discount": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": " is simply dummy text of the printing" + } + ], + "tags": [], + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "eeed3246-badc-4fe4-a4da-38948e9beecb", + "title": "Farger", + "description": "", + "codes": [ + { + "id": "947eb545-da7e-4dc4-9d72-bb347bd73d62", + "title": "Grønn", + "description": "", + "type": "code", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null, + "parent": "" + }, + { + "id": "d3800399-274c-4721-812c-4249149b02fa", + "title": "Gul", + "description": "", + "type": "code", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null, + "parent": "" + }, + { + "id": "86975f04-15f4-4240-b327-f438c0bfd3f1", + "title": "Rød", + "description": "", + "type": "code", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null + } + ], + "products": [ + { + "id": "c8f39f9a-3d08-4741-8bd6-7c6a1c699404", + "title": "eple", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null, + "deletedDate": null, + "unit": "kg" + }, + { + "id": "73515fe6-e0a4-4a36-b992-a96401c49a49", + "title": "test", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + } + ], + "publications": [], + "tags": [], + "version": 26, + "publishedDate": "2022-12-06T13:39:10.310Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "deletedDate": null + }, + { + "id": "06a93c6a-668e-4613-9535-9fc937550122", + "title": "Raghad test project", + "description": "test for unit", + "needs": [ + { + "id": "687a5adb-771d-408e-9450-ce77219682a7", + "title": "Frukt", + "description": "", + "requirements": [ + { + "id": "b1ac0701-821e-4d7c-9a8d-f46624f0eec3", + "title": "Eple", + "description": "", + "needId": "687a5adb-771d-408e-9450-ce77219682a7", + "type": "requirement", + "variants": [ + { + "id": "bb99bcfb-973d-4f5b-9c5c-8e1660295a16", + "requirementText": "", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c8f39f9a-3d08-4741-8bd6-7c6a1c699404" + ], + "questions": [ + { + "id": "4f3cd09a-dbc0-4712-bd60-c40de2e33a91", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "test" + } + ], + "tags": [], + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null + }, + { + "id": "2d67715a-1f22-46ed-88a3-1ac2d0eb11f7", + "title": "Antall epler", + "description": "", + "needId": "687a5adb-771d-408e-9450-ce77219682a7", + "type": "requirement", + "variants": [ + { + "id": "9a91bc7d-2acb-4f88-8f88-f0aa3002d6e2", + "requirementText": "", + "instruction": "Test veiledning til oppdragsgiver", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c8f39f9a-3d08-4741-8bd6-7c6a1c699404" + ], + "questions": [ + { + "id": "c42e6f66-67ff-46e3-bc6a-d7d937a43890", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 5000, + "step": 1, + "unit": "Stk", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "test beskrivelse" + } + ], + "tags": [], + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "eeed3246-badc-4fe4-a4da-38948e9beecb", + "title": "Farger", + "description": "", + "codes": [ + { + "id": "947eb545-da7e-4dc4-9d72-bb347bd73d62", + "title": "Grønn", + "description": "", + "type": "code", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null, + "parent": "" + }, + { + "id": "d3800399-274c-4721-812c-4249149b02fa", + "title": "Gul", + "description": "", + "type": "code", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null, + "parent": "" + }, + { + "id": "86975f04-15f4-4240-b327-f438c0bfd3f1", + "title": "Rød", + "description": "", + "type": "code", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null + } + ], + "products": [ + { + "id": "c8f39f9a-3d08-4741-8bd6-7c6a1c699404", + "title": "eple", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null, + "deletedDate": null, + "unit": "kg" + }, + { + "id": "73515fe6-e0a4-4a36-b992-a96401c49a49", + "title": "test", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + } + ], + "publications": [], + "tags": [], + "version": 9, + "publishedDate": "2022-11-21T20:06:40.326Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "deletedDate": null + }, + { + "id": "29adf1d8-2fe9-4ad4-b547-74296e530575", + "title": "Raghad test project", + "description": "test for unit", + "needs": [ + { + "id": "687a5adb-771d-408e-9450-ce77219682a7", + "title": "Frukt", + "description": "", + "requirements": [ + { + "id": "b1ac0701-821e-4d7c-9a8d-f46624f0eec3", + "title": "Eple", + "description": "", + "needId": "687a5adb-771d-408e-9450-ce77219682a7", + "type": "requirement", + "variants": [ + { + "id": "bb99bcfb-973d-4f5b-9c5c-8e1660295a16", + "requirementText": "", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c8f39f9a-3d08-4741-8bd6-7c6a1c699404" + ], + "questions": [ + { + "id": "4f3cd09a-dbc0-4712-bd60-c40de2e33a91", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "test" + }, + { + "id": "f5d4ca4a-1ae1-4457-a957-d86c327fffe0", + "requirementText": "", + "instruction": "regrger", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "94569bdb-3f7e-4020-8646-97c9825ef75e", + "type": "Q_CHECKBOX", + "config": { + "discount": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "eewgewg" + } + ], + "tags": [], + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null + }, + { + "id": "9d7a2971-6c19-4247-84e5-83609890700a", + "title": "Benan", + "description": "", + "needId": "687a5adb-771d-408e-9450-ce77219682a7", + "type": "requirement", + "variants": [ + { + "id": "b853f56c-151a-40ed-af8d-256a92397e9e", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "2487238d-2624-46e4-9d90-38eff6d78e02", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "dsfgsgfsagfa" + } + ], + "tags": [], + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null + }, + { + "id": "0ec6244e-058a-4ec5-9d94-e3643423bad8", + "title": "Sikkerhet", + "description": "test", + "requirements": [ + { + "id": "5114bcf0-38fb-43d1-a96a-0f54d57f4f8f", + "title": "Lås", + "description": "", + "needId": "0ec6244e-058a-4ec5-9d94-e3643423bad8", + "type": "requirement", + "variants": [], + "tags": [], + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "eeed3246-badc-4fe4-a4da-38948e9beecb", + "title": "Farger", + "description": "", + "codes": [ + { + "id": "947eb545-da7e-4dc4-9d72-bb347bd73d62", + "title": "Grønn", + "description": "", + "type": "code", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null, + "parent": "" + }, + { + "id": "d3800399-274c-4721-812c-4249149b02fa", + "title": "Gul", + "description": "", + "type": "code", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null, + "parent": "" + }, + { + "id": "86975f04-15f4-4240-b327-f438c0bfd3f1", + "title": "Rød", + "description": "", + "type": "code", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null + } + ], + "products": [ + { + "id": "c8f39f9a-3d08-4741-8bd6-7c6a1c699404", + "title": "eple", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null, + "deletedDate": null, + "unit": "kg" + }, + { + "id": "73515fe6-e0a4-4a36-b992-a96401c49a49", + "title": "test", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + } + ], + "publications": [], + "tags": [], + "version": 8, + "publishedDate": "2022-11-18T13:27:29.699Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "deletedDate": null + }, + { + "id": "3cd8b1bf-1a3b-42cf-9fbd-07dabd4f7477", + "title": "Raghad test project", + "description": "test for unit", + "needs": [ + { + "id": "687a5adb-771d-408e-9450-ce77219682a7", + "title": "Frukt", + "description": "", + "requirements": [ + { + "id": "b1ac0701-821e-4d7c-9a8d-f46624f0eec3", + "title": "Eple", + "description": "", + "needId": "687a5adb-771d-408e-9450-ce77219682a7", + "type": "requirement", + "variants": [ + { + "id": "bb99bcfb-973d-4f5b-9c5c-8e1660295a16", + "requirementText": "", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c8f39f9a-3d08-4741-8bd6-7c6a1c699404" + ], + "questions": [ + { + "id": "c792e936-4954-45b3-8f18-5bb654979290", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "eeed3246-badc-4fe4-a4da-38948e9beecb", + "codes": [], + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "test" + } + ], + "tags": [], + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null + }, + { + "id": "9d7a2971-6c19-4247-84e5-83609890700a", + "title": "Benan", + "description": "", + "needId": "687a5adb-771d-408e-9450-ce77219682a7", + "type": "requirement", + "variants": [ + { + "id": "b853f56c-151a-40ed-af8d-256a92397e9e", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "2487238d-2624-46e4-9d90-38eff6d78e02", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "dsfgsgfsagfa" + } + ], + "tags": [], + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "eeed3246-badc-4fe4-a4da-38948e9beecb", + "title": "Farger", + "description": "", + "codes": [ + { + "id": "947eb545-da7e-4dc4-9d72-bb347bd73d62", + "title": "Grønn", + "description": "", + "type": "code", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null, + "parent": "" + }, + { + "id": "d3800399-274c-4721-812c-4249149b02fa", + "title": "Gul", + "description": "", + "type": "code", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null, + "parent": "" + }, + { + "id": "86975f04-15f4-4240-b327-f438c0bfd3f1", + "title": "Rød", + "description": "", + "type": "code", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null + } + ], + "products": [ + { + "id": "c8f39f9a-3d08-4741-8bd6-7c6a1c699404", + "title": "eple", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null, + "deletedDate": null, + "unit": "kg" + }, + { + "id": "73515fe6-e0a4-4a36-b992-a96401c49a49", + "title": "test", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + } + ], + "publications": [], + "tags": [], + "version": 7, + "publishedDate": "2022-10-04T10:24:29.371Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "deletedDate": null + }, + { + "id": "58c62b22-9e05-4bfc-80d5-113ff72345ea", + "title": "Raghad test project", + "description": "test for unit", + "needs": [ + { + "id": "687a5adb-771d-408e-9450-ce77219682a7", + "title": "Frukt", + "description": "", + "requirements": [ + { + "id": "b1ac0701-821e-4d7c-9a8d-f46624f0eec3", + "title": "Eple", + "description": "", + "needId": "687a5adb-771d-408e-9450-ce77219682a7", + "type": "requirement", + "variants": [ + { + "id": "bb99bcfb-973d-4f5b-9c5c-8e1660295a16", + "requirementText": "", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c8f39f9a-3d08-4741-8bd6-7c6a1c699404" + ], + "questions": [ + { + "id": "24049d6f-ddcf-4395-bc75-0a7680c2e232", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "test" + } + ], + "tags": [], + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null + }, + { + "id": "9d7a2971-6c19-4247-84e5-83609890700a", + "title": "Benan", + "description": "", + "needId": "687a5adb-771d-408e-9450-ce77219682a7", + "type": "requirement", + "variants": [ + { + "id": "b853f56c-151a-40ed-af8d-256a92397e9e", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "2487238d-2624-46e4-9d90-38eff6d78e02", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "dsfgsgfsagfa" + } + ], + "tags": [], + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null + } + ], + "codelist": [], + "products": [ + { + "id": "c8f39f9a-3d08-4741-8bd6-7c6a1c699404", + "title": "eple", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null, + "deletedDate": null, + "unit": "kg" + }, + { + "id": "73515fe6-e0a4-4a36-b992-a96401c49a49", + "title": "test", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + } + ], + "publications": [], + "tags": [], + "version": 5, + "publishedDate": "2022-09-29T07:00:47.081Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "deletedDate": null + }, + { + "id": "f784920b-6b7d-48fd-a63a-52395057c4c5", + "title": "Raghad test project", + "description": "test for unit", + "needs": [ + { + "id": "687a5adb-771d-408e-9450-ce77219682a7", + "title": "Frukt", + "description": "", + "requirements": [ + { + "id": "b1ac0701-821e-4d7c-9a8d-f46624f0eec3", + "title": "Eple", + "description": "", + "needId": "687a5adb-771d-408e-9450-ce77219682a7", + "type": "requirement", + "variants": [ + { + "id": "bb99bcfb-973d-4f5b-9c5c-8e1660295a16", + "requirementText": "", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c8f39f9a-3d08-4741-8bd6-7c6a1c699404" + ], + "questions": [ + { + "id": "3012f07f-c13a-4d0b-a7be-4f70ad7a7401", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "test" + } + ], + "tags": [], + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null + }, + { + "id": "9d7a2971-6c19-4247-84e5-83609890700a", + "title": "Benan", + "description": "", + "needId": "687a5adb-771d-408e-9450-ce77219682a7", + "type": "requirement", + "variants": [ + { + "id": "b853f56c-151a-40ed-af8d-256a92397e9e", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "2487238d-2624-46e4-9d90-38eff6d78e02", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "dsfgsgfsagfa" + } + ], + "tags": [], + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null + } + ], + "codelist": [], + "products": [ + { + "id": "c8f39f9a-3d08-4741-8bd6-7c6a1c699404", + "title": "eple", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null, + "deletedDate": null, + "unit": "kg" + }, + { + "id": "73515fe6-e0a4-4a36-b992-a96401c49a49", + "title": "test", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + } + ], + "publications": [], + "tags": [], + "version": 4, + "publishedDate": "2022-09-26T10:50:54.928Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "deletedDate": null + }, + { + "id": "034633b2-d904-4730-8543-9aaa93241c09", + "title": "Raghad test project", + "description": "test for unit", + "needs": [ + { + "id": "687a5adb-771d-408e-9450-ce77219682a7", + "title": "Frukt", + "description": "", + "requirements": [ + { + "id": "b1ac0701-821e-4d7c-9a8d-f46624f0eec3", + "title": "Eple", + "description": "", + "needId": "687a5adb-771d-408e-9450-ce77219682a7", + "type": "requirement", + "variants": [ + { + "id": "bb99bcfb-973d-4f5b-9c5c-8e1660295a16", + "requirementText": "", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c8f39f9a-3d08-4741-8bd6-7c6a1c699404" + ], + "questions": [ + { + "id": "3012f07f-c13a-4d0b-a7be-4f70ad7a7401", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "test" + } + ], + "tags": [], + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null + } + ], + "codelist": [], + "products": [ + { + "id": "c8f39f9a-3d08-4741-8bd6-7c6a1c699404", + "title": "eple", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null, + "deletedDate": null, + "unit": "kg" + } + ], + "publications": [], + "tags": [], + "version": 2, + "publishedDate": "2022-09-19T11:16:05.398Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "deletedDate": null + }, + { + "id": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "title": "Raghad test project", + "description": "test for unit", + "needs": [ + { + "id": "687a5adb-771d-408e-9450-ce77219682a7", + "title": "Frukt", + "description": "", + "requirements": [ + { + "id": "b1ac0701-821e-4d7c-9a8d-f46624f0eec3", + "title": "Eple", + "description": "", + "needId": "687a5adb-771d-408e-9450-ce77219682a7", + "type": "requirement", + "variants": [ + { + "id": "bb99bcfb-973d-4f5b-9c5c-8e1660295a16", + "requirementText": "", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c8f39f9a-3d08-4741-8bd6-7c6a1c699404" + ], + "questions": [ + { + "id": "4f3cd09a-dbc0-4712-bd60-c40de2e33a91", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "test" + } + ], + "tags": [], + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null + }, + { + "id": "2d67715a-1f22-46ed-88a3-1ac2d0eb11f7", + "title": "Antall epler", + "description": "", + "needId": "687a5adb-771d-408e-9450-ce77219682a7", + "type": "requirement", + "variants": [ + { + "id": "9a91bc7d-2acb-4f88-8f88-f0aa3002d6e2", + "requirementText": "", + "instruction": "Test veiledning til oppdragsgiver", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c8f39f9a-3d08-4741-8bd6-7c6a1c699404" + ], + "questions": [ + { + "id": "c42e6f66-67ff-46e3-bc6a-d7d937a43890", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 5000, + "step": 1, + "unit": "Stk", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "test beskrivelse" + } + ], + "tags": [], + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null + }, + { + "id": "f2e0933b-664b-4005-96f4-6c570178e14a", + "title": "Benan", + "description": "", + "needId": "687a5adb-771d-408e-9450-ce77219682a7", + "type": "requirement", + "variants": [ + { + "id": "cb5b8a92-f97d-4482-b15b-399675cd7a7e", + "requirementText": " is simply dummy text of the printing and typesetting industry", + "instruction": " is simply dummy text of the printing and typesetting industry. Lorem", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "c8f39f9a-3d08-4741-8bd6-7c6a1c699404", + "73515fe6-e0a4-4a36-b992-a96401c49a49" + ], + "questions": [ + { + "id": "05f98619-0b43-4b49-a195-84ed0c12447d", + "type": "Q_TEXT", + "config": { + "max": 10000, + "discountValues": [], + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": " is simply dummy text of the printing and typesetting industry" + } + ], + "tags": [], + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null + }, + { + "id": "5f61ed9f-c65d-4610-ad39-76de699b21b6", + "title": "Test for varighet", + "description": "", + "needId": "687a5adb-771d-408e-9450-ce77219682a7", + "type": "requirement", + "variants": [ + { + "id": "2e92ab7b-13fc-462e-807b-e940b14cd82a", + "requirementText": " is simply dummy text of the printing and typesetting industry", + "instruction": " is simply dummy text of the printing and typesetting industry", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "c8f39f9a-3d08-4741-8bd6-7c6a1c699404", + "73515fe6-e0a4-4a36-b992-a96401c49a49" + ], + "questions": [ + { + "id": "5e406881-e5f9-45c2-ae7a-e26febf39b6a", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "duration": 0, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": " is simply dummy text of the printing and typesetting industry" + } + ], + "tags": [], + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null + }, + { + "id": "13534ce2-48eb-4195-8653-7302b1eff59b", + "title": "codes", + "description": "", + "needId": "687a5adb-771d-408e-9450-ce77219682a7", + "type": "requirement", + "variants": [ + { + "id": "ef8dfedb-53b9-45e6-ae9f-9c7496610f5b", + "requirementText": "sdasfdafcsafafassdasfdafcsafafas", + "instruction": "sdasfdafcsafafassdasfdafcsafafassdasfdafcsafafassdasfdafcsafafas", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "e89ca274-91dd-4739-b366-ba7eec2088a9", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "eeed3246-badc-4fe4-a4da-38948e9beecb", + "codes": [], + "defaultDiscount": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "discount": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Codes" + } + ], + "tags": [], + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "eeed3246-badc-4fe4-a4da-38948e9beecb", + "title": "Farger", + "description": "", + "codes": [ + { + "id": "947eb545-da7e-4dc4-9d72-bb347bd73d62", + "title": "Grønn", + "description": "", + "type": "code", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null, + "parent": "" + }, + { + "id": "d3800399-274c-4721-812c-4249149b02fa", + "title": "Gul", + "description": "", + "type": "code", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null, + "parent": "" + }, + { + "id": "86975f04-15f4-4240-b327-f438c0bfd3f1", + "title": "Rød", + "description": "", + "type": "code", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null, + "parent": "" + }, + { + "id": "2265a15a-9b06-476a-88c2-b24d25b2f5bf", + "title": "sdasfdafcsafafassdas", + "description": "sdasfdafcsafafassdasfdafcsafafassdasfdafcsafafassdasfdafcsafafas", + "type": "code", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null + } + ], + "products": [ + { + "id": "c8f39f9a-3d08-4741-8bd6-7c6a1c699404", + "title": "eple", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null, + "deletedDate": null, + "unit": "kg" + }, + { + "id": "73515fe6-e0a4-4a36-b992-a96401c49a49", + "title": "test", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + } + ], + "publications": [ + { + "id": "5e8cb931-cb90-49f7-a57c-43ea5ee515b0", + "bankId": "5e8cb931-cb90-49f7-a57c-43ea5ee515b0", + "comment": "Raghad version", + "date": "2022-09-19T11:10:53.766Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-09-19T11:15:54.401Z" + }, + { + "id": "034633b2-d904-4730-8543-9aaa93241c09", + "bankId": "034633b2-d904-4730-8543-9aaa93241c09", + "comment": "Raghad version", + "date": "2022-09-19T11:16:05.398Z", + "type": "publication", + "version": 2, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + }, + { + "id": "83b6cf12-079f-4da4-a39a-fd07e93b1fa7", + "bankId": "83b6cf12-079f-4da4-a39a-fd07e93b1fa7", + "comment": "Raghad version2", + "date": "2022-09-26T10:49:15.964Z", + "type": "publication", + "version": 3, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-09-26T10:49:46.184Z" + }, + { + "id": "f784920b-6b7d-48fd-a63a-52395057c4c5", + "bankId": "f784920b-6b7d-48fd-a63a-52395057c4c5", + "comment": "Raghad version", + "date": "2022-09-26T10:50:54.928Z", + "type": "publication", + "version": 4, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + }, + { + "id": "58c62b22-9e05-4bfc-80d5-113ff72345ea", + "bankId": "58c62b22-9e05-4bfc-80d5-113ff72345ea", + "comment": "Raghad version", + "date": "2022-09-29T07:00:47.081Z", + "type": "publication", + "version": 5, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + }, + { + "id": "54d013f1-8890-40e9-b66a-be4f96c17b95", + "bankId": "54d013f1-8890-40e9-b66a-be4f96c17b95", + "comment": "Raghad version- add codelist", + "date": "2022-10-04T10:23:27.396Z", + "type": "publication", + "version": 6, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-10-04T10:24:24.275Z" + }, + { + "id": "3cd8b1bf-1a3b-42cf-9fbd-07dabd4f7477", + "bankId": "3cd8b1bf-1a3b-42cf-9fbd-07dabd4f7477", + "comment": "Raghad version- add codelist", + "date": "2022-10-04T10:24:29.371Z", + "type": "publication", + "version": 7, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + }, + { + "id": "29adf1d8-2fe9-4ad4-b547-74296e530575", + "bankId": "29adf1d8-2fe9-4ad4-b547-74296e530575", + "comment": "Raghad version", + "date": "2022-11-18T13:27:29.699Z", + "type": "publication", + "version": 8, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + }, + { + "id": "06a93c6a-668e-4613-9535-9fc937550122", + "bankId": "06a93c6a-668e-4613-9535-9fc937550122", + "comment": "Raghad version", + "date": "2022-11-21T20:06:40.326Z", + "type": "publication", + "version": 9, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + }, + { + "id": "5e5caa97-aff8-4c91-b6c1-403f862f9337", + "bankId": "5e5caa97-aff8-4c91-b6c1-403f862f9337", + "comment": "Raghad version", + "date": "2022-11-28T14:41:52.291Z", + "type": "publication", + "version": 10, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-01T12:06:49.933Z" + }, + { + "id": "d3048573-2997-44c1-a255-d7e7055d786b", + "bankId": "d3048573-2997-44c1-a255-d7e7055d786b", + "comment": "Raghad version - add discount to variant of type text", + "date": "2022-11-29T09:06:20.862Z", + "type": "publication", + "version": 11, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-01T12:06:28.393Z" + }, + { + "id": "93148e06-21fc-4936-a8d5-633f493bee87", + "bankId": "93148e06-21fc-4936-a8d5-633f493bee87", + "comment": "Raghad version", + "date": "2022-11-29T09:27:37.960Z", + "type": "publication", + "version": 12, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-01T12:05:43.255Z" + }, + { + "id": "26ecdfd3-acba-4df1-bf54-4177adb873cb", + "bankId": "26ecdfd3-acba-4df1-bf54-4177adb873cb", + "comment": "Raghad version", + "date": "2022-11-29T09:30:18.366Z", + "type": "publication", + "version": 13, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-01T12:05:30.088Z" + }, + { + "id": "70cc30d1-7402-43dd-b6e7-6eed55155a14", + "bankId": "70cc30d1-7402-43dd-b6e7-6eed55155a14", + "comment": "Raghad version", + "date": "2022-11-29T09:36:11.550Z", + "type": "publication", + "version": 14, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-01T12:05:28.121Z" + }, + { + "id": "820035ea-5663-4e20-a3f0-52ea54735872", + "bankId": "820035ea-5663-4e20-a3f0-52ea54735872", + "comment": "Raghad version", + "date": "2022-11-29T10:27:37.870Z", + "type": "publication", + "version": 15, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-01T12:05:23.993Z" + }, + { + "id": "dc50b571-5251-4d2f-8429-6474fabcadba", + "bankId": "dc50b571-5251-4d2f-8429-6474fabcadba", + "comment": "Raghad version", + "date": "2022-11-29T11:54:08.705Z", + "type": "publication", + "version": 16, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-01T12:05:21.564Z" + }, + { + "id": "12bdea0f-64a5-4f0d-b7f3-91c290239118", + "bankId": "12bdea0f-64a5-4f0d-b7f3-91c290239118", + "comment": "Raghad version", + "date": "2022-12-01T10:57:12.861Z", + "type": "publication", + "version": 17, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-01T12:05:15.740Z" + }, + { + "id": "31a7ca78-4d23-4923-bfa3-ca30a7cca273", + "bankId": "31a7ca78-4d23-4923-bfa3-ca30a7cca273", + "comment": "Raghad version", + "date": "2022-12-01T10:59:34.083Z", + "type": "publication", + "version": 18, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-01T12:05:12.501Z" + }, + { + "id": "88b67359-4a0c-4638-bbe6-f45967932957", + "bankId": "88b67359-4a0c-4638-bbe6-f45967932957", + "comment": "Raghad version", + "date": "2022-12-01T11:03:22.935Z", + "type": "publication", + "version": 19, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-01T12:05:09.379Z" + }, + { + "id": "a64d5877-e102-431a-a42f-884be36df249", + "bankId": "a64d5877-e102-431a-a42f-884be36df249", + "comment": "Raghad version", + "date": "2022-12-01T11:06:45.675Z", + "type": "publication", + "version": 20, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-01T12:05:05.917Z" + }, + { + "id": "bb654ffe-c7c9-4d80-8359-9ea8a177d8a5", + "bankId": "bb654ffe-c7c9-4d80-8359-9ea8a177d8a5", + "comment": "Raghad version", + "date": "2022-12-02T12:44:17.755Z", + "type": "publication", + "version": 21, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-05T11:49:13.926Z" + }, + { + "id": "f67eee6a-c73a-4fd4-aaa1-494ed733a1f6", + "bankId": "f67eee6a-c73a-4fd4-aaa1-494ed733a1f6", + "comment": "Raghad version", + "date": "2022-12-02T14:21:11.312Z", + "type": "publication", + "version": 22, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-05T11:49:10.936Z" + }, + { + "id": "7281d374-3c44-43da-87ff-81b8f44c81c1", + "bankId": "7281d374-3c44-43da-87ff-81b8f44c81c1", + "comment": "Raghad version", + "date": "2022-12-05T11:42:05.353Z", + "type": "publication", + "version": 23, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-05T11:49:05.487Z" + }, + { + "id": "46922197-bdb7-4995-b07e-64f9c2790536", + "bankId": "46922197-bdb7-4995-b07e-64f9c2790536", + "comment": "Raghad version", + "date": "2022-12-05T11:49:17.638Z", + "type": "publication", + "version": 24, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-06T08:43:09.548Z" + }, + { + "id": "97c99b96-b3d5-4663-bcd8-0e65c368d754", + "bankId": "97c99b96-b3d5-4663-bcd8-0e65c368d754", + "comment": "Raghad version", + "date": "2022-12-06T08:43:13.888Z", + "type": "publication", + "version": 25, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-08T12:10:02.847Z" + }, + { + "id": "fa9c9d36-2a93-4ace-81b8-6e7cd97c83e0", + "bankId": "fa9c9d36-2a93-4ace-81b8-6e7cd97c83e0", + "comment": "Raghad version", + "date": "2022-12-06T13:39:12.632Z", + "type": "publication", + "version": 26, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-08T12:10:04.767Z" + }, + { + "id": "c7c49816-b4fd-4929-8b33-ea3d7b102857", + "bankId": "c7c49816-b4fd-4929-8b33-ea3d7b102857", + "comment": "Raghad version - weekdays", + "date": "2022-12-06T13:42:49.901Z", + "type": "publication", + "version": 27, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-08T12:10:06.521Z" + }, + { + "id": "45f045e3-5813-4598-a956-4316023d1f3f", + "bankId": "45f045e3-5813-4598-a956-4316023d1f3f", + "comment": "Raghad version- ukedager", + "date": "2022-12-07T10:52:26.570Z", + "type": "publication", + "version": 28, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-07T10:53:44.370Z" + }, + { + "id": "08d9c782-46e5-4ae6-9d3f-223150c26f88", + "bankId": "08d9c782-46e5-4ae6-9d3f-223150c26f88", + "comment": "Raghad version- test weekdays", + "date": "2022-12-08T09:50:07.792Z", + "type": "publication", + "version": 29, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-08T09:59:54.058Z" + }, + { + "id": "829dc4dc-06af-43ed-9a1c-63289939ecce", + "bankId": "829dc4dc-06af-43ed-9a1c-63289939ecce", + "comment": "Raghad version- test weekdays", + "date": "2022-12-08T09:59:58.188Z", + "type": "publication", + "version": 30, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-08T12:10:09.101Z" + }, + { + "id": "5efff249-f5cc-4b20-9ebe-e5e1098cafee", + "bankId": "5efff249-f5cc-4b20-9ebe-e5e1098cafee", + "comment": "Raghad version- test weekdays", + "date": "2022-12-08T12:18:43.899Z", + "type": "publication", + "version": 31, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-08T12:29:18.629Z" + }, + { + "id": "34d6a7c4-f6b6-4759-a8b0-0f4964b38210", + "bankId": "34d6a7c4-f6b6-4759-a8b0-0f4964b38210", + "comment": "Raghad version- test weekdays", + "date": "2022-12-08T12:29:25.316Z", + "type": "publication", + "version": 32, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-14T10:24:27.379Z" + }, + { + "id": "f9020bda-fae9-4ce6-b57c-ccc4df441941", + "bankId": "f9020bda-fae9-4ce6-b57c-ccc4df441941", + "comment": "Raghad version- Dato-periode - weekdays", + "date": "2022-12-09T09:46:34.573Z", + "type": "publication", + "version": 33, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + }, + { + "id": "92212ede-53d6-4016-b42c-0b9ca0f9eb54", + "bankId": "92212ede-53d6-4016-b42c-0b9ca0f9eb54", + "comment": "Raghad version- test codeslist", + "date": "2022-12-14T10:21:26.854Z", + "type": "publication", + "version": 34, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-14T10:24:33.712Z" + }, + { + "id": "575a09a5-34b6-425b-94b4-dd446166745e", + "bankId": "575a09a5-34b6-425b-94b4-dd446166745e", + "comment": "Raghad version- test codelist", + "date": "2022-12-14T10:24:48.728Z", + "type": "publication", + "version": 35, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-14T10:40:27.301Z" + }, + { + "id": "1ba5bdcb-8ea2-4615-b1ab-eafdee6fcdb9", + "bankId": "1ba5bdcb-8ea2-4615-b1ab-eafdee6fcdb9", + "comment": "Raghad version- test codelist", + "date": "2022-12-14T10:40:33.854Z", + "type": "publication", + "version": 36, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-14T10:42:21.469Z" + }, + { + "id": "820745cb-8912-451c-aaa3-d4a53c6c52b0", + "bankId": "820745cb-8912-451c-aaa3-d4a53c6c52b0", + "comment": "Raghad version- test codelist", + "date": "2022-12-14T10:42:19.149Z", + "type": "publication", + "version": 37, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + } + ], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "15fb82a7-1611-4d6a-b382-8d65428a331a", + "title": "Raghad Demo", + "description": "Demo project for testing", + "needs": [ + { + "id": "f8ba46b7-e491-4e69-a795-f0ec462fbdd1", + "title": "PC", + "description": "PC for employees", + "requirements": [ + { + "id": "d5b0b517-f4eb-4b4b-bc14-d3cc3f65c8d9", + "title": "Windows 10", + "description": "", + "needId": "f8ba46b7-e491-4e69-a795-f0ec462fbdd1", + "type": "requirement", + "variants": [ + { + "id": "90e03f66-b6cc-46f1-913c-a238b55cbb5e", + "requirementText": "", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c30be100-c0b8-4d8e-ad30-d9036e631156" + ], + "questions": [ + { + "id": "9f14e84d-7e72-4625-be01-05ec183b9ccf", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Operating system" + } + ], + "tags": [], + "sourceOriginal": "16089366-1c5d-4e9b-b5eb-ea7cfd534e09", + "sourceRel": null, + "weight": 50 + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "16089366-1c5d-4e9b-b5eb-ea7cfd534e09", + "sourceRel": null + } + ], + "codelist": [], + "products": [ + { + "id": "c30be100-c0b8-4d8e-ad30-d9036e631156", + "title": "Raghad PC", + "description": "PC Product", + "type": "product", + "parent": "", + "sourceOriginal": "16089366-1c5d-4e9b-b5eb-ea7cfd534e09", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [], + "tags": [], + "version": 1, + "publishedDate": "2022-09-12T10:44:31.135Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "16089366-1c5d-4e9b-b5eb-ea7cfd534e09", + "deletedDate": null + }, + { + "id": "6f7400b9-f972-4938-a228-94c4e00de225", + "title": "Møterom og konferanser (Eva)", + "description": "PwC tester å lage et nytt kravsett", + "needs": [ + { + "id": "9f4e594c-5f96-43a2-8b91-2e94de0dc61e", + "title": "Overnattning", + "description": "Bruk dette alternativet dersom det er behov for overnatning i forbindelse med ditt arrangement", + "requirements": [ + { + "id": "53f313a9-936f-45ea-add8-5bd062b4515f", + "title": "Hotell", + "description": "", + "needId": "9f4e594c-5f96-43a2-8b91-2e94de0dc61e", + "type": "requirement", + "variants": [ + { + "id": "548454af-d769-41e4-a5b3-51eb636d6f79", + "requirementText": "Det er et krav av hotell skal ha frokost", + "instruction": "Du kan kun ha hotell med frokost", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "Hotell med frokost" + }, + { + "id": "451551ff-4177-4f44-9b4f-79f5d2277728", + "requirementText": "Dette er et enkeltrom", + "instruction": "Her er et enkeltrom", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [], + "type": "info", + "description": "Enkeltrom" + } + ], + "tags": [], + "sourceOriginal": "6f7400b9-f972-4938-a228-94c4e00de225", + "sourceRel": null + }, + { + "id": "227810bb-eefb-42ee-8283-ac7d8aeb8d13", + "title": "Enkeltrom (krav)", + "description": "", + "needId": "9f4e594c-5f96-43a2-8b91-2e94de0dc61e", + "type": "requirement", + "variants": [ + { + "id": "7c219437-0de7-47c3-9600-0cfaf3f25b46", + "requirementText": "Folk er voksne og vil ikke dele rom", + "instruction": "Her kan du velge enkeltrom", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "Krav om enkeltrom" + } + ], + "tags": [], + "sourceOriginal": "6f7400b9-f972-4938-a228-94c4e00de225", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "6f7400b9-f972-4938-a228-94c4e00de225", + "sourceRel": null + }, + { + "id": "2f69b366-8c00-4ccc-9887-3d33f4a38899", + "title": "Dobbeltrom", + "description": "Vi har behov for et dobbeltrom", + "requirements": [], + "type": "need", + "parent": "9f4e594c-5f96-43a2-8b91-2e94de0dc61e", + "sourceOriginal": "6f7400b9-f972-4938-a228-94c4e00de225", + "sourceRel": null + }, + { + "id": "99b6a8e1-dfff-492f-b11a-378dc8d2271a", + "title": "Enkeltrom", + "description": "Vi har behov for enkeltrom", + "requirements": [], + "type": "need", + "parent": "9f4e594c-5f96-43a2-8b91-2e94de0dc61e", + "sourceOriginal": "6f7400b9-f972-4938-a228-94c4e00de225", + "sourceRel": null + }, + { + "id": "51350e9e-37a3-4a10-b23e-f7a71ffd7c18", + "title": "Møterom", + "description": "Dette er en test, vet ikke om dette er riktig behov", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "6f7400b9-f972-4938-a228-94c4e00de225", + "sourceRel": null + }, + { + "id": "6e7107a1-1f1d-407b-861b-9fc28c5ac3ba", + "title": "Bespisning", + "description": "Møtedeltakerne må ha mat", + "requirements": [ + { + "id": "060f777e-7ff5-4528-b395-dd4f24fb7dd6", + "title": "Møtedeltagerne må ha middag", + "description": "", + "needId": "6e7107a1-1f1d-407b-861b-9fc28c5ac3ba", + "type": "requirement", + "variants": [ + { + "id": "cf1eda3f-4f36-4861-a147-d0e9d6459284", + "requirementText": "Møtedeltakerne må ha middag hver dag", + "instruction": "Her må du spesifisere hvor mange middager møtedeltakerne skal ha", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "f2b40de4-9994-4144-a983-7c29a5d9fa52", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Møtedeltakerne må ha middag" + } + ], + "tags": [], + "sourceOriginal": "6f7400b9-f972-4938-a228-94c4e00de225", + "sourceRel": null + }, + { + "id": "fc43544a-6186-49c8-aed8-3fcad67ba232", + "title": "Møtedeltakerne må ha lunsj", + "description": "", + "needId": "6e7107a1-1f1d-407b-861b-9fc28c5ac3ba", + "type": "requirement", + "variants": [ + { + "id": "b413d9be-06e1-4d7f-94e6-0c8ff1241ee5", + "requirementText": "Møtedeltakerne må ha lunsj", + "instruction": "Møtedeltakerne må ha lunsj", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "Møtedeltakerne må ha lunsj" + } + ], + "tags": [], + "sourceOriginal": "6f7400b9-f972-4938-a228-94c4e00de225", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "6f7400b9-f972-4938-a228-94c4e00de225", + "sourceRel": null + } + ], + "codelist": [], + "products": [], + "publications": [], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "dceebb36-ee79-4c14-9a83-6a2ab8bec6b0", + "title": "Møbelkrav kriterieveivisere", + "description": "Krav og kriteriesett relatert til møbler i kriterieveiviseren", + "needs": [ + { + "id": "f4d91c1f-53c0-4b28-be6d-69f09f12fd30", + "title": "Produktgaranti", + "description": "Behov for produktgaranti", + "requirements": [ + { + "id": "850b4139-69fd-41a0-ad9f-b6044dc01c53", + "title": "Produktgaranti, basis", + "description": "", + "needId": "f4d91c1f-53c0-4b28-be6d-69f09f12fd30", + "type": "requirement", + "variants": [ + { + "id": "17fe10cc-eaf2-408d-a29a-8c16794209f8", + "requirementText": "Alle produkter som tilbys skal minimum ha 5 års garanti mot material- og produksjonsfeil fra tidspunktet for levering. Garantien skal være inkludert i produktprisen.", + "instruction": "Bør tas med som basiskrav", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "8b1e07bd-48ce-4aa2-b15d-322d5b309401", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "" + } + ], + "tags": [], + "sourceOriginal": "91672d76-94a2-4f56-b19a-d8ce4c3125be", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "91672d76-94a2-4f56-b19a-d8ce4c3125be", + "sourceRel": null + }, + { + "id": "5cb36889-e722-49f9-9831-1df3c8a41d44", + "title": "Robuste tekstiler", + "description": "Behov for robuste tekstiler", + "requirements": [ + { + "id": "3ff0f76a-2b90-441f-8614-42ded8dd2835", + "title": "Robuste tekstiler, basis", + "description": "", + "needId": "5cb36889-e722-49f9-9831-1df3c8a41d44", + "type": "requirement", + "variants": [ + { + "id": "74f97879-f015-461f-ba9b-d2ddee3d9037", + "requirementText": "Der møbeltrekket for polstrede/stoppede møbler inkluderer materialer som er basert på tekstilstoffer, skal de oppfylle kvalitetskrav til fargeektehet ved våtglidning iht. ISO 105 X12 på minimum angitte nivå", + "instruction": "Minimumsnivå bør være nivå 2-3 iht. ISO 105 X12. ", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "ec090df2-06b3-4cfb-9147-26570ac6f783", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10, + "step": 1, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "" + }, + { + "id": "4f86e33f-16e3-4526-a4de-8a5db228cb90", + "requirementText": "Der møbeltrekket for polstrede/stoppede møbler inkluderer materialer som er basert på tekstilstoffer, skal de oppfylle kvalitetskrav til fargeekthet ved tørrgnidning iht. ISO 105 X12 på minimum angitte nivå", + "instruction": "Minimumsnivå bør være nivå 4 iht. ISP 105 X12", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "f8612f0e-bbcc-427d-bc6c-3fb8a6c80fb2", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10, + "step": 1, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "" + } + ], + "tags": [], + "sourceOriginal": "91672d76-94a2-4f56-b19a-d8ce4c3125be", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "91672d76-94a2-4f56-b19a-d8ce4c3125be", + "sourceRel": null + } + ], + "codelist": [], + "products": [], + "publications": [], + "tags": [], + "version": 1, + "publishedDate": "2022-04-27T13:41:03.811Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "91672d76-94a2-4f56-b19a-d8ce4c3125be", + "deletedDate": null + }, + { + "id": "91672d76-94a2-4f56-b19a-d8ce4c3125be", + "title": "Møbelkrav kriterieveivisere", + "description": "Krav og kriteriesett relatert til møbler i kriterieveiviseren", + "needs": [ + { + "id": "f4d91c1f-53c0-4b28-be6d-69f09f12fd30", + "title": "Produktgaranti", + "description": "Behov for produktgaranti", + "requirements": [ + { + "id": "850b4139-69fd-41a0-ad9f-b6044dc01c53", + "title": "Produktgaranti, basis", + "description": "", + "needId": "f4d91c1f-53c0-4b28-be6d-69f09f12fd30", + "type": "requirement", + "variants": [ + { + "id": "17fe10cc-eaf2-408d-a29a-8c16794209f8", + "requirementText": "Alle produkter som tilbys skal minimum ha 5 års garanti mot material- og produksjonsfeil fra tidspunktet for levering. Garantien skal være inkludert i produktprisen.", + "instruction": "Bør tas med som basiskrav", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "8b1e07bd-48ce-4aa2-b15d-322d5b309401", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "" + } + ], + "tags": [], + "sourceOriginal": "91672d76-94a2-4f56-b19a-d8ce4c3125be", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "91672d76-94a2-4f56-b19a-d8ce4c3125be", + "sourceRel": null + }, + { + "id": "5cb36889-e722-49f9-9831-1df3c8a41d44", + "title": "Robuste tekstiler", + "description": "Behov for robuste tekstiler", + "requirements": [ + { + "id": "3ff0f76a-2b90-441f-8614-42ded8dd2835", + "title": "Robuste tekstiler, basis", + "description": "", + "needId": "5cb36889-e722-49f9-9831-1df3c8a41d44", + "type": "requirement", + "variants": [ + { + "id": "74f97879-f015-461f-ba9b-d2ddee3d9037", + "requirementText": "Der møbeltrekket for polstrede/stoppede møbler inkluderer materialer som er basert på tekstilstoffer, skal de oppfylle kvalitetskrav til fargeektehet ved våtglidning iht. ISO 105 X12 på minimum angitte nivå", + "instruction": "Minimumsnivå bør være nivå 2-3 iht. ISO 105 X12. ", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "ec090df2-06b3-4cfb-9147-26570ac6f783", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10, + "step": 1, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "" + }, + { + "id": "4f86e33f-16e3-4526-a4de-8a5db228cb90", + "requirementText": "Der møbeltrekket for polstrede/stoppede møbler inkluderer materialer som er basert på tekstilstoffer, skal de oppfylle kvalitetskrav til fargeekthet ved tørrgnidning iht. ISO 105 X12 på minimum angitte nivå", + "instruction": "Minimumsnivå bør være nivå 4 iht. ISP 105 X12", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "f8612f0e-bbcc-427d-bc6c-3fb8a6c80fb2", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10, + "step": 1, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "" + } + ], + "tags": [], + "sourceOriginal": "91672d76-94a2-4f56-b19a-d8ce4c3125be", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "91672d76-94a2-4f56-b19a-d8ce4c3125be", + "sourceRel": null + } + ], + "codelist": [], + "products": [], + "publications": [ + { + "id": "dceebb36-ee79-4c14-9a83-6a2ab8bec6b0", + "bankId": "dceebb36-ee79-4c14-9a83-6a2ab8bec6b0", + "comment": "Testpublisering", + "date": "2022-04-27T13:41:03.811Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null + } + ], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "b47906b5-cb90-4068-b14f-060c78a563b6", + "title": "Legacy (Trond)", + "description": "", + "needs": [ + { + "id": "ae56ae4d-a506-4d47-97d2-2d060fcdd682", + "title": "Fremkommelighet'", + "description": "", + "requirements": [ + { + "id": "98b5ac5e-1885-4db2-9507-289046611fe6", + "title": "Må kunne gå til hytta", + "description": "", + "needId": "ae56ae4d-a506-4d47-97d2-2d060fcdd682", + "tags": [], + "variants": [ + { + "id": "2daca3eb-8a1f-46d8-8049-4b3b08823d79", + "requirementText": "Variant 1", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": true, + "products": [], + "questions": [ + { + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null, + "id": "a84ddc83-4e87-4320-8c48-c62955b13757" + } + ] + }, + { + "id": "d1aecab5-6c09-42ba-a380-abd9554649be", + "requirementText": "Variant 2", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [] + } + ], + "type": "requirement", + "requirement_Type": "requirement", + "sourceOriginal": "d441406b-d4af-4b05-946e-230d4a46998c", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "d441406b-d4af-4b05-946e-230d4a46998c", + "sourceRel": null + }, + { + "id": "bfe2541f-a9be-45bf-9ee8-1b20265b1faa", + "title": "Tilgjenglighet", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "d441406b-d4af-4b05-946e-230d4a46998c", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "91c24501-ae5d-49b4-b2c5-09c99a312662", + "title": "Nettverk", + "description": "", + "codes": [ + { + "id": "050869c2-1b9f-4055-adfc-f8bf0da1ae76", + "title": "4G", + "description": "", + "type": "code", + "sourceOriginal": "d441406b-d4af-4b05-946e-230d4a46998c", + "sourceRel": null, + "parent": "" + }, + { + "id": "5653d06b-8b47-4bf4-b10f-f17ee2d6dcc5", + "title": "5G", + "description": "", + "type": "code", + "sourceOriginal": "d441406b-d4af-4b05-946e-230d4a46998c", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "d441406b-d4af-4b05-946e-230d4a46998c", + "sourceRel": null + } + ], + "products": [ + { + "id": "da124638-b13b-425b-972e-09dd6f175427", + "title": "Mobiltelefon", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "d441406b-d4af-4b05-946e-230d4a46998c", + "sourceRel": null + }, + { + "id": "548f1815-1ec4-4ca1-9347-66ca713f7c33", + "title": "Smarttelefon", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "d441406b-d4af-4b05-946e-230d4a46998c", + "sourceRel": null + }, + { + "id": "53b8ac78-fcd3-44b2-97b1-25fa73bfa1f4", + "title": "90-talls mobil", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "d441406b-d4af-4b05-946e-230d4a46998c", + "sourceRel": null + }, + { + "id": "8fe30d61-f753-425e-9fdd-ad8245ecd53d", + "title": "Eldre mobil", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "d441406b-d4af-4b05-946e-230d4a46998c", + "sourceRel": null + } + ], + "publications": [], + "tags": [ + { + "id": "87e4a180-e6ea-4c51-b481-8a3ce70315ce", + "title": "Nyeste", + "type": "tag", + "parent": "", + "sourceOriginal": "d441406b-d4af-4b05-946e-230d4a46998c", + "sourceRel": null + }, + { + "id": "e4f26c4d-7899-4d61-b903-203af7f97771", + "title": "Eldste", + "type": "tag", + "parent": "", + "sourceOriginal": "d441406b-d4af-4b05-946e-230d4a46998c", + "sourceRel": null + }, + { + "id": "a7907166-220d-4d55-aa08-a56debf6c73d", + "title": "Dyreste", + "type": "tag", + "parent": "", + "sourceOriginal": "d441406b-d4af-4b05-946e-230d4a46998c", + "sourceRel": null + } + ], + "version": 2, + "publishedDate": "2022-03-04T07:38:43.185Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "d441406b-d4af-4b05-946e-230d4a46998c" + }, + { + "id": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "title": "Kurs- og konferansetjenester [ASI] IKKE SLETT", + "description": "IKKE SLETT", + "needs": [ + { + "id": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "title": "Kurs- og konferansefasiliteter", + "description": "", + "requirements": [ + { + "id": "22a98a48-5edc-4eff-859b-173475190d73", + "description": "Leverandøren skal ha dedikert personell tilgjengelig som kan bistå før og under arrangementet. Tilgjengelig personell må ha høy grad av service og kunnskap om AV utstyr. Bistand skal være inkludert i prisen.", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Bistand ", + "variants": [ + { + "id": "fa9b5e4c-c364-432b-ad66-3ca2a3748ed0", + "requirementText": "Leverandøren skal ha dedikert personell tilgjengelig som kan bistå før og under arrangementet. Tilgjengelig personell må ha høy grad av service og kunnskap om AV utstyr. Bistand skal være inkludert i prisen.", + "description": "", + "instruction": "", + "useQualification": false, + "useSpesification": true, + "useProduct": false, + "products": [], + "questions": [ + { + "id": "2e415c44-0e95-42fe-9990-c6cc0f9fd466", + "type": "Q_CHECKBOX", + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "baafab82-4bc0-46af-8d86-803005da0a5e", + "description": "Leverandøren skal kunne tilby mat tilpasset gjester med spesielle krav p.g.a. intoleranse, religion/livsstil etc. Leverandør skal kunne informere gjester om hvilke råvarer som er brukt i retter som serveres.", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Spesielle behov", + "variants": [ + { + "id": "9db4e071-0bec-44fd-a464-b01edc779485", + "requirementText": "Leverandøren skal kunne tilby mat tilpasset gjester med spesielle krav p.g.a. intoleranse, religion/livsstil etc. Leverandør skal kunne informere gjester om hvilke råvarer som er brukt i retter som serveres.", + "description": "", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "2c3d3061-ea7e-4c9a-b382-bf17840349eb", + "type": "Q_CHECKBOX", + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "cb48b8f2-4e47-4f2d-ba7a-21fbc7be5bfc", + "description": "Leverandøren skal tilby avlastningsrom som skal kunne fungere som grupperom.", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Avlastningsrom", + "variants": [ + { + "id": "9a83064e-317d-4ca9-826b-62c77f83ec2f", + "requirementText": "Leverandøren skal tilby avlastningsrom som skal kunne fungere som grupperom.", + "instruction": "", + "description": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "0be8ef14-a708-430f-a120-130c4aefac2e", + "type": "Q_CHECKBOX", + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "18f71082-b906-4574-898a-98544522ad92", + "description": "Leverandøren skal, ved overnatting, være bemannet for inn- og utsjekk samt andre henvendelser 24 timer i døgnet. ", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Inn-/ utsjekk", + "variants": [ + { + "id": "6e2ab18c-6055-4240-9d56-07f5e8d42118", + "requirementText": "Leverandøren skal, ved overnatting, være bemannet for inn- og utsjekk samt andre henvendelser 24 timer i døgnet. ", + "instruction": "", + "description": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "8ef05efb-803c-45e2-b811-770b88450743", + "type": "Q_CHECKBOX", + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "26de09d1-7f25-40b6-a9e9-eb36aa2e9e7d", + "description": "Leverandøren skal besvare alle henvendelser så hurtig som mulig og minimum innen 1 virkedag. Henvendelser skal besvares senest samme dag ved henvendelse før kl. 14:00. Ved henvendelse etter kl. 14:00, skal det besvares innen kl. 12:00 neste dag. Dette gjelder i virkedager. Spesifisere at dette gjelder under arrangement/kontraktsperioden", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Responstid", + "variants": [ + { + "id": "600ea1ee-823b-45a9-ab35-a304245dab9d", + "requirementText": "Leverandøren skal besvare alle henvendelser så hurtig som mulig og minimum innen 1 virkedag. Henvendelser skal besvares senest samme dag ved henvendelse før kl. 14:00. Ved henvendelse etter kl. 14:00, skal det besvares innen kl. 12:00 neste dag. Dette gjelder i virkedager. Spesifisere at dette gjelder under arrangement/kontraktsperioden.", + "instruction": "", + "useProduct": false, + "description": "", + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "dd779e02-fcc9-4fd5-928f-20cb6c7a1139", + "type": "Q_CHECKBOX", + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "fc15fd24-a8c4-460f-943b-98b183dce4a5", + "description": "Angi ønsket geografisk område ved behov(evaluering)", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Geografisk område", + "variants": [ + { + "id": "e2f366ce-5c67-4b4c-9252-0ba0dbbbff32", + "requirementText": "Leverandøren skal kunne tilby kurs- og konferanselokalet innenfor angitt geografisk lokalisering. ", + "instruction": "", + "description": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "2ad1d3fa-cf8e-4c5e-a8d8-f08ced852d54", + "description": "Angi antall deltakere + arrangør for arrangementet", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Størrelse på arrangementet", + "variants": [ + { + "id": "e114f278-a330-4529-8793-7cab692f5f5a", + "requirementText": "", + "instruction": "", + "description": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "4507036e-66dd-426a-80fb-f2881b2e7c6a", + "type": "Q_TEXT", + "config": { + "max": 0 + }, + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "3a00c1c0-9658-4cf8-8b90-a2bd9b1abcf6", + "description": "Leverandøren skal ha dedikert og fast kontaktperson(er) til respektive Oppdragsgivere under kontraktens varighet. ", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Fast kontaktperson", + "variants": [ + { + "id": "c6f2caf2-d643-4039-9c2c-ead0a9188a99", + "requirementText": "Leverandøren skal ha dedikert og fast kontaktperson(er) til respektive Oppdragsgivere under kontraktens varighet. ", + "instruction": "", + "description": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "0eb272b5-af81-40a0-9d24-164666740ad0", + "type": "Q_CHECKBOX", + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "fd969be5-a493-44f5-97d7-4d47d6a4758f", + "description": "Leverandøren skal kunne tilby vegetarmat i henhold til Oppdragsgivers behov. ", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Vegetarmat", + "variants": [ + { + "id": "f387b7e1-7c73-44b1-b42f-20b90aeffaef", + "requirementText": "Leverandøren skal kunne tilby vegetarmat i henhold til Oppdragsgivers behov. ", + "instruction": "", + "description": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "79c89783-6766-458c-9053-61629956e2a6", + "type": "Q_CHECKBOX", + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "9e775a7c-cb61-43cc-a6d9-6b220dbf7160", + "description": "All mat skal være merket iht. gjeldende forskrifter for matmerking. ", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Mat og drikke", + "variants": [ + { + "id": "f3f637eb-9b64-44b2-8097-a4ba5d0fcd06", + "requirementText": "All mat skal være merket iht. gjeldende forskrifter for matmerking. ", + "instruction": "", + "description": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "23d73ea2-a4b7-4155-8d39-4d3acba9f356", + "type": "Q_CHECKBOX", + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "c1fe72f2-eadd-4d22-9bab-aad14a495b32", + "description": "Leverandøren skal kunne tilby allergenfri-mat tilpasset deltakere med ulike matallergier/intoleranser (cøliaki osv). Mat som blir servert skal være merket med hvilke allergener den inneholder. ", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Merking av allergener", + "variants": [ + { + "id": "03f044b0-0c21-4e8d-a8ad-24e9e2382c8e", + "requirementText": "Leverandøren skal kunne tilby allergenfri-mat tilpasset deltakere med ulike matallergier/intoleranser (cøliaki osv). Mat som blir servert skal være merket med hvilke allergener den inneholder. ", + "instruction": "", + "description": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "7247745d-2db6-4166-ba14-d25d37bb5d79", + "type": "Q_CHECKBOX", + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "fc6ab9e8-1cfe-4773-923b-b1b695c4d0d6", + "description": "Leverandøren skal sikre at deres leverandører har en ordning for sluttbehandling av emballasje, hvor emballasjen blir tatt hånd om på miljømessig forsvarlig måte. ", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Emballasje", + "variants": [ + { + "id": "88e93281-34c4-4dfa-a53d-b1af036828d5", + "requirementText": "Leverandøren skal sikre at deres leverandører har en ordning for sluttbehandling av emballasje, hvor emballasjen blir tatt hånd om på miljømessig forsvarlig måte. ", + "instruction": "", + "description": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "10ce2613-b800-4a8b-b5bf-934a68e49498", + "type": "Q_CHECKBOX", + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "270a2732-2d0f-4d18-913b-3764d88db8c6", + "description": "Engangsartikler (tallerkener, kopper, glass og bestikk) skal ikke brukes i forbindelse med matservering. ", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Engangsartikler", + "variants": [ + { + "id": "4235c0fa-17c7-49c1-8b73-65c05bd7b7b0", + "requirementText": "Engangsartikler (tallerkener, kopper, glass og bestikk) skal ikke brukes i forbindelse med matservering. ", + "instruction": "", + "description": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "a83c6e13-2690-4752-8e77-1abcc7f2ab82", + "type": "Q_CHECKBOX", + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "92a011e5-e88a-451f-8f01-fafddb1d3363", + "description": "Leverandøren skal kunne tilby gratis Wi-Fi i fellesarealene tilpasset dagens standard til kvalitet, hastighet og kapasitet ", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Gratis Wi-Fi", + "variants": [ + { + "id": "e340863e-ad73-4b2a-b5a6-dde72873f4bc", + "requirementText": "Leverandøren skal kunne tilby gratis Wi-Fi i fellesarealene tilpasset dagens standard til kvalitet, hastighet og kapasitet ", + "instruction": "", + "description": "", + "useQualification": false, + "useSpesification": true, + "useProduct": false, + "products": [], + "questions": [ + { + "id": "a2577a23-10b5-491a-ab3f-be0c084e7b99", + "type": "Q_CHECKBOX", + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "4276b651-9a2b-4e31-bdfe-ead2597be1ef", + "description": "", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Overnatting", + "variants": [ + { + "id": "3e3640b7-7a5f-4239-a464-89d63e1e3157", + "requirementText": "", + "instruction": "", + "description": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "3c3dd2e0-fdd7-4245-8f66-187ce5ebecf9" + ], + "questions": [] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "b6050698-e4ab-4201-8ad4-53acaa613227", + "title": "Rutiner for gjennomføring av arrangementet (evaluering)", + "description": "", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "variants": [], + "sourceOriginal": null, + "sourceRel": null, + "type": "requirement" + }, + { + "id": "c10a37f4-d674-4ed2-aab3-df3d3119913b", + "description": "", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Registreringsområdet for arrangementet", + "variants": [ + { + "id": "cbc8dc45-d87c-44c3-9c67-78eb2b25a591", + "requirementText": "Leverandøren skal kunne tilby Oppdragsgiver et særskilt område i lokalet for registrering av deltakere, utdeling av program/informasjon m.m. \n", + "instruction": "", + "description": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "3f3b2b08-c88a-406d-9f8a-5242a9524228", + "type": "Q_CHECKBOX", + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "89d0e909-b958-4355-8cfb-5c159e9a8f77", + "description": "Angi varighet dato fra - til på arrangementet", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Varighet på arrangementet", + "variants": [ + { + "id": "d201d12d-556a-46d0-a926-b0379610541e", + "requirementText": "", + "instruction": "", + "description": "", + "useQualification": false, + "useSpesification": true, + "useProduct": false, + "products": [], + "questions": [ + { + "id": "a41feecb-36bd-4867-a322-5ea8c22fb9c3", + "type": "Q_PERIOD_DATE", + "config": { + "fromDate": "2021-09-14T11:03:09.024Z", + "toDate": "2021-09-14T11:03:09.024Z" + }, + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "ccb22e62-be64-4f0b-b1b7-82f831f79e67", + "description": "", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Konferanseteknikk/AV-utstyr", + "variants": [ + { + "id": "a5284dc0-2a1d-4ef5-b31d-d93906d55255", + "requirementText": "", + "instruction": "", + "description": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "2e844dfe-ae06-4321-9518-ce4a25db6c94" + ], + "questions": [ + { + "id": "1d24630b-9400-4e62-b6ee-8ba2d2cc17ef", + "type": "Q_CODELIST", + "config": { + "multipleSelect": false, + "codelist": "13b119a0-a987-44af-baee-9fe10a9d0873" + }, + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "7cf1c22f-968b-46de-9a10-4964fa86fd09", + "description": "", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Tilgjengelighet", + "variants": [ + { + "id": "d15be950-7a33-4e73-bcd3-86f8161cc669", + "requirementText": "", + "instruction": "", + "description": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "2e844dfe-ae06-4321-9518-ce4a25db6c94" + ], + "questions": [ + { + "id": "fd9457d7-2b43-4faa-a35e-80d0fb05acec", + "type": "Q_CODELIST", + "config": { + "multipleSelect": false, + "codelist": "13b119a0-a987-44af-baee-9fe10a9d0873" + }, + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "19146283-62d5-4b27-bdd8-9d65895d957f", + "description": "Overordnet angivelse av hvilket type arrangement som skal gjennomføres", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Type arrangement ", + "variants": [ + { + "id": "4a9af0b3-fba1-4843-9a14-763497e0b712", + "requirementText": "", + "description": "", + "instruction": "Overordnet angivelse av hvilket type arrangement som skal gjennomføres", + "useQualification": false, + "useSpesification": true, + "useProduct": false, + "products": [], + "questions": [ + { + "id": "55a16720-153f-4b7e-ad29-97d14954221e", + "type": "Q_CODELIST", + "config": { + "codelist": "ef491ecb-a816-4dba-a37f-cd63295460de", + "multipleSelect": false + }, + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "21123c75-9306-4919-9a75-03dcf4fbe560", + "description": "", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Oppsett av lokale", + "variants": [ + { + "id": "9fa50193-03a7-41cf-b6b4-2dade56789dd", + "requirementText": "Leverandøren skal sørge for at oppsettet av lokalet er i henhold til......", + "instruction": "Krav knyttet til hvordan det er ønskelig at lokalet settes opp. ", + "description": "", + "useQualification": false, + "useSpesification": false, + "useProduct": true, + "products": [ + "2e844dfe-ae06-4321-9518-ce4a25db6c94" + ], + "questions": [ + { + "id": "ca55653c-efb0-40d6-84ff-851934f00df6", + "type": "Q_CODELIST", + "config": { + "codelist": "78f0af2f-065c-49e0-8083-24c84dca791e", + "multipleSelect": false + }, + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "f885b791-5e36-4ac7-8d60-191d98568171", + "description": "Antall personer som det skal være plass til i rommet", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Antall", + "variants": [ + { + "id": "4585f28b-4ee4-4d2c-bae1-a1a33a460d33", + "requirementText": "Det skal være plass til .....", + "instruction": "", + "description": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "2e844dfe-ae06-4321-9518-ce4a25db6c94" + ], + "questions": [ + { + "id": "b7e66ecd-dd51-4e20-8827-bc8473bc0994", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 0, + "step": 1, + "unit": "GB" + }, + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "7c868ccb-0f45-403c-be14-4371fcb5e45f", + "description": "", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Periode", + "variants": [ + { + "id": "2af645c4-e325-4dd1-9f96-d9359bbb6f1a", + "requirementText": "Lokalet skal være tilgjengelig fra oppnevnt dato.", + "instruction": "", + "description": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "2e844dfe-ae06-4321-9518-ce4a25db6c94" + ], + "questions": [ + { + "id": "c9b560cb-141d-4998-a506-d1d18aad83c8", + "type": "Q_PERIOD_DATE", + "config": { + "fromDate": "2021-09-14T13:01:29.942Z", + "toDate": "2021-09-14T13:01:29.942Z" + }, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "15352f01-d545-49f3-863d-b870ce243d1e", + "type": "Q_TIME", + "config": { + "fromTime": "", + "toTime": "" + }, + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "9700814a-1ef6-4342-8e0a-452a53c47135", + "description": "", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Kvalitet", + "variants": [ + { + "id": "9a0983a7-709c-4103-89a1-a3685f4a4e39", + "requirementText": "", + "instruction": "", + "description": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "2e844dfe-ae06-4321-9518-ce4a25db6c94" + ], + "questions": [ + { + "id": "deb63392-44c8-4b6e-b466-5cc1a4b74c59", + "type": "Q_CODELIST", + "config": { + "multipleSelect": false, + "codelist": "13b119a0-a987-44af-baee-9fe10a9d0873" + }, + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "1c575994-5e33-4126-82ad-2d3a44ca3259", + "title": "Kvalitet", + "description": "", + "requirements": [ + { + "id": "a7dac000-3588-48c8-b307-e833086dcaf2", + "description": "Leverandøren skal sikre at fasilitetene har følgende minimum standard: Alt over det minimumet vil være poenggivende.", + "needId": "1c575994-5e33-4126-82ad-2d3a44ca3259", + "type": "requirement", + "title": "Kvalitet på lokalet", + "variants": [ + { + "id": "e46d2e26-cb31-44f1-8605-be20f8dbda9c", + "requirementText": "Leverandøren skal sikre at fasilitetene har følgende minimum standard: Alt over det minimumet vil være poenggivende.", + "instruction": "", + "description": "", + "useQualification": false, + "useSpesification": true, + "useProduct": true, + "products": [ + "2e844dfe-ae06-4321-9518-ce4a25db6c94" + ], + "questions": [ + { + "id": "d0471564-ebe3-426d-8aea-773171fd69cc", + "type": "Q_CODELIST", + "config": { + "multipleSelect": false, + "codelist": "13b119a0-a987-44af-baee-9fe10a9d0873" + }, + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + } + ], + "type": "need", + "sourceOriginal": null, + "sourceRel": null, + "parent": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694" + }, + { + "id": "637ba097-820c-41de-8550-bc2e829f5f88", + "title": "Overnatting", + "description": "", + "requirements": [ + { + "id": "133ebbd7-0b02-4c4c-a3c3-abb610605f51", + "description": "Leverandøren skal kunne tilby alle type rom som beskrevet under produkter. ", + "needId": "637ba097-820c-41de-8550-bc2e829f5f88", + "type": "requirement", + "title": "Rom ", + "variants": [ + { + "id": "b0bf3967-e962-41c5-a396-97382650b62f", + "requirementText": "", + "instruction": "", + "description": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "e2fe0d0a-849c-4eeb-a57b-2589c7d73e11", + "description": "Leverandøren skal, ved overnatting, være bemannet for inn- og utsjekk samt andre henvendelser 24 timer i døgnet. ", + "needId": "637ba097-820c-41de-8550-bc2e829f5f88", + "type": "requirement", + "title": "Inn- og utsjekk", + "variants": [ + { + "id": "a79caa47-1dce-4dfe-9bc7-d7aad4102e10", + "requirementText": "", + "instruction": "", + "description": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "3c3dd2e0-fdd7-4245-8f66-187ce5ebecf9" + ], + "questions": [] + } + ], + "sourceOriginal": null, + "sourceRel": null + } + ], + "type": "need", + "sourceOriginal": null, + "sourceRel": null, + "parent": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694" + }, + { + "id": "6c47ce09-ea36-4885-9eff-3e0fae08a678", + "title": "Geografisk lokasjon", + "description": "", + "requirements": [ + { + "id": "8e88019b-a0b1-4135-a274-04522267e13e", + "description": "Leverandøren skal kunne til tilby kurs- og konferanse lokalet innenfor minimum 15 km avstand fra respektive....", + "needId": "6c47ce09-ea36-4885-9eff-3e0fae08a678", + "type": "requirement", + "title": "Geografisk lokasjon", + "variants": [ + { + "id": "769b21c5-d375-461f-ace8-4c54279e55e1", + "requirementText": "", + "instruction": "", + "description": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "2ca81c82-c258-4b9c-bacd-7476ade0fb44", + "type": "Q_CODELIST", + "config": { + "multipleSelect": false, + "codelist": "13b119a0-a987-44af-baee-9fe10a9d0873" + }, + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + } + ], + "type": "need", + "sourceOriginal": null, + "sourceRel": null, + "parent": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694" + }, + { + "id": "a9117deb-8924-4974-9dd7-1fa54ea21d03", + "title": "Servering", + "description": "", + "requirements": [ + { + "id": "ce96916c-840c-4840-a473-fe40169893a1", + "description": "", + "needId": "a9117deb-8924-4974-9dd7-1fa54ea21d03", + "type": "requirement", + "title": "Middag", + "variants": [ + { + "id": "d8c8f51f-778b-4690-a927-7ba574f2b602", + "requirementText": "", + "instruction": "", + "description": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "2e844dfe-ae06-4321-9518-ce4a25db6c94" + ], + "questions": [ + { + "id": "bb6b3114-f403-4bf5-9489-2c66854c7ab8", + "type": "Q_CODELIST", + "config": { + "multipleSelect": false, + "codelist": "13b119a0-a987-44af-baee-9fe10a9d0873" + }, + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "c229424d-2a85-42c7-a48d-bc153fd694bc", + "description": "", + "needId": "a9117deb-8924-4974-9dd7-1fa54ea21d03", + "type": "requirement", + "title": "Pausemat", + "variants": [ + { + "id": "f31fafd1-4351-42cd-becd-e6b9c6f08695", + "requirementText": "", + "instruction": "", + "description": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "2e844dfe-ae06-4321-9518-ce4a25db6c94" + ], + "questions": [ + { + "id": "464b88f3-fef3-42c0-842f-95f715bb4043", + "type": "Q_CODELIST", + "config": { + "multipleSelect": false, + "codelist": "13b119a0-a987-44af-baee-9fe10a9d0873" + }, + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "506de38b-1a10-4a3d-bb30-93ff1026d4b5", + "description": "", + "needId": "a9117deb-8924-4974-9dd7-1fa54ea21d03", + "type": "requirement", + "title": "Frokost", + "variants": [ + { + "id": "65844762-c8cc-44a5-87f2-042285019eba", + "requirementText": "", + "instruction": "", + "description": "", + "useQualification": false, + "useSpesification": false, + "useProduct": true, + "products": [ + "2e844dfe-ae06-4321-9518-ce4a25db6c94", + "9e28988f-0174-42d5-ab07-966edcbe0c3f", + "5df73405-a011-4020-a137-5f732c516917", + "8a144c25-06a3-4dcf-a294-ab601b7967d1", + "3c3dd2e0-fdd7-4245-8f66-187ce5ebecf9", + "7120ab97-3451-4955-8989-b0b82b26a59d", + "9c47622b-2463-441e-afc1-0b12554cc4be", + "287cb3ef-4912-4f26-ab90-e8935958cf9f", + "df9e7132-fd8f-41c8-a1fc-2b50d6286d89" + ], + "questions": [ + { + "id": "f5d1cccf-5ad0-4ac2-95ba-4780be42032f", + "type": "Q_CODELIST", + "config": { + "codelist": "13b119a0-a987-44af-baee-9fe10a9d0873", + "multipleSelect": false + }, + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "f2af86d0-64c9-4a5f-9bab-b9d83d75773a", + "description": "Leverandøren skal kunne tilby lunsj.", + "needId": "a9117deb-8924-4974-9dd7-1fa54ea21d03", + "type": "requirement", + "title": "Lunsj", + "variants": [ + { + "id": "449112de-7c31-41a7-bc4f-3183c47f6a81", + "requirementText": "", + "instruction": "", + "description": "", + "useQualification": false, + "useSpesification": true, + "useProduct": false, + "products": [ + "2e844dfe-ae06-4321-9518-ce4a25db6c94" + ], + "questions": [] + }, + { + "id": "a77c619c-3233-4338-ad3e-d6fba6729229", + "requirementText": "", + "instruction": "", + "description": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "2e844dfe-ae06-4321-9518-ce4a25db6c94" + ], + "questions": [ + { + "id": "5a7a6177-5191-4c9f-ac70-08f04543c2d7", + "type": "Q_CODELIST", + "config": { + "multipleSelect": false, + "codelist": "13b119a0-a987-44af-baee-9fe10a9d0873" + }, + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + } + ], + "type": "need", + "sourceOriginal": null, + "sourceRel": null, + "parent": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694" + }, + { + "id": "7ec994b1-c2ba-405e-b236-abc4265d06bd", + "title": "Parkering", + "description": "", + "requirements": [ + { + "id": "f079b0e1-3995-48b2-94ff-b831d0991bf6", + "description": "Leverandøren skal tilby parkering tilknyttet kurs- og konferanselokalet. ", + "needId": "7ec994b1-c2ba-405e-b236-abc4265d06bd", + "type": "requirement", + "title": "Parkeringsmuligheter", + "variants": [ + { + "id": "413cd2bf-d8c4-49f7-906c-4d41feac06ba", + "requirementText": "", + "instruction": "", + "description": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "781b81a1-a7de-4416-b537-77119023f329", + "description": "Leverandøren skal tilby", + "needId": "7ec994b1-c2ba-405e-b236-abc4265d06bd", + "type": "requirement", + "title": "Parkeringsmuligheter(evaluering)", + "variants": [ + { + "id": "1b99fcd2-b08e-472e-a29f-c585e4435a94", + "requirementText": "", + "instruction": "", + "description": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "d0394924-8c85-40cb-8eb4-cc2370c235e3", + "type": "Q_CODELIST", + "config": { + "multipleSelect": false, + "codelist": "13b119a0-a987-44af-baee-9fe10a9d0873" + }, + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + } + ], + "type": "need", + "sourceOriginal": null, + "sourceRel": null, + "parent": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694" + }, + { + "id": "238c13a1-821b-426a-b9c8-bff877ce2c6b", + "title": "Tilgjengelighet(Universell utforming)", + "description": "", + "requirements": [], + "type": "need", + "sourceOriginal": null, + "sourceRel": null, + "parent": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694" + }, + { + "id": "55e965f7-2fce-41bb-9abf-2b51797dffa6", + "title": "Velvære-/spaområde med basseng", + "description": "", + "requirements": [], + "type": "need", + "parent": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "2ae26242-cdce-4953-a564-584878437a07", + "title": "Velvære-/spaområde", + "description": "", + "requirements": [], + "type": "need", + "sourceOriginal": null, + "sourceRel": null, + "parent": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694" + }, + { + "id": "d471da92-541a-4ccd-9bd3-a10a5af2b3c2", + "title": "Krav til tjenesten", + "description": "", + "requirements": [], + "type": "need", + "sourceOriginal": null, + "sourceRel": null, + "parent": "" + } + ], + "products": [ + { + "id": "2e844dfe-ae06-4321-9518-ce4a25db6c94", + "title": "Plenumsal", + "description": "", + "parent": "", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "9e28988f-0174-42d5-ab07-966edcbe0c3f", + "title": "Grupperom", + "description": "", + "parent": "", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "5df73405-a011-4020-a137-5f732c516917", + "title": "Møterom", + "description": "", + "parent": "", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "8a144c25-06a3-4dcf-a294-ab601b7967d1", + "title": "Utstillingsareal", + "description": "", + "parent": "", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "3c3dd2e0-fdd7-4245-8f66-187ce5ebecf9", + "title": "Rom", + "description": "", + "parent": "", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "60bf3d82-6e8c-4974-bd4a-66b90a49233d", + "title": "Dobbeltrom", + "description": "", + "parent": "3c3dd2e0-fdd7-4245-8f66-187ce5ebecf9", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "4e327286-33a0-402b-b16e-e578d1192434", + "title": "Enkeltrom", + "description": "", + "parent": "3c3dd2e0-fdd7-4245-8f66-187ce5ebecf9", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "09adb798-f9c8-4446-9058-eab4c2068e91", + "title": "Twin-rom", + "description": "", + "parent": "3c3dd2e0-fdd7-4245-8f66-187ce5ebecf9", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "6c66a44d-abb6-40f2-ae87-3900c21629a8", + "title": "3-sengsrom", + "description": "", + "parent": "3c3dd2e0-fdd7-4245-8f66-187ce5ebecf9", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "01637bb0-b5de-4264-972e-50933536d1fd", + "title": "Familierom", + "description": "", + "parent": "3c3dd2e0-fdd7-4245-8f66-187ce5ebecf9", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "3337a989-04a1-4a2f-bb16-ee849df81b83", + "title": "Juniorsuite", + "description": "", + "parent": "3c3dd2e0-fdd7-4245-8f66-187ce5ebecf9", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "ba15a975-695a-4c3f-b33f-558c08610280", + "title": "Suite", + "description": "", + "parent": "3c3dd2e0-fdd7-4245-8f66-187ce5ebecf9", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "7120ab97-3451-4955-8989-b0b82b26a59d", + "title": "Standard innvendig lugar", + "description": "", + "parent": "", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "9c47622b-2463-441e-afc1-0b12554cc4be", + "title": "Standard lugar med havutsikt", + "description": "", + "parent": "", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "287cb3ef-4912-4f26-ab90-e8935958cf9f", + "title": "Suite lugar innvendig", + "description": "", + "parent": "", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "df9e7132-fd8f-41c8-a1fc-2b50d6286d89", + "title": "Suite lugar med havutsikt", + "description": "", + "parent": "", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "d32258f6-992b-4615-b9a7-71f6f34cb2af", + "title": "Frokost", + "description": "", + "parent": "", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "37a62541-2359-419e-ba90-1f06ad614f33", + "title": "Lunsj", + "description": "", + "parent": "", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "d0208128-40ef-4bb7-b93a-217ed0970860", + "title": "Middag", + "description": "", + "parent": "", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "907777b3-d684-4280-b983-f4dcf66f91b6", + "title": "Pausemat", + "description": "", + "parent": "", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + } + ], + "codelist": [ + { + "id": "13b119a0-a987-44af-baee-9fe10a9d0873", + "title": "Tilbudets språk", + "description": "", + "codes": [ + { + "id": "6c80ac68-a6ba-4cf1-b053-7503993ccc1f", + "title": "Norsk", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "d44377d5-379f-4d7c-b3de-117cbf83c69b", + "title": "Nordisk", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "1aede443-674b-43ab-8191-d6abdab63a2b", + "title": "Engelsk", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + } + ], + "type": "codelist", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "ef491ecb-a816-4dba-a37f-cd63295460de", + "title": "Formål", + "description": "", + "codes": [ + { + "id": "4c4bead9-41cd-4df2-9380-1fc9c07c3dc6", + "title": "Kongress", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "5942cd33-d5fe-409c-b491-850a411e2c58", + "title": "Konferanse", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "705098de-78c7-49e5-909c-6bd64bce0339", + "title": "Dagmøte", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "046419ad-5e93-46cb-9e4f-e20b9b843843", + "title": "Teambuilding", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "7044155a-35e9-4a9a-acd6-26e914a908b4", + "title": "Kick-off/oppstartsmøte", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "51b1d912-06c5-45c6-8d0e-ecbd2f073264", + "title": "Lansering", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "7d3caa8a-e7b6-459c-b705-55c6f0371878", + "title": "Workshop", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "fae31a63-20bf-468c-9084-3084b46af929", + "title": "Årsfest/samling", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "45153d7c-1267-479a-bfdd-27bd7e3d75cd", + "title": "Møteserie", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + } + ], + "type": "codelist", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "b0b9509e-bcf2-453c-8a6e-80c79442baab", + "title": "Konferanseteknikk/AV-utstyr", + "description": "", + "codes": [ + { + "id": "86e31971-73eb-43b2-94c7-65cf692b8ba4", + "title": "Trådløs mikrofon", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "bcd9f829-48a2-453b-8c65-4055a8025718", + "title": "Tradisjonell mikrofon", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "77450ff2-43a8-4998-98e2-1c19ad85d659", + "title": "Lyd forsterker", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "550300ca-fc1a-40f3-a7fd-3dfe0c31673b", + "title": "Mikser", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "4a695437-eae0-4e1f-b5a0-16039b17252c", + "title": "Prosjektor", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "083f26ec-9f11-4b24-a7d7-cbdd31d6d239", + "title": "Overgang(VGA-HDMI)", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "ca9ff3ea-7844-4b78-b7a3-27a415a13bd8", + "title": "Whiteboard", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "b02d28ab-677a-4d87-acd6-b7c86e6f451d", + "title": "Streaming", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "87920962-8325-438f-b22b-fb3870ba44b0", + "title": "Trådløs høyttaler", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "6345556c-7f1e-4996-b3f4-4f7bf995e6e7", + "title": "Konferansetelefon", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "34eb82d7-0b09-4f32-abe6-da4deb32c3dd", + "title": "Lyskaster", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "cc4f1cbf-8abe-4407-a684-09a116718da5", + "title": "Stemningsbelysning", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "8e126ca8-eff6-4bf0-ab85-ed3313b09908", + "title": "Talerstol", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "d7164d68-98f1-41b2-93cd-b26cd20518d7", + "title": "Skjermer", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "d3b4bf14-4f48-4517-b0fc-c3af6ff58799", + "title": "PC", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + } + ], + "type": "codelist", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "95670605-95b1-4657-a342-8ef7be910931", + "title": "Allergener", + "description": "", + "codes": [ + { + "id": "3192cc48-76a0-499f-a74e-90996dcf9d9a", + "title": "Glutenholdig korn", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "43636d36-11c0-4ce0-af43-85e3399cdabd", + "title": "Skalldyr", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "f67878f0-16e6-4be5-a336-a2a88f79ae7b", + "title": "Egg", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "e91dd913-95f1-4d7a-823d-6b414ee9a4b5", + "title": "Fisk", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "711b6ccb-bd3d-4e04-9a04-77f7d47c8022", + "title": "Peanøtter", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "14bba7a4-5ce6-47ce-9ca4-0318e6cb62ef", + "title": "Soya", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "39b7b38f-74b9-421e-ad92-52a23005e9a5", + "title": "Melk(laktose)", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "d0d089ef-0d24-4f78-ad5e-8964a25a98a0", + "title": "Nøtter", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "697d85f2-c6ef-49af-8e34-00c5d43c3ee2", + "title": "Selleri", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "bb8fd9bd-e42b-4505-9a6d-28a130439c78", + "title": "Sennep", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "0b95113d-6ea1-49a1-abb7-853b9ee1aa56", + "title": "Sesamfrø", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "02e7a40e-c91a-4226-a6d6-667d6565364c", + "title": "Svoveldioksid og sulfitt", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "40617761-3e2e-4a3c-a66d-ddd7a0d44b12", + "title": "Lupin", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "a09e6731-9c41-464a-9d93-e8d3abd77447", + "title": "Bløtdyr", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + } + ], + "type": "codelist", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "f2f98363-79c0-4b9d-b26f-16687af69b06", + "title": "Frokost", + "description": "", + "codes": [ + { + "id": "88e65b9b-6598-44f6-9745-a694ea5d7f03", + "title": "Forkost buffet", + "description": "", + "type": "code", + "parent": "", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "b77af015-dd37-4844-919e-03f1454085e2", + "title": "Engelsk frokost", + "description": "", + "type": "code", + "parent": "", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "574e3302-4c0d-4711-bdbc-ecbb942db29e", + "title": "Amerikansk frokost", + "description": "", + "type": "code", + "parent": "", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "ad3cd55b-a51f-46ea-9f27-1a54f6ad5c8d", + "title": "Kontinental frokost", + "description": "", + "type": "code", + "parent": "", + "sourceOriginal": null, + "sourceRel": null + } + ], + "type": "codelist", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "8d5de8e2-da25-4eeb-92ad-f3d214a4ec1d", + "title": "Lunsj", + "description": "", + "codes": [ + { + "id": "abf6d89d-2802-477e-a3be-1eb762fc0cae", + "title": "Lunsj buffet", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "9b60a48c-52ac-493c-85cd-e0b0ec521e5e", + "title": "2-retters lunsj", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "9e3b4d35-8250-472e-9522-b525edd2d55b", + "title": "3-retters lunsj", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "acf45f1d-7542-4f84-8e1a-54164c886446", + "title": "Alkoholfri drikke", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "3ad929ac-436a-4740-9128-251057b884db", + "title": "Mineralvann", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "607fa31f-1c23-48b5-9111-2f58cae78bc4", + "title": "Kaffe", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "9d4c3eb2-db0e-48bb-a701-091eee29a954", + "title": "Te", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "eb818e24-9526-4cd8-b1de-d6e498b1ed0f", + "title": "Vegetar", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "1f8ffc9e-b08b-4637-b5d2-3166d25b2dc3", + "title": "Vegansk", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "0ba084f6-4921-4daa-be9b-7b51eb18b656", + "title": "Økologisk", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "a1cf049d-5f9e-404f-8fe7-f79da9b6c306", + "title": "Tapas", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + } + ], + "type": "codelist", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "01d3ed35-8bf0-4d0f-8119-4b8e149daeb1", + "title": "Middag", + "description": "", + "codes": [ + { + "id": "ae93cdd5-2054-42e6-b861-b4d962c0933d", + "title": "Middags buffet", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "973031b0-2f3a-43b3-9dae-f9fe5dddf59d", + "title": "2-retters middag", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "08b63d3f-4387-47d1-970b-c5339c5693c0", + "title": "3-retters middag", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "6a679945-e679-4b17-9269-82dae32f0ae4", + "title": "5-retters middag", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "2aad43f0-ca33-42f3-a037-a7c2d32f2eb0", + "title": "Alkoholfri drikke", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "1a259a0e-ea96-4bff-a5c6-60fa5bd95bae", + "title": "Mineralvann", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "36dd7357-4dd4-4708-a8f2-9fb591cc3e60", + "title": "Kaffe", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "0951e3ca-c46a-455f-9e9c-390db9cf4971", + "title": "Te", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "d99fbcb3-d2c2-46b4-ae72-80f1e23bc212", + "title": "Vegetar", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "1943b7c2-4bd7-4045-a41b-00cd3cd368dc", + "title": "Vegansk", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "2b078d69-3416-4bbb-8dfd-31084766464d", + "title": "Økologisk", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "5c665b48-655b-4289-b25e-3b2e766dc727", + "title": "Tapas", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + } + ], + "type": "codelist", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "f5ec09bf-9e0d-4143-8362-3fbbe41aaf4c", + "title": "Pausemat", + "description": "", + "codes": [ + { + "id": "718cfcce-7121-4201-b2aa-2f214bafe114", + "title": "Smoothie", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "48a0bb4a-9993-4e4d-930f-4e10f718059a", + "title": "Mineralvann", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "15ad6eff-1c75-45a6-88ed-61fa54bd0294", + "title": "Nøtter", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "27a2011a-6640-492b-823b-f0c61ff2892a", + "title": "Wraps", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "2b155664-7d8b-44cc-851d-bed6d026fb62", + "title": "Smørbrød", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "01163c8a-17bc-4ca8-8d87-beb4db7167d6", + "title": "Kaffe", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "88102cc1-e576-4ea0-af6a-0d7d43fa6b0f", + "title": "Te", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "a5100b16-162b-4426-ac93-8cc53b7a8368", + "title": "Bakst", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "1f533bc5-23b8-40fe-852f-a2e4eb980f2e", + "title": "Tapas", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + } + ], + "type": "codelist", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "9b2bf47f-dd51-4ddd-88eb-ef94f7e31d8e", + "title": "Tilgjengelighet", + "description": "", + "codes": [ + { + "id": "cd936431-fca6-4afb-981f-d0a8b6a86908", + "title": "Bevegelse", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "e9cf0496-72d4-4090-9d54-cf908715a697", + "title": "Syn", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "cc56751f-84a6-42cc-8e0c-5b115e669a8e", + "title": "Hørsel", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "ab4e3b15-5043-480d-bc33-721ffb95c4e9", + "title": "Tale", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "408095f6-57f5-44df-b222-d581a2cf79e1", + "title": "Teleslynge", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + } + ], + "type": "codelist", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "e240c6a7-e948-463b-94ab-4b6ca642a70d", + "title": "Parkering", + "description": "", + "codes": [ + { + "id": "1affc1fb-52e3-4c4b-9e88-405723f9bf7c", + "title": "Gratis parkering på tomt", + "description": "", + "type": "code", + "parent": "", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "0ff41004-678e-4f29-9b30-179618c4e227", + "title": "Gratis parkering i eget parkeringshus", + "description": "", + "type": "code", + "parent": "", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "b045ae6c-0af4-47e3-8e47-bf0e5cc26e66", + "title": "Gratis parkering på offentlig sted utendørs", + "description": "", + "type": "code", + "parent": "", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "a3b0af58-765e-4ca2-878f-21d6b9c8c4bb", + "title": "Gratis gateparkering", + "description": "", + "type": "code", + "parent": "", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "8ca4befa-dd87-421a-bd56-f2fac0b31052", + "title": "Gratis EL-bil parkering", + "description": "", + "type": "code", + "parent": "", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "5c215d92-0b3b-4370-8e12-c93d5456c2dd", + "title": "Betalt parkering i parkeringshus", + "description": "", + "type": "code", + "parent": "", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "66cb3dfa-874e-4d15-968c-44bcb00f8d10", + "title": "Betalt parkering på offentlig sted utendørs", + "description": "", + "type": "code", + "parent": "", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "33530731-bfee-4cfe-9394-45abd4018c59", + "title": "Betalt gateparkering", + "description": "", + "type": "code", + "parent": "", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "ad3df5d9-583d-4684-ba22-8b95fe743b7e", + "title": "Betalt EL-bil parkering", + "description": "", + "type": "code", + "parent": "", + "sourceOriginal": null, + "sourceRel": null + } + ], + "type": "codelist", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "bb9b6d45-f6ad-43ba-9e12-95ed2fa7dd36", + "title": "Kvalitet", + "description": "", + "codes": [], + "type": "codelist", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "78f0af2f-065c-49e0-8083-24c84dca791e", + "title": "Romoppsett", + "description": "", + "codes": [], + "type": "codelist", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "d0f36f70-2440-4ec2-9068-35dabc99a6ff", + "title": "Geografisk plassering", + "description": "", + "codes": [ + { + "id": "830f07c4-f401-498a-a21f-ece269705322", + "title": "Oslo", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "74cb0c68-3e55-4f9a-a19f-c1c3319d7f3a", + "title": "Gardermoen", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + } + ], + "type": "codelist", + "sourceOriginal": null, + "sourceRel": null + } + ], + "tags": [], + "inheritedBanks": [], + "publishedDate": "2021-09-23T09:36:13+02:00", + "version": 1, + "projectId": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "type": "bank", + "publications": [], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "4657069c-2893-4fde-b668-1cbf7cc03ce2", + "title": "Kurs- og konferansetjenester [ASI/2]", + "description": "", + "needs": [ + { + "id": "4556f65b-da22-45f6-b884-e072d9a386ae", + "title": "Informasjon om bestiller", + "description": "Kontaktinformasjon til bestiller og informasjon om virksomheten.", + "requirements": [ + { + "id": "d9025e30-d4e1-4ced-9245-288f4c1e7909", + "title": "Kontaktinformasjon til bestiller", + "description": "", + "needId": "4556f65b-da22-45f6-b884-e072d9a386ae", + "type": "requirement", + "variants": [ + { + "id": "609aeab3-9d54-4ec6-aa65-2ea50a66bfde", + "requirementText": "Navn, telefonnummer, e-postadresse til bestiller. ", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "info", + "description": "Navn, telefonnummer, e-postadresse til bestiller. " + } + ], + "tags": [], + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null + }, + { + "id": "becaae37-b586-4e12-9410-b915c010b280", + "title": "Informasjon om virksomheten som bestiller. ", + "description": "", + "needId": "4556f65b-da22-45f6-b884-e072d9a386ae", + "type": "requirement", + "variants": [ + { + "id": "3993fff6-2ba2-4e5d-ac65-10f1639b4b09", + "requirementText": "Navn på virksomhet, organisasjonsnummer, faktureringsadresse, kontaktinformasjon. ", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "info", + "description": "Navn på virksomhet, organisasjonsnummer, faktureringsadresse, kontaktinformasjon. " + } + ], + "tags": [], + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null + }, + { + "id": "ee93a4a7-5c57-44ca-84e8-486211496578", + "title": "Registering og informasjon", + "description": "Oppdragsgiver har behov for et særskilt område for registrering av deltakere og utgivelse av informasjon, m.m.", + "requirements": [ + { + "id": "e29f4e63-ca0e-41fb-afa2-db70dd64793f", + "title": "Registering", + "description": "", + "needId": "ee93a4a7-5c57-44ca-84e8-486211496578", + "type": "requirement", + "variants": [ + { + "id": "b75d80a0-da17-421d-8d07-64291598fb0d", + "requirementText": "Område for registrering", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "dd856594-0625-4303-ae3d-97ae7223fb42", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Område for registrering" + } + ], + "tags": [], + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null + }, + { + "id": "c58acbea-6fec-4057-a185-bf7a508707eb", + "title": "Informasjon", + "description": "", + "needId": "ee93a4a7-5c57-44ca-84e8-486211496578", + "type": "requirement", + "variants": [ + { + "id": "d8c5b90f-f59c-4bb6-a021-c1ade17fe87a", + "requirementText": "Område for utgivelse av informasjon", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "35df1c13-0ac5-4bac-b1dd-e3a9297e0ccd", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Område for utgivelse av informasjon" + } + ], + "tags": [], + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null + }, + { + "id": "d471da92-541a-4ccd-9bd3-a10a5af2b3c2", + "title": "Krav til tjenesten", + "description": "", + "requirements": [], + "type": "need", + "sourceOriginal": null, + "sourceRel": null, + "parent": "" + }, + { + "id": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "title": "Kurs- og konferansefasiliteter", + "description": "", + "requirements": [ + { + "id": "22a98a48-5edc-4eff-859b-173475190d73", + "description": "Leverandøren skal ha dedikert personell tilgjengelig som kan bistå før og under arrangementet. Tilgjengelig personell må ha høy grad av service og kunnskap om AV utstyr. Bistand skal være inkludert i prisen.", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Bistand ", + "variants": [ + { + "id": "fa9b5e4c-c364-432b-ad66-3ca2a3748ed0", + "requirementText": "Leverandøren skal ha dedikert personell tilgjengelig som kan bistå før og under arrangementet. Tilgjengelig personell må ha høy grad av service og kunnskap om AV utstyr. Bistand skal være inkludert i prisen.", + "description": "", + "instruction": "", + "useQualification": false, + "useSpesification": true, + "useProduct": false, + "products": [], + "questions": [] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "baafab82-4bc0-46af-8d86-803005da0a5e", + "description": "Leverandøren skal kunne tilby mat tilpasset gjester med spesielle krav p.g.a. intoleranse, religion/livsstil etc. Leverandør skal kunne informere gjester om hvilke råvarer som er brukt i retter som serveres.", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Spesielle behov", + "variants": [ + { + "id": "9db4e071-0bec-44fd-a464-b01edc779485", + "requirementText": "Leverandøren skal kunne tilby mat tilpasset gjester med spesielle krav p.g.a. intoleranse, religion/livsstil etc. Leverandør skal kunne informere gjester om hvilke råvarer som er brukt i retter som serveres.", + "description": "", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "cb48b8f2-4e47-4f2d-ba7a-21fbc7be5bfc", + "description": "Leverandøren skal tilby avlastningsrom som skal kunne fungere som grupperom.", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Avlastningsrom", + "variants": [ + { + "id": "9a83064e-317d-4ca9-826b-62c77f83ec2f", + "requirementText": "Leverandøren skal tilby avlastningsrom som skal kunne fungere som grupperom.", + "instruction": "", + "description": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "18f71082-b906-4574-898a-98544522ad92", + "description": "Leverandøren skal, ved overnatting, være bemannet for inn- og utsjekk samt andre henvendelser 24 timer i døgnet. ", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Inn-/ utsjekk", + "variants": [ + { + "id": "6e2ab18c-6055-4240-9d56-07f5e8d42118", + "requirementText": "Leverandøren skal, ved overnatting, være bemannet for inn- og utsjekk samt andre henvendelser 24 timer i døgnet. ", + "instruction": "", + "description": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "26de09d1-7f25-40b6-a9e9-eb36aa2e9e7d", + "description": "Leverandøren skal besvare alle henvendelser så hurtig som mulig og minimum innen 1 virkedag. Henvendelser skal besvares senest samme dag ved henvendelse før kl. 14:00. Ved henvendelse etter kl. 14:00, skal det besvares innen kl. 12:00 neste dag. Dette gjelder i virkedager. Spesifisere at dette gjelder under arrangement/kontraktsperioden", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Responstid", + "variants": [ + { + "id": "600ea1ee-823b-45a9-ab35-a304245dab9d", + "requirementText": "Leverandøren skal besvare alle henvendelser så hurtig som mulig og minimum innen 1 virkedag. Henvendelser skal besvares senest samme dag ved henvendelse før kl. 14:00. Ved henvendelse etter kl. 14:00, skal det besvares innen kl. 12:00 neste dag. Dette gjelder i virkedager. Spesifisere at dette gjelder under arrangement/kontraktsperioden.", + "instruction": "", + "useProduct": false, + "description": "", + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "fc15fd24-a8c4-460f-943b-98b183dce4a5", + "description": "Angi ønsket geografisk område ved behov(evaluering)", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Geografisk område", + "variants": [ + { + "id": "e2f366ce-5c67-4b4c-9252-0ba0dbbbff32", + "requirementText": "Leverandøren skal kunne tilby kurs- og konferanselokalet innenfor angitt geografisk lokalisering. ", + "instruction": "", + "description": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "2ad1d3fa-cf8e-4c5e-a8d8-f08ced852d54", + "description": "Angi antall deltakere + arrangør for arrangementet", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Størrelse på arrangementet", + "variants": [ + { + "id": "e114f278-a330-4529-8793-7cab692f5f5a", + "requirementText": "", + "instruction": "", + "description": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "4507036e-66dd-426a-80fb-f2881b2e7c6a", + "type": "Q_TEXT", + "config": { + "max": 0 + }, + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "3a00c1c0-9658-4cf8-8b90-a2bd9b1abcf6", + "description": "Leverandøren skal ha dedikert og fast kontaktperson(er) til respektive Oppdragsgivere under kontraktens varighet. ", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Fast kontaktperson", + "variants": [ + { + "id": "c6f2caf2-d643-4039-9c2c-ead0a9188a99", + "requirementText": "Leverandøren skal ha dedikert og fast kontaktperson(er) til respektive Oppdragsgivere under kontraktens varighet. ", + "instruction": "", + "description": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "fd969be5-a493-44f5-97d7-4d47d6a4758f", + "description": "Leverandøren skal kunne tilby vegetarmat i henhold til Oppdragsgivers behov. ", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Vegetarmat", + "variants": [ + { + "id": "f387b7e1-7c73-44b1-b42f-20b90aeffaef", + "requirementText": "Leverandøren skal kunne tilby vegetarmat i henhold til Oppdragsgivers behov. ", + "instruction": "", + "description": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "9e775a7c-cb61-43cc-a6d9-6b220dbf7160", + "description": "All mat skal være merket iht. gjeldende forskrifter for matmerking. ", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Mat og drikke", + "variants": [ + { + "id": "f3f637eb-9b64-44b2-8097-a4ba5d0fcd06", + "requirementText": "All mat skal være merket iht. gjeldende forskrifter for matmerking. ", + "instruction": "", + "description": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "c1fe72f2-eadd-4d22-9bab-aad14a495b32", + "description": "Leverandøren skal kunne tilby allergenfri-mat tilpasset deltakere med ulike matallergier/intoleranser (cøliaki osv). Mat som blir servert skal være merket med hvilke allergener den inneholder. ", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Merking av allergener", + "variants": [ + { + "id": "03f044b0-0c21-4e8d-a8ad-24e9e2382c8e", + "requirementText": "Leverandøren skal kunne tilby allergenfri-mat tilpasset deltakere med ulike matallergier/intoleranser (cøliaki osv). Mat som blir servert skal være merket med hvilke allergener den inneholder. ", + "instruction": "", + "description": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "fc6ab9e8-1cfe-4773-923b-b1b695c4d0d6", + "description": "Leverandøren skal sikre at deres leverandører har en ordning for sluttbehandling av emballasje, hvor emballasjen blir tatt hånd om på miljømessig forsvarlig måte. ", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Emballasje", + "variants": [ + { + "id": "88e93281-34c4-4dfa-a53d-b1af036828d5", + "requirementText": "Leverandøren skal sikre at deres leverandører har en ordning for sluttbehandling av emballasje, hvor emballasjen blir tatt hånd om på miljømessig forsvarlig måte. ", + "instruction": "", + "description": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "270a2732-2d0f-4d18-913b-3764d88db8c6", + "description": "Engangsartikler (tallerkener, kopper, glass og bestikk) skal ikke brukes i forbindelse med matservering. ", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Engangsartikler", + "variants": [ + { + "id": "4235c0fa-17c7-49c1-8b73-65c05bd7b7b0", + "requirementText": "Engangsartikler (tallerkener, kopper, glass og bestikk) skal ikke brukes i forbindelse med matservering. ", + "instruction": "", + "description": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "92a011e5-e88a-451f-8f01-fafddb1d3363", + "description": "Leverandøren skal kunne tilby gratis Wi-Fi i fellesarealene tilpasset dagens standard til kvalitet, hastighet og kapasitet ", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Gratis Wi-Fi", + "variants": [ + { + "id": "e340863e-ad73-4b2a-b5a6-dde72873f4bc", + "requirementText": "Leverandøren skal kunne tilby gratis Wi-Fi i fellesarealene tilpasset dagens standard til kvalitet, hastighet og kapasitet ", + "instruction": "", + "description": "", + "useQualification": false, + "useSpesification": true, + "useProduct": false, + "products": [], + "questions": [] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "4276b651-9a2b-4e31-bdfe-ead2597be1ef", + "description": "", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Overnatting", + "variants": [ + { + "id": "3e3640b7-7a5f-4239-a464-89d63e1e3157", + "requirementText": "", + "instruction": "", + "description": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "3c3dd2e0-fdd7-4245-8f66-187ce5ebecf9" + ], + "questions": [] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "b6050698-e4ab-4201-8ad4-53acaa613227", + "title": "Rutiner for gjennomføring av arrangementet (evaluering)", + "description": "", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "variants": [], + "sourceOriginal": null, + "sourceRel": null, + "type": "requirement" + }, + { + "id": "c10a37f4-d674-4ed2-aab3-df3d3119913b", + "description": "", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Registreringsområdet for arrangementet", + "variants": [ + { + "id": "cbc8dc45-d87c-44c3-9c67-78eb2b25a591", + "requirementText": "Leverandøren skal kunne tilby Oppdragsgiver et særskilt område i lokalet for registrering av deltakere, utdeling av program/informasjon m.m. \n", + "instruction": "", + "description": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "89d0e909-b958-4355-8cfb-5c159e9a8f77", + "description": "Angi varighet dato fra - til på arrangementet", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Varighet på arrangementet", + "variants": [ + { + "id": "d201d12d-556a-46d0-a926-b0379610541e", + "requirementText": "", + "instruction": "", + "description": "", + "useQualification": false, + "useSpesification": true, + "useProduct": false, + "products": [], + "questions": [ + { + "id": "a41feecb-36bd-4867-a322-5ea8c22fb9c3", + "type": "Q_PERIOD_DATE", + "config": { + "fromDate": "2021-09-14T11:03:09.024Z", + "toDate": "2021-09-14T11:03:09.024Z" + }, + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "ccb22e62-be64-4f0b-b1b7-82f831f79e67", + "description": "", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Konferanseteknikk/AV-utstyr", + "variants": [ + { + "id": "a5284dc0-2a1d-4ef5-b31d-d93906d55255", + "requirementText": "", + "instruction": "", + "description": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "2e844dfe-ae06-4321-9518-ce4a25db6c94" + ], + "questions": [ + { + "id": "1d24630b-9400-4e62-b6ee-8ba2d2cc17ef", + "type": "Q_CODELIST", + "config": { + "multipleSelect": false, + "codelist": "13b119a0-a987-44af-baee-9fe10a9d0873" + }, + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "7cf1c22f-968b-46de-9a10-4964fa86fd09", + "description": "", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Tilgjengelighet", + "variants": [ + { + "id": "d15be950-7a33-4e73-bcd3-86f8161cc669", + "requirementText": "", + "instruction": "", + "description": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "2e844dfe-ae06-4321-9518-ce4a25db6c94" + ], + "questions": [ + { + "id": "fd9457d7-2b43-4faa-a35e-80d0fb05acec", + "type": "Q_CODELIST", + "config": { + "multipleSelect": false, + "codelist": "13b119a0-a987-44af-baee-9fe10a9d0873" + }, + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "19146283-62d5-4b27-bdd8-9d65895d957f", + "description": "Overordnet angivelse av hvilket type arrangement som skal gjennomføres", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Type arrangement ", + "variants": [ + { + "id": "4a9af0b3-fba1-4843-9a14-763497e0b712", + "requirementText": "", + "description": "", + "instruction": "Overordnet angivelse av hvilket type arrangement som skal gjennomføres", + "useQualification": false, + "useSpesification": true, + "useProduct": false, + "products": [], + "questions": [ + { + "id": "55a16720-153f-4b7e-ad29-97d14954221e", + "type": "Q_CODELIST", + "config": { + "codelist": "ef491ecb-a816-4dba-a37f-cd63295460de", + "multipleSelect": false + }, + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "21123c75-9306-4919-9a75-03dcf4fbe560", + "description": "", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Oppsett av lokale", + "variants": [ + { + "id": "9fa50193-03a7-41cf-b6b4-2dade56789dd", + "requirementText": "Leverandøren skal sørge for at oppsettet av lokalet er i henhold til......", + "instruction": "Krav knyttet til hvordan det er ønskelig at lokalet settes opp. ", + "description": "", + "useQualification": false, + "useSpesification": false, + "useProduct": true, + "products": [ + "2e844dfe-ae06-4321-9518-ce4a25db6c94" + ], + "questions": [ + { + "id": "ca55653c-efb0-40d6-84ff-851934f00df6", + "type": "Q_CODELIST", + "config": { + "codelist": "78f0af2f-065c-49e0-8083-24c84dca791e", + "multipleSelect": false + }, + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "f885b791-5e36-4ac7-8d60-191d98568171", + "description": "Antall personer som det skal være plass til i rommet", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Antall", + "variants": [ + { + "id": "4585f28b-4ee4-4d2c-bae1-a1a33a460d33", + "requirementText": "Det skal være plass til .....", + "instruction": "", + "description": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "2e844dfe-ae06-4321-9518-ce4a25db6c94" + ], + "questions": [ + { + "id": "b7e66ecd-dd51-4e20-8827-bc8473bc0994", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 0, + "step": 1, + "unit": "GB" + }, + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "7c868ccb-0f45-403c-be14-4371fcb5e45f", + "description": "", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Periode", + "variants": [ + { + "id": "2af645c4-e325-4dd1-9f96-d9359bbb6f1a", + "requirementText": "Lokalet skal være tilgjengelig fra oppnevnt dato.", + "instruction": "", + "description": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "2e844dfe-ae06-4321-9518-ce4a25db6c94" + ], + "questions": [ + { + "id": "c9b560cb-141d-4998-a506-d1d18aad83c8", + "type": "Q_PERIOD_DATE", + "config": { + "fromDate": "2021-09-14T13:01:29.942Z", + "toDate": "2021-09-14T13:01:29.942Z" + }, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "15352f01-d545-49f3-863d-b870ce243d1e", + "type": "Q_TIME", + "config": { + "fromTime": "", + "toTime": "" + }, + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "9700814a-1ef6-4342-8e0a-452a53c47135", + "description": "", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Kvalitet", + "variants": [ + { + "id": "9a0983a7-709c-4103-89a1-a3685f4a4e39", + "requirementText": "", + "instruction": "", + "description": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "2e844dfe-ae06-4321-9518-ce4a25db6c94" + ], + "questions": [ + { + "id": "deb63392-44c8-4b6e-b466-5cc1a4b74c59", + "type": "Q_CODELIST", + "config": { + "multipleSelect": false, + "codelist": "13b119a0-a987-44af-baee-9fe10a9d0873" + }, + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "fb27b35e-0bff-4989-9625-b21763a342fd", + "title": "Bankett/festmiddag", + "description": "", + "requirements": [], + "type": "need", + "parent": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null + }, + { + "id": "1c575994-5e33-4126-82ad-2d3a44ca3259", + "title": "Kvalitet", + "description": "", + "requirements": [ + { + "id": "a7dac000-3588-48c8-b307-e833086dcaf2", + "description": "Leverandøren skal sikre at fasilitetene har følgende minimum standard: Alt over det minimumet vil være poenggivende.", + "needId": "1c575994-5e33-4126-82ad-2d3a44ca3259", + "type": "requirement", + "title": "Kvalitet på lokalet", + "variants": [ + { + "id": "e46d2e26-cb31-44f1-8605-be20f8dbda9c", + "requirementText": "Leverandøren skal sikre at fasilitetene har følgende minimum standard: Alt over det minimumet vil være poenggivende.", + "instruction": "", + "description": "", + "useQualification": false, + "useSpesification": true, + "useProduct": true, + "products": [ + "2e844dfe-ae06-4321-9518-ce4a25db6c94" + ], + "questions": [ + { + "id": "d0471564-ebe3-426d-8aea-773171fd69cc", + "type": "Q_CODELIST", + "config": { + "multipleSelect": false, + "codelist": "13b119a0-a987-44af-baee-9fe10a9d0873" + }, + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + } + ], + "type": "need", + "sourceOriginal": null, + "sourceRel": null, + "parent": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694" + }, + { + "id": "6c47ce09-ea36-4885-9eff-3e0fae08a678", + "title": "Geografisk lokasjon", + "description": "", + "requirements": [ + { + "id": "8e88019b-a0b1-4135-a274-04522267e13e", + "description": "Leverandøren skal kunne til tilby kurs- og konferanse lokalet innenfor minimum 15 km avstand fra respektive....", + "needId": "6c47ce09-ea36-4885-9eff-3e0fae08a678", + "type": "requirement", + "title": "Geografisk lokasjon", + "variants": [ + { + "id": "769b21c5-d375-461f-ace8-4c54279e55e1", + "requirementText": "", + "instruction": "", + "description": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "2ca81c82-c258-4b9c-bacd-7476ade0fb44", + "type": "Q_CODELIST", + "config": { + "multipleSelect": false, + "codelist": "13b119a0-a987-44af-baee-9fe10a9d0873" + }, + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + } + ], + "type": "need", + "sourceOriginal": null, + "sourceRel": null, + "parent": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694" + }, + { + "id": "637ba097-820c-41de-8550-bc2e829f5f88", + "title": "Overnatting", + "description": "", + "requirements": [ + { + "id": "133ebbd7-0b02-4c4c-a3c3-abb610605f51", + "description": "Leverandøren skal kunne tilby alle type rom som beskrevet under produkter. ", + "needId": "637ba097-820c-41de-8550-bc2e829f5f88", + "type": "requirement", + "title": "Rom ", + "variants": [ + { + "id": "b0bf3967-e962-41c5-a396-97382650b62f", + "requirementText": "", + "instruction": "", + "description": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "e2fe0d0a-849c-4eeb-a57b-2589c7d73e11", + "description": "Leverandøren skal, ved overnatting, være bemannet for inn- og utsjekk samt andre henvendelser 24 timer i døgnet. ", + "needId": "637ba097-820c-41de-8550-bc2e829f5f88", + "type": "requirement", + "title": "Inn- og utsjekk", + "variants": [ + { + "id": "a79caa47-1dce-4dfe-9bc7-d7aad4102e10", + "requirementText": "", + "instruction": "", + "description": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "3c3dd2e0-fdd7-4245-8f66-187ce5ebecf9" + ], + "questions": [] + }, + { + "id": "7137a3ee-9ada-44e2-a388-b0a98d617adc", + "requirementText": "Beskriv behovet for tidlig/sen inn- eller utsjekk.", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "Beskriv behovet for tidlig/sen inn- eller utsjekk. " + } + ], + "sourceOriginal": null, + "sourceRel": null + } + ], + "type": "need", + "sourceOriginal": null, + "sourceRel": null, + "parent": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694" + }, + { + "id": "a9117deb-8924-4974-9dd7-1fa54ea21d03", + "title": "Servering", + "description": "", + "requirements": [ + { + "id": "ce96916c-840c-4840-a473-fe40169893a1", + "description": "", + "needId": "a9117deb-8924-4974-9dd7-1fa54ea21d03", + "type": "requirement", + "title": "Middag", + "variants": [ + { + "id": "d8c8f51f-778b-4690-a927-7ba574f2b602", + "requirementText": "", + "instruction": "", + "description": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "2e844dfe-ae06-4321-9518-ce4a25db6c94" + ], + "questions": [ + { + "id": "bb6b3114-f403-4bf5-9489-2c66854c7ab8", + "type": "Q_CODELIST", + "config": { + "multipleSelect": false, + "codelist": "13b119a0-a987-44af-baee-9fe10a9d0873" + }, + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "c229424d-2a85-42c7-a48d-bc153fd694bc", + "description": "", + "needId": "a9117deb-8924-4974-9dd7-1fa54ea21d03", + "type": "requirement", + "title": "Pausemat", + "variants": [ + { + "id": "f31fafd1-4351-42cd-becd-e6b9c6f08695", + "requirementText": "", + "instruction": "", + "description": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "2e844dfe-ae06-4321-9518-ce4a25db6c94" + ], + "questions": [ + { + "id": "464b88f3-fef3-42c0-842f-95f715bb4043", + "type": "Q_CODELIST", + "config": { + "multipleSelect": false, + "codelist": "13b119a0-a987-44af-baee-9fe10a9d0873" + }, + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "506de38b-1a10-4a3d-bb30-93ff1026d4b5", + "description": "", + "needId": "a9117deb-8924-4974-9dd7-1fa54ea21d03", + "type": "requirement", + "title": "Frokost", + "variants": [ + { + "id": "65844762-c8cc-44a5-87f2-042285019eba", + "requirementText": "", + "instruction": "", + "description": "", + "useQualification": false, + "useSpesification": false, + "useProduct": true, + "products": [ + "2e844dfe-ae06-4321-9518-ce4a25db6c94", + "9e28988f-0174-42d5-ab07-966edcbe0c3f", + "5df73405-a011-4020-a137-5f732c516917", + "8a144c25-06a3-4dcf-a294-ab601b7967d1", + "3c3dd2e0-fdd7-4245-8f66-187ce5ebecf9", + "7120ab97-3451-4955-8989-b0b82b26a59d", + "9c47622b-2463-441e-afc1-0b12554cc4be", + "287cb3ef-4912-4f26-ab90-e8935958cf9f", + "df9e7132-fd8f-41c8-a1fc-2b50d6286d89" + ], + "questions": [ + { + "id": "f5d1cccf-5ad0-4ac2-95ba-4780be42032f", + "type": "Q_CODELIST", + "config": { + "codelist": "13b119a0-a987-44af-baee-9fe10a9d0873", + "multipleSelect": false + }, + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "f2af86d0-64c9-4a5f-9bab-b9d83d75773a", + "description": "Leverandøren skal kunne tilby lunsj.", + "needId": "a9117deb-8924-4974-9dd7-1fa54ea21d03", + "type": "requirement", + "title": "Lunsj", + "variants": [ + { + "id": "449112de-7c31-41a7-bc4f-3183c47f6a81", + "requirementText": "", + "instruction": "", + "description": "", + "useQualification": false, + "useSpesification": true, + "useProduct": false, + "products": [ + "2e844dfe-ae06-4321-9518-ce4a25db6c94" + ], + "questions": [] + }, + { + "id": "a77c619c-3233-4338-ad3e-d6fba6729229", + "requirementText": "", + "instruction": "", + "description": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "2e844dfe-ae06-4321-9518-ce4a25db6c94" + ], + "questions": [ + { + "id": "5a7a6177-5191-4c9f-ac70-08f04543c2d7", + "type": "Q_CODELIST", + "config": { + "multipleSelect": false, + "codelist": "13b119a0-a987-44af-baee-9fe10a9d0873" + }, + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + } + ], + "type": "need", + "sourceOriginal": null, + "sourceRel": null, + "parent": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694" + }, + { + "id": "ba8481f5-655b-4321-9e75-04d29aec90f0", + "title": "Underholdning/aktivitet", + "description": "", + "requirements": [ + { + "id": "51480eb8-8ae9-438b-9c91-b79ef0bea96e", + "title": "Underholdning", + "description": "", + "needId": "ba8481f5-655b-4321-9e75-04d29aec90f0", + "type": "requirement", + "variants": [], + "tags": [], + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null + }, + { + "id": "c537bf6d-1184-4541-b0e4-e73f52d3220b", + "title": "Aktivitet", + "description": "", + "needId": "ba8481f5-655b-4321-9e75-04d29aec90f0", + "type": "requirement", + "variants": [], + "tags": [], + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null + } + ], + "type": "need", + "parent": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null + }, + { + "id": "7ec994b1-c2ba-405e-b236-abc4265d06bd", + "title": "Parkering", + "description": "", + "requirements": [ + { + "id": "f079b0e1-3995-48b2-94ff-b831d0991bf6", + "description": "Leverandøren skal tilby parkering tilknyttet kurs- og konferanselokalet. ", + "needId": "7ec994b1-c2ba-405e-b236-abc4265d06bd", + "type": "requirement", + "title": "Parkeringsmuligheter", + "variants": [ + { + "id": "413cd2bf-d8c4-49f7-906c-4d41feac06ba", + "requirementText": "", + "instruction": "", + "description": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "781b81a1-a7de-4416-b537-77119023f329", + "description": "Leverandøren skal tilby", + "needId": "7ec994b1-c2ba-405e-b236-abc4265d06bd", + "type": "requirement", + "title": "Parkeringsmuligheter(evaluering)", + "variants": [ + { + "id": "1b99fcd2-b08e-472e-a29f-c585e4435a94", + "requirementText": "", + "instruction": "", + "description": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "d0394924-8c85-40cb-8eb4-cc2370c235e3", + "type": "Q_CODELIST", + "config": { + "multipleSelect": false, + "codelist": "13b119a0-a987-44af-baee-9fe10a9d0873" + }, + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + } + ], + "type": "need", + "sourceOriginal": null, + "sourceRel": null, + "parent": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694" + }, + { + "id": "e98631f7-fb0e-49eb-932f-769f68f93af9", + "title": "Transport", + "description": "", + "requirements": [ + { + "id": "c0a18336-fe84-41f2-9b86-287bbb2297cf", + "title": "Transportalternativer", + "description": "", + "needId": "e98631f7-fb0e-49eb-932f-769f68f93af9", + "type": "requirement", + "variants": [], + "tags": [], + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null + } + ], + "type": "need", + "parent": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null + }, + { + "id": "238c13a1-821b-426a-b9c8-bff877ce2c6b", + "title": "Tilgjengelighet(Universell utforming)", + "description": "", + "requirements": [ + { + "id": "deb3d9ae-4af7-4499-8384-228004a87468", + "title": "Tilrettelagt for rullestolbrukere", + "description": "", + "needId": "238c13a1-821b-426a-b9c8-bff877ce2c6b", + "type": "requirement", + "variants": [], + "tags": [], + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null + } + ], + "type": "need", + "sourceOriginal": null, + "sourceRel": null, + "parent": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694" + }, + { + "id": "3bb3b6e6-fb25-40f4-9456-ff6455d86b65", + "title": "Sikkerhet", + "description": "Oppdragsgiver har behov for ivaretakelse av sikkerhet under oppholdet.", + "requirements": [], + "type": "need", + "parent": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null + } + ], + "products": [ + { + "id": "2e844dfe-ae06-4321-9518-ce4a25db6c94", + "title": "Plenumsal", + "description": "", + "parent": "", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "04795b94-4cd6-4e2b-b6d1-614a7038519c", + "title": "Antall", + "description": "Angi antall personer det skal være plass til i plenumssalen.", + "type": "product", + "parent": "2e844dfe-ae06-4321-9518-ce4a25db6c94", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "84c72195-b9a0-47a1-97f1-209f06c0a06f", + "title": "Status", + "description": "Det skal gis en bekreftelse på at plenumssalen er reservert. ", + "type": "product", + "parent": "2e844dfe-ae06-4321-9518-ce4a25db6c94", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "3682db89-bef9-4387-898f-478ff00efb23", + "title": "Tilgjengelighet", + "description": "Angi behovet for universell utforming for dette rommet. ", + "type": "product", + "parent": "2e844dfe-ae06-4321-9518-ce4a25db6c94", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "e4df1c72-3a6a-4367-8488-163fd475d99a", + "title": "Navn", + "description": "Angi navn på ansvarlig person for lokalet.", + "type": "product", + "parent": "2e844dfe-ae06-4321-9518-ce4a25db6c94", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "4a64770b-da35-47b9-920e-8732d25fad0c", + "title": "Dato", + "description": "Angi dato for når lokalet skal benyttes.", + "type": "product", + "parent": "2e844dfe-ae06-4321-9518-ce4a25db6c94", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "79deb2a6-0ad4-446f-abd5-4a06ad22fc47", + "title": "Klokkeslett", + "description": "Angi klokkeslett for når plenumssalen skal benyttes.", + "type": "product", + "parent": "2e844dfe-ae06-4321-9518-ce4a25db6c94", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "bf42aeff-4755-4005-952e-b1224979b3a2", + "title": "Standard konferanseteknikk/AV-utstyr", + "description": "Angi behovet for teknisk utstyr i plenumssalen.", + "type": "product", + "parent": "2e844dfe-ae06-4321-9518-ce4a25db6c94", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "8c1e4efe-5694-4157-9272-36d073a1a12d", + "title": "Oppsett av lokale", + "description": "Angi ønsket oppsett av plenumssalen.", + "type": "product", + "parent": "2e844dfe-ae06-4321-9518-ce4a25db6c94", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "19a7db1f-ab3b-4b48-ad27-46caf2318c43", + "title": "Omrigg", + "description": "Angi behov for endring i oppsett av plenumssalen under arrangementet.", + "type": "product", + "parent": "2e844dfe-ae06-4321-9518-ce4a25db6c94", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "868ffc32-14ca-480f-8de4-ecdd5eb93614", + "title": "Tekniker", + "description": "Angi behov for å ha tekniker tilstede under hele eller deler av arrangementet.", + "type": "product", + "parent": "2e844dfe-ae06-4321-9518-ce4a25db6c94", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "f8b957b1-7ded-4568-85c7-18778e864887", + "title": "Innrigg", + "description": "Angi behov for innrigg, for eksempel dekorasjon av bord, dekor eller profilering kvelden før/om morgenen før start.", + "type": "product", + "parent": "2e844dfe-ae06-4321-9518-ce4a25db6c94", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "a19f6500-5c0a-4c29-be22-f2e56c276c3c", + "title": "Kvalitet/standard", + "description": "Angi ønsket minimumsstandard.", + "type": "product", + "parent": "2e844dfe-ae06-4321-9518-ce4a25db6c94", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "237e8947-2904-417e-8827-7771090bf5df", + "title": "Servering", + "description": "Angi behov for servering i tilknytning til arrangementet. ", + "type": "product", + "parent": "2e844dfe-ae06-4321-9518-ce4a25db6c94", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "2892c0e5-2174-45d5-affa-01ee919266b5", + "title": "Fysisk sikring", + "description": "Angi behov for fysisk sikring, for eksempel skuddsikre glass, forsterkede vegger, begrenset adkomst, vakt tilstede, mv. ", + "type": "product", + "parent": "2e844dfe-ae06-4321-9518-ce4a25db6c94", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "9e28988f-0174-42d5-ab07-966edcbe0c3f", + "title": "Grupperom", + "description": "", + "parent": "", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "307c0026-aea2-4492-83e6-95b984b2b82f", + "title": "Antall", + "description": "Angi hvor mange personer det skal være plass til i grupperommet. ", + "type": "product", + "parent": "9e28988f-0174-42d5-ab07-966edcbe0c3f", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "7a5e52ea-4456-407b-88f1-4e908eb5a331", + "title": "Status", + "description": "Det skal gis en bekreftelse på at grupperommet er reservert. ", + "type": "product", + "parent": "9e28988f-0174-42d5-ab07-966edcbe0c3f", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "8eb11dc6-94e4-45a4-918c-42d5b70ab7eb", + "title": "Tilgjengelighet", + "description": "Behovet for universell utforming for grupperommet skal angis. ", + "type": "product", + "parent": "9e28988f-0174-42d5-ab07-966edcbe0c3f", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "8233e1f6-e580-46f7-917a-3ade2edc6fae", + "title": "Navn", + "description": "Det skal angis navn på ansvarlig person for grupperommet. ", + "type": "product", + "parent": "9e28988f-0174-42d5-ab07-966edcbe0c3f", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "160a0e44-63df-4315-8d15-2826f722b2c8", + "title": "Dato", + "description": "Angi dato for når lokalet skal benyttes. ", + "type": "product", + "parent": "9e28988f-0174-42d5-ab07-966edcbe0c3f", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "8a4ed223-8b5e-4f07-9c79-93ec73a7d222", + "title": "Klokkeslett", + "description": "Angi klokkeslett for når grupperommet skal benyttes.", + "type": "product", + "parent": "9e28988f-0174-42d5-ab07-966edcbe0c3f", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "3813021a-28c0-464f-a5b5-5b2cd0054eba", + "title": "Standard konferanseteknikk/AV-utstyr", + "description": "Angi behov for teknisk utstyr i grupperommet.", + "type": "product", + "parent": "9e28988f-0174-42d5-ab07-966edcbe0c3f", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "a097ca87-d1bf-416b-a299-e96126112c64", + "title": "Oppsett av lokale", + "description": "Angi ønsket oppsett av lokalet. ", + "type": "product", + "parent": "9e28988f-0174-42d5-ab07-966edcbe0c3f", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "e790d517-5a22-42f4-90d3-52108a689303", + "title": "Omrigg", + "description": "Angi behov for endring i oppsett av grupperommet under arrangementet. ", + "type": "product", + "parent": "9e28988f-0174-42d5-ab07-966edcbe0c3f", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "0c42d5d3-6ab0-409e-80f8-fad3d787320b", + "title": "Tekniker", + "description": "Angi behov for å ha tekniker tilstede under hele eller deler av arrangementet. ", + "type": "product", + "parent": "9e28988f-0174-42d5-ab07-966edcbe0c3f", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "81d81173-0076-4adf-923f-7fe7f62f798f", + "title": "Innrigg", + "description": "Angi behov for innrigg, for eksempel dekorasjon av grupperommet, dekor eller profilering kvelden før/morgenen før start. ", + "type": "product", + "parent": "9e28988f-0174-42d5-ab07-966edcbe0c3f", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "c2e5eafb-0de1-45a5-915f-33c4d0f9b22d", + "title": "Kvalitet/standard", + "description": "Angi ønsket minimumsstandard på grupperommet. ", + "type": "product", + "parent": "9e28988f-0174-42d5-ab07-966edcbe0c3f", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "55fa0a18-5e27-4fca-ab15-bd8b653d1b6a", + "title": "Servering", + "description": "Angi behov for servering i tilknytning til arrangementet. ", + "type": "product", + "parent": "9e28988f-0174-42d5-ab07-966edcbe0c3f", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "bdee2fc3-78b8-41da-807a-f4603ff7ee1a", + "title": "Fysisk sikring", + "description": "Angi behov for fysisk sikring, for eksempel skuddsikre glass, forsterkede vegger, begrenset adkomst, vakt tilstede, mv. ", + "type": "product", + "parent": "9e28988f-0174-42d5-ab07-966edcbe0c3f", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "5df73405-a011-4020-a137-5f732c516917", + "title": "Møterom", + "description": "", + "parent": "", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "55dbf0bc-82ef-4f05-a5da-7685c956ad9a", + "title": "Antall", + "description": "Angi hvor mange det skal være plass til i møterommet. ", + "type": "product", + "parent": "5df73405-a011-4020-a137-5f732c516917", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "663e6ce0-fb44-47f9-b62e-717e88b87c6f", + "title": "Status", + "description": "Det skal gis bekreftelse på at møterommet er reservert. ", + "type": "product", + "parent": "5df73405-a011-4020-a137-5f732c516917", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "66c42dad-fb8d-4ff9-a157-14987b32814b", + "title": "Tilgjengelighet", + "description": "Angi behovet for tilgjengelighet eller universell utforming for møterommet. ", + "type": "product", + "parent": "5df73405-a011-4020-a137-5f732c516917", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "0a660b5f-01d6-460e-ae17-a60583888475", + "title": "Navn", + "description": "Angi navn på ansvarlig person for møterommet. ", + "type": "product", + "parent": "5df73405-a011-4020-a137-5f732c516917", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "c587c586-faf3-42f0-94af-f4da10ad07af", + "title": "Dato", + "description": "Angi dato for når lokalet skal benyttes.", + "type": "product", + "parent": "5df73405-a011-4020-a137-5f732c516917", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "8431d5a2-714e-49c8-9385-36c49dc519c1", + "title": "Klokkeslett", + "description": "Angi klokkeslett for når møterommet skal benyttes.", + "type": "product", + "parent": "5df73405-a011-4020-a137-5f732c516917", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "bbb71ba6-d0c2-4da3-b9ae-b26f971eb67c", + "title": "Standard konferanseteknikk/AV-utstyr", + "description": "Angi behovet for teknisk utstyr i lokalet. ", + "type": "product", + "parent": "5df73405-a011-4020-a137-5f732c516917", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "dae551e9-5c0b-4187-bfa4-33a72d817d22", + "title": "Oppsett av lokale", + "description": "Angi ønsket behov for oppsett av møterommet. ", + "type": "product", + "parent": "5df73405-a011-4020-a137-5f732c516917", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "2ef5884a-2534-4ba9-9cc8-ea29457a45f1", + "title": "Omrigg", + "description": "Angi behov for endring i oppsett av møterommet underveis i arrangementet. ", + "type": "product", + "parent": "5df73405-a011-4020-a137-5f732c516917", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "9d1818b4-0bd8-4af3-a344-46c687ce30df", + "title": "Tekniker", + "description": "Angi behov for å ha tekniker tilstede under hele eller deler av arrangementet. ", + "type": "product", + "parent": "5df73405-a011-4020-a137-5f732c516917", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "748f8a50-8af3-454f-97d5-3b241c4016ee", + "title": "Innrigg", + "description": "Angi behov for innrigg, for eksempel dekorasjon av møterom eller profilering kvelden/morgenen før start. ", + "type": "product", + "parent": "5df73405-a011-4020-a137-5f732c516917", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "683a20c3-216f-46ab-beef-94375b7e80f8", + "title": "Kvalitet/standard", + "description": "Angi ønsket minimumsstandard på møtelokalet. ", + "type": "product", + "parent": "5df73405-a011-4020-a137-5f732c516917", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "5583aaac-15c1-4a99-be33-aa1ff96f6a84", + "title": "Servering", + "description": "Angi behov for servering knyttet til arrangementet. ", + "type": "product", + "parent": "5df73405-a011-4020-a137-5f732c516917", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "af81a9ad-6b48-4722-95ed-ebe02eb7337a", + "title": "Fysisk sikring", + "description": "Angi behov for fysisk sikring, for eksempel skuddsikre glass, forsterkede vegger, begrenset adkomst, vakt tilstede, mv. ", + "type": "product", + "parent": "5df73405-a011-4020-a137-5f732c516917", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "a35832a1-7db5-45d1-8b37-3154599fb609", + "title": "Hybridmøte", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "2f8489e2-f82c-4a1f-b429-cfd0d7fb3c6f", + "title": "Antall", + "description": "Angi hvor mange personer det skal være plass til i rommet. ", + "type": "product", + "parent": "a35832a1-7db5-45d1-8b37-3154599fb609", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "60a8d52b-8ffb-4e43-8293-dc52fc1d4267", + "title": "Status", + "description": "Det skal gis en bekreftelse på at lokalet er reservert. ", + "type": "product", + "parent": "a35832a1-7db5-45d1-8b37-3154599fb609", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "1b2f8b82-e6dc-4d83-94b0-eefda5564de2", + "title": "Tilgjengelighet", + "description": "Angi behovet for tilgjengelighet eller universell utforming. ", + "type": "product", + "parent": "a35832a1-7db5-45d1-8b37-3154599fb609", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "b22b9f66-6856-426a-bfee-a49a50a0ef96", + "title": "Navn", + "description": "Oppgi navn på ansvarlig person for lokalet. ", + "type": "product", + "parent": "a35832a1-7db5-45d1-8b37-3154599fb609", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "ad8e2a52-e681-4f38-8ac1-fd283efecfeb", + "title": "Dato", + "description": "Angi dato for når lokalet skal benyttes. ", + "type": "product", + "parent": "a35832a1-7db5-45d1-8b37-3154599fb609", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "50b87cab-b2b7-4cdf-8cb3-194a90ee3dd7", + "title": "Klokkeslett", + "description": "Angi klokkeslett for når arrangementet skal finne sted. ", + "type": "product", + "parent": "a35832a1-7db5-45d1-8b37-3154599fb609", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "628cf777-0363-4e74-8f5b-7505a01b520a", + "title": "Standard konferanseteknikk/AV-utstyr", + "description": "Angi behovet for teknisk utstyr i lokalet. ", + "type": "product", + "parent": "a35832a1-7db5-45d1-8b37-3154599fb609", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "6b09ed68-8bf6-4212-9515-d565f07f79d9", + "title": "Oppsett av lokale", + "description": "Angi ønsket oppsett av lokalet. ", + "type": "product", + "parent": "a35832a1-7db5-45d1-8b37-3154599fb609", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "8aae0220-c98b-4c57-8f77-8bf8a9bb74d1", + "title": "Omrigg", + "description": "Angi behov for endring i oppsett underveis.", + "type": "product", + "parent": "a35832a1-7db5-45d1-8b37-3154599fb609", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "f971859a-dd0e-4c2d-a76b-7de56791990b", + "title": "Tekniker", + "description": "Angi behov for å ha tekniker tilstede under hele eller deler av arrangementet. ", + "type": "product", + "parent": "a35832a1-7db5-45d1-8b37-3154599fb609", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "6e2706e0-8082-4d7e-ba86-26aa2fcc1ebb", + "title": "Innrigg", + "description": "Angi behov for innrigg, for eksempel dekor eller profilering kvelden før/samme morgen før start. ", + "type": "product", + "parent": "a35832a1-7db5-45d1-8b37-3154599fb609", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "cfcf4e07-6c56-444f-bf9a-17480393a701", + "title": "Kvalitet/standard", + "description": "Angi ønsket minimumsstandard på lokalet. ", + "type": "product", + "parent": "a35832a1-7db5-45d1-8b37-3154599fb609", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "30a41cfd-17a9-4943-9ef8-014bee11a410", + "title": "Servering", + "description": "Angi behov for servering i tilknytning til arrangementet. ", + "type": "product", + "parent": "a35832a1-7db5-45d1-8b37-3154599fb609", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "379986bc-69f9-439a-b22a-637df1290f18", + "title": "Fysisk sikring", + "description": "Angi behov for fysisk sikring, for eksempel skuddsikre glass, forsterkede vegger, begrenset adkomst, vakt tilstede, mv. ", + "type": "product", + "parent": "a35832a1-7db5-45d1-8b37-3154599fb609", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "8a144c25-06a3-4dcf-a294-ab601b7967d1", + "title": "Utstillingsareal", + "description": "", + "parent": "", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "16b482bb-17e5-44ae-89b0-9fa83108054f", + "title": "Antall", + "description": "Angi hvor mange utstillere det skal være plass til. ", + "type": "product", + "parent": "8a144c25-06a3-4dcf-a294-ab601b7967d1", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "6824aa4a-6f6b-4eaf-ba6f-ca6f403dc817", + "title": "Status", + "description": "Det skal gis bekreftelse på at utstillerarealet er reservert. ", + "type": "product", + "parent": "8a144c25-06a3-4dcf-a294-ab601b7967d1", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "cb94bb65-86a4-4a21-bae9-b6048d77c01a", + "title": "Tilgjengelighet", + "description": "Angi behovet for tilgjengelighet eller universell utforming for utstillerarealet. ", + "type": "product", + "parent": "8a144c25-06a3-4dcf-a294-ab601b7967d1", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "22404106-41d6-4f8e-a4d0-af88446becca", + "title": "Navn", + "description": "Angi navn på ansvarlig person for utstillerarealet. ", + "type": "product", + "parent": "8a144c25-06a3-4dcf-a294-ab601b7967d1", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "5ba2d923-e2a4-45d0-8109-9d3448766512", + "title": "Dato", + "description": "Angi dato for når utstillerarealet skal benyttes. ", + "type": "product", + "parent": "8a144c25-06a3-4dcf-a294-ab601b7967d1", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "9d031b02-2a9d-4be1-ac73-a16482febfb8", + "title": "Klokkeslett", + "description": "Angi klokkeslett for når utstillerarealet skal benyttes. ", + "type": "product", + "parent": "8a144c25-06a3-4dcf-a294-ab601b7967d1", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "57c51b04-9f65-431c-8e09-d5c3ff019c88", + "title": "Standard konferanseteknikk/AV-utstyr", + "description": "Angi behovet for teknisk utstyr i utstillerarealet. ", + "type": "product", + "parent": "8a144c25-06a3-4dcf-a294-ab601b7967d1", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "3556eaf5-aed7-45b2-9267-f3c2231a3279", + "title": "Oppsett av lokale", + "description": "Angi ønsket behov for oppsett av utstillerarealet. ", + "type": "product", + "parent": "8a144c25-06a3-4dcf-a294-ab601b7967d1", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "ff7676e4-cd9f-4cf7-8de3-b8d99aafc999", + "title": "Omrigg", + "description": "Angi behov for endring i oppsett av utstillerarealet underveis i arrangementet. ", + "type": "product", + "parent": "8a144c25-06a3-4dcf-a294-ab601b7967d1", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "08e08c4a-a5c7-4027-92f2-f46275871d72", + "title": "Tekniker", + "description": "Angi behov for å ha tekniker tilstede under hele eller deler av arrangementet. ", + "type": "product", + "parent": "8a144c25-06a3-4dcf-a294-ab601b7967d1", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "a4869f9b-3248-41a7-98d8-449d74a93b9c", + "title": "Kvalitet/standard", + "description": "Angi ønsket minimumsstandard for utstillerarealet. ", + "type": "product", + "parent": "8a144c25-06a3-4dcf-a294-ab601b7967d1", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "d448b2ad-c7d6-468a-9d74-6be3fc2f1e6e", + "title": "Innrigg", + "description": "Angi behov for innrigg, for eksempel dekor eller profilering kvelden før/morgenen før start av arrangementet. ", + "type": "product", + "parent": "8a144c25-06a3-4dcf-a294-ab601b7967d1", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "5ac7a071-b5ac-4518-8e2a-21618a076fc9", + "title": "Servering", + "description": "Angi behov for servering i tilknytning til arrangementet. ", + "type": "product", + "parent": "8a144c25-06a3-4dcf-a294-ab601b7967d1", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "3c3dd2e0-fdd7-4245-8f66-187ce5ebecf9", + "title": "Rom", + "description": "", + "parent": "", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "60bf3d82-6e8c-4974-bd4a-66b90a49233d", + "title": "Dobbeltrom", + "description": "", + "parent": "3c3dd2e0-fdd7-4245-8f66-187ce5ebecf9", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "4e327286-33a0-402b-b16e-e578d1192434", + "title": "Enkeltrom", + "description": "", + "parent": "3c3dd2e0-fdd7-4245-8f66-187ce5ebecf9", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "09adb798-f9c8-4446-9058-eab4c2068e91", + "title": "Twin-rom", + "description": "", + "parent": "3c3dd2e0-fdd7-4245-8f66-187ce5ebecf9", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "6c66a44d-abb6-40f2-ae87-3900c21629a8", + "title": "3-sengsrom", + "description": "", + "parent": "3c3dd2e0-fdd7-4245-8f66-187ce5ebecf9", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "01637bb0-b5de-4264-972e-50933536d1fd", + "title": "Familierom", + "description": "", + "parent": "3c3dd2e0-fdd7-4245-8f66-187ce5ebecf9", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "3337a989-04a1-4a2f-bb16-ee849df81b83", + "title": "Juniorsuite", + "description": "", + "parent": "3c3dd2e0-fdd7-4245-8f66-187ce5ebecf9", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "ba15a975-695a-4c3f-b33f-558c08610280", + "title": "Suite", + "description": "", + "parent": "3c3dd2e0-fdd7-4245-8f66-187ce5ebecf9", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "7120ab97-3451-4955-8989-b0b82b26a59d", + "title": "Standard innvendig lugar", + "description": "", + "parent": "", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "9c47622b-2463-441e-afc1-0b12554cc4be", + "title": "Standard lugar med havutsikt", + "description": "", + "parent": "", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "287cb3ef-4912-4f26-ab90-e8935958cf9f", + "title": "Suite lugar innvendig", + "description": "", + "parent": "", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "df9e7132-fd8f-41c8-a1fc-2b50d6286d89", + "title": "Suite lugar med havutsikt", + "description": "", + "parent": "", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "d32258f6-992b-4615-b9a7-71f6f34cb2af", + "title": "Frokost", + "description": "", + "parent": "", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "37a62541-2359-419e-ba90-1f06ad614f33", + "title": "Lunsj", + "description": "", + "parent": "", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "d0208128-40ef-4bb7-b93a-217ed0970860", + "title": "Middag", + "description": "", + "parent": "", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "907777b3-d684-4280-b983-f4dcf66f91b6", + "title": "Pausemat", + "description": "", + "parent": "", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "95f93aea-0f1c-4785-912f-9c6317157303", + "title": "test testesen", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce2", + "sourceRel": null, + "deletedDate": "2022-06-15T06:37:46.083Z" + }, + { + "id": "f43e20a0-052b-45d8-837f-fa430dc5fd81", + "title": "dsfsd", + "description": "fsd", + "type": "product", + "parent": "", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce2", + "sourceRel": null, + "deletedDate": "2022-06-15T06:40:01.991Z" + }, + { + "id": "07ea2aed-dd2c-4f17-8500-355860b17b6b", + "title": "saaa", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce2", + "sourceRel": null, + "deletedDate": "2022-06-15T06:40:06.635Z" + }, + { + "id": "23484e23-8114-4817-a580-1a6805f48532", + "title": "testt", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce2", + "sourceRel": null, + "deletedDate": "2022-06-15T06:44:02.245Z" + }, + { + "id": "0201d818-91bb-405f-bade-f204e511f15e", + "title": "trdt", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce2", + "sourceRel": null, + "deletedDate": "2022-06-15T06:49:20.657Z" + }, + { + "id": "6785c561-4c72-43ee-bf32-b8842cdeffe3", + "title": "test", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce2", + "sourceRel": null, + "deletedDate": "2022-06-15T06:57:55.925Z" + } + ], + "codelist": [ + { + "id": "13b119a0-a987-44af-baee-9fe10a9d0873", + "title": "Tilbudets språk", + "description": "Angi hvilket språk tilbudet skal leveres på", + "codes": [ + { + "id": "6c80ac68-a6ba-4cf1-b053-7503993ccc1f", + "title": "Norsk", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "d44377d5-379f-4d7c-b3de-117cbf83c69b", + "title": "Nordisk", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "1aede443-674b-43ab-8191-d6abdab63a2b", + "title": "Engelsk", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "7c2933d0-f0d7-499d-9e01-511722b33665", + "title": "Norsk", + "description": "Standardinnstilling", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "4c473a4d-82a5-477c-a469-ac595cc5fbcf", + "title": "Engelsk", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "ef491ecb-a816-4dba-a37f-cd63295460de", + "title": "Formål", + "description": "Beskriv formål eller type arrangement", + "codes": [ + { + "id": "4c4bead9-41cd-4df2-9380-1fc9c07c3dc6", + "title": "Kongress", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "5942cd33-d5fe-409c-b491-850a411e2c58", + "title": "Konferanse", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "705098de-78c7-49e5-909c-6bd64bce0339", + "title": "Dagmøte", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "046419ad-5e93-46cb-9e4f-e20b9b843843", + "title": "Teambuilding", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "7044155a-35e9-4a9a-acd6-26e914a908b4", + "title": "Kick-off/oppstartsmøte", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "51b1d912-06c5-45c6-8d0e-ecbd2f073264", + "title": "Lansering", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "7d3caa8a-e7b6-459c-b705-55c6f0371878", + "title": "Workshop", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "fae31a63-20bf-468c-9084-3084b46af929", + "title": "Årsfest/samling", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "45153d7c-1267-479a-bfdd-27bd7e3d75cd", + "title": "Møteserie", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "87315c05-50b7-4afa-8319-69b807bf8233", + "title": "Profilkonkurranse VIP", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "4692cb50-24ce-4ff7-99b0-9962789b6e1f", + "title": "Kongress", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "c7efd144-c49f-47a2-9d2f-5ef2b26f13d0", + "title": "Konferanse", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "fd23a637-1052-4283-a196-089d5f59dcae", + "title": "Internt møte", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "4fd04a5b-c8b2-4a3b-a20e-997ecce11819", + "title": "Møte (dagtid)", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "8382e28a-70ff-4b05-9274-38776bbf5f7a", + "title": "Representasjon", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "f904b92b-80fa-4c84-8f44-c220cba20172", + "title": "Teambuilding", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "7437445c-4897-4d4d-b993-da84112b4f4a", + "title": "Kick-off", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "e9052bbe-a9d4-4f20-812f-87a799c9b101", + "title": "Lansering", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "7b88458d-bd99-4b9c-99de-15b9f10d217f", + "title": "Workshop", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "09142d96-db3a-4590-8b66-4b4fd6dfba03", + "title": "Årssamling", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "0a3612a6-5e9d-422b-b4d5-840405ee8bc8", + "title": "Møteserie", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "55f0fae6-9c03-490c-b5b9-984f9e1fd493", + "title": "Møte med middag", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "d91a39f4-6426-491a-8feb-8151302d3d9a", + "title": "Møte med overnatting", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "ce330cd2-d739-4ec9-9b95-c4e5c484fd9d", + "title": "Lunsj til lunsj", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "01438963-afb1-49dc-9f65-f2ee5a96db3a", + "title": "Opplæring/intern kursing", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "d12dd048-b3de-4b04-8296-38e83b6b22ac", + "title": "Utstilling", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "be2e7a99-a6db-416c-9fed-0236d15ed37d", + "title": "Lansering", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "7fbff469-29cf-4e2b-8488-0480c98b9898", + "title": "Faglig seminar", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "b0b9509e-bcf2-453c-8a6e-80c79442baab", + "title": "Konferanseteknikk/AV-utstyr", + "description": "Standard AV-utstyr/konferanseteknikk inkluderer wifi, lyd og bilde. Annet spesifiseres som tillegg.", + "codes": [ + { + "id": "86e31971-73eb-43b2-94c7-65cf692b8ba4", + "title": "Trådløs mikrofon", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "bcd9f829-48a2-453b-8c65-4055a8025718", + "title": "Tradisjonell mikrofon", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "77450ff2-43a8-4998-98e2-1c19ad85d659", + "title": "Lyd forsterker", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "550300ca-fc1a-40f3-a7fd-3dfe0c31673b", + "title": "Mikser", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "4a695437-eae0-4e1f-b5a0-16039b17252c", + "title": "Prosjektor", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "083f26ec-9f11-4b24-a7d7-cbdd31d6d239", + "title": "Overgang(VGA-HDMI)", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "ca9ff3ea-7844-4b78-b7a3-27a415a13bd8", + "title": "Whiteboard", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "b02d28ab-677a-4d87-acd6-b7c86e6f451d", + "title": "Streaming", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "87920962-8325-438f-b22b-fb3870ba44b0", + "title": "Trådløs høyttaler", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "6345556c-7f1e-4996-b3f4-4f7bf995e6e7", + "title": "Konferansetelefon", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "34eb82d7-0b09-4f32-abe6-da4deb32c3dd", + "title": "Lyskaster", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "cc4f1cbf-8abe-4407-a684-09a116718da5", + "title": "Stemningsbelysning", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "8e126ca8-eff6-4bf0-ab85-ed3313b09908", + "title": "Talerstol", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "d7164d68-98f1-41b2-93cd-b26cd20518d7", + "title": "Skjermer", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "d3b4bf14-4f48-4517-b0fc-c3af6ff58799", + "title": "PC", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "6724528b-3682-4794-b793-150816248cee", + "title": "Mikrofon/mygg", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "816890d6-dc04-42a3-9299-c71fdbb0f132", + "title": "Mikrofon, håndholdt", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "db5566b3-72d2-435c-97cf-8ab8b9db97d8", + "title": "Lydforsterkere", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "2098c69e-6b2d-4390-b59d-9b355d1b57c0", + "title": "Miksere", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "1303ca74-15ae-4437-9e37-888aa7c8361c", + "title": "Prosjektor/storskjerm", + "description": "God oppløsning", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "43bbdd69-6e40-4960-966b-b1ff8998d271", + "title": "Overganger", + "description": "VGA-HDMI, display port", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "99ede0ca-cb95-4af0-963a-188433995326", + "title": "Flipover/whiteboard", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "b421974d-2314-4554-9755-ba6622dff39d", + "title": "Streamingmuligheter", + "description": "Kamera, m.m.", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "baf785fb-fafc-414a-bba4-a607cbddd936", + "title": "Teknisk assistanse", + "description": "Ved behov. Ikke tilstedeværelse gjennom hele arrangementet. ", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "989b4f6f-3cf7-4ef6-978b-f6367a79a64d", + "title": "Høytaler", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "baee1879-b786-477c-9e92-d997ab87e470", + "title": "Konferansetelefon", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "ca06056e-d8d3-4f1c-a19b-9b1d9e3476a4", + "title": "Lyskastere", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "cf30932f-4475-4563-9782-dda345341429", + "title": "Spotlight", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "aaa2074c-543e-4a2b-9dd4-4080017df258", + "title": "Stemningsbelysning", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "9e7ed6c3-9ea3-4551-9a60-c031f0a11bde", + "title": "Talerstol", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "862b1ba2-98e5-4ba4-a7b2-a9703163773b", + "title": "Tilgang til skjermer", + "description": "Grupperom A-C", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "ab7d833f-216c-4c30-baab-8292d7429182", + "title": "Tilgang til PC-innganger", + "description": "Grupperom A-C", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "aaf8db1a-1435-46bd-bb1d-2fb9f15f334f", + "title": "Tilgang til lydkilder", + "description": "Grupperom A-C", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "05f6f525-9c44-41c2-a967-85177ad433b2", + "title": "Leie av PC", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "fd258ab0-c8ec-4eb4-bb79-d9ab0dddc596", + "title": "Web-kamera", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "95670605-95b1-4657-a342-8ef7be910931", + "title": "Allergener", + "description": "", + "codes": [ + { + "id": "3192cc48-76a0-499f-a74e-90996dcf9d9a", + "title": "Glutenholdig korn", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "43636d36-11c0-4ce0-af43-85e3399cdabd", + "title": "Skalldyr", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "f67878f0-16e6-4be5-a336-a2a88f79ae7b", + "title": "Egg", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "e91dd913-95f1-4d7a-823d-6b414ee9a4b5", + "title": "Fisk", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "711b6ccb-bd3d-4e04-9a04-77f7d47c8022", + "title": "Peanøtter", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "14bba7a4-5ce6-47ce-9ca4-0318e6cb62ef", + "title": "Soya", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "39b7b38f-74b9-421e-ad92-52a23005e9a5", + "title": "Melk(laktose)", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "d0d089ef-0d24-4f78-ad5e-8964a25a98a0", + "title": "Nøtter", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "697d85f2-c6ef-49af-8e34-00c5d43c3ee2", + "title": "Selleri", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "bb8fd9bd-e42b-4505-9a6d-28a130439c78", + "title": "Sennep", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "0b95113d-6ea1-49a1-abb7-853b9ee1aa56", + "title": "Sesamfrø", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "02e7a40e-c91a-4226-a6d6-667d6565364c", + "title": "Svoveldioksid og sulfitt", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "40617761-3e2e-4a3c-a66d-ddd7a0d44b12", + "title": "Lupin", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "a09e6731-9c41-464a-9d93-e8d3abd77447", + "title": "Bløtdyr", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "d13905f3-6603-4eb3-beb3-3fa54a544dee", + "title": "Gluten", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "c716e9b1-de01-4e86-877c-a52978a33d2e", + "title": "Skalldyr", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "afcf3ac6-10da-46a7-a73f-d5fa3bc94254", + "title": "Egg", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "cee72083-3a68-4716-b82b-8c87dffe7d5f", + "title": "Fisk", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "7608cb62-ff14-447e-86e6-28e9e2d0fce0", + "title": "Nøtter", + "description": "Spesifiser hvilke nøtter det gjelder.", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "263af7cf-b5cf-4c36-b38e-c50767a529db", + "title": "Soya", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "67f4c8e8-c618-4566-a75f-69eab64488d7", + "title": "Melk", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "24e3ba70-f324-4d65-a285-cfee8e3a28e5", + "title": "Laktose", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "9896dc71-e6a9-4ef6-ad1f-9ec5c0db93dc", + "title": "Selleri", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "36829f09-e1e1-457d-b267-72fa80db2b36", + "title": "Sennep", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "ec09e7e4-51ae-4026-a7cf-bbeb29bf1468", + "title": "Sesamfrø", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "d24afad5-52fb-419c-b0b8-4f05ccdcee37", + "title": "Svoveldioksid og sulfitter", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "50dbce6e-4b7c-444c-ae58-e7890172961b", + "title": "Lupin", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "2c5ce0b6-22e8-4c6a-8369-b4c5c5284b27", + "title": "Bløtdyr", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "f2f98363-79c0-4b9d-b26f-16687af69b06", + "title": "Frokost", + "description": "Velg ønsket frokost.", + "codes": [ + { + "id": "88e65b9b-6598-44f6-9745-a694ea5d7f03", + "title": "Frokost-buffet", + "description": "", + "type": "code", + "parent": "", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "b77af015-dd37-4844-919e-03f1454085e2", + "title": "Engelsk frokost", + "description": "", + "type": "code", + "parent": "", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "574e3302-4c0d-4711-bdbc-ecbb942db29e", + "title": "Amerikansk frokost", + "description": "", + "type": "code", + "parent": "", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "ad3cd55b-a51f-46ea-9f27-1a54f6ad5c8d", + "title": "Kontinental frokost", + "description": "", + "type": "code", + "parent": "", + "sourceOriginal": null, + "sourceRel": null + } + ], + "type": "codelist", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "8d5de8e2-da25-4eeb-92ad-f3d214a4ec1d", + "title": "Lunsj", + "description": "Velg ønsket lunsj.", + "codes": [ + { + "id": "abf6d89d-2802-477e-a3be-1eb762fc0cae", + "title": "Lunsj buffet", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "9b60a48c-52ac-493c-85cd-e0b0ec521e5e", + "title": "2-retters lunsj", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "9e3b4d35-8250-472e-9522-b525edd2d55b", + "title": "3-retters lunsj", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "acf45f1d-7542-4f84-8e1a-54164c886446", + "title": "Alkoholfri drikke", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "3ad929ac-436a-4740-9128-251057b884db", + "title": "Mineralvann", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "607fa31f-1c23-48b5-9111-2f58cae78bc4", + "title": "Kaffe", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "9d4c3eb2-db0e-48bb-a701-091eee29a954", + "title": "Te", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "eb818e24-9526-4cd8-b1de-d6e498b1ed0f", + "title": "Vegetar", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "1f8ffc9e-b08b-4637-b5d2-3166d25b2dc3", + "title": "Vegansk", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "0ba084f6-4921-4daa-be9b-7b51eb18b656", + "title": "Økologisk", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "a1cf049d-5f9e-404f-8fe7-f79da9b6c306", + "title": "Tapas", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "2c374452-c964-4986-81cf-eb87f5398f39", + "title": "Lunsj-buffet", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "ea98ff4d-2b52-4d62-bd18-3ab56325150e", + "title": "2-retters", + "description": "Forrett og hovedrett", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "1bbfd9ed-4f99-41cf-873f-5b92a1874c51", + "title": "3-retters", + "description": "Forrett, hovedrett og dessert", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "20f4a5d9-a247-438e-ab61-82caf9371745", + "title": "Alkoholfri drikke", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "2b90afc1-1d75-485a-8774-47e7d6e42765", + "title": "Mineralvann", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "3b4c6637-915c-49a0-8a1c-bbad956e2db8", + "title": "Kaffe/te", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "a1bc74d9-9c33-4be9-bb5d-1c395a0b7461", + "title": "Vegetarmat", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "107dfa3d-eee2-4799-ae4e-7444580fbc06", + "title": "Vegansk mat", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "d8e97c68-a9da-45f7-a835-e392890f5c90", + "title": "Økologisk mat", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "dc352b1c-9db8-4df4-aa5f-268ccd8dfbbe", + "title": "Fingermat/tapas", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "01d3ed35-8bf0-4d0f-8119-4b8e149daeb1", + "title": "Middag", + "description": "Velg ønsket alternativ til middag.", + "codes": [ + { + "id": "ae93cdd5-2054-42e6-b861-b4d962c0933d", + "title": "Middags buffet", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "973031b0-2f3a-43b3-9dae-f9fe5dddf59d", + "title": "2-retters middag", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "08b63d3f-4387-47d1-970b-c5339c5693c0", + "title": "3-retters middag", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "6a679945-e679-4b17-9269-82dae32f0ae4", + "title": "5-retters middag", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "2aad43f0-ca33-42f3-a037-a7c2d32f2eb0", + "title": "Alkoholfri drikke", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "1a259a0e-ea96-4bff-a5c6-60fa5bd95bae", + "title": "Mineralvann", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "36dd7357-4dd4-4708-a8f2-9fb591cc3e60", + "title": "Kaffe", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "0951e3ca-c46a-455f-9e9c-390db9cf4971", + "title": "Te", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "d99fbcb3-d2c2-46b4-ae72-80f1e23bc212", + "title": "Vegetar", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "1943b7c2-4bd7-4045-a41b-00cd3cd368dc", + "title": "Vegansk", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "2b078d69-3416-4bbb-8dfd-31084766464d", + "title": "Økologisk", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "5c665b48-655b-4289-b25e-3b2e766dc727", + "title": "Tapas", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "7faebacd-4ad3-4f8d-9929-89242dc70eff", + "title": "Buffet", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "df280749-42f5-4242-a401-248e436f29e2", + "title": "2-retters", + "description": "Forrett og hovedrett", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "e204f48a-7422-42d5-ac28-ee25e9447972", + "title": "3-retters", + "description": "Forrett, hovedrett og dessert.", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "85c32bf3-1664-434d-a93b-61aa597de6e1", + "title": "5-retters", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "d52a55be-40d5-4cc8-a0a0-d6d52965c674", + "title": "Alkoholfri drikke", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "b7aa6fbd-121f-434a-9380-416b029622f7", + "title": "Øl/vin/apertif/café avec", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "9a7e1706-e0dc-4de5-be06-bfb988752dfc", + "title": "Vegetarmat", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "06902696-4fd9-4453-ab17-6d56a0029f91", + "title": "Vegansk mat", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "c93faf06-98d0-48d9-b498-54233d3e1e88", + "title": "Økologisk mat", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "c41ce4ca-3985-4e3d-9212-8b2425c8edf6", + "title": "Fingermat/tapas", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "e8f38160-90a5-4aa4-aeff-5a10a52ca905", + "title": "Tilpasset matregler knyttet til religion", + "description": "Kosher, halal, m.m.", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "f5ec09bf-9e0d-4143-8362-3fbbe41aaf4c", + "title": "Møtemat/pausemat", + "description": "Forfriskninger til møter/pauser", + "codes": [ + { + "id": "718cfcce-7121-4201-b2aa-2f214bafe114", + "title": "Smoothie", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "48a0bb4a-9993-4e4d-930f-4e10f718059a", + "title": "Mineralvann", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "15ad6eff-1c75-45a6-88ed-61fa54bd0294", + "title": "Nøtter", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "27a2011a-6640-492b-823b-f0c61ff2892a", + "title": "Wraps", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "2b155664-7d8b-44cc-851d-bed6d026fb62", + "title": "Smørbrød", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "01163c8a-17bc-4ca8-8d87-beb4db7167d6", + "title": "Kaffe", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "88102cc1-e576-4ea0-af6a-0d7d43fa6b0f", + "title": "Te", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "a5100b16-162b-4426-ac93-8cc53b7a8368", + "title": "Bakst", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "1f533bc5-23b8-40fe-852f-a2e4eb980f2e", + "title": "Tapas", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "ecb1de8a-07e9-42ed-9613-5684144070a0", + "title": "Smoothie", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "d7b76c58-a5a4-4c2b-9a46-b1eae8f4c8c8", + "title": "Mineralvann", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "03736ea3-f236-4029-bb53-eca9485708c1", + "title": "Nøtter", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "f13788a9-8e53-4e9a-b925-7d91e3b6fb91", + "title": "Wraps", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "d50a0f74-607f-4651-9f04-586280ef1f44", + "title": "Smørbrød", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "aa11db19-7225-4cdd-ad64-10b29cf21027", + "title": "Kaffe/te", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "f0d38be7-07d7-4204-9bfb-67789174bcae", + "title": "Kake/bakst", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "dd77e53d-7420-42a4-97eb-4bf6b0a02f93", + "title": "Fingermat/tapas", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "9b2bf47f-dd51-4ddd-88eb-ef94f7e31d8e", + "title": "Tilgjengelighet", + "description": "Tilrettelegging ved funksjonsnedsettelse.", + "codes": [ + { + "id": "cd936431-fca6-4afb-981f-d0a8b6a86908", + "title": "Bevegelse", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "e9cf0496-72d4-4090-9d54-cf908715a697", + "title": "Syn", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "cc56751f-84a6-42cc-8e0c-5b115e669a8e", + "title": "Hørsel", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "ab4e3b15-5043-480d-bc33-721ffb95c4e9", + "title": "Tale", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "408095f6-57f5-44df-b222-d581a2cf79e1", + "title": "Teleslynge", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "7bf393cc-aa99-40f8-bee8-072fd171b25a", + "title": "Bevegelse", + "description": "Tilrettelegging for individer med begrensninger knyttet til bevegelse og forflytning. Det kan for eksempel omhandle tilrettelegging for mennesker i rullestol og reserverte parkeringsplasser.", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "1c25adc6-3352-41c6-b813-c609830033e6", + "title": "Syn", + "description": "Tilrettelegging for mennesker med svekket synsfunksjon.", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "339ab873-4651-435b-b1e8-619c1ad50c17", + "title": "Hørsel", + "description": "Tilrettelegging for mennesker med nedsatt hørsel.", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "f879365d-01de-4248-9c4a-bc0dde5ed93b", + "title": "Tale", + "description": "Tilrettelegging for mennesker med nedsatt taleevne.", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "d4945300-117f-4c52-b007-7d979df69108", + "title": "Teleslynge ", + "description": "Gjør det mulig for lydsignal fra mikrofon eller annen elektronisk lydkilde å bli fanget opp av et høreapparat.", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "23a8d763-b269-4157-a607-9a1518691307", + "title": "Brannvarsling for døve", + "description": "A-C", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "e240c6a7-e948-463b-94ab-4b6ca642a70d", + "title": "Parkering", + "description": "", + "codes": [ + { + "id": "1affc1fb-52e3-4c4b-9e88-405723f9bf7c", + "title": "Gratis parkering på tomt", + "description": "", + "type": "code", + "parent": "", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "0ff41004-678e-4f29-9b30-179618c4e227", + "title": "Gratis parkering i eget parkeringshus", + "description": "", + "type": "code", + "parent": "", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "b045ae6c-0af4-47e3-8e47-bf0e5cc26e66", + "title": "Gratis parkering på offentlig sted utendørs", + "description": "", + "type": "code", + "parent": "", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "a3b0af58-765e-4ca2-878f-21d6b9c8c4bb", + "title": "Gratis gateparkering", + "description": "", + "type": "code", + "parent": "", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "8ca4befa-dd87-421a-bd56-f2fac0b31052", + "title": "Gratis EL-bil parkering", + "description": "", + "type": "code", + "parent": "", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "5c215d92-0b3b-4370-8e12-c93d5456c2dd", + "title": "Betalt parkering i parkeringshus", + "description": "", + "type": "code", + "parent": "", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "66cb3dfa-874e-4d15-968c-44bcb00f8d10", + "title": "Betalt parkering på offentlig sted utendørs", + "description": "", + "type": "code", + "parent": "", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "33530731-bfee-4cfe-9394-45abd4018c59", + "title": "Betalt gateparkering", + "description": "", + "type": "code", + "parent": "", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "ad3df5d9-583d-4684-ba22-8b95fe743b7e", + "title": "Betalt EL-bil parkering", + "description": "", + "type": "code", + "parent": "", + "sourceOriginal": null, + "sourceRel": null + } + ], + "type": "codelist", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "78f0af2f-065c-49e0-8083-24c84dca791e", + "title": "Romoppsett", + "description": "Velg ønsket type rom til arrangementet", + "codes": [ + { + "id": "3dd0eb6d-fced-4bf4-8f3a-9ec195a7fd33", + "title": "Klasserom", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "bda65d03-c0d5-424f-9022-57eeea9ba951", + "title": "Grupperom", + "description": "3-6 personer", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "707743c3-3ba2-4993-bb91-8a43bf20dfa1", + "title": "Grupperom", + "description": "7-12 personer", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "92292bb2-03f2-4cc6-959c-8be78671c8ce", + "title": "Konferanserom", + "description": "Hestesko/U-form", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "53de35a9-e995-4e88-af3f-0e5ed5ba926f", + "title": "T-bord", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "3f6fb907-9dba-42f3-ac45-90f20f802489", + "title": "Kinosal", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "f1079500-e073-42c2-800b-ee688fdcf9fb", + "title": "Styreoppsett/langbord", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "55bba453-9deb-4e77-b49c-33c481f4b032", + "title": "Grupperom", + "description": "Rundt bord", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "3811e5a9-cf76-4112-ad0f-487bdc79b360", + "title": "Delplenum", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "ddd75c90-1347-446b-a86c-667e377c9759", + "title": "Kafébord", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "e9e98713-b1ad-42e4-8b97-64f06397ffa9", + "title": "Scene", + "description": "A-C. Beskriv ønsket størrelse. ", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "d0f36f70-2440-4ec2-9068-35dabc99a6ff", + "title": "Geografisk plassering", + "description": "", + "codes": [ + { + "id": "830f07c4-f401-498a-a21f-ece269705322", + "title": "Oslo", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "74cb0c68-3e55-4f9a-a19f-c1c3319d7f3a", + "title": "Gardermoen", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + } + ], + "type": "codelist", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "febcf252-0e7c-4755-a3f1-b8d0e24070c2", + "title": "Standard til møterom/lokale", + "description": "Velg ønsket standard til møterom/lokale", + "codes": [ + { + "id": "22346093-d09b-4f15-a53d-44d69938e071", + "title": "Lav standard", + "description": "Lokale med enkel romstandard. Ikke/delvis tilgjengelig kursvert/vertinne. Begrenset tilgang til teknisk utstyr.", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "0d84078c-6cb1-4c3c-af76-dd34731aad99", + "title": "Middels standard", + "description": "Lokale med god standard, lysforhold og ventilasjon. Servering av alle måltider i egne eller nærliggende lokaler. Standard teknisk utstyr, samt tilgjengelig kursvert/vertinne. for deler av arrangementet.", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "ca84ef78-0ddd-4416-8ba0-0d0909aa18c6", + "title": "Høy standard", + "description": "Lokale med meget god standard, lysforhold, ventilasjon og utsikt. Wifi er inkludert og avansert teknisk utstyr er tilgjengelig for bruk. Alle måltider tilbys i egen restaurant. Tilgjengelig kursvert/vertinne under hele arrangementet.", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "ee7b5b2c-89a1-42cb-94d4-483cce484f37", + "title": "Høy standard +", + "description": "Lokale med svært høy kvalitet, lysforhold, ventilasjon og utsikt. Wifi er inkludert og teknisk utstyr skal være tilgjengelig. Alle måltider tilbys i egen restaurant. Tilgang til fellesareal og møterom. Høy grad av serviceytelser med tilgjengelig kursvert/vertinne under hele arrangementet. ", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "05b6ce85-a82b-4869-ab61-b01b48d6a968", + "title": "Historisk", + "description": "Legg inn beskrivelse", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null + }, + { + "id": "5dea41f6-5bc0-4b26-bd23-44d037bef0a6", + "title": "Standard til hotellrom/overnatting", + "description": "Velg ønsket standard på hotellrom/rom for overnatting", + "codes": [ + { + "id": "0599bd4e-6e40-4bfc-a252-5e0172078aba", + "title": "Lav standard/DNT-standard", + "description": "Enkel romstandard. Felles dusj og toalett. Enkel servering. ", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "f0bd1276-01a7-4434-93b8-ccffa4e10a1b", + "title": "Middels standard", + "description": "God romstandard. TV, skrivebord, egen dusj og toalett. ", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "2190abe9-fd9a-4ac2-92ba-97609df7c00e", + "title": "Høy standard", + "description": "Meget god romstandard med full service. TV, skrivebord, egen dusj og toalett. Inkluderer middag på à la carte restaurant. Wifi på rommet. Døgnåpen resepsjon. ", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "ed7673c9-a1c7-4957-9822-0486a8413e8b", + "title": "Høy standard +", + "description": "Svært god romstandard med full service. Romstandard og fellesarealer av høy kvalitet. 24-timers room-service og resepsjon. Alle måltider tilbys i egen restaurant. Inkludert lunsj og middag i à la carte restaurant. Innendørs svømmebasseng, spa, treningssenter inkludert uten ekstra kostnad. ", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null + }, + { + "id": "de614230-af6f-4859-8176-9760ee0234f2", + "title": "Standard på servering (meny)", + "description": "Velg ønsket meny", + "codes": [ + { + "id": "bd294866-eb58-45cc-bdd5-ab154d3a18e4", + "title": "Ordinær meny", + "description": "Stedets vanlige meny.", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "120f5e7f-04c3-45a0-9033-df00ec32c911", + "title": "Oppgradert meny", + "description": "Meny tilpasset arrangementet/sesong.", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "2dcc5458-25d4-4307-906a-bf7484e04d4d", + "title": "Festmeny", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "6dea154d-fe9f-4b53-b6f3-e6d77f4eaf1a", + "title": "2-retters", + "description": "Inkluderer forrett og hovedrett.", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "42ac171c-9936-428d-8b1b-74ecdb2a441c", + "title": "3-retters", + "description": "Inkluderer forrett, hovedrett og dessert. ", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null + }, + { + "id": "31748f47-df49-4d33-adb5-858a3d79013a", + "title": "Fysisk sikring", + "description": "Krav til bygningens sikkerhet.", + "codes": [ + { + "id": "849c2b68-f98f-40b0-8f22-558183e9bcc1", + "title": "Skuddsikre glass", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "6dc0c51a-1fa6-4a4c-a306-1ab51f187f8b", + "title": "Forsterkede vegger", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "62ac5c47-5f89-4894-808f-205c7d03204a", + "title": "Begrenset adkomst", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "5d08935c-9130-40ef-aba1-f7934853aafc", + "title": "Ekstra vakthold", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null + }, + { + "id": "8e3f6bea-469b-4e31-bc4e-5cea0d2c3d72", + "title": "Aktiviteter", + "description": "", + "codes": [ + { + "id": "e43df60a-a62e-44a6-b36d-a637b87bffe2", + "title": "Skisenter", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "22bb901e-08fd-47aa-b4b5-2e2fad96495c", + "title": "Sykkelbaner", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "61b2b1b8-f116-4f4c-99c8-137e3855d543", + "title": "Stier", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "9494565b-897d-4866-bc2e-72ef1390fc0a", + "title": "Kano", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "d5eaea12-3caa-4962-bd4a-149071bb86bd", + "title": "Robåter", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "309b7237-1ade-40fd-9008-25bebf17509b", + "title": "Pedalbåter", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "62b9610f-55ad-4671-be4d-dbd656e67bbe", + "title": "SUP", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "230124e9-43d1-4cf5-b060-fe80ea4e4954", + "title": "Minigolf", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "86c2f77e-7360-4323-b253-82dd39609706", + "title": "Ridning", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "39ae7d0a-279a-42c2-8fe0-6f0242be2778", + "title": "Fiskemuligheter", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "bd0ef16a-0000-42c4-ab90-0d3339feef21", + "title": "Shuffleboard", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "7d3fb958-5b15-4f07-9d63-1353e856d38b", + "title": "Bordtennis", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "73a161b6-3dc7-4dda-845e-4a55e7c89c07", + "title": "Klatring", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "65c4fe29-0c4d-46da-8917-28746e783022", + "title": "Mind-games", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "4e6ef14f-d045-447a-be89-2618c0a6483e", + "title": "Øl/vinsmaking", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "2795cb5c-1b27-4ef3-9209-c42fd2a86c7d", + "title": "Team-building (løyper)", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "55f2279a-d41f-4c1e-8241-8c22d515f289", + "title": "Yoga", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "70e02c8d-d9b0-4b2b-8e44-0afce65f4479", + "title": "Matkurs", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null + }, + { + "id": "1c478e69-3f84-4a82-9e62-f3be16f532d9", + "title": "Underholdning", + "description": "", + "codes": [ + { + "id": "ac4bcf47-0f52-4b01-afee-156e25b4decf", + "title": "Magiker", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "f5e4073b-b628-40ad-8988-2748d9136290", + "title": "Stand-up", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "c234da73-c64f-4b9e-b23f-84309f2c80fc", + "title": "Foredrag", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "23b85e4a-7366-4e2e-9610-d419b2ed70e9", + "title": "Musikalsk innslag", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null + } + ], + "tags": [], + "inheritedBanks": [], + "publishedDate": null, + "version": 1, + "projectId": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "type": "bank", + "publications": [ + { + "id": "552401af-d142-45c4-901c-2b237ed0f0cd", + "bankId": "552401af-d142-45c4-901c-2b237ed0f0cd", + "comment": "Publiserer så det kanskje blir tilgjengelig i byggern.", + "date": "2022-05-06T10:47:01.342Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "18131bcd-bd3f-4346-908a-522fc190ecbf", + "title": "Kurs og konferanser2", + "description": "Krav for kurs og konferanser, laget for Covid-192", + "needs": [ + { + "id": "a411d37f-17db-4ddd-83df-68105d6d8822", + "title": "Overnatting", + "description": "", + "requirements": [ + { + "id": "0166f8fc-70af-47dc-afd4-3836734ea048", + "title": "Krav 1", + "description": "", + "needId": "a411d37f-17db-4ddd-83df-68105d6d8822", + "tags": [], + "variants": [ + { + "id": "ffff0a9d-45bf-4d26-b04a-c6fdef4e3b8d", + "requirementText": "Varianttekst", + "instruction": "Hola Hoi", + "useProduct": false, + "useSpesification": true, + "useQualification": true, + "products": [], + "questions": [ + { + "id": "f652893b-454e-40e0-80e9-eb0a18e9c4ff", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Supervariant" + }, + { + "id": "fc66ba78-00fe-4d6e-85bf-b1e983d3d91d", + "requirementText": "Variant 2", + "instruction": "He", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6f5b40b2-7628-49cc-843b-7519cff7fe95" + ], + "questions": [ + { + "id": "566b6999-a170-48b3-9594-9ba3fbc1c7a0", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "540371a0-9ea1-45ac-9ad0-80157fe93f68", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Det går fort å lage varianter" + } + ], + "type": "requirement", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "822152ae-ba64-43a9-a6ba-377f0b6e1c4d", + "title": "Balders behov", + "description": "Test e", + "requirements": [ + { + "id": "4f207a47-b7ab-4d56-8243-14b7cab1c9d9", + "title": "Balders krav 100", + "description": "Gi meg det jeg vil ha", + "needId": "822152ae-ba64-43a9-a6ba-377f0b6e1c4d", + "type": "requirement", + "variants": [ + { + "id": "40c0d410-b0bf-4535-a81e-d8bd6aaee6d9", + "requirementText": "Test", + "instruction": "test", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "se" + } + ], + "tags": [], + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "847fb2b4-ffd3-47fa-912d-cc30e4d71209", + "title": "TEST", + "description": "Savner han", + "requirements": [ + { + "id": "c7a5a0c5-52a6-4b95-b122-774c3bcb8dcf", + "title": "Dette skal være balder sitt krav 2", + "description": "", + "needId": "847fb2b4-ffd3-47fa-912d-cc30e4d71209", + "type": "requirement", + "variants": [ + { + "id": "50c3dc0f-123f-460e-99bc-a10b242ad35c", + "requirementText": "Test", + "instruction": "Hei", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + }, + { + "id": "98183937-6d48-4ec0-b495-69106bd40278", + "requirementText": "Et til", + "instruction": "Kjør", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + } + ], + "tags": [], + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "254ff617-8980-4855-8b30-696eeca2c836", + "title": "Nytt krav", + "description": "", + "needId": "847fb2b4-ffd3-47fa-912d-cc30e4d71209", + "type": "requirement", + "variants": [ + { + "id": "d168045f-270a-462c-99ad-d466cc37b390", + "requirementText": "Ja", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + } + ], + "tags": [], + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "5277719a-f86f-4392-a325-748cec69b7b8", + "title": "ok.", + "description": "", + "needId": "847fb2b4-ffd3-47fa-912d-cc30e4d71209", + "type": "requirement", + "variants": [ + { + "id": "082201b6-dedb-4ea8-9b60-128a3790514b", + "requirementText": "Okokokok", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + } + ], + "tags": [], + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "5e554f3b-f96f-4251-bd24-d7f38a68ef3a", + "title": "Yeay", + "description": "Test", + "requirements": [ + { + "id": "8af094ea-12bc-489b-8bdc-aa9537081c82", + "title": "Test", + "description": "", + "needId": "5e554f3b-f96f-4251-bd24-d7f38a68ef3a", + "type": "requirement", + "variants": [ + { + "id": "4f3be934-e8d6-4772-8fef-173a9c3009ff", + "requirementText": "test", + "instruction": "test", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + }, + { + "id": "01564178-ea79-43ee-a370-17e653dc384f", + "requirementText": "han trenger et navn", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + } + ], + "tags": [], + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "3be2d08e-c07a-48e4-b73e-4bd25d53e992", + "title": "Nytt behov", + "description": "Behovet", + "requirements": [ + { + "id": "bd281f6d-de77-4629-823c-8cc8bad61dd2", + "title": "Test", + "description": "", + "needId": "3be2d08e-c07a-48e4-b73e-4bd25d53e992", + "type": "requirement", + "variants": [ + { + "id": "fe755bd2-b2fd-42ea-bbbc-ec54bf53ffc5", + "requirementText": "Hei", + "instruction": "ok.", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + } + ], + "tags": [], + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "a673423a-481b-4b49-b8ba-044d565c3ee4", + "title": "Kjør krav", + "description": "", + "needId": "3be2d08e-c07a-48e4-b73e-4bd25d53e992", + "type": "requirement", + "variants": [], + "tags": [], + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "6c930c07-cc55-4801-9be3-1c762cf4cfe2", + "title": "4", + "description": "", + "codes": [ + { + "id": "81614582-d907-42d0-b675-e49b5f40e2e7", + "title": "1", + "description": "", + "type": "code", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null, + "parent": "" + }, + { + "id": "245155d9-ebe3-41ba-b175-635325bbded9", + "title": "2", + "description": "", + "type": "code", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "82f0f05f-1ed9-4fe5-8559-a47e7734fb06", + "title": "1", + "description": "", + "codes": [ + { + "id": "95e43e1e-69de-4ed5-b39a-55cc9c548436", + "title": "1", + "description": "", + "type": "code", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null, + "parent": "" + }, + { + "id": "322b6b3c-219a-4087-8f4a-f2c06a24a1d0", + "title": "2", + "description": "", + "type": "code", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null, + "parent": "" + }, + { + "id": "78d04e07-01d8-40ac-8d0f-3cd71f57d489", + "title": "3", + "description": "", + "type": "code", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null, + "parent": "" + }, + { + "id": "4ab55a80-a042-4d1e-aadd-99c8b876fc4a", + "title": "4", + "description": "", + "type": "code", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "products": [ + { + "id": "a411d37f-17db-4ddd-83df-68105d6d8822", + "title": "Overnatting", + "description": "", + "requirements": [ + { + "id": "0166f8fc-70af-47dc-afd4-3836734ea048", + "title": "Krav 1", + "description": "", + "needId": "a411d37f-17db-4ddd-83df-68105d6d8822", + "tags": [], + "variants": [ + { + "id": "ffff0a9d-45bf-4d26-b04a-c6fdef4e3b8d", + "requirementText": "Varianttekst", + "instruction": "Hola Hoi", + "useProduct": false, + "useSpesification": true, + "useQualification": true, + "products": [], + "questions": [ + { + "id": "f652893b-454e-40e0-80e9-eb0a18e9c4ff", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Supervariant" + }, + { + "id": "fc66ba78-00fe-4d6e-85bf-b1e983d3d91d", + "requirementText": "Variant 2", + "instruction": "He", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6f5b40b2-7628-49cc-843b-7519cff7fe95" + ], + "questions": [ + { + "id": "566b6999-a170-48b3-9594-9ba3fbc1c7a0", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "540371a0-9ea1-45ac-9ad0-80157fe93f68", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Det går fort å lage varianter" + } + ], + "type": "requirement", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "822152ae-ba64-43a9-a6ba-377f0b6e1c4d", + "title": "Balders behov", + "description": "Test e", + "requirements": [ + { + "id": "4f207a47-b7ab-4d56-8243-14b7cab1c9d9", + "title": "Balders krav 100", + "description": "Gi meg det jeg vil ha", + "needId": "822152ae-ba64-43a9-a6ba-377f0b6e1c4d", + "type": "requirement", + "variants": [ + { + "id": "40c0d410-b0bf-4535-a81e-d8bd6aaee6d9", + "requirementText": "Test", + "instruction": "test", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "se" + } + ], + "tags": [], + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "847fb2b4-ffd3-47fa-912d-cc30e4d71209", + "title": "TEST", + "description": "Savner han", + "requirements": [ + { + "id": "c7a5a0c5-52a6-4b95-b122-774c3bcb8dcf", + "title": "Dette skal være balder sitt krav", + "description": "", + "needId": "847fb2b4-ffd3-47fa-912d-cc30e4d71209", + "type": "requirement", + "variants": [ + { + "id": "50c3dc0f-123f-460e-99bc-a10b242ad35c", + "requirementText": "Test", + "instruction": "Hei", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + }, + { + "id": "98183937-6d48-4ec0-b495-69106bd40278", + "requirementText": "Et til", + "instruction": "Kjør", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + } + ], + "tags": [], + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "254ff617-8980-4855-8b30-696eeca2c836", + "title": "Nytt krav", + "description": "", + "needId": "847fb2b4-ffd3-47fa-912d-cc30e4d71209", + "type": "requirement", + "variants": [ + { + "id": "d168045f-270a-462c-99ad-d466cc37b390", + "requirementText": "Ja", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + } + ], + "tags": [], + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "5277719a-f86f-4392-a325-748cec69b7b8", + "title": "ok.", + "description": "", + "needId": "847fb2b4-ffd3-47fa-912d-cc30e4d71209", + "type": "requirement", + "variants": [ + { + "id": "082201b6-dedb-4ea8-9b60-128a3790514b", + "requirementText": "Okokokok", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + } + ], + "tags": [], + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "type": "need", + "parent": "822152ae-ba64-43a9-a6ba-377f0b6e1c4d", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "5e554f3b-f96f-4251-bd24-d7f38a68ef3a", + "title": "Yeay", + "description": "Test", + "requirements": [ + { + "id": "8af094ea-12bc-489b-8bdc-aa9537081c82", + "title": "Test", + "description": "", + "needId": "5e554f3b-f96f-4251-bd24-d7f38a68ef3a", + "type": "requirement", + "variants": [ + { + "id": "4f3be934-e8d6-4772-8fef-173a9c3009ff", + "requirementText": "test", + "instruction": "test", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + }, + { + "id": "01564178-ea79-43ee-a370-17e653dc384f", + "requirementText": "han trenger et navn", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + } + ], + "tags": [], + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "type": "need", + "parent": "822152ae-ba64-43a9-a6ba-377f0b6e1c4d", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "publications": [], + "tags": [ + { + "id": "5e5cd865-ae6d-4eaf-baf9-c3e04b0a6ff1", + "title": "Miljøvennlig", + "type": "tag", + "parent": "", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "fe02610d-c585-4346-8cad-60e616c22b71", + "title": "Olje", + "description": "Ikke mi.jøvennlig", + "type": "tag", + "parent": "5e5cd865-ae6d-4eaf-baf9-c3e04b0a6ff1", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "9a1e5b75-afef-4562-8ab8-063aa423a971", + "title": "test", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "a5c7fb67-4a35-4e78-9e74-9443cd13d004", + "title": "teast", + "description": "", + "type": "tag", + "parent": "9a1e5b75-afef-4562-8ab8-063aa423a971", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "dc9aebe0-6e0c-421e-a52c-8605c2ffc59a", + "title": "tast", + "description": "", + "type": "tag", + "parent": "9a1e5b75-afef-4562-8ab8-063aa423a971", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "580a62b6-9de4-41e6-bee2-a123d5944e3c", + "title": "ttt", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "17ba65ef-01f3-49b8-bfb4-678a1f7e57ae", + "title": "ttteattatat", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "7ba2a635-b2a2-4341-a8df-81bae10d7fbb", + "title": "yrdy", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "c0f7c868-c104-4145-b14a-28190cb7e1ae", + "title": "test", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "version": 1, + "publishedDate": "2022-03-25T12:52:04.975Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed" + }, + { + "id": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "title": "Kurs og konferanser2", + "description": "Krav for kurs og konferanser, laget for Covid-192", + "needs": [ + { + "id": "a411d37f-17db-4ddd-83df-68105d6d8822", + "title": "Overnatting", + "description": "", + "requirements": [ + { + "id": "0166f8fc-70af-47dc-afd4-3836734ea048", + "title": "Krav 1", + "description": "", + "needId": "a411d37f-17db-4ddd-83df-68105d6d8822", + "tags": [], + "variants": [ + { + "id": "ffff0a9d-45bf-4d26-b04a-c6fdef4e3b8d", + "requirementText": "Varianttekst", + "instruction": "Hola Hoi", + "useProduct": false, + "useSpesification": true, + "useQualification": true, + "products": [], + "questions": [ + { + "id": "f652893b-454e-40e0-80e9-eb0a18e9c4ff", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Supervariant" + }, + { + "id": "fc66ba78-00fe-4d6e-85bf-b1e983d3d91d", + "requirementText": "Variant 2", + "instruction": "He", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6f5b40b2-7628-49cc-843b-7519cff7fe95" + ], + "questions": [ + { + "id": "566b6999-a170-48b3-9594-9ba3fbc1c7a0", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "540371a0-9ea1-45ac-9ad0-80157fe93f68", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Det går fort å lage varianter" + } + ], + "type": "requirement", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "822152ae-ba64-43a9-a6ba-377f0b6e1c4d", + "title": "Balders behov", + "description": "Test e", + "requirements": [ + { + "id": "4f207a47-b7ab-4d56-8243-14b7cab1c9d9", + "title": "Balders krav 100", + "description": "Gi meg det jeg vil ha", + "needId": "822152ae-ba64-43a9-a6ba-377f0b6e1c4d", + "type": "requirement", + "variants": [ + { + "id": "40c0d410-b0bf-4535-a81e-d8bd6aaee6d9", + "requirementText": "Test", + "instruction": "test", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "se" + } + ], + "tags": [], + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "847fb2b4-ffd3-47fa-912d-cc30e4d71209", + "title": "TEST", + "description": "Savner han", + "requirements": [ + { + "id": "c7a5a0c5-52a6-4b95-b122-774c3bcb8dcf", + "title": "Dette skal være balder sitt krav 2", + "description": "", + "needId": "847fb2b4-ffd3-47fa-912d-cc30e4d71209", + "type": "requirement", + "variants": [ + { + "id": "50c3dc0f-123f-460e-99bc-a10b242ad35c", + "requirementText": "Test", + "instruction": "Hei", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + }, + { + "id": "98183937-6d48-4ec0-b495-69106bd40278", + "requirementText": "Et til", + "instruction": "Kjør", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + } + ], + "tags": [], + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "254ff617-8980-4855-8b30-696eeca2c836", + "title": "Nytt krav", + "description": "", + "needId": "847fb2b4-ffd3-47fa-912d-cc30e4d71209", + "type": "requirement", + "variants": [ + { + "id": "d168045f-270a-462c-99ad-d466cc37b390", + "requirementText": "Ja", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + } + ], + "tags": [], + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "5277719a-f86f-4392-a325-748cec69b7b8", + "title": "ok.", + "description": "", + "needId": "847fb2b4-ffd3-47fa-912d-cc30e4d71209", + "type": "requirement", + "variants": [ + { + "id": "082201b6-dedb-4ea8-9b60-128a3790514b", + "requirementText": "Okokokok", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + } + ], + "tags": [], + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "5e554f3b-f96f-4251-bd24-d7f38a68ef3a", + "title": "Yeay", + "description": "Test", + "requirements": [ + { + "id": "8af094ea-12bc-489b-8bdc-aa9537081c82", + "title": "Test", + "description": "", + "needId": "5e554f3b-f96f-4251-bd24-d7f38a68ef3a", + "type": "requirement", + "variants": [ + { + "id": "4f3be934-e8d6-4772-8fef-173a9c3009ff", + "requirementText": "test", + "instruction": "test", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + }, + { + "id": "01564178-ea79-43ee-a370-17e653dc384f", + "requirementText": "han trenger et navn", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + } + ], + "tags": [], + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "3be2d08e-c07a-48e4-b73e-4bd25d53e992", + "title": "Nytt behov", + "description": "Behovet", + "requirements": [ + { + "id": "bd281f6d-de77-4629-823c-8cc8bad61dd2", + "title": "Test", + "description": "", + "needId": "3be2d08e-c07a-48e4-b73e-4bd25d53e992", + "type": "requirement", + "variants": [ + { + "id": "fe755bd2-b2fd-42ea-bbbc-ec54bf53ffc5", + "requirementText": "Hei", + "instruction": "ok.", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + } + ], + "tags": [], + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "a673423a-481b-4b49-b8ba-044d565c3ee4", + "title": "Kjør krav", + "description": "", + "needId": "3be2d08e-c07a-48e4-b73e-4bd25d53e992", + "type": "requirement", + "variants": [], + "tags": [], + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "6c930c07-cc55-4801-9be3-1c762cf4cfe2", + "title": "4", + "description": "", + "codes": [ + { + "id": "81614582-d907-42d0-b675-e49b5f40e2e7", + "title": "1", + "description": "", + "type": "code", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null, + "parent": "" + }, + { + "id": "245155d9-ebe3-41ba-b175-635325bbded9", + "title": "2", + "description": "", + "type": "code", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "82f0f05f-1ed9-4fe5-8559-a47e7734fb06", + "title": "1", + "description": "", + "codes": [ + { + "id": "95e43e1e-69de-4ed5-b39a-55cc9c548436", + "title": "1", + "description": "", + "type": "code", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null, + "parent": "" + }, + { + "id": "322b6b3c-219a-4087-8f4a-f2c06a24a1d0", + "title": "2", + "description": "", + "type": "code", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null, + "parent": "" + }, + { + "id": "78d04e07-01d8-40ac-8d0f-3cd71f57d489", + "title": "3", + "description": "", + "type": "code", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null, + "parent": "" + }, + { + "id": "4ab55a80-a042-4d1e-aadd-99c8b876fc4a", + "title": "4", + "description": "", + "type": "code", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "products": [ + { + "id": "a411d37f-17db-4ddd-83df-68105d6d8822", + "title": "Overnatting", + "description": "", + "requirements": [ + { + "id": "0166f8fc-70af-47dc-afd4-3836734ea048", + "title": "Krav 1", + "description": "", + "needId": "a411d37f-17db-4ddd-83df-68105d6d8822", + "tags": [], + "variants": [ + { + "id": "ffff0a9d-45bf-4d26-b04a-c6fdef4e3b8d", + "requirementText": "Varianttekst", + "instruction": "Hola Hoi", + "useProduct": false, + "useSpesification": true, + "useQualification": true, + "products": [], + "questions": [ + { + "id": "f652893b-454e-40e0-80e9-eb0a18e9c4ff", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Supervariant" + }, + { + "id": "fc66ba78-00fe-4d6e-85bf-b1e983d3d91d", + "requirementText": "Variant 2", + "instruction": "He", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6f5b40b2-7628-49cc-843b-7519cff7fe95" + ], + "questions": [ + { + "id": "566b6999-a170-48b3-9594-9ba3fbc1c7a0", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "540371a0-9ea1-45ac-9ad0-80157fe93f68", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Det går fort å lage varianter" + } + ], + "type": "requirement", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "822152ae-ba64-43a9-a6ba-377f0b6e1c4d", + "title": "Balders behov", + "description": "Test e", + "requirements": [ + { + "id": "4f207a47-b7ab-4d56-8243-14b7cab1c9d9", + "title": "Balders krav 100", + "description": "Gi meg det jeg vil ha", + "needId": "822152ae-ba64-43a9-a6ba-377f0b6e1c4d", + "type": "requirement", + "variants": [ + { + "id": "40c0d410-b0bf-4535-a81e-d8bd6aaee6d9", + "requirementText": "Test", + "instruction": "test", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "se" + } + ], + "tags": [], + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "847fb2b4-ffd3-47fa-912d-cc30e4d71209", + "title": "TEST", + "description": "Savner han", + "requirements": [ + { + "id": "c7a5a0c5-52a6-4b95-b122-774c3bcb8dcf", + "title": "Dette skal være balder sitt krav", + "description": "", + "needId": "847fb2b4-ffd3-47fa-912d-cc30e4d71209", + "type": "requirement", + "variants": [ + { + "id": "50c3dc0f-123f-460e-99bc-a10b242ad35c", + "requirementText": "Test", + "instruction": "Hei", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + }, + { + "id": "98183937-6d48-4ec0-b495-69106bd40278", + "requirementText": "Et til", + "instruction": "Kjør", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + } + ], + "tags": [], + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "254ff617-8980-4855-8b30-696eeca2c836", + "title": "Nytt krav", + "description": "", + "needId": "847fb2b4-ffd3-47fa-912d-cc30e4d71209", + "type": "requirement", + "variants": [ + { + "id": "d168045f-270a-462c-99ad-d466cc37b390", + "requirementText": "Ja", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + } + ], + "tags": [], + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "5277719a-f86f-4392-a325-748cec69b7b8", + "title": "ok.", + "description": "", + "needId": "847fb2b4-ffd3-47fa-912d-cc30e4d71209", + "type": "requirement", + "variants": [ + { + "id": "082201b6-dedb-4ea8-9b60-128a3790514b", + "requirementText": "Okokokok", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + } + ], + "tags": [], + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "type": "need", + "parent": "822152ae-ba64-43a9-a6ba-377f0b6e1c4d", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "5e554f3b-f96f-4251-bd24-d7f38a68ef3a", + "title": "Yeay", + "description": "Test", + "requirements": [ + { + "id": "8af094ea-12bc-489b-8bdc-aa9537081c82", + "title": "Test", + "description": "", + "needId": "5e554f3b-f96f-4251-bd24-d7f38a68ef3a", + "type": "requirement", + "variants": [ + { + "id": "4f3be934-e8d6-4772-8fef-173a9c3009ff", + "requirementText": "test", + "instruction": "test", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + }, + { + "id": "01564178-ea79-43ee-a370-17e653dc384f", + "requirementText": "han trenger et navn", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + } + ], + "tags": [], + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "type": "need", + "parent": "822152ae-ba64-43a9-a6ba-377f0b6e1c4d", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "publications": [ + { + "id": "18131bcd-bd3f-4346-908a-522fc190ecbf", + "bankId": "18131bcd-bd3f-4346-908a-522fc190ecbf", + "comment": "123", + "date": "2022-03-25T12:52:04.975Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null + } + ], + "tags": [ + { + "id": "5e5cd865-ae6d-4eaf-baf9-c3e04b0a6ff1", + "title": "Miljøvennlig", + "type": "tag", + "parent": "", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "fe02610d-c585-4346-8cad-60e616c22b71", + "title": "Olje", + "description": "Ikke mi.jøvennlig", + "type": "tag", + "parent": "5e5cd865-ae6d-4eaf-baf9-c3e04b0a6ff1", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "9a1e5b75-afef-4562-8ab8-063aa423a971", + "title": "test", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "a5c7fb67-4a35-4e78-9e74-9443cd13d004", + "title": "teast", + "description": "", + "type": "tag", + "parent": "9a1e5b75-afef-4562-8ab8-063aa423a971", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "dc9aebe0-6e0c-421e-a52c-8605c2ffc59a", + "title": "tast", + "description": "", + "type": "tag", + "parent": "9a1e5b75-afef-4562-8ab8-063aa423a971", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "580a62b6-9de4-41e6-bee2-a123d5944e3c", + "title": "ttt", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "17ba65ef-01f3-49b8-bfb4-678a1f7e57ae", + "title": "ttteattatat", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "7ba2a635-b2a2-4341-a8df-81bae10d7fbb", + "title": "yrdy", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "c0f7c868-c104-4145-b14a-28190cb7e1ae", + "title": "test", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "version": 1, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "712ffcf0-14ac-4220-8901-0b363cd3bae9" + }, + { + "id": "f4939d28-b0dc-4af8-a268-5aa6c3a4c6bb", + "title": "Kurs og konferanser", + "description": "Geirs test", + "needs": [ + { + "id": "4a1c509c-02f2-4dea-a9f3-2eeeef5cdb37", + "title": "Servering", + "description": "", + "requirements": [ + { + "id": "d0a70716-59e6-4dea-a2f5-752ff1960023", + "title": "Inkludert frokost", + "description": "", + "needId": "4a1c509c-02f2-4dea-a9f3-2eeeef5cdb37", + "type": "requirement", + "variants": [ + { + "id": "df95d65d-4c24-4150-ba7d-de048f207f68", + "requirementText": "Geir tester et krav", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c4fabb8d-77b9-4e51-bc27-c8968ed2b37d" + ], + "questions": [ + { + "id": "a0a2bae5-4e67-4f09-9e0c-22930a224e78", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Frokost inkludert ved bestilling av overnatting" + }, + { + "id": "b18761f5-6dbe-47de-a0c4-b4edb50e9994", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "Frokost inkludert ved bestilling av overnatting (tilpasset matallergi)" + } + ], + "tags": [], + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null + }, + { + "id": "2e15ec35-d6f0-4955-9845-23f74e0ec348", + "title": "Møtemat/pausemat", + "description": "", + "needId": "4a1c509c-02f2-4dea-a9f3-2eeeef5cdb37", + "type": "requirement", + "variants": [ + { + "id": "77ce911b-0ac0-4cfd-b9c6-15aabad0f4cd", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "Møtemat/pausemat inkludert" + } + ], + "tags": [], + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null + }, + { + "id": "90617079-3fd8-4cbc-bdd3-e2b69990a4ea", + "title": "Inkludert middag", + "description": "", + "needId": "4a1c509c-02f2-4dea-a9f3-2eeeef5cdb37", + "type": "requirement", + "variants": [ + { + "id": "285b3a84-3dd8-4dd2-a9ff-0e562cacd89e", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "Middag inkludert ved bestilling av overnatting" + } + ], + "tags": [], + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null + }, + { + "id": "1f92f5d3-5e88-42cf-8a84-ee28240957aa", + "title": "Aktiviteter", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null + }, + { + "id": "8e9e85c7-63df-4dfa-b2ae-8d69458a9b5c", + "title": "Overnatting", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null + }, + { + "id": "a069c3bb-08cc-418f-b6e1-d1db8830ea79", + "title": "Enkeltrom", + "description": "", + "requirements": [], + "type": "need", + "parent": "8e9e85c7-63df-4dfa-b2ae-8d69458a9b5c", + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null + }, + { + "id": "f731cd0e-e049-499c-a08a-4502187ec649", + "title": "Parkering", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null + }, + { + "id": "c622d421-2d05-4e8b-b117-c7d1b4b52327", + "title": "Universell utforming", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "8e467ad8-7e61-4b2a-94cd-6eef926f244d", + "title": "Allergener", + "description": "Liste over alle allergener", + "codes": [ + { + "id": "a7d49048-fbec-402d-b9e5-46748f06034a", + "title": "Cøliaki", + "description": "", + "type": "code", + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null, + "parent": "" + }, + { + "id": "9237d9e0-c904-46e2-b1c1-d32e0389c071", + "title": "Laktoseintoleranse", + "description": "", + "type": "code", + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null, + "parent": "" + }, + { + "id": "b5f74f8a-c0ef-4e80-a917-66882f26418a", + "title": "Peanøtter", + "description": "", + "type": "code", + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null + } + ], + "products": [ + { + "id": "c4fabb8d-77b9-4e51-bc27-c8968ed2b37d", + "title": "Møtefasiliteter", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "0adfb0a3-65d0-4bcd-a0ed-c2391af65684", + "title": "Grupperom", + "description": "", + "type": "product", + "parent": "c4fabb8d-77b9-4e51-bc27-c8968ed2b37d", + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "51612de3-4c5a-4966-bea5-0b70c6ceb4a6", + "title": "Møterom", + "description": "", + "type": "product", + "parent": "c4fabb8d-77b9-4e51-bc27-c8968ed2b37d", + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "6f984817-ab82-4818-b6ed-d44f9f940d45", + "title": "Konferansefasiliteter", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "6ddf8832-11ce-42fa-98e3-9025a6d67195", + "title": "Plensumsal", + "description": "", + "type": "product", + "parent": "6f984817-ab82-4818-b6ed-d44f9f940d45", + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "88da99da-ecfd-4899-b6df-725ca4566ea1", + "title": "Resepsjon", + "description": "", + "type": "product", + "parent": "6f984817-ab82-4818-b6ed-d44f9f940d45", + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "5d4119a3-60ea-4313-a4be-2c318d7409c1", + "title": "Utstillerområde", + "description": "", + "type": "product", + "parent": "6f984817-ab82-4818-b6ed-d44f9f940d45", + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [], + "tags": [], + "version": 1, + "publishedDate": "2022-08-09T10:25:42.015Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "bb0636be-4188-4132-83c2-90b866679859", + "deletedDate": null + }, + { + "id": "bb0636be-4188-4132-83c2-90b866679859", + "title": "Kurs og konferanser", + "description": "Geirs test", + "needs": [ + { + "id": "4a1c509c-02f2-4dea-a9f3-2eeeef5cdb37", + "title": "Servering", + "description": "", + "requirements": [ + { + "id": "d0a70716-59e6-4dea-a2f5-752ff1960023", + "title": "Inkludert frokost", + "description": "", + "needId": "4a1c509c-02f2-4dea-a9f3-2eeeef5cdb37", + "type": "requirement", + "variants": [ + { + "id": "df95d65d-4c24-4150-ba7d-de048f207f68", + "requirementText": "Geir tester et krav", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c4fabb8d-77b9-4e51-bc27-c8968ed2b37d" + ], + "questions": [ + { + "id": "a0a2bae5-4e67-4f09-9e0c-22930a224e78", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Frokost inkludert ved bestilling av overnatting" + }, + { + "id": "b18761f5-6dbe-47de-a0c4-b4edb50e9994", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "Frokost inkludert ved bestilling av overnatting (tilpasset matallergi)" + } + ], + "tags": [], + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null + }, + { + "id": "2e15ec35-d6f0-4955-9845-23f74e0ec348", + "title": "Møtemat/pausemat", + "description": "", + "needId": "4a1c509c-02f2-4dea-a9f3-2eeeef5cdb37", + "type": "requirement", + "variants": [ + { + "id": "77ce911b-0ac0-4cfd-b9c6-15aabad0f4cd", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "Møtemat/pausemat inkludert" + } + ], + "tags": [], + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null + }, + { + "id": "90617079-3fd8-4cbc-bdd3-e2b69990a4ea", + "title": "Inkludert middag", + "description": "", + "needId": "4a1c509c-02f2-4dea-a9f3-2eeeef5cdb37", + "type": "requirement", + "variants": [ + { + "id": "285b3a84-3dd8-4dd2-a9ff-0e562cacd89e", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "Middag inkludert ved bestilling av overnatting" + } + ], + "tags": [], + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null + }, + { + "id": "1f92f5d3-5e88-42cf-8a84-ee28240957aa", + "title": "Aktiviteter", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null + }, + { + "id": "8e9e85c7-63df-4dfa-b2ae-8d69458a9b5c", + "title": "Overnatting", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null + }, + { + "id": "a069c3bb-08cc-418f-b6e1-d1db8830ea79", + "title": "Enkeltrom", + "description": "", + "requirements": [], + "type": "need", + "parent": "8e9e85c7-63df-4dfa-b2ae-8d69458a9b5c", + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null + }, + { + "id": "f731cd0e-e049-499c-a08a-4502187ec649", + "title": "Parkering", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null + }, + { + "id": "c622d421-2d05-4e8b-b117-c7d1b4b52327", + "title": "Universell utforming", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "8e467ad8-7e61-4b2a-94cd-6eef926f244d", + "title": "Allergener", + "description": "Liste over alle allergener", + "codes": [ + { + "id": "a7d49048-fbec-402d-b9e5-46748f06034a", + "title": "Cøliaki", + "description": "", + "type": "code", + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null, + "parent": "" + }, + { + "id": "9237d9e0-c904-46e2-b1c1-d32e0389c071", + "title": "Laktoseintoleranse", + "description": "", + "type": "code", + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null, + "parent": "" + }, + { + "id": "b5f74f8a-c0ef-4e80-a917-66882f26418a", + "title": "Peanøtter", + "description": "", + "type": "code", + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null + } + ], + "products": [ + { + "id": "c4fabb8d-77b9-4e51-bc27-c8968ed2b37d", + "title": "Møtefasiliteter", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "0adfb0a3-65d0-4bcd-a0ed-c2391af65684", + "title": "Grupperom", + "description": "", + "type": "product", + "parent": "c4fabb8d-77b9-4e51-bc27-c8968ed2b37d", + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "51612de3-4c5a-4966-bea5-0b70c6ceb4a6", + "title": "Møterom", + "description": "", + "type": "product", + "parent": "c4fabb8d-77b9-4e51-bc27-c8968ed2b37d", + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "6f984817-ab82-4818-b6ed-d44f9f940d45", + "title": "Konferansefasiliteter", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "6ddf8832-11ce-42fa-98e3-9025a6d67195", + "title": "Plensumsal", + "description": "", + "type": "product", + "parent": "6f984817-ab82-4818-b6ed-d44f9f940d45", + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "88da99da-ecfd-4899-b6df-725ca4566ea1", + "title": "Resepsjon", + "description": "", + "type": "product", + "parent": "6f984817-ab82-4818-b6ed-d44f9f940d45", + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "5d4119a3-60ea-4313-a4be-2c318d7409c1", + "title": "Utstillerområde", + "description": "", + "type": "product", + "parent": "6f984817-ab82-4818-b6ed-d44f9f940d45", + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [ + { + "id": "f4939d28-b0dc-4af8-a268-5aa6c3a4c6bb", + "bankId": "f4939d28-b0dc-4af8-a268-5aa6c3a4c6bb", + "comment": "Geir første versjon", + "date": "2022-08-09T10:25:42.015Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null + } + ], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "e2b66af3-ad59-48b1-b07d-32e1de6d6e97", + "title": "Kurs og konferanse [Erlend]", + "description": "", + "needs": [ + { + "id": "e5395f5b-9ac0-43dc-a320-0bb745406480", + "title": "Arrangement", + "description": "", + "requirements": [ + { + "id": "b5707497-e01f-47b3-9360-5e5ccece30e8", + "title": "Type arrangement", + "description": "", + "needId": "e5395f5b-9ac0-43dc-a320-0bb745406480", + "type": "requirement", + "variants": [ + { + "id": "ce0e313b-6a8b-43d3-b600-3950be55f226", + "requirementText": "Arrangementet er av følgende type:", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "618d36f0-6367-4b0d-af12-bcb35a4ab8fa", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "14ad306a-fa4c-4b72-9cce-570f0a313a92", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Kode" + }, + { + "id": "4fff3c1a-83cf-476a-8964-ff316e8f3e50", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "dd197ec5-4e06-43db-923f-f83f9bf956df", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10, + "step": 1, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Fritekst" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "fbad687f-9a30-4619-8fdf-3fb64ea63b26", + "title": "Ankomst", + "description": "", + "needId": "e5395f5b-9ac0-43dc-a320-0bb745406480", + "type": "requirement", + "variants": [ + { + "id": "68dc0156-b90a-4d81-b56f-1edb020d02f3", + "requirementText": "Dato for ankomst:", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "67d46a71-e437-46ce-acec-cef6d52f0a01", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Dato for ankomst" + }, + { + "id": "db6bb874-baff-4707-91d1-c45d1d8cc0fe", + "requirementText": "Dato for innsjekk:", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "27d21926-6fbd-4fa0-81a1-cca0b85906e0", + "89a12bae-4efd-4d63-8104-812c4320a0f0", + "9dc5b01c-fdb5-43c8-8a90-264c3d0212ea", + "9738b9ec-61b9-458f-b3a8-91598bc14d8e" + ], + "questions": [ + { + "id": "497f52ec-84bf-486a-b625-929dca4c8fe4", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Dato for innsjekk" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "73269ed6-335b-4bcf-b23b-bd2b89255a2a", + "title": "Avreise", + "description": "", + "needId": "e5395f5b-9ac0-43dc-a320-0bb745406480", + "type": "requirement", + "variants": [ + { + "id": "8c63d7e7-ed19-4b22-b196-9a63451b69be", + "requirementText": "Dato for avreise:", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "2e3c98b4-c7bc-4ba2-9f07-950b379dfc8a", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Dato for avreise" + }, + { + "id": "cdd13caa-668c-4bc6-a637-ec60cf50eb2f", + "requirementText": "Dato for utsjekk:", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "27d21926-6fbd-4fa0-81a1-cca0b85906e0", + "89a12bae-4efd-4d63-8104-812c4320a0f0", + "9dc5b01c-fdb5-43c8-8a90-264c3d0212ea", + "9738b9ec-61b9-458f-b3a8-91598bc14d8e" + ], + "questions": [ + { + "id": "fa4b8956-8bae-4471-9e93-94a75fe5a9ab", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Dato for utsjekk" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "ee650624-77f6-4deb-8f1a-c767629f4ba8", + "title": "Tidspunkt (dato)", + "description": "", + "needId": "e5395f5b-9ac0-43dc-a320-0bb745406480", + "type": "requirement", + "variants": [ + { + "id": "57ad74c4-73ec-4bec-9ac0-0e839ddb5ab9", + "requirementText": "Produktet er for følgende dato:", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "f9217dbc-16b1-4b29-8453-d3f22f169b2e", + "2148ae47-a626-442c-897f-fe00f2391828", + "aa329b5d-9bbf-4cfd-bd1d-f49bd5d93251", + "4c7fd42b-5b8c-4c01-82d3-c58ca03c9826", + "ee1516e6-a4da-4b0f-b7a8-55e528d2f7f3", + "6563ced7-29a9-4297-a17e-cf30a1f9f184", + "679b16c2-6eae-430c-91fa-e06ca5a4fab4", + "d3e9b0fb-7b15-4227-910f-b8ba89b76793", + "99ae62a9-a814-4013-8e47-2dc05bad21a0", + "7642f782-5dbb-4743-9c2d-3509f46b694f", + "38ac2409-606c-4325-ae11-f65e149c20ee", + "7d534b07-9a2b-44cb-8b20-ee962427580b", + "ffa3b3d7-1c9b-453e-8122-3fd966b4677e" + ], + "questions": [ + { + "id": "705fbd70-554c-4e67-b4c1-a4db13ce5412", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Dato for bestillingen" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "239dbf15-da7c-4f7f-8fa9-9e8e80ee04b3", + "title": "Fasiliteter", + "description": "", + "requirements": [ + { + "id": "8b32029e-8d6d-45fd-94bc-248b4e942f1f", + "title": "Størrelse", + "description": "", + "needId": "239dbf15-da7c-4f7f-8fa9-9e8e80ee04b3", + "type": "requirement", + "variants": [ + { + "id": "81ab7342-fdf1-4a2e-867f-11dd138c3792", + "requirementText": "Antall personer det må være plass til på møterom:", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "f9217dbc-16b1-4b29-8453-d3f22f169b2e", + "2148ae47-a626-442c-897f-fe00f2391828", + "aa329b5d-9bbf-4cfd-bd1d-f49bd5d93251" + ], + "questions": [ + { + "id": "9071ccdf-4010-41e1-bc23-9fb5f315f147", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 30, + "step": 1, + "unit": "personer", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Antall personer på møterom" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "b46be6a6-d2ae-494c-8d80-3a48df4bf427", + "title": "Tilgang til Internett", + "description": "", + "needId": "239dbf15-da7c-4f7f-8fa9-9e8e80ee04b3", + "type": "requirement", + "variants": [ + { + "id": "5bd07d1f-5d49-4da1-84f6-251ffb105331", + "requirementText": "Det gis fri tilgang til Internett uten ekstra kostnader eller tegning av abonnement.", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "b5f86d49-a89f-4be6-a1a1-bb92890404d8", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tilgang til Internett uten ekstra kostnad/abonnement" + }, + { + "id": "3484e292-4d33-407e-a415-1070ec9f15fc", + "requirementText": "Det må være tilkoblingspunkt for arrangørens eget nettverksutstyr.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "f9217dbc-16b1-4b29-8453-d3f22f169b2e", + "2148ae47-a626-442c-897f-fe00f2391828", + "aa329b5d-9bbf-4cfd-bd1d-f49bd5d93251", + "4c7fd42b-5b8c-4c01-82d3-c58ca03c9826", + "ee1516e6-a4da-4b0f-b7a8-55e528d2f7f3", + "6563ced7-29a9-4297-a17e-cf30a1f9f184", + "679b16c2-6eae-430c-91fa-e06ca5a4fab4" + ], + "questions": [ + { + "id": "b31fa533-d093-402c-862f-3477511a09a1", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tilgang til å sette opp eget nettverk" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "a55aaa2f-d14d-43fc-bcd2-f91ccf4891f1", + "title": "Parkering", + "description": "", + "needId": "239dbf15-da7c-4f7f-8fa9-9e8e80ee04b3", + "type": "requirement", + "variants": [ + { + "id": "b2f6b4c0-3eed-4bb4-8d4d-142610d0c1f5", + "requirementText": "Det må være tilgjengelig gratis parkering med lademuligheter på lokasjonen. ", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "b08a6c7f-978b-44c3-83cd-a09ffc41d44a", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Behov for gratis parkering med lading" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "e8c223c3-653c-4f21-9f7b-d5883e833d89", + "title": "Geografisk lokasjon", + "description": "", + "requirements": [ + { + "id": "f98184d7-fd2a-4590-bf15-d776d5472c1a", + "title": "Distanse fra lokasjon", + "description": "", + "needId": "e8c223c3-653c-4f21-9f7b-d5883e833d89", + "type": "requirement", + "variants": [ + { + "id": "10840910-8699-4356-9819-a9e0021f374b", + "requirementText": "Oppgi distanse til nærmeste kollektivknutepunkt (togstasjon, bussterminal). Oppgis i antall meter kalkulert på Google Maps fra leverandørs adresse til knytepunktets adresse.", + "instruction": "Benyttes når distanse til kollektivknutepunkt er relevant for evaluering.", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "bedd9862-53ac-43c2-a545-efa9326fd39f", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10000, + "step": 50, + "unit": "meter", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Distanse fra nærmeste kollektivknutepunkt" + }, + { + "id": "1b1153cb-7671-437b-aa06-5c2a127a64f2", + "requirementText": "Oppgi distanse til adressen oppgitt under. Oppgis i antall kilometer kalkulert på Google Maps fra leverandørs adresse til oppgitt adresse.", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "d3715cf2-38df-4d08-9ac2-b705cf2bbf57", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 100, + "step": 0.1, + "unit": "km", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Distanse fra oppgitt adresse" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "d328160e-d04a-4a36-8031-f39fcb819206", + "title": "Adresse for avstandsberegning", + "description": "", + "needId": "e8c223c3-653c-4f21-9f7b-d5883e833d89", + "type": "requirement", + "variants": [ + { + "id": "08273d97-8798-493f-83eb-beb20d60b2e8", + "requirementText": "Følgende adresse brukes til avstandsberegning i kravet over:", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "41c160c8-1d9b-4679-9389-b74a1fef0abe", + "type": "Q_TEXT", + "config": { + "max": 200, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Oppgitt adresse" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + } + ], + "type": "need", + "parent": "239dbf15-da7c-4f7f-8fa9-9e8e80ee04b3", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "d5b2380c-9e20-4657-8ae6-ef5308206bb6", + "title": "Universell utforming", + "description": "", + "requirements": [ + { + "id": "76c6113a-3904-4fd5-95fc-639c29ea2740", + "title": "Tilgjengelighet", + "description": "", + "needId": "d5b2380c-9e20-4657-8ae6-ef5308206bb6", + "type": "requirement", + "variants": [ + { + "id": "7aef945e-5541-476a-ba71-4ab2eb51970c", + "requirementText": "Følgende tilrettelegging må være på plass på lokasjonen:", + "instruction": "Brukes i tilfeller hvor man er avhengig av tilrettelegging eller at det er politisk bestemt at det skal stilles krav om tilrettelegging.", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "c53732e5-8d57-462f-be05-c0ca8d4576e6", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "94ae8e4d-080a-4447-b98e-ab4de03b5e32", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Påkrevd tilrettelegging" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "b64c0e32-3a65-4aff-968d-060b6e2336f8", + "title": "Handikap-rom", + "description": "", + "needId": "d5b2380c-9e20-4657-8ae6-ef5308206bb6", + "type": "requirement", + "variants": [ + { + "id": "45d8a855-13b1-4f0f-bf74-b8851b1fa719", + "requirementText": "Rommet må være tilpasset person med handikap eller rullestol.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "27d21926-6fbd-4fa0-81a1-cca0b85906e0", + "89a12bae-4efd-4d63-8104-812c4320a0f0", + "9dc5b01c-fdb5-43c8-8a90-264c3d0212ea", + "9738b9ec-61b9-458f-b3a8-91598bc14d8e" + ], + "questions": [ + { + "id": "dfb67b99-cc3d-4876-a4e7-d5d2774d44d1", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Rom tilpasset for person med handikap eller rullestol" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "41a7f4cd-e7a5-4cfe-a78a-2035bf8dd332", + "title": "Handikap-parkering", + "description": "", + "needId": "d5b2380c-9e20-4657-8ae6-ef5308206bb6", + "type": "requirement", + "variants": [ + { + "id": "7ead3a51-fc99-42c4-b9b2-52d6faa27a32", + "requirementText": "Det må være tilgjengelig handikap-parkering på lokasjonen.", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "86c66da1-8394-4114-99af-a5554f4a1f76", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Handikap-parkering på lokasjonen" + }, + { + "id": "3776ff93-9df2-4a57-9c89-5076da428727", + "requirementText": "Antall parkeringsplasser som må være tilgjengelig for arrangementet på lokasjonen:", + "instruction": "Brukes når man på forhånd vet at man har et gitt behov så leverandør kan tilrettelegge dersom det er et større antall enn \"vanlig\".", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "4ed501f2-7b17-4c93-83a4-9a845abbd1f4", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 20, + "step": 1, + "unit": "parkeringsplasser", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Antall parkeringsplasser for handikap på lokasjonen" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + } + ], + "type": "need", + "parent": "239dbf15-da7c-4f7f-8fa9-9e8e80ee04b3", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "787ec415-f367-41d2-8870-2116728c60b5", + "title": "Oppsett", + "description": "", + "requirements": [ + { + "id": "094d5911-3c21-432e-aa5a-2c4645ba348a", + "title": "Møteromsoppsett", + "description": "", + "needId": "787ec415-f367-41d2-8870-2116728c60b5", + "type": "requirement", + "variants": [ + { + "id": "667aff0b-df93-4bf3-aa16-e9dac51ca117", + "requirementText": "Beskrivelse av oppsett på møterom:", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "f9217dbc-16b1-4b29-8453-d3f22f169b2e", + "2148ae47-a626-442c-897f-fe00f2391828", + "aa329b5d-9bbf-4cfd-bd1d-f49bd5d93251" + ], + "questions": [ + { + "id": "7a092004-7f20-4d1f-9466-3fddcf5d1c27", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Fritekst" + }, + { + "id": "27266ffd-2fdc-44ab-b9b9-fb938d0dff71", + "requirementText": "Følgende oppsett på møterommet er ønsket:", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "f9217dbc-16b1-4b29-8453-d3f22f169b2e", + "2148ae47-a626-442c-897f-fe00f2391828", + "aa329b5d-9bbf-4cfd-bd1d-f49bd5d93251" + ], + "questions": [ + { + "id": "1afd939f-a66b-4146-b663-87229f7c1517", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "9b63a659-ae0f-4008-8e53-d96e60f869fe", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Predefinert" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "527b6568-5d7f-475c-a93c-0d46512022e3", + "title": "Teknisk utstyr", + "description": "", + "needId": "787ec415-f367-41d2-8870-2116728c60b5", + "type": "requirement", + "variants": [ + { + "id": "79ce2146-acb2-4ce5-a43f-3c0f32850365", + "requirementText": "Følgende utstyr må være tilgjengelig på møterommet:", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "f9217dbc-16b1-4b29-8453-d3f22f169b2e", + "2148ae47-a626-442c-897f-fe00f2391828", + "aa329b5d-9bbf-4cfd-bd1d-f49bd5d93251" + ], + "questions": [ + { + "id": "dab691a8-c6e8-4e30-9835-9a322dd6837d", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "8b03cd70-5f2c-4399-a134-736b5bcfb591", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Utstyr på møterommet" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + } + ], + "type": "need", + "parent": "239dbf15-da7c-4f7f-8fa9-9e8e80ee04b3", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "9bd9b6ea-6b25-4a43-a23b-e19bb0d2de71", + "title": "Overnatting", + "description": "", + "requirements": [ + { + "id": "3ff3c708-9055-4b16-ac93-e20d330c4b69", + "title": "Inventar", + "description": "", + "needId": "9bd9b6ea-6b25-4a43-a23b-e19bb0d2de71", + "type": "requirement", + "variants": [ + { + "id": "9267b007-a8de-4119-bc44-4086d018a12d", + "requirementText": "Følgende inventar er ønskelig/nødvendig på rommet:", + "instruction": "Benyttes i tilfeller hvor spesifikt inventar er ønskelig eller nødvendig.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "27d21926-6fbd-4fa0-81a1-cca0b85906e0", + "89a12bae-4efd-4d63-8104-812c4320a0f0", + "9dc5b01c-fdb5-43c8-8a90-264c3d0212ea", + "9738b9ec-61b9-458f-b3a8-91598bc14d8e" + ], + "questions": [ + { + "id": "bdb829d7-5db6-4375-87bd-6bc09bdbe254", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "fd5fc764-aef6-4e36-8d2b-942670fae95c", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Inventar på rom" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "4c700f6a-5330-455b-bfa3-f9c3c995e1c0", + "title": "To enkeltsenger", + "description": "", + "needId": "9bd9b6ea-6b25-4a43-a23b-e19bb0d2de71", + "type": "requirement", + "variants": [ + { + "id": "c7ca5c98-9d6c-4d84-853d-c955ba2ca852", + "requirementText": "Ønsker at det benyttes to enkeltsenger i stedet for dobbeltseng.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "9dc5b01c-fdb5-43c8-8a90-264c3d0212ea", + "9738b9ec-61b9-458f-b3a8-91598bc14d8e" + ], + "questions": [ + { + "id": "57e69a50-d0f4-45d0-a3f2-ef51e9627c35", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Enkeltsenger" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "5639d0ca-bbbe-441f-965b-688ee957b2ab", + "title": "Bespisning", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "dc1081a9-0cad-48ac-bb6e-4a797866d381", + "title": "Inkludert bespisning", + "description": "Måltider inkludert i ikke-dedikerte produkter", + "requirements": [ + { + "id": "cbd51b69-dca8-4296-98c4-a8089ca11e6f", + "title": "Frokost", + "description": "", + "needId": "dc1081a9-0cad-48ac-bb6e-4a797866d381", + "type": "requirement", + "variants": [ + { + "id": "6bd8971b-2844-418e-9fc3-2be0abc3f6f3", + "requirementText": "Angi om frokost inngår i prisen for overnatting.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "27d21926-6fbd-4fa0-81a1-cca0b85906e0", + "89a12bae-4efd-4d63-8104-812c4320a0f0", + "9dc5b01c-fdb5-43c8-8a90-264c3d0212ea", + "9738b9ec-61b9-458f-b3a8-91598bc14d8e" + ], + "questions": [ + { + "id": "dee9bafd-1243-4aff-8787-477423c94a8b", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Inkludert frokost" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "d6781a8a-c8ac-4636-80dd-493ad3d62717", + "title": "Kvelds", + "description": "", + "needId": "dc1081a9-0cad-48ac-bb6e-4a797866d381", + "type": "requirement", + "variants": [ + { + "id": "3dffff0d-a23c-4abd-8e33-9efec0dbe173", + "requirementText": "Angi om kvelds inngår i prisen for overnatting.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "27d21926-6fbd-4fa0-81a1-cca0b85906e0", + "89a12bae-4efd-4d63-8104-812c4320a0f0", + "9dc5b01c-fdb5-43c8-8a90-264c3d0212ea", + "9738b9ec-61b9-458f-b3a8-91598bc14d8e" + ], + "questions": [ + { + "id": "5c92ac6e-8a1a-4bd7-9319-4fd7f436afbc", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Inkludert kvelds" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "9ad25c53-faab-4581-a486-63bb33461e0f", + "title": "Møteromsbespisning", + "description": "", + "needId": "dc1081a9-0cad-48ac-bb6e-4a797866d381", + "type": "requirement", + "variants": [ + { + "id": "38216a20-2d97-4b57-88cd-8c3f3dc17348", + "requirementText": "Oppgi tilgjengelig mat/drikke på møtetrommet", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "f9217dbc-16b1-4b29-8453-d3f22f169b2e", + "2148ae47-a626-442c-897f-fe00f2391828", + "aa329b5d-9bbf-4cfd-bd1d-f49bd5d93251" + ], + "questions": [ + { + "id": "cfdca67d-9994-4034-bf5a-5127786ff2e0", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "b6f7cc03-08d6-4bcc-9d69-9074bd729741", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tilgjengelig mat/drikke på møterom" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + } + ], + "type": "need", + "parent": "5639d0ca-bbbe-441f-965b-688ee957b2ab", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "999804a6-d3a5-4fc2-a845-b61bbbc15878", + "title": "Tilpasninger", + "description": "", + "requirements": [ + { + "id": "30bb95d6-c16c-4f13-a9a0-828d34d7afa8", + "title": "Allergener (høy sensitivitet)", + "description": "", + "needId": "999804a6-d3a5-4fc2-a845-b61bbbc15878", + "type": "requirement", + "variants": [ + { + "id": "4028127d-4247-4876-a44c-6b464ed1684d", + "requirementText": "Følgende matvarer kan ikke være i området for arrangementet.", + "instruction": "Brukes når personer på arrangementet ikke kan være i nærheten av spesifikk mat uten å få allergisk reaksjon.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "f9217dbc-16b1-4b29-8453-d3f22f169b2e", + "2148ae47-a626-442c-897f-fe00f2391828", + "aa329b5d-9bbf-4cfd-bd1d-f49bd5d93251", + "4c7fd42b-5b8c-4c01-82d3-c58ca03c9826", + "ee1516e6-a4da-4b0f-b7a8-55e528d2f7f3", + "6563ced7-29a9-4297-a17e-cf30a1f9f184", + "679b16c2-6eae-430c-91fa-e06ca5a4fab4", + "d3e9b0fb-7b15-4227-910f-b8ba89b76793", + "99ae62a9-a814-4013-8e47-2dc05bad21a0", + "7642f782-5dbb-4743-9c2d-3509f46b694f", + "38ac2409-606c-4325-ae11-f65e149c20ee", + "7d534b07-9a2b-44cb-8b20-ee962427580b", + "ffa3b3d7-1c9b-453e-8122-3fd966b4677e" + ], + "questions": [ + { + "id": "6732ac73-d429-4161-8b76-d94e0e35095e", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "7d36781c-fbd1-4f6a-9f9b-2ba1f005b4a2", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Allergener i området for arrangementet" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "f52a1ce1-391f-49a4-b42f-bd568e0b877e", + "title": "Allergener", + "description": "", + "needId": "999804a6-d3a5-4fc2-a845-b61bbbc15878", + "type": "requirement", + "variants": [ + { + "id": "e5600806-b7df-43e8-8744-4010aea724a4", + "requirementText": "Følgende allergener må man ta høyde for:", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "d3e9b0fb-7b15-4227-910f-b8ba89b76793", + "99ae62a9-a814-4013-8e47-2dc05bad21a0", + "7642f782-5dbb-4743-9c2d-3509f46b694f", + "38ac2409-606c-4325-ae11-f65e149c20ee", + "7d534b07-9a2b-44cb-8b20-ee962427580b", + "ffa3b3d7-1c9b-453e-8122-3fd966b4677e" + ], + "questions": [ + { + "id": "e190c6d7-7ad2-429e-9b0c-f5370d5d31d8", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "7d36781c-fbd1-4f6a-9f9b-2ba1f005b4a2", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Allergener" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + } + ], + "type": "need", + "parent": "5639d0ca-bbbe-441f-965b-688ee957b2ab", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "14ad306a-fa4c-4b72-9cce-570f0a313a92", + "title": "Arrangementstype", + "description": "", + "codes": [ + { + "id": "369458cb-0873-4d3e-9f56-afc93c9c0147", + "title": "Internt møte", + "description": "Mindre møte med i hovedsak interne deltakere", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "b07db7f4-26c9-4de3-8da9-03d72a594b48", + "title": "Intern samling", + "description": "Samling med i hovedsak interne deltakere", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "d186d9ec-34c0-4f3d-8266-1dc5f3062081", + "title": "Møte med eksterne", + "description": "Mindre møte med i hovedsak eksterne deltakere", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "3c251c5a-7f3a-4f4c-af46-24ec90df1dcb", + "title": "Samling med eksterne", + "description": "Samling med i hovedsak eksterne deltakere", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "f3b0450f-577b-448d-914e-7a6f3f82c577", + "title": "Konferanse", + "description": "Arrangement som skal behandles som en konferanse", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "94ae8e4d-080a-4447-b98e-ab4de03b5e32", + "title": "Tilgjengelighet", + "description": "Universell utforming", + "codes": [ + { + "id": "2f897c9f-5f9c-4127-8a48-cfaad4499503", + "title": "Syn", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "69b5cf55-3ff0-4ae7-b5eb-eb6e3a630873", + "title": "Hørsel", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "cde3f5b8-d252-4a26-b650-3d2dc0a3b9a2", + "title": "Bevegelse", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "fc4ea4d1-beca-404d-abd2-93ffc52dea49", + "title": "Rullestol", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "fd5fc764-aef6-4e36-8d2b-942670fae95c", + "title": "Inventar, hotellrom", + "description": "", + "codes": [ + { + "id": "3e438b0e-1e59-488c-88e3-c341cf6e8ebc", + "title": "Skrivebord", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "f33d1a87-de81-4a1c-96f4-11c7a6be000d", + "title": "Sofagruppe", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "532037bc-a78b-4111-a504-edb7a2f07fa8", + "title": "Lenestol", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "9e43d7f0-b65f-46e8-b18e-2a31d101395f", + "title": "Safe", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "94af1e45-d31f-4723-a182-af449218dfd1", + "title": "Badekar", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "8b03cd70-5f2c-4399-a134-736b5bcfb591", + "title": "Teknisk utstyr, møterom", + "description": "", + "codes": [ + { + "id": "01f625da-c93e-428d-b661-ce993ce5b552", + "title": "Videokanon", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "0ec827a4-0a87-4ce1-80f1-f93c67d6ca5c", + "title": "Overhead", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "b6f7cc03-08d6-4bcc-9d69-9074bd729741", + "title": "Bespisning på møterom", + "description": "", + "codes": [ + { + "id": "9e8c31f4-74f9-4bc6-834b-3034554881cf", + "title": "Kaffe/te og vann", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "d6162dc4-bd2b-4f5d-a21e-0cf68424db31", + "title": "Mineralvann", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "67250e53-3f0c-473a-9d9b-65beb82b9fdd", + "title": "Fersk frukt", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "9a02b5cb-0649-42d5-81c8-c293abd92820", + "title": "Kake eller fingermat", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "9b63a659-ae0f-4008-8e53-d96e60f869fe", + "title": "Møteromsoppsett", + "description": "", + "codes": [ + { + "id": "d3c254ac-e65d-46a3-97cb-44d278a6c3b3", + "title": "Langbord", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "435eedfa-05f3-441c-bfa9-73e7940587ba", + "title": "Klasserom", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "9dd2094c-5309-40db-9f15-8dc7f15743a9", + "title": "Hestesko", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "b0c773fb-5e1f-4ab0-8185-dde9ffa78e1d", + "title": "Grupper", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "7d36781c-fbd1-4f6a-9f9b-2ba1f005b4a2", + "title": "Allergener", + "description": "", + "codes": [ + { + "id": "a56a6a3d-f31f-4439-b582-a1759e69b913", + "title": "Hasselnøtt", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "3a20f29e-3000-467f-a8ae-886b35233b32", + "title": "Peanøtter", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "bce74154-b37d-49f4-9047-155394d1d1a9", + "title": "Fisk", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "ec45d176-c792-4419-a003-31f86f27e9d8", + "title": "Skalldyr", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + } + ], + "products": [ + { + "id": "f9217dbc-16b1-4b29-8453-d3f22f169b2e", + "title": "Møtefasiliteter", + "description": "Fasiliteter for møter", + "type": "product", + "parent": "", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "2148ae47-a626-442c-897f-fe00f2391828", + "title": "Grupperom", + "description": "Rom for inntil 10 personer", + "type": "product", + "parent": "f9217dbc-16b1-4b29-8453-d3f22f169b2e", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "aa329b5d-9bbf-4cfd-bd1d-f49bd5d93251", + "title": "Møterom", + "description": "Rom for inntil 30 personer", + "type": "product", + "parent": "f9217dbc-16b1-4b29-8453-d3f22f169b2e", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "4c7fd42b-5b8c-4c01-82d3-c58ca03c9826", + "title": "Konferansefasiliteter", + "description": "Fasiliteter for konferanser", + "type": "product", + "parent": "", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "ee1516e6-a4da-4b0f-b7a8-55e528d2f7f3", + "title": "Plenumssal", + "description": "Større sal som kan samle alle deltakerne", + "type": "product", + "parent": "4c7fd42b-5b8c-4c01-82d3-c58ca03c9826", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "6563ced7-29a9-4297-a17e-cf30a1f9f184", + "title": "Resepsjon", + "description": "Dedikert resepsjon for deltakere", + "type": "product", + "parent": "4c7fd42b-5b8c-4c01-82d3-c58ca03c9826", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "679b16c2-6eae-430c-91fa-e06ca5a4fab4", + "title": "Utstillerområde", + "description": "Område for utstillere", + "type": "product", + "parent": "4c7fd42b-5b8c-4c01-82d3-c58ca03c9826", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "27d21926-6fbd-4fa0-81a1-cca0b85906e0", + "title": "Rom", + "description": "Rom for overnatting", + "type": "product", + "parent": "", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "89a12bae-4efd-4d63-8104-812c4320a0f0", + "title": "Enkeltrom", + "description": "Rom for overnatting for en person", + "type": "product", + "parent": "27d21926-6fbd-4fa0-81a1-cca0b85906e0", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "9dc5b01c-fdb5-43c8-8a90-264c3d0212ea", + "title": "Dobbeltrom", + "description": "Rom for overnatting for inntil to personer", + "type": "product", + "parent": "27d21926-6fbd-4fa0-81a1-cca0b85906e0", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "9738b9ec-61b9-458f-b3a8-91598bc14d8e", + "title": "Familierom", + "description": "Rom for overnatting med dobbeltseng og to enkeltsenger", + "type": "product", + "parent": "27d21926-6fbd-4fa0-81a1-cca0b85906e0", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "d3e9b0fb-7b15-4227-910f-b8ba89b76793", + "title": "Bespisning", + "description": "Måltid som ikke inngår i andre produkter", + "type": "product", + "parent": "", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "99ae62a9-a814-4013-8e47-2dc05bad21a0", + "title": "Frokost", + "description": "Måltid servert før klokka 10", + "type": "product", + "parent": "d3e9b0fb-7b15-4227-910f-b8ba89b76793", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "7642f782-5dbb-4743-9c2d-3509f46b694f", + "title": "Lunsj", + "description": "Måltid servert mellom klokka 11 og 13", + "type": "product", + "parent": "d3e9b0fb-7b15-4227-910f-b8ba89b76793", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "38ac2409-606c-4325-ae11-f65e149c20ee", + "title": "Middag", + "description": "Større måltid servert etter klokka 15", + "type": "product", + "parent": "d3e9b0fb-7b15-4227-910f-b8ba89b76793", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "7d534b07-9a2b-44cb-8b20-ee962427580b", + "title": "Kvelds", + "description": "Mindre måltid servert etter klokka 19", + "type": "product", + "parent": "d3e9b0fb-7b15-4227-910f-b8ba89b76793", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "ffa3b3d7-1c9b-453e-8122-3fd966b4677e", + "title": "Matpakke", + "description": "Ferdig smurt matpakke", + "type": "product", + "parent": "d3e9b0fb-7b15-4227-910f-b8ba89b76793", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [], + "tags": [], + "version": 3, + "publishedDate": "2022-06-22T12:11:47.075Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "deletedDate": null + }, + { + "id": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "title": "Kurs og konferanse [Erlend]", + "description": "", + "needs": [ + { + "id": "e5395f5b-9ac0-43dc-a320-0bb745406480", + "title": "Arrangement", + "description": "", + "requirements": [ + { + "id": "b5707497-e01f-47b3-9360-5e5ccece30e8", + "title": "Type arrangement", + "description": "", + "needId": "e5395f5b-9ac0-43dc-a320-0bb745406480", + "type": "requirement", + "variants": [ + { + "id": "ce0e313b-6a8b-43d3-b600-3950be55f226", + "requirementText": "Arrangementet er av følgende type:", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "618d36f0-6367-4b0d-af12-bcb35a4ab8fa", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "14ad306a-fa4c-4b72-9cce-570f0a313a92", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Kode" + }, + { + "id": "4fff3c1a-83cf-476a-8964-ff316e8f3e50", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "dd197ec5-4e06-43db-923f-f83f9bf956df", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10, + "step": 1, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Fritekst" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "fbad687f-9a30-4619-8fdf-3fb64ea63b26", + "title": "Ankomst", + "description": "", + "needId": "e5395f5b-9ac0-43dc-a320-0bb745406480", + "type": "requirement", + "variants": [ + { + "id": "68dc0156-b90a-4d81-b56f-1edb020d02f3", + "requirementText": "Dato for ankomst:", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "67d46a71-e437-46ce-acec-cef6d52f0a01", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Dato for ankomst" + }, + { + "id": "db6bb874-baff-4707-91d1-c45d1d8cc0fe", + "requirementText": "Dato for innsjekk:", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "27d21926-6fbd-4fa0-81a1-cca0b85906e0", + "89a12bae-4efd-4d63-8104-812c4320a0f0", + "9dc5b01c-fdb5-43c8-8a90-264c3d0212ea", + "9738b9ec-61b9-458f-b3a8-91598bc14d8e" + ], + "questions": [ + { + "id": "497f52ec-84bf-486a-b625-929dca4c8fe4", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Dato for innsjekk" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "73269ed6-335b-4bcf-b23b-bd2b89255a2a", + "title": "Avreise", + "description": "", + "needId": "e5395f5b-9ac0-43dc-a320-0bb745406480", + "type": "requirement", + "variants": [ + { + "id": "8c63d7e7-ed19-4b22-b196-9a63451b69be", + "requirementText": "Dato for avreise:", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "2e3c98b4-c7bc-4ba2-9f07-950b379dfc8a", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Dato for avreise" + }, + { + "id": "cdd13caa-668c-4bc6-a637-ec60cf50eb2f", + "requirementText": "Dato for utsjekk:", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "27d21926-6fbd-4fa0-81a1-cca0b85906e0", + "89a12bae-4efd-4d63-8104-812c4320a0f0", + "9dc5b01c-fdb5-43c8-8a90-264c3d0212ea", + "9738b9ec-61b9-458f-b3a8-91598bc14d8e" + ], + "questions": [ + { + "id": "fa4b8956-8bae-4471-9e93-94a75fe5a9ab", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Dato for utsjekk" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "ee650624-77f6-4deb-8f1a-c767629f4ba8", + "title": "Tidspunkt (dato)", + "description": "", + "needId": "e5395f5b-9ac0-43dc-a320-0bb745406480", + "type": "requirement", + "variants": [ + { + "id": "57ad74c4-73ec-4bec-9ac0-0e839ddb5ab9", + "requirementText": "Produktet er for følgende dato:", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "f9217dbc-16b1-4b29-8453-d3f22f169b2e", + "2148ae47-a626-442c-897f-fe00f2391828", + "aa329b5d-9bbf-4cfd-bd1d-f49bd5d93251", + "4c7fd42b-5b8c-4c01-82d3-c58ca03c9826", + "ee1516e6-a4da-4b0f-b7a8-55e528d2f7f3", + "6563ced7-29a9-4297-a17e-cf30a1f9f184", + "679b16c2-6eae-430c-91fa-e06ca5a4fab4", + "d3e9b0fb-7b15-4227-910f-b8ba89b76793", + "99ae62a9-a814-4013-8e47-2dc05bad21a0", + "7642f782-5dbb-4743-9c2d-3509f46b694f", + "38ac2409-606c-4325-ae11-f65e149c20ee", + "7d534b07-9a2b-44cb-8b20-ee962427580b", + "ffa3b3d7-1c9b-453e-8122-3fd966b4677e" + ], + "questions": [ + { + "id": "705fbd70-554c-4e67-b4c1-a4db13ce5412", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Dato for bestillingen" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "239dbf15-da7c-4f7f-8fa9-9e8e80ee04b3", + "title": "Fasiliteter", + "description": "", + "requirements": [ + { + "id": "8b32029e-8d6d-45fd-94bc-248b4e942f1f", + "title": "Størrelse", + "description": "", + "needId": "239dbf15-da7c-4f7f-8fa9-9e8e80ee04b3", + "type": "requirement", + "variants": [ + { + "id": "81ab7342-fdf1-4a2e-867f-11dd138c3792", + "requirementText": "Antall personer det må være plass til på møterom:", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "f9217dbc-16b1-4b29-8453-d3f22f169b2e", + "2148ae47-a626-442c-897f-fe00f2391828", + "aa329b5d-9bbf-4cfd-bd1d-f49bd5d93251" + ], + "questions": [ + { + "id": "9071ccdf-4010-41e1-bc23-9fb5f315f147", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 30, + "step": 1, + "unit": "personer", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Antall personer på møterom" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "b46be6a6-d2ae-494c-8d80-3a48df4bf427", + "title": "Tilgang til Internett", + "description": "", + "needId": "239dbf15-da7c-4f7f-8fa9-9e8e80ee04b3", + "type": "requirement", + "variants": [ + { + "id": "5bd07d1f-5d49-4da1-84f6-251ffb105331", + "requirementText": "Det gis fri tilgang til Internett uten ekstra kostnader eller tegning av abonnement.", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "b5f86d49-a89f-4be6-a1a1-bb92890404d8", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tilgang til Internett uten ekstra kostnad/abonnement" + }, + { + "id": "3484e292-4d33-407e-a415-1070ec9f15fc", + "requirementText": "Det må være tilkoblingspunkt for arrangørens eget nettverksutstyr.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "f9217dbc-16b1-4b29-8453-d3f22f169b2e", + "2148ae47-a626-442c-897f-fe00f2391828", + "aa329b5d-9bbf-4cfd-bd1d-f49bd5d93251", + "4c7fd42b-5b8c-4c01-82d3-c58ca03c9826", + "ee1516e6-a4da-4b0f-b7a8-55e528d2f7f3", + "6563ced7-29a9-4297-a17e-cf30a1f9f184", + "679b16c2-6eae-430c-91fa-e06ca5a4fab4" + ], + "questions": [ + { + "id": "b31fa533-d093-402c-862f-3477511a09a1", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tilgang til å sette opp eget nettverk" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "a55aaa2f-d14d-43fc-bcd2-f91ccf4891f1", + "title": "Parkering", + "description": "", + "needId": "239dbf15-da7c-4f7f-8fa9-9e8e80ee04b3", + "type": "requirement", + "variants": [ + { + "id": "b2f6b4c0-3eed-4bb4-8d4d-142610d0c1f5", + "requirementText": "Det må være tilgjengelig gratis parkering med lademuligheter på lokasjonen. ", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "b08a6c7f-978b-44c3-83cd-a09ffc41d44a", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Behov for gratis parkering med lading" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "e8c223c3-653c-4f21-9f7b-d5883e833d89", + "title": "Geografisk lokasjon", + "description": "", + "requirements": [ + { + "id": "f98184d7-fd2a-4590-bf15-d776d5472c1a", + "title": "Distanse fra lokasjon", + "description": "", + "needId": "e8c223c3-653c-4f21-9f7b-d5883e833d89", + "type": "requirement", + "variants": [ + { + "id": "10840910-8699-4356-9819-a9e0021f374b", + "requirementText": "Oppgi distanse til nærmeste kollektivknutepunkt (togstasjon, bussterminal). Oppgis i antall meter kalkulert på Google Maps fra leverandørs adresse til knytepunktets adresse.", + "instruction": "Benyttes når distanse til kollektivknutepunkt er relevant for evaluering.", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "bedd9862-53ac-43c2-a545-efa9326fd39f", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10000, + "step": 50, + "unit": "meter", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Distanse fra nærmeste kollektivknutepunkt" + }, + { + "id": "1b1153cb-7671-437b-aa06-5c2a127a64f2", + "requirementText": "Oppgi distanse til adressen oppgitt under. Oppgis i antall kilometer kalkulert på Google Maps fra leverandørs adresse til oppgitt adresse.", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "d3715cf2-38df-4d08-9ac2-b705cf2bbf57", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 100, + "step": 0.1, + "unit": "km", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Distanse fra oppgitt adresse" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "d328160e-d04a-4a36-8031-f39fcb819206", + "title": "Adresse for avstandsberegning", + "description": "", + "needId": "e8c223c3-653c-4f21-9f7b-d5883e833d89", + "type": "requirement", + "variants": [ + { + "id": "08273d97-8798-493f-83eb-beb20d60b2e8", + "requirementText": "Følgende adresse brukes til avstandsberegning i kravet over:", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "41c160c8-1d9b-4679-9389-b74a1fef0abe", + "type": "Q_TEXT", + "config": { + "max": 200, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Oppgitt adresse" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + } + ], + "type": "need", + "parent": "239dbf15-da7c-4f7f-8fa9-9e8e80ee04b3", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "d5b2380c-9e20-4657-8ae6-ef5308206bb6", + "title": "Universell utforming", + "description": "", + "requirements": [ + { + "id": "76c6113a-3904-4fd5-95fc-639c29ea2740", + "title": "Tilgjengelighet", + "description": "", + "needId": "d5b2380c-9e20-4657-8ae6-ef5308206bb6", + "type": "requirement", + "variants": [ + { + "id": "7aef945e-5541-476a-ba71-4ab2eb51970c", + "requirementText": "Følgende tilrettelegging må være på plass på lokasjonen:", + "instruction": "Brukes i tilfeller hvor man er avhengig av tilrettelegging eller at det er politisk bestemt at det skal stilles krav om tilrettelegging.", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "c53732e5-8d57-462f-be05-c0ca8d4576e6", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "94ae8e4d-080a-4447-b98e-ab4de03b5e32", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Påkrevd tilrettelegging" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "b64c0e32-3a65-4aff-968d-060b6e2336f8", + "title": "Handikap-rom", + "description": "", + "needId": "d5b2380c-9e20-4657-8ae6-ef5308206bb6", + "type": "requirement", + "variants": [ + { + "id": "45d8a855-13b1-4f0f-bf74-b8851b1fa719", + "requirementText": "Rommet må være tilpasset person med handikap eller rullestol.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "27d21926-6fbd-4fa0-81a1-cca0b85906e0", + "89a12bae-4efd-4d63-8104-812c4320a0f0", + "9dc5b01c-fdb5-43c8-8a90-264c3d0212ea", + "9738b9ec-61b9-458f-b3a8-91598bc14d8e" + ], + "questions": [ + { + "id": "dfb67b99-cc3d-4876-a4e7-d5d2774d44d1", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Rom tilpasset for person med handikap eller rullestol" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "41a7f4cd-e7a5-4cfe-a78a-2035bf8dd332", + "title": "Handikap-parkering", + "description": "", + "needId": "d5b2380c-9e20-4657-8ae6-ef5308206bb6", + "type": "requirement", + "variants": [ + { + "id": "7ead3a51-fc99-42c4-b9b2-52d6faa27a32", + "requirementText": "Det må være tilgjengelig handikap-parkering på lokasjonen.", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "86c66da1-8394-4114-99af-a5554f4a1f76", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Handikap-parkering på lokasjonen" + }, + { + "id": "3776ff93-9df2-4a57-9c89-5076da428727", + "requirementText": "Antall parkeringsplasser som må være tilgjengelig for arrangementet på lokasjonen:", + "instruction": "Brukes når man på forhånd vet at man har et gitt behov så leverandør kan tilrettelegge dersom det er et større antall enn \"vanlig\".", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "4ed501f2-7b17-4c93-83a4-9a845abbd1f4", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 20, + "step": 1, + "unit": "parkeringsplasser", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Antall parkeringsplasser for handikap på lokasjonen" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + } + ], + "type": "need", + "parent": "239dbf15-da7c-4f7f-8fa9-9e8e80ee04b3", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "787ec415-f367-41d2-8870-2116728c60b5", + "title": "Oppsett", + "description": "", + "requirements": [ + { + "id": "094d5911-3c21-432e-aa5a-2c4645ba348a", + "title": "Møteromsoppsett", + "description": "", + "needId": "787ec415-f367-41d2-8870-2116728c60b5", + "type": "requirement", + "variants": [ + { + "id": "667aff0b-df93-4bf3-aa16-e9dac51ca117", + "requirementText": "Beskrivelse av oppsett på møterom:", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "f9217dbc-16b1-4b29-8453-d3f22f169b2e", + "2148ae47-a626-442c-897f-fe00f2391828", + "aa329b5d-9bbf-4cfd-bd1d-f49bd5d93251" + ], + "questions": [ + { + "id": "7a092004-7f20-4d1f-9466-3fddcf5d1c27", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Fritekst" + }, + { + "id": "27266ffd-2fdc-44ab-b9b9-fb938d0dff71", + "requirementText": "Følgende oppsett på møterommet er ønsket:", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "f9217dbc-16b1-4b29-8453-d3f22f169b2e", + "2148ae47-a626-442c-897f-fe00f2391828", + "aa329b5d-9bbf-4cfd-bd1d-f49bd5d93251" + ], + "questions": [ + { + "id": "1afd939f-a66b-4146-b663-87229f7c1517", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "9b63a659-ae0f-4008-8e53-d96e60f869fe", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Predefinert" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "527b6568-5d7f-475c-a93c-0d46512022e3", + "title": "Teknisk utstyr", + "description": "", + "needId": "787ec415-f367-41d2-8870-2116728c60b5", + "type": "requirement", + "variants": [ + { + "id": "79ce2146-acb2-4ce5-a43f-3c0f32850365", + "requirementText": "Følgende utstyr må være tilgjengelig på møterommet:", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "f9217dbc-16b1-4b29-8453-d3f22f169b2e", + "2148ae47-a626-442c-897f-fe00f2391828", + "aa329b5d-9bbf-4cfd-bd1d-f49bd5d93251" + ], + "questions": [ + { + "id": "dab691a8-c6e8-4e30-9835-9a322dd6837d", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "8b03cd70-5f2c-4399-a134-736b5bcfb591", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Utstyr på møterommet" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + } + ], + "type": "need", + "parent": "239dbf15-da7c-4f7f-8fa9-9e8e80ee04b3", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "9bd9b6ea-6b25-4a43-a23b-e19bb0d2de71", + "title": "Overnatting", + "description": "", + "requirements": [ + { + "id": "3ff3c708-9055-4b16-ac93-e20d330c4b69", + "title": "Inventar", + "description": "", + "needId": "9bd9b6ea-6b25-4a43-a23b-e19bb0d2de71", + "type": "requirement", + "variants": [ + { + "id": "9267b007-a8de-4119-bc44-4086d018a12d", + "requirementText": "Følgende inventar er ønskelig/nødvendig på rommet:", + "instruction": "Benyttes i tilfeller hvor spesifikt inventar er ønskelig eller nødvendig.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "27d21926-6fbd-4fa0-81a1-cca0b85906e0", + "89a12bae-4efd-4d63-8104-812c4320a0f0", + "9dc5b01c-fdb5-43c8-8a90-264c3d0212ea", + "9738b9ec-61b9-458f-b3a8-91598bc14d8e" + ], + "questions": [ + { + "id": "bdb829d7-5db6-4375-87bd-6bc09bdbe254", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "fd5fc764-aef6-4e36-8d2b-942670fae95c", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Inventar på rom" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "4c700f6a-5330-455b-bfa3-f9c3c995e1c0", + "title": "To enkeltsenger", + "description": "", + "needId": "9bd9b6ea-6b25-4a43-a23b-e19bb0d2de71", + "type": "requirement", + "variants": [ + { + "id": "c7ca5c98-9d6c-4d84-853d-c955ba2ca852", + "requirementText": "Ønsker at det benyttes to enkeltsenger i stedet for dobbeltseng.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "9dc5b01c-fdb5-43c8-8a90-264c3d0212ea", + "9738b9ec-61b9-458f-b3a8-91598bc14d8e" + ], + "questions": [ + { + "id": "57e69a50-d0f4-45d0-a3f2-ef51e9627c35", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Enkeltsenger" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "5639d0ca-bbbe-441f-965b-688ee957b2ab", + "title": "Bespisning", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "dc1081a9-0cad-48ac-bb6e-4a797866d381", + "title": "Inkludert bespisning", + "description": "Måltider inkludert i ikke-dedikerte produkter", + "requirements": [ + { + "id": "cbd51b69-dca8-4296-98c4-a8089ca11e6f", + "title": "Frokost", + "description": "", + "needId": "dc1081a9-0cad-48ac-bb6e-4a797866d381", + "type": "requirement", + "variants": [ + { + "id": "6bd8971b-2844-418e-9fc3-2be0abc3f6f3", + "requirementText": "Angi om frokost inngår i prisen for overnatting.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "27d21926-6fbd-4fa0-81a1-cca0b85906e0", + "89a12bae-4efd-4d63-8104-812c4320a0f0", + "9dc5b01c-fdb5-43c8-8a90-264c3d0212ea", + "9738b9ec-61b9-458f-b3a8-91598bc14d8e" + ], + "questions": [ + { + "id": "dee9bafd-1243-4aff-8787-477423c94a8b", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Inkludert frokost" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "d6781a8a-c8ac-4636-80dd-493ad3d62717", + "title": "Kvelds", + "description": "", + "needId": "dc1081a9-0cad-48ac-bb6e-4a797866d381", + "type": "requirement", + "variants": [ + { + "id": "3dffff0d-a23c-4abd-8e33-9efec0dbe173", + "requirementText": "Angi om kvelds inngår i prisen for overnatting.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "27d21926-6fbd-4fa0-81a1-cca0b85906e0", + "89a12bae-4efd-4d63-8104-812c4320a0f0", + "9dc5b01c-fdb5-43c8-8a90-264c3d0212ea", + "9738b9ec-61b9-458f-b3a8-91598bc14d8e" + ], + "questions": [ + { + "id": "5c92ac6e-8a1a-4bd7-9319-4fd7f436afbc", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Inkludert kvelds" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "9ad25c53-faab-4581-a486-63bb33461e0f", + "title": "Møteromsbespisning", + "description": "", + "needId": "dc1081a9-0cad-48ac-bb6e-4a797866d381", + "type": "requirement", + "variants": [ + { + "id": "38216a20-2d97-4b57-88cd-8c3f3dc17348", + "requirementText": "Oppgi tilgjengelig mat/drikke på møtetrommet", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "f9217dbc-16b1-4b29-8453-d3f22f169b2e", + "2148ae47-a626-442c-897f-fe00f2391828", + "aa329b5d-9bbf-4cfd-bd1d-f49bd5d93251" + ], + "questions": [ + { + "id": "cfdca67d-9994-4034-bf5a-5127786ff2e0", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "b6f7cc03-08d6-4bcc-9d69-9074bd729741", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tilgjengelig mat/drikke på møterom" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + } + ], + "type": "need", + "parent": "5639d0ca-bbbe-441f-965b-688ee957b2ab", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "999804a6-d3a5-4fc2-a845-b61bbbc15878", + "title": "Tilpasninger", + "description": "", + "requirements": [ + { + "id": "30bb95d6-c16c-4f13-a9a0-828d34d7afa8", + "title": "Allergener (høy sensitivitet)", + "description": "", + "needId": "999804a6-d3a5-4fc2-a845-b61bbbc15878", + "type": "requirement", + "variants": [ + { + "id": "4028127d-4247-4876-a44c-6b464ed1684d", + "requirementText": "Følgende matvarer kan ikke være i området for arrangementet.", + "instruction": "Brukes når personer på arrangementet ikke kan være i nærheten av spesifikk mat uten å få allergisk reaksjon.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "f9217dbc-16b1-4b29-8453-d3f22f169b2e", + "2148ae47-a626-442c-897f-fe00f2391828", + "aa329b5d-9bbf-4cfd-bd1d-f49bd5d93251", + "4c7fd42b-5b8c-4c01-82d3-c58ca03c9826", + "ee1516e6-a4da-4b0f-b7a8-55e528d2f7f3", + "6563ced7-29a9-4297-a17e-cf30a1f9f184", + "679b16c2-6eae-430c-91fa-e06ca5a4fab4", + "d3e9b0fb-7b15-4227-910f-b8ba89b76793", + "99ae62a9-a814-4013-8e47-2dc05bad21a0", + "7642f782-5dbb-4743-9c2d-3509f46b694f", + "38ac2409-606c-4325-ae11-f65e149c20ee", + "7d534b07-9a2b-44cb-8b20-ee962427580b", + "ffa3b3d7-1c9b-453e-8122-3fd966b4677e" + ], + "questions": [ + { + "id": "6732ac73-d429-4161-8b76-d94e0e35095e", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "7d36781c-fbd1-4f6a-9f9b-2ba1f005b4a2", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Allergener i området for arrangementet" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "f52a1ce1-391f-49a4-b42f-bd568e0b877e", + "title": "Allergener", + "description": "", + "needId": "999804a6-d3a5-4fc2-a845-b61bbbc15878", + "type": "requirement", + "variants": [ + { + "id": "e5600806-b7df-43e8-8744-4010aea724a4", + "requirementText": "Følgende allergener må man ta høyde for:", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "d3e9b0fb-7b15-4227-910f-b8ba89b76793", + "99ae62a9-a814-4013-8e47-2dc05bad21a0", + "7642f782-5dbb-4743-9c2d-3509f46b694f", + "38ac2409-606c-4325-ae11-f65e149c20ee", + "7d534b07-9a2b-44cb-8b20-ee962427580b", + "ffa3b3d7-1c9b-453e-8122-3fd966b4677e" + ], + "questions": [ + { + "id": "e190c6d7-7ad2-429e-9b0c-f5370d5d31d8", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "7d36781c-fbd1-4f6a-9f9b-2ba1f005b4a2", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Allergener" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + } + ], + "type": "need", + "parent": "5639d0ca-bbbe-441f-965b-688ee957b2ab", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "14ad306a-fa4c-4b72-9cce-570f0a313a92", + "title": "Arrangementstype", + "description": "", + "codes": [ + { + "id": "369458cb-0873-4d3e-9f56-afc93c9c0147", + "title": "Internt møte", + "description": "Mindre møte med i hovedsak interne deltakere", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "b07db7f4-26c9-4de3-8da9-03d72a594b48", + "title": "Intern samling", + "description": "Samling med i hovedsak interne deltakere", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "d186d9ec-34c0-4f3d-8266-1dc5f3062081", + "title": "Møte med eksterne", + "description": "Mindre møte med i hovedsak eksterne deltakere", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "3c251c5a-7f3a-4f4c-af46-24ec90df1dcb", + "title": "Samling med eksterne", + "description": "Samling med i hovedsak eksterne deltakere", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "f3b0450f-577b-448d-914e-7a6f3f82c577", + "title": "Konferanse", + "description": "Arrangement som skal behandles som en konferanse", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "94ae8e4d-080a-4447-b98e-ab4de03b5e32", + "title": "Tilgjengelighet", + "description": "Universell utforming", + "codes": [ + { + "id": "2f897c9f-5f9c-4127-8a48-cfaad4499503", + "title": "Syn", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "69b5cf55-3ff0-4ae7-b5eb-eb6e3a630873", + "title": "Hørsel", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "cde3f5b8-d252-4a26-b650-3d2dc0a3b9a2", + "title": "Bevegelse", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "fc4ea4d1-beca-404d-abd2-93ffc52dea49", + "title": "Rullestol", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "fd5fc764-aef6-4e36-8d2b-942670fae95c", + "title": "Inventar, hotellrom", + "description": "", + "codes": [ + { + "id": "3e438b0e-1e59-488c-88e3-c341cf6e8ebc", + "title": "Skrivebord", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "f33d1a87-de81-4a1c-96f4-11c7a6be000d", + "title": "Sofagruppe", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "532037bc-a78b-4111-a504-edb7a2f07fa8", + "title": "Lenestol", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "9e43d7f0-b65f-46e8-b18e-2a31d101395f", + "title": "Safe", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "94af1e45-d31f-4723-a182-af449218dfd1", + "title": "Badekar", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "8b03cd70-5f2c-4399-a134-736b5bcfb591", + "title": "Teknisk utstyr, møterom", + "description": "", + "codes": [ + { + "id": "01f625da-c93e-428d-b661-ce993ce5b552", + "title": "Videokanon", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "0ec827a4-0a87-4ce1-80f1-f93c67d6ca5c", + "title": "Overhead", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "b6f7cc03-08d6-4bcc-9d69-9074bd729741", + "title": "Bespisning på møterom", + "description": "", + "codes": [ + { + "id": "9e8c31f4-74f9-4bc6-834b-3034554881cf", + "title": "Kaffe/te og vann", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "d6162dc4-bd2b-4f5d-a21e-0cf68424db31", + "title": "Mineralvann", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "67250e53-3f0c-473a-9d9b-65beb82b9fdd", + "title": "Fersk frukt", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "9a02b5cb-0649-42d5-81c8-c293abd92820", + "title": "Kake eller fingermat", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "9b63a659-ae0f-4008-8e53-d96e60f869fe", + "title": "Møteromsoppsett", + "description": "", + "codes": [ + { + "id": "d3c254ac-e65d-46a3-97cb-44d278a6c3b3", + "title": "Langbord", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "435eedfa-05f3-441c-bfa9-73e7940587ba", + "title": "Klasserom", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "9dd2094c-5309-40db-9f15-8dc7f15743a9", + "title": "Hestesko", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "b0c773fb-5e1f-4ab0-8185-dde9ffa78e1d", + "title": "Grupper", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "7d36781c-fbd1-4f6a-9f9b-2ba1f005b4a2", + "title": "Allergener", + "description": "", + "codes": [ + { + "id": "a56a6a3d-f31f-4439-b582-a1759e69b913", + "title": "Hasselnøtt", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "3a20f29e-3000-467f-a8ae-886b35233b32", + "title": "Peanøtter", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "bce74154-b37d-49f4-9047-155394d1d1a9", + "title": "Fisk", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "ec45d176-c792-4419-a003-31f86f27e9d8", + "title": "Skalldyr", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + } + ], + "products": [ + { + "id": "f9217dbc-16b1-4b29-8453-d3f22f169b2e", + "title": "Møtefasiliteter", + "description": "Fasiliteter for møter", + "type": "product", + "parent": "", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "2148ae47-a626-442c-897f-fe00f2391828", + "title": "Grupperom", + "description": "Rom for inntil 10 personer", + "type": "product", + "parent": "f9217dbc-16b1-4b29-8453-d3f22f169b2e", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "aa329b5d-9bbf-4cfd-bd1d-f49bd5d93251", + "title": "Møterom", + "description": "Rom for inntil 30 personer", + "type": "product", + "parent": "f9217dbc-16b1-4b29-8453-d3f22f169b2e", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "4c7fd42b-5b8c-4c01-82d3-c58ca03c9826", + "title": "Konferansefasiliteter", + "description": "Fasiliteter for konferanser", + "type": "product", + "parent": "", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "ee1516e6-a4da-4b0f-b7a8-55e528d2f7f3", + "title": "Plenumssal", + "description": "Større sal som kan samle alle deltakerne", + "type": "product", + "parent": "4c7fd42b-5b8c-4c01-82d3-c58ca03c9826", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "6563ced7-29a9-4297-a17e-cf30a1f9f184", + "title": "Resepsjon", + "description": "Dedikert resepsjon for deltakere", + "type": "product", + "parent": "4c7fd42b-5b8c-4c01-82d3-c58ca03c9826", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "679b16c2-6eae-430c-91fa-e06ca5a4fab4", + "title": "Utstillerområde", + "description": "Område for utstillere", + "type": "product", + "parent": "4c7fd42b-5b8c-4c01-82d3-c58ca03c9826", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "27d21926-6fbd-4fa0-81a1-cca0b85906e0", + "title": "Rom", + "description": "Rom for overnatting", + "type": "product", + "parent": "", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "89a12bae-4efd-4d63-8104-812c4320a0f0", + "title": "Enkeltrom", + "description": "Rom for overnatting for en person", + "type": "product", + "parent": "27d21926-6fbd-4fa0-81a1-cca0b85906e0", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "9dc5b01c-fdb5-43c8-8a90-264c3d0212ea", + "title": "Dobbeltrom", + "description": "Rom for overnatting for inntil to personer", + "type": "product", + "parent": "27d21926-6fbd-4fa0-81a1-cca0b85906e0", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "9738b9ec-61b9-458f-b3a8-91598bc14d8e", + "title": "Familierom", + "description": "Rom for overnatting med dobbeltseng og to enkeltsenger", + "type": "product", + "parent": "27d21926-6fbd-4fa0-81a1-cca0b85906e0", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "d3e9b0fb-7b15-4227-910f-b8ba89b76793", + "title": "Bespisning", + "description": "Måltid som ikke inngår i andre produkter", + "type": "product", + "parent": "", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "99ae62a9-a814-4013-8e47-2dc05bad21a0", + "title": "Frokost", + "description": "Måltid servert før klokka 10", + "type": "product", + "parent": "d3e9b0fb-7b15-4227-910f-b8ba89b76793", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "7642f782-5dbb-4743-9c2d-3509f46b694f", + "title": "Lunsj", + "description": "Måltid servert mellom klokka 11 og 13", + "type": "product", + "parent": "d3e9b0fb-7b15-4227-910f-b8ba89b76793", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "38ac2409-606c-4325-ae11-f65e149c20ee", + "title": "Middag", + "description": "Større måltid servert etter klokka 15", + "type": "product", + "parent": "d3e9b0fb-7b15-4227-910f-b8ba89b76793", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "7d534b07-9a2b-44cb-8b20-ee962427580b", + "title": "Kvelds", + "description": "Mindre måltid servert etter klokka 19", + "type": "product", + "parent": "d3e9b0fb-7b15-4227-910f-b8ba89b76793", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "ffa3b3d7-1c9b-453e-8122-3fd966b4677e", + "title": "Matpakke", + "description": "Ferdig smurt matpakke", + "type": "product", + "parent": "d3e9b0fb-7b15-4227-910f-b8ba89b76793", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [ + { + "id": "d593ed53-a9b6-41d9-8bef-8893a7fdec39", + "bankId": "d593ed53-a9b6-41d9-8bef-8893a7fdec39", + "comment": "Første utgave", + "date": "2022-06-14T07:08:25.250Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "be17e2fb-cd0e-478e-869a-9452a851846c", + "bankId": "be17e2fb-cd0e-478e-869a-9452a851846c", + "comment": "Neste publisering", + "date": "2022-06-14T13:47:11.778Z", + "type": "publication", + "version": 2, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "e2b66af3-ad59-48b1-b07d-32e1de6d6e97", + "bankId": "e2b66af3-ad59-48b1-b07d-32e1de6d6e97", + "comment": "Neste utgave", + "date": "2022-06-22T12:11:47.075Z", + "type": "publication", + "version": 3, + "sourceOriginal": null, + "sourceRel": null + } + ], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "eae6dcf4-4333-4873-9fee-2e38dc1e9ee7", + "title": "Kurs og konferanse ASI (NY)", + "description": "Under arbeid, skal bli kravbank for produksjon", + "needs": [ + { + "id": "c8dd0912-eb52-4895-96e3-58996001d5b2", + "title": "Kurs- og konferanse", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "d8070a7d-3610-4ba1-90be-587d1bf1bb2a", + "title": "Tilgjengelighet og universell utforming", + "description": "Tilrettelegging for de med funksjonsnedsettelse. ", + "requirements": [ + { + "id": "8bcc2231-51b5-468e-a1c7-ae3853e543f5", + "title": "Tilgjengelighet", + "description": "", + "needId": "d8070a7d-3610-4ba1-90be-587d1bf1bb2a", + "type": "requirement", + "variants": [ + { + "id": "1c90c20e-7164-4b9c-b6b8-a98fd4459e65", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "Tilgjengelighet" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "0c04e641-d684-4595-b1e7-8552190ef23c", + "title": "Universell utforming", + "description": "", + "needId": "d8070a7d-3610-4ba1-90be-587d1bf1bb2a", + "type": "requirement", + "variants": [ + { + "id": "b6ba8933-01ed-43ac-9d58-42f40baf84e1", + "requirementText": "Oppfyller dere kravene til universell utforming?", + "instruction": "Trenger dere at leverandør oppfyller kravene til universell utforming?", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "e706b478-80e1-4fd8-b742-dcc661e6428b", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "23ec62dc-2d00-4e74-b20a-4d4e9dddf8ec", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Universell utforming" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + } + ], + "type": "need", + "parent": "c8dd0912-eb52-4895-96e3-58996001d5b2", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "37444ee7-b902-4e34-988a-08a78af878c0", + "title": "Sikkerhet", + "description": "", + "requirements": [ + { + "id": "98c2e29f-5f4e-40e5-92e4-6c840569e931", + "title": "Fysisk sikring", + "description": "", + "needId": "37444ee7-b902-4e34-988a-08a78af878c0", + "type": "requirement", + "variants": [ + { + "id": "6ba17c09-8951-4101-82b5-b12f1af65f3d", + "requirementText": "Kan dere tilby fysisk sikring for gjestene? 1) Svar ja/nei 2) Velg fra kodelisten hvilke krav dere oppfyller til fysisk sikring. ", + "instruction": "Trenger dere ekstra fysisk sikring under oppholdet? 1) Svar ja/nei 2) Velg fra kodelisten.", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "fd6a588a-9e6c-4f88-b430-38d52c86e220", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "3c0ba5c8-2a26-40e1-8428-a7443ff93655", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Krav til fysisk sikring under arrangementet" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + } + ], + "type": "need", + "parent": "c8dd0912-eb52-4895-96e3-58996001d5b2", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "f0fadfd5-325d-4572-b424-854203b66d93", + "title": "Standard", + "description": "", + "requirements": [ + { + "id": "25c63963-2416-45bd-8848-170ef883b953", + "title": "Standard på lokalene", + "description": "", + "needId": "f0fadfd5-325d-4572-b424-854203b66d93", + "type": "requirement", + "variants": [ + { + "id": "a434a5f5-1ae7-4564-a750-f5420da5a5f6", + "requirementText": "Velg fra kodelisten hvilken standard dere tilbyr på møterommene. ", + "instruction": "Velg fra kodelisten hvilken standard dere ønsker på møterommene. ", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "0dbbe638-7d9c-41ce-90e2-98febda4d5e1", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "73e6dbec-2d1f-4d46-b7db-8044fd180f43", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Standard på møterommene/kurs- og konferanserommene" + }, + { + "id": "c2621611-09af-418d-85ba-6a6775d4652a", + "requirementText": "Beskriv hvilken standard dere tilbyr på hotellrommene. Velg fra kodelisten.", + "instruction": "Velg hvilken standard dere ønsker på hotellrommene. Velg fra kodelisten. ", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c087beae-1a3d-427b-b0fe-2859f3a93a63", + "adf7dbf8-d86e-4550-a018-6fffe283876f", + "deb4c8f2-e2ee-4278-90f5-a986bd3cbf40", + "217cda9b-1984-4a5f-8467-bda3293133ca", + "b2d12668-3db1-4a63-bd38-5263f1b6ae23", + "7665fbf9-deba-4cb7-b2a4-30c976231077", + "ce098cbf-90d2-4019-b4c3-42e3308ebde7", + "66da97ac-466e-4914-af7f-28dbeef05d24" + ], + "questions": [ + { + "id": "3d3ce232-f9ad-45fb-bb9f-b9c6f717c57e", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "1c2873da-0fb7-4604-92aa-d9c483d0b554", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Standard på hotellrommene" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "d90feb81-f55f-4171-a177-364dd79601bf", + "title": "Luftkvalitet", + "description": "", + "needId": "f0fadfd5-325d-4572-b424-854203b66d93", + "type": "requirement", + "variants": [ + { + "id": "95eb744f-a8c5-4924-8eb6-a984956d8a77", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "Luftkvalitet" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + } + ], + "type": "need", + "parent": "c8dd0912-eb52-4895-96e3-58996001d5b2", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "cb2e7f5e-2831-4577-ace1-826ce87a9ffa", + "title": "Kundeservice", + "description": "Teknisk utstyr, teknisk assistanse, m.m.", + "requirements": [ + { + "id": "4c24c9e1-b7e9-452b-9078-53c1bad66064", + "title": "Teknisk utstyr", + "description": "", + "needId": "cb2e7f5e-2831-4577-ace1-826ce87a9ffa", + "type": "requirement", + "variants": [ + { + "id": "c3152c6b-5ba8-4e3e-b311-3c8f050213e4", + "requirementText": "Oppgi om dere kan tilby standard konferanseteknikk/AV-utstyr under arrangementet. 1) Svar ja/nei 2) Oppgi hvilket utstyr dere har tilgjengelig fra kodelisten. ", + "instruction": "Oppgi om dere trenger standard konferanseteknikk/AV-utstyr under arrangementet. 1) Svar ja/nei 2) Oppgi hvilket utstyr dere trenger fra kodelisten. ", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "82fc4874-282a-44b5-b350-6fb42ca062bc", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "4f39242f-7d8c-4002-a042-8d2ef94ffff3", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "25e48d34-e889-4641-994a-819f7a78e4d0", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Standard konferanseteknikk/AV-utstyr" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "3d47bcec-f798-4406-ba0f-54a922da659b", + "title": "Teknisk assistanse under arrangementet", + "description": "", + "needId": "cb2e7f5e-2831-4577-ace1-826ce87a9ffa", + "type": "requirement", + "variants": [ + { + "id": "aab14b3f-3182-46e6-94bf-3e3ab1d38d43", + "requirementText": "Oppgi om dere kan tilby teknisk assistanse under arrangementet. 1) Svar ja/nei 2) Beskriv om dere kan tilby tekniker under hele/deler av arrangementet 3) Oppgi dato for når dette kan tilbys 4) Oppgi tidspunkt for når dette kan tilbys.", + "instruction": "Oppgi om dere har behov for teknisk assistanse under arrangementet 1) Svar ja/nei 2) Beskriv om dere trenger assistanse under hele/deler av arrangementet 3) Oppgi dato for når dere trenger teknisk assistanse 4) Oppgi tidspunkt for når dere har behov for teknisk assistanse. ", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f", + "de87935c-40fa-49cd-9dfd-59a18ea88635", + "2efda706-512a-4a9b-ba6e-9fbe590bbcca" + ], + "questions": [ + { + "id": "7252fb80-0970-4b4e-ab63-f1f188e54c55", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tilgang til tekniker under arrangementet" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "9fee7e48-1c40-44a0-b204-74b1c9f647fa", + "title": "Oppsett av lokalet (rigg)", + "description": "", + "needId": "cb2e7f5e-2831-4577-ace1-826ce87a9ffa", + "type": "requirement", + "variants": [ + { + "id": "94c67e1e-0d37-405a-94bf-b3840b1ea3eb", + "requirementText": "Tilbyr dere å rigge lokalet før arrangementet finner sted?", + "instruction": "Ønsker dere at leverandør skal rigge lokalet før arrangementet finner sted?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "59737edc-3dfc-4f02-9aa6-24c15060f15d", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "db4b617a-e5a7-4965-aa57-8bcfad36488e", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Oppsett av lokalet" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "cade9c5b-c841-4acb-8b2b-1a56350994f4", + "title": "Omrigg av lokalet", + "description": "", + "needId": "cb2e7f5e-2831-4577-ace1-826ce87a9ffa", + "type": "requirement", + "variants": [ + { + "id": "a0b108d8-743a-4042-94f4-50b894762640", + "requirementText": "Kan dere tilby omrigg underveis i arrangementet?", + "instruction": "Ønsker dere omrigg underveis i arrangementet?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "35b419aa-cca6-480a-b099-dac4c3ec3d83", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "db4b617a-e5a7-4965-aa57-8bcfad36488e", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Omrigg av lokalet" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "8063ec2e-0fef-4d90-b627-bf0fea5b1a01", + "title": "Nedrigg av lokalet", + "description": "", + "needId": "cb2e7f5e-2831-4577-ace1-826ce87a9ffa", + "type": "requirement", + "variants": [ + { + "id": "d0053bfa-27b3-4405-a625-fd0f725a50de", + "requirementText": "Kan dere tilby opprydding etter arrangementet (nedrigg av lokalet)?", + "instruction": "Ønsker dere opprydding etter arrangementet (nedrigg av lokalet)?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "b09d1491-a336-4923-a089-86f61bdd15b7", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "db4b617a-e5a7-4965-aa57-8bcfad36488e", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Nedrigg av lokalet" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "23ae018b-2377-4447-853c-aca486da955b", + "title": "Dato for oppsett av lokalet (rigg)", + "description": "", + "needId": "cb2e7f5e-2831-4577-ace1-826ce87a9ffa", + "type": "requirement", + "variants": [ + { + "id": "2aa37883-0697-4002-b757-e236b92ef741", + "requirementText": "Hvilken dato kan dere tilby oppsett av lokalet?", + "instruction": "Hvilken dato ønsker dere oppsett av lokalet?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "c5d170ae-c31e-4ec3-b639-42b261de1799", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [ + { + "date": null, + "score": 0 + }, + { + "date": null, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Dato for oppsett av lokalet" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "dc5536dc-e811-4739-a522-a43f37b914b2", + "title": "Dato for omrigg av lokalet", + "description": "", + "needId": "cb2e7f5e-2831-4577-ace1-826ce87a9ffa", + "type": "requirement", + "variants": [ + { + "id": "ddcb74b9-2484-4644-bf72-954d1a1ff886", + "requirementText": "Hvilken dato kan dere tilby omrigg av lokalet?", + "instruction": "Hvilken dato ønsker dere omrigg av lokalet?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "a58954d6-e94d-4137-8b96-121a459b7905", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [ + { + "date": null, + "score": 0 + }, + { + "date": null, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Dato for omrigg av lokalet" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "ff2d6b73-fa61-4101-92bd-f85c7f303b05", + "title": "Dato for nedrigg av lokalet ", + "description": "", + "needId": "cb2e7f5e-2831-4577-ace1-826ce87a9ffa", + "type": "requirement", + "variants": [ + { + "id": "1f6ba82b-6126-4f83-9bac-5eed91c27214", + "requirementText": "Hvilken dato kan dere tilby nedrigg av lokalet?", + "instruction": "Hvilken dato ønsker dere nedrigg av lokalet?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "4659491d-5834-474b-b653-8d98afd4603a", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [ + { + "date": null, + "score": 0 + }, + { + "date": null, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Nedrigg av lokalet" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "7a4ba4bf-5735-4d70-bf3b-8ac87da8fa0e", + "title": "Tidspunkt for oppsett av lokalet (rigg)", + "description": "", + "needId": "cb2e7f5e-2831-4577-ace1-826ce87a9ffa", + "type": "requirement", + "variants": [ + { + "id": "e43cda65-0734-475e-9c98-229c14909ff7", + "requirementText": "Hvilket tidspunkt kan dere tilby oppsett av lokalet (rigg)?", + "instruction": "Hvilket tidspunkt ønsker dere oppsett av lokalet (rigg)?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "e3396e9e-909f-4cfd-a6db-a2619f66faab", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [ + { + "time": null, + "score": 0 + }, + { + "time": null, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tidspunkt for oppsett av lokalet (rigg)" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "e4762151-a05e-4e20-afde-ef2816eb4c39", + "title": "Tidspunkt for omrigg av lokalet", + "description": "", + "needId": "cb2e7f5e-2831-4577-ace1-826ce87a9ffa", + "type": "requirement", + "variants": [ + { + "id": "12f084d6-6565-4380-9654-d76689465a63", + "requirementText": "Hvilket tidspunkt kan dere tilby omrigg av lokalet?", + "instruction": "Hvilket tidspunkt ønsker dere omrigg av lokalet?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "6827a0da-2570-4ccd-b09b-51490ab2ddd1", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [ + { + "time": null, + "score": 0 + }, + { + "time": null, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tidspunkt for omrigg av lokalet" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "3d45bb8c-d325-4804-925d-2c2c5945f75e", + "title": "Tidspunkt for nedrigg av lokalet", + "description": "", + "needId": "cb2e7f5e-2831-4577-ace1-826ce87a9ffa", + "type": "requirement", + "variants": [ + { + "id": "768bc43b-c53d-4666-98e4-4ddd3c8defb1", + "requirementText": "Hvilket tidspunkt kan dere tilby nedrigg av lokalet (opprydding)?", + "instruction": "Hvilket tidspunkt ønsker dere nedrigg av lokalet (opprydding)?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "f17a7355-b486-4701-bcd4-79d99926b5ff", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [ + { + "time": null, + "score": 0 + }, + { + "time": null, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tidspunkt for nedrigg av lokalet" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "50e0d4b1-b779-4017-98a9-dd2031254d80", + "title": "Påmeldingssystem", + "description": "", + "needId": "cb2e7f5e-2831-4577-ace1-826ce87a9ffa", + "type": "requirement", + "variants": [ + { + "id": "1623a231-a40e-40cc-a402-9f70062063f6", + "requirementText": "Kan dere tilby oppdragsgiver et påmeldingssystem for deltakere?", + "instruction": "Ønsker dere at leverandør stiller med et påmeldingssystem for deltakere?", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "bc6bffc0-5305-4221-8383-49fc73dca4ca", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Påmeldingssystem" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "3c400c71-0a66-4a1a-adf4-ccf9876f492e", + "title": "Registrering", + "description": "", + "needId": "cb2e7f5e-2831-4577-ace1-826ce87a9ffa", + "type": "requirement", + "variants": [ + { + "id": "d8223377-675d-4472-95a8-2e20f769b0e0", + "requirementText": "Kan dere bistå oppdragsgiver med registrering av deltakere?", + "instruction": "Ønsker dere at leverandør bistår dere med registrering av deltakere?", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "95deca78-b51e-4045-98aa-f73eed32e606", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Bistand med registrering" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "1e6c4921-6840-4c63-aa43-36096a6b6c44", + "title": "Fast kontaktperson", + "description": "", + "needId": "cb2e7f5e-2831-4577-ace1-826ce87a9ffa", + "type": "requirement", + "variants": [ + { + "id": "860d917c-a4fe-4b16-b57b-1b49feec15c8", + "requirementText": "Kan dere tilby oppdragsgiver en fast kontaktperson før og under arrangementet for planlegging og gjennomføring av arrangementet? Personen skal bistå med koordinering under gjennomføringen av arrangementet.", + "instruction": "Ønsker dere en fast kontaktperson før og under arrangementet for planlegging og gjennomføring av arrangementet? Personen skal bistå med koordinering under gjennomføringen av arrangementet.", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "9b6f3a1d-fbcc-4ea1-8707-ab7c6d16e270", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Fast kontaktperson" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + } + ], + "type": "need", + "parent": "c8dd0912-eb52-4895-96e3-58996001d5b2", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "1836802d-5f10-4a32-bbac-db9ac4d5f899", + "title": "Servering", + "description": "", + "requirements": [ + { + "id": "6fba8d3a-a599-4ef8-9647-03aec980b50b", + "title": "Inkludert frokost", + "description": "", + "needId": "1836802d-5f10-4a32-bbac-db9ac4d5f899", + "type": "requirement", + "variants": [ + { + "id": "7d7f0afa-1706-41f2-af0c-5a5fc9d9bd5a", + "requirementText": "1) Er frokost inkludert ved bestilling av overnatting? Svar ja/nei.\n2) Oppgi hvilken type frokost dere kan tilby.\n3) Oppgi antall personer dere har kapasitet til å tilby frokost til.", + "instruction": "1) Er det ønskelig med frokost inkludert ved bestilling av overnatting? Svar ja/nei.\n2) Hvilken type frokost ønsker dere? Velg ønsket alternativ.\n3) Hvor mange personer skal ha frokost inkludert ved bestilling av overnatting? Velg antall. \n", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "adf7dbf8-d86e-4550-a018-6fffe283876f", + "deb4c8f2-e2ee-4278-90f5-a986bd3cbf40", + "217cda9b-1984-4a5f-8467-bda3293133ca", + "b2d12668-3db1-4a63-bd38-5263f1b6ae23", + "7665fbf9-deba-4cb7-b2a4-30c976231077", + "ce098cbf-90d2-4019-b4c3-42e3308ebde7", + "66da97ac-466e-4914-af7f-28dbeef05d24", + "c087beae-1a3d-427b-b0fe-2859f3a93a63" + ], + "questions": [ + { + "id": "e7de2885-9ba1-4ffd-9f69-1c8c7e794852", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "79d8f285-0368-44d2-8b3f-33a42ea045ea", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "6904f02d-fcd8-4a2d-80af-494cb2c6b6aa", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "4af41af5-0426-494d-b3f9-22ee5540c4a9", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 2000, + "step": 1, + "unit": "Antall personer", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 0, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Frokost inkludert ved bestilling av overnatting" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "a8be850a-3ffa-4941-9d32-60bfeee409fe", + "title": "Inkludert møtemat/pausemat", + "description": "", + "needId": "1836802d-5f10-4a32-bbac-db9ac4d5f899", + "type": "requirement", + "variants": [ + { + "id": "279f57a4-5551-47a6-bf7a-fa4640ea1695", + "requirementText": "Oppgi om dere kan tilby møtemat/pausemat ved bestilling av møterom/konferanserom.\n", + "instruction": "Oppgi om du ønsker møtemat/pausemat ved bestilling av møterom/konferanserom.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "81d387d0-f5ac-4c60-8d3f-f164113af336", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "fa708687-b5ee-482c-abfb-05d469695433", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "2cabbc89-f46a-4d71-b95e-c0de391da038", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "c4e46ec7-5039-4060-bfff-8c0d4d4d88b3", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 2000, + "step": 1, + "unit": "Personer", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 0, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Møtemat/pausemat inkludert ved bestilling av møterom/konferanserom" + }, + { + "id": "8ed4ce0b-7cb3-4f68-8eed-16e711a8e220", + "requirementText": "Oppgi hvilke tilpasninger dere kan tilby for møtemat/pausemat ved bestilling av møterom/konferanserom.", + "instruction": "Oppgi hvilke tilpasninger dere trenger for møtemat/pausemat ved bestilling av møterom/konferanserom.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "1fb3289f-ffc7-4552-96c7-fb1e48eed64b", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "d6fdb096-2c50-4356-abd3-816568582d39", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "8aca0a91-c1f7-4a2a-bb0d-0ab99d17aec7", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "9b4848bc-27d0-4f37-90bd-547f659af0d1", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 2000, + "step": 1, + "unit": "Personer", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 0, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Møtemat/pausemat inkludert (allergener) ved bestilling av møterom/konferanserom" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "61890b79-f482-44bd-80a8-68920891e74c", + "title": "Inkludert middag", + "description": "", + "needId": "1836802d-5f10-4a32-bbac-db9ac4d5f899", + "type": "requirement", + "variants": [ + { + "id": "783445e1-440c-41e7-ada5-5ffa66867c22", + "requirementText": "Oppgi om dere har middag inkludert ved bestilling av overnatting eller kurs- og konferanserom", + "instruction": "Oppgi om du ønsker middag inkludert ved bestilling av overnatting eller kurs- og konferanserom", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "7c01f2ca-73c5-4bd4-9bf9-ea44d199fad3", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "7ff601ee-1502-40c8-a576-a62d0db394b5", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "9db68a5d-1ef9-45ab-a2b8-c519dd96e92a", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Middag inkludert ved bestilling av overnatting eller kurs- og konferanserom" + }, + { + "id": "37493cdc-6849-48f7-8680-14e9114073d4", + "requirementText": "Kan dere tilby middag (tilpasset matallergi) inkludert ved bestilling av overnatting eller kurs- og konferanserom?", + "instruction": "Ønsker dere middag (tilpasset matallergi) inkludert ved bestilling av overnatting eller kurs- og konferanserom?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "5c4bb2a7-3ead-48ed-ade5-f7cc2871b7f4", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "d6fdb096-2c50-4356-abd3-816568582d39", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "ec0b3595-3feb-4553-be0d-3277af993cd7", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 2000, + "step": 1, + "unit": "Personer", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 0, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Middag inkludert ved bestilling av overnatting (tilpasset matallergi) eller kurs- og konferanserom" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "3699b540-9aa8-4300-967c-130b373f5c1c", + "title": "Middag (tilvalg)", + "description": "", + "needId": "1836802d-5f10-4a32-bbac-db9ac4d5f899", + "type": "requirement", + "variants": [ + { + "id": "b080dac4-83b8-46fc-bedb-8b57e03f1314", + "requirementText": "Kan dere tilby Oppdragsgiver oppgradering til festmiddag? 1) Ja/nei 2) Velg fra kodeliste", + "instruction": "Ønsker dere å oppgradere til festmiddag? 1) Ja/nei 2) Velg fra kodeliste", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "de87935c-40fa-49cd-9dfd-59a18ea88635", + "2efda706-512a-4a9b-ba6e-9fbe590bbcca" + ], + "questions": [ + { + "id": "67263e92-fd47-4dc7-9b5e-8d42d7b60bc0", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "58ece071-458b-4c25-a4c0-ad0fb33c311f", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "7beb89e7-deaa-4bff-ad10-fb8076187fae", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "c250a02e-b82b-4ca5-a50c-99f9ca5853d3", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 2000, + "step": 1, + "unit": "Personer", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 0, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Festmiddag" + }, + { + "id": "ece6fe25-818b-4817-803e-5777dce4a4fd", + "requirementText": "Kan dere tilby kjøp av middag dersom det ikke er inkludert i booking av møterom?", + "instruction": "Ønsker dere å kjøpe middag dersom det ikke er inkludert i booking av møterom?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e5065081-7c78-4c41-8478-af3de75bc7f8", + "2efda706-512a-4a9b-ba6e-9fbe590bbcca", + "de87935c-40fa-49cd-9dfd-59a18ea88635" + ], + "questions": [ + { + "id": "8415749e-3f7a-4855-941c-23d5fd6ded1d", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "a147b589-f866-456b-a03f-64e6cd4e560d", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "9db68a5d-1ef9-45ab-a2b8-c519dd96e92a", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "5095bd36-1670-4609-ae06-eec8f230052b", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 2000, + "step": 1, + "unit": "Personer", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 0, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Middag" + }, + { + "id": "cd6d819f-3712-434f-9c9b-8082f5dbcc88", + "requirementText": "Kan dere tilby kjøp av middag (tilpasset allergener) dersom det ikke er inkludert i booking av møterom/hotellrom?", + "instruction": "Ønsker dere å kjøpe middag (tilpasset allergener) dersom dette ikke er inkludert i booking av møterom/hotellrom?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e5065081-7c78-4c41-8478-af3de75bc7f8", + "2efda706-512a-4a9b-ba6e-9fbe590bbcca", + "de87935c-40fa-49cd-9dfd-59a18ea88635" + ], + "questions": [ + { + "id": "2f2301aa-22bb-4a57-93bc-1d19a7f4eb9c", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "8d5e45fb-c14e-422e-bcb0-097885f4862c", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "d6fdb096-2c50-4356-abd3-816568582d39", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "779be458-64b3-47f0-a3c5-ccc20f1b2d25", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 2000, + "step": 1, + "unit": "Personer", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 0, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Middag (tilpasset allergener)" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "5d10f387-0e31-4dc1-86f0-8a7b5390ab41", + "title": "Inkludert lunsj", + "description": "", + "needId": "1836802d-5f10-4a32-bbac-db9ac4d5f899", + "type": "requirement", + "variants": [ + { + "id": "0c4eef50-bc8f-42e9-9ff4-26e264720dca", + "requirementText": "Kan dere tilby lunsj inkludert ved bestilling av overnatting eller møterom? 1) Ja/nei 2) Velg fra kodeliste.", + "instruction": "Ønsker dere lunsj inkludert ved bestilling av overnatting eller møterom? 1) Ja/nei 2) Velg fra kodeliste.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "0cd36309-aaf6-4ce0-9b43-e412ddd453d8", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "7e7610e0-6fba-46a8-828a-38f50ead2406", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "d27a6c21-5f16-48c6-9d1c-271b41c5b0c3", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "51cb90d0-9b48-4e77-b62f-7b57bb990ccb", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 1000, + "step": 1, + "unit": "Personer", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 0, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Lunsj inkludert ved bestilling av overnatting eller møterom" + }, + { + "id": "56ae8c8e-c921-4515-aa0c-bac6d91272bb", + "requirementText": "Kan dere tilby lunsj tilpasset allergener inkludert ved bestilling av overnatting eller møterom? 1) Ja/nei 2) Velg matallergi dere kan ta hensyn til 3) Velg antall dere kan tilby.", + "instruction": "Ønsker dere lunsj inkludert tilpasset allergener ved bestilling av overnatting eller møterom? 1) Ja/nei 2) Velg matallergi dere ønsker at Leverandør skal ta hensyn til 3) Velg antall personer som trenger matservering tilpasset matallergi. \n\nDette skal ikke settes som et krav ved matpreferanser. ", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "3b77919f-b447-4d97-80ec-fb5cbfbd7c36", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "916727da-8d0a-47cf-91ef-ec1a7195644d", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "d6fdb096-2c50-4356-abd3-816568582d39", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "c7651f06-f1da-49bf-99d6-9dcc935d7b14", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 2000, + "step": 1, + "unit": "Antall personer", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 0, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Lunsj inkludert ved bestilling av overnatting eller møterom (tilpasset matallergi)" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "b67944e3-77de-49c9-beb1-a96eaf937456", + "title": "Frokost (tilvalg)", + "description": "", + "needId": "1836802d-5f10-4a32-bbac-db9ac4d5f899", + "type": "requirement", + "variants": [ + { + "id": "500a10f8-2917-48cd-b0e1-f3cdc27b8a30", + "requirementText": "Kan dere tilby kjøp av frokost dersom det ikke er inkludert i booking av f.eks. hotellrom? 1) Svar ja/nei 2) Oppgi hvilken type frokost dere i så fall kan tilby 3) Oppgi antall dere kan tilby frokost til.", + "instruction": "Ønsker dere å kjøpe frokost for en eller flere dager? 1) Svar ja/nei 2) Oppgi hvilken frokost dere ønsker 3) Oppgi antall som ønsker frokost.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "1d855ecf-48c7-4cda-87c0-03e6167ef345" + ], + "questions": [ + { + "id": "7427d2d9-1f8d-486a-8bf5-d6aaa471b5ce", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "1dd85812-a269-4639-b8eb-b51c8c50aaad", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "6904f02d-fcd8-4a2d-80af-494cb2c6b6aa", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "3233ace5-3868-4e19-b045-43cf20535830", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 2000, + "step": 1, + "unit": "Personer", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 0, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Kjøp av ekstra frokost" + }, + { + "id": "da82675f-42d2-4c38-9689-2be0621f5549", + "requirementText": "Kan dere tilby kjøp av frokost tilpasset allergener dersom det ikke er inkludert i booking av f.eks. hotellrom? 1) Svar ja/nei 2) Oppgi hvilke tilpasninger dere kan tilby 3) Oppgi antall dere kan tilby til.", + "instruction": "Ønsker dere å kjøpe ekstra frokost tilpasset allergener dersom det ikke er inkludert i booking av f.eks. hotellrom? 1) Svar ja/nei 2)Oppgi hvilke tilpasninger dere ønsker fra leverandør 3) Oppgi antallet dere ønsker å kjøpe frokost tilpasset allergener til.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "1d855ecf-48c7-4cda-87c0-03e6167ef345" + ], + "questions": [ + { + "id": "1f2cb734-77fd-414c-b717-f3eb3bdabaf6", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "12bf0348-7b9f-4ace-87d0-ca5783b5972f", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "d6fdb096-2c50-4356-abd3-816568582d39", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "1688d222-641f-4f8f-b859-85e9e1d4898b", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 2000, + "step": 1, + "unit": "Personer", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 0, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Kjøp av ekstra frokost (tilpasset allergener)" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "01920d9d-d717-4397-a8be-0a7895f734b8", + "title": "Lunsj (tilvalg)", + "description": "", + "needId": "1836802d-5f10-4a32-bbac-db9ac4d5f899", + "type": "requirement", + "variants": [ + { + "id": "9a677fa8-cd31-471b-a2f6-aad6b3a46b12", + "requirementText": "Kan dere tilby kjøp av lunsj som ikke er inkludert ved booking av f.eks. hotellrom? 1) Svar ja/nei 2) Oppgi hvilken type lunsj dere kan tilby", + "instruction": "Ønsker dere å kjøpe ekstra lunsj for en eller flere dager? 1) Ja/nei 2) Oppgi hvilken type lunsj dere ønsker.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "67577fef-c766-4bf6-9c78-8c0c83ca7bae" + ], + "questions": [ + { + "id": "96ec6ad2-78b4-498d-9fd0-ec8acfc268d9", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "d3233a94-7198-45a5-bff6-2de3d272ce39", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "d27a6c21-5f16-48c6-9d1c-271b41c5b0c3", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Kjøp av ekstra lunsj" + }, + { + "id": "3e3d023c-ec13-451e-9c4a-fe18fbd2a02a", + "requirementText": "Kan dere tilby lunsj tilpasset allergener?", + "instruction": "Ønsker dere lunsj tilpasset allergener?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "67577fef-c766-4bf6-9c78-8c0c83ca7bae" + ], + "questions": [ + { + "id": "bbe2d0c3-be3f-43f5-b849-4c124a25d1ca", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "18005fae-6489-4bec-a27b-680661afafc7", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "d6fdb096-2c50-4356-abd3-816568582d39", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Kjøp av lunsj tilpasset allergener" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "7ec46b18-529d-49ce-bd42-ad9caae31547", + "title": "Møtemat (tilvalg)", + "description": "", + "needId": "1836802d-5f10-4a32-bbac-db9ac4d5f899", + "type": "requirement", + "variants": [ + { + "id": "b8f7b325-0f57-43e0-a7ab-eaa1ff47378c", + "requirementText": "Kan dere tilby kjøp av ekstra møtemat/pausemat?", + "instruction": "Ønsker dere å kjøpe ekstra møtemat/pausemat?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "2da680fd-039d-440e-8188-4fa80082b995" + ], + "questions": [ + { + "id": "9365c3dd-70b3-4aba-bacc-2f8af5d5a5ca", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "e8a100de-06ca-431b-a38b-4891488505b5", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "2cabbc89-f46a-4d71-b95e-c0de391da038", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "558c2c73-dc48-4610-88ab-0c98a431a4b1", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 2000, + "step": 1, + "unit": "Personer", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 0, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Kjøp av ekstra møtemat" + }, + { + "id": "4264fc6c-5bef-4aa9-9058-555215eb44fb", + "requirementText": "Kan dere tilby møtemat/pausemat tilpasset allergener?", + "instruction": "Ønsker dere møtemat/pausemat tilpasset allergener?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "2da680fd-039d-440e-8188-4fa80082b995" + ], + "questions": [ + { + "id": "a898dda9-0a93-49d9-a881-9bfe67e89c72", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "cfab3eb2-e7d1-4a48-a8a3-4e100be38861", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "d6fdb096-2c50-4356-abd3-816568582d39", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "ddabc8af-4285-442e-84db-a321e3a8fd00", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 2000, + "step": 1, + "unit": "Personer", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 0, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Kjøp av møtemat/pausemat tilpasset allergener" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "6be90939-bd8e-444c-a30c-2f58aa8ff9a0", + "title": "Inkludert frokost ved bestilling av overnatting (tilpasset matallergi)", + "description": "", + "needId": "1836802d-5f10-4a32-bbac-db9ac4d5f899", + "type": "requirement", + "variants": [ + { + "id": "022589e7-1c54-4ceb-b20b-c382af9a33b0", + "requirementText": "Velg hvilke matallergier dere kan ta hensyn til under frokosten.", + "instruction": "Velg hvilke matallergier det skal tilpasses for under frokosten. Dette kravet skal ikke brukes ved matpreferanser. ", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c087beae-1a3d-427b-b0fe-2859f3a93a63", + "adf7dbf8-d86e-4550-a018-6fffe283876f", + "deb4c8f2-e2ee-4278-90f5-a986bd3cbf40", + "217cda9b-1984-4a5f-8467-bda3293133ca", + "b2d12668-3db1-4a63-bd38-5263f1b6ae23", + "7665fbf9-deba-4cb7-b2a4-30c976231077", + "ce098cbf-90d2-4019-b4c3-42e3308ebde7", + "66da97ac-466e-4914-af7f-28dbeef05d24" + ], + "questions": [ + { + "id": "fa7d12fd-26b0-4656-8db5-beec3b793619", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "d6fdb096-2c50-4356-abd3-816568582d39", + "codes": [], + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Frokost inkludert ved bestilling av overnatting (tilpasset matallergi)" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + } + ], + "type": "need", + "parent": "c8dd0912-eb52-4895-96e3-58996001d5b2", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "16f8b402-a74d-4c5f-8cc9-23654bc7e50a", + "title": "Møterom", + "description": "", + "requirements": [ + { + "id": "e6eff920-6325-4378-a285-e0066a0663db", + "title": "Møterom", + "description": "", + "needId": "16f8b402-a74d-4c5f-8cc9-23654bc7e50a", + "type": "requirement", + "variants": [ + { + "id": "b0f23d50-85d5-4730-abc1-43f5f9d0cdd3", + "requirementText": "Velg type møterom dere kan tilby. ", + "instruction": "Velg type møterom som er ønskelig under arrangementet. ", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "ad432819-47dc-443a-804d-261b78d6d43d", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "987a7622-287e-4973-80bc-0329635c0c5e", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "db4b617a-e5a7-4965-aa57-8bcfad36488e", + "codes": [], + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Valg av møterom til kurs- og konferanser" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + } + ], + "type": "need", + "parent": "c8dd0912-eb52-4895-96e3-58996001d5b2", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "f3d61877-48ef-46b3-9759-2bad07cb17f6", + "title": "Aktiviteter/teambuilding", + "description": "", + "requirements": [ + { + "id": "b16fd274-af99-4f93-9fa0-4cb91cff6620", + "title": "Gruppeaktiviteter", + "description": "", + "needId": "f3d61877-48ef-46b3-9759-2bad07cb17f6", + "type": "requirement", + "variants": [ + { + "id": "d87a9b47-1cc1-4eed-8512-a9e06f055bac", + "requirementText": "Kan dere tilby gruppeaktiviteter/teambuildingsaktiviteter?", + "instruction": "Oppgi ønskede gruppeaktiviteter for oppholdet.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "166d1f14-d964-43a4-a08b-854fffdba28a", + "03e54d89-9b6c-4e01-91ad-3b659837979f", + "6fd6f3af-a48f-431c-a968-a19a876575eb", + "23ac680d-b7d6-4288-93bb-42686e50fbb5", + "eabaf6b8-d47c-4718-9d09-9444d35836a6", + "a0a9a371-0ce1-4a05-9412-3a42f90ef79e", + "d2177612-f32a-43c3-9ea8-8fad12cb8126", + "fdb7b369-18a1-4407-84e6-e04e54211422", + "c3e16ea0-eca7-47c8-b123-393c3794817a", + "9e36774a-3937-4b9f-9341-42e390103e81" + ], + "questions": [ + { + "id": "e1113ef6-95c0-453a-ae17-cfde76674bee", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "84adb6f9-f1a5-495a-8c5d-9d99ba0f3f67", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Ønskede gruppeaktiviteter" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "ba53595b-0615-4386-ad86-5d7215e56fa4", + "title": "Dato for gruppeaktiviteter", + "description": "", + "needId": "f3d61877-48ef-46b3-9759-2bad07cb17f6", + "type": "requirement", + "variants": [ + { + "id": "b0f541f3-d046-4ec7-b7ef-8b2ba06321ec", + "requirementText": "Oppgi dato dere kan tilby teambuilding/gruppeaktiviteter", + "instruction": "Oppgi dato dere ønsker teambuilding/aktiviteter", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "62d484a3-cd25-4f1d-9ff0-d2816e10f7db", + "166d1f14-d964-43a4-a08b-854fffdba28a" + ], + "questions": [ + { + "id": "ff9a3f0c-c15c-42f3-8a15-35314679209b", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [ + { + "date": null, + "score": 0 + }, + { + "date": null, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Dato for teambuilding" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "388c6314-e681-4344-81d3-504a55910d4c", + "title": "Tidspunkt for gruppeaktiviteter", + "description": "", + "needId": "f3d61877-48ef-46b3-9759-2bad07cb17f6", + "type": "requirement", + "variants": [ + { + "id": "ba0aa927-f9ce-4b1b-bd5b-3f716cdaaea4", + "requirementText": "Oppgi tidspunkt dere kan tilby teambuilding/gruppeaktiviteter", + "instruction": "Oppgi tidspunkt dere ønsker teambuilding/gruppeaktiviteter", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "62d484a3-cd25-4f1d-9ff0-d2816e10f7db", + "166d1f14-d964-43a4-a08b-854fffdba28a" + ], + "questions": [ + { + "id": "974e4305-43ce-48e7-ade3-14b0c7eb6341", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [ + { + "time": null, + "score": 0 + }, + { + "time": null, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Tidspunkt for teambuilding" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + } + ], + "type": "need", + "parent": "c8dd0912-eb52-4895-96e3-58996001d5b2", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "4c172142-4b13-463a-bc7b-54abe835a198", + "title": "Underholdning", + "description": "", + "requirements": [ + { + "id": "b48245fa-7792-4f1b-9e8c-06cc51d73274", + "title": "Underholdning", + "description": "", + "needId": "4c172142-4b13-463a-bc7b-54abe835a198", + "type": "requirement", + "variants": [ + { + "id": "2f0eed33-d977-421e-9b16-544d9a1c7480", + "requirementText": "Kan dere tilby underholdning under arrangementet?", + "instruction": "Ønsker dere underholdning under arrangementet?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "49c2537b-684f-4b57-ae98-ec8c339e9068" + ], + "questions": [ + { + "id": "caeada82-7884-4728-adfc-98b08f27d6b8", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "80226d5d-d30a-4e98-a386-9b6f65578e6b", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Underholdning" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "0052a996-af19-4473-b93b-c1dd676e0501", + "title": "Dato for underholdning", + "description": "", + "needId": "4c172142-4b13-463a-bc7b-54abe835a198", + "type": "requirement", + "variants": [ + { + "id": "16e528f9-1c26-4170-b3f5-c28b349ecebe", + "requirementText": "Oppgi dato for når dere kan tilby underholdning", + "instruction": "Oppgi dato for når dere ønsker underholdning", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "49c2537b-684f-4b57-ae98-ec8c339e9068" + ], + "questions": [ + { + "id": "1ccd002a-b301-474b-bd1b-06676853a78b", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [ + { + "date": null, + "score": 0 + }, + { + "date": null, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Dato for underholdning" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "b59d8ccf-5b01-4711-ad61-4d37caaf054c", + "title": "Tidspunkt for underholdning", + "description": "", + "needId": "4c172142-4b13-463a-bc7b-54abe835a198", + "type": "requirement", + "variants": [ + { + "id": "02f766a6-a714-472d-b22c-08c49bed97f0", + "requirementText": "Oppgi tidspunkt dere kan tilby underholdning", + "instruction": "Oppgi tidspunkt for når dere ønsker underholdning", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "49c2537b-684f-4b57-ae98-ec8c339e9068" + ], + "questions": [ + { + "id": "b21a9e9e-889f-45da-ad42-4c9ec4f66308", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [ + { + "time": null, + "score": 0 + }, + { + "time": null, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Tidspunkt for underholdning" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + } + ], + "type": "need", + "parent": "c8dd0912-eb52-4895-96e3-58996001d5b2", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "53771ec9-a99f-4e33-ab36-85d9726cc345", + "title": "Transport", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "0a472e20-c7f9-40ff-af50-ac6c1d364890", + "title": "Parkering", + "description": "", + "requirements": [ + { + "id": "b4719d50-874a-4df6-860c-b44a3ffa195b", + "title": "Inkludert gratis parkering", + "description": "", + "needId": "0a472e20-c7f9-40ff-af50-ac6c1d364890", + "type": "requirement", + "variants": [ + { + "id": "4448e152-75c1-4bc6-8b45-356643eac4a5", + "requirementText": "Kan dere tilby gratis parkering på egen tomt? ", + "instruction": "Ønsker dere gratis parkering på stedets egen tomt?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "320ffb0e-e707-40ed-8330-cdf97624ec97", + "9c8ba3d1-ce00-42c8-82b6-706859c097cc", + "ffc1c540-5655-4430-8545-136ecb6aa041" + ], + "questions": [ + { + "id": "a7acd0a0-4e77-48f9-8d1f-73f221ec8761", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Gratis parkering på egen tomt" + }, + { + "id": "5446e0c0-9349-4248-b90a-acaaae4f3fae", + "requirementText": "Kan dere tilby gratis parkering i parkeringshus?", + "instruction": "Ønsker dere gratis parkering i parkeringshus? ", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "9c8ba3d1-ce00-42c8-82b6-706859c097cc", + "eb2a27df-615b-4eae-ab0c-209a95d37a3d", + "320ffb0e-e707-40ed-8330-cdf97624ec97" + ], + "questions": [ + { + "id": "e9db943d-e3f4-4dd1-8896-2c699129e38c", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Gratis parkering i parkeringshus" + }, + { + "id": "9fdfbdeb-a09e-497b-9c59-92155678732e", + "requirementText": "Finnes det gratis parkering utendørs på offentlig sted i nærheten av kurs- og konferanselokalet?", + "instruction": "Ønsker dere gratis parkering utendørs på offentlig sted i nærheten av kurs- og konferanselokalet?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "320ffb0e-e707-40ed-8330-cdf97624ec97", + "683e1061-c8ab-43ee-920a-ad32f6b209f1", + "9c8ba3d1-ce00-42c8-82b6-706859c097cc", + "0dc9950f-81e5-486d-aec3-caec82a51a14" + ], + "questions": [ + { + "id": "deb76d2f-eb98-4b47-ae15-d5ddf069a2ce", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Gratis parkering utendørs på offentlig sted " + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "6904f02d-fcd8-4a2d-80af-494cb2c6b6aa", + "title": "Frokost", + "description": "", + "codes": [ + { + "id": "dd5c87f5-c1b5-4fe9-8ea2-c6e2f585a666", + "title": "Frokostbuffet", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "bee4b7e0-1557-42ad-b893-f40593c46242", + "title": "Kontinentalfrokost", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "b6e1f5f6-9493-40a8-a3b6-2d66918c2e3a", + "title": "Engelsk frokost", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "f186373b-5f73-4420-9d5b-4aafceb40110", + "title": "Amerikansk frokost", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "d27a6c21-5f16-48c6-9d1c-271b41c5b0c3", + "title": "Lunsj", + "description": "", + "codes": [ + { + "id": "f7b7c818-2275-4e1c-bed2-8ab183277dfb", + "title": "Lunsj-buffet", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "a274c89b-7d12-4d08-b1b6-53c049fe8e5c", + "title": "2-retters", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "d0f465b3-62f3-4972-b594-a1559341e069", + "title": "3- retters", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "e75e7614-a904-4cd2-9581-1f9feacbb254", + "title": "Vegetar", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "f6c79f19-2a7b-4019-adfc-0c1220254fc9", + "title": "Vegansk", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "3df9a8e2-7bd9-43e5-b63d-889c3f06ac57", + "title": "Økologisk", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "82a066ce-9095-4fbc-aa5a-8b60b7e275bc", + "title": "Fingermat/tapas", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "6dc3ae60-e777-4117-bc30-13b55d6bc509", + "title": "Alkoholfri drikke", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "2ec04913-f0e8-477d-b276-468d85921edf", + "title": "Mineralvann", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "e3ebc0c6-0c33-496d-b3aa-f5072cb8f6ec", + "title": "Kaffe/te", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "9db68a5d-1ef9-45ab-a2b8-c519dd96e92a", + "title": "Middag", + "description": "", + "codes": [ + { + "id": "2c7796db-c585-4243-a154-eccdedbe7cc2", + "title": "Middagsbuffet", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "c3541b50-6b05-460a-be08-00bfa61b0e57", + "title": "2-retters", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "b3428af1-0c74-4225-8524-51cf3a6ccb1e", + "title": "3-retters", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "96058fb2-abe6-4656-8b73-0c96e1fef874", + "title": "4-retters", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "667359b7-f683-4193-913f-949a3daa5c66", + "title": "5-retters", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "6ee9771f-6c28-499c-8f1a-acc2624153fe", + "title": "Vegetarmat", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "63d9f4cc-c27f-4fc5-aca4-73c0100a984c", + "title": "Vegansk mat", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "4f1be30c-1832-4958-9d7d-9e731e7da63b", + "title": "Økologisk mat", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "d9fbfc4a-65a6-4bc8-874d-9ca493fd043f", + "title": "Fingermat/tapas", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "016f7ee6-aa64-4ca4-a440-adb49b2a8583", + "title": "Tilpasset matregler knyttet til religion", + "description": "F.eks. kosher, halal, mv. ", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "f0eb9370-0549-441a-a5a9-4a55be3a4b7a", + "title": "Alkoholfri drikke", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "d109b4cd-a7c1-4a7c-880a-60b2c9ffa6fa", + "title": "Øl/vin/apertif/café avec", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "2cabbc89-f46a-4d71-b95e-c0de391da038", + "title": "Møtemat/pausemat", + "description": "", + "codes": [ + { + "id": "df6c952e-d644-4b01-b5a0-dbbfd629619b", + "title": "Smoothie", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "1f47c194-202e-4eab-bb03-96e162b220d5", + "title": "Mineralvann", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "031436eb-0f22-4c34-8bef-9cce818092de", + "title": "Nøtter", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "c94fd068-521f-4aa6-91d6-988dc9dee873", + "title": "Wraps", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "4c60b618-1882-4c18-8f19-5c389f7c922d", + "title": "Smørbrød", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "68b897e4-ca43-43f5-bdb8-ba6e1bae47c4", + "title": "Kaffe/te", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "7c7ad4f5-6637-4b06-8070-3d816fc94fa7", + "title": "Kake/bakst", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "c73e5699-02c9-4c24-8bac-d2ff9408b0dd", + "title": "Fingermat/tapas", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "adbd9948-5f5a-4ed3-87ea-1d46691fcea2", + "title": "Frukt", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "d6fdb096-2c50-4356-abd3-816568582d39", + "title": "Allergener", + "description": "", + "codes": [ + { + "id": "a8e7e16e-766d-40ec-8781-050eec182aec", + "title": "Gluten", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "a564f0b1-157a-4ae2-a60a-197fb90b19f3", + "title": "Skalldyr", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "a73e446d-690f-4cfd-aef3-2b7fd919af47", + "title": "Egg", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "ccc4f51f-642c-4495-a6ed-d8d0bb7a6e84", + "title": "Fisk", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "59081e1c-86d8-4dc6-b466-43a27c42959b", + "title": "Nøtter", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "9b525938-576c-4ef5-90c8-a93fcb76e60e", + "title": "Soya", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "2c133fa2-660b-46d7-be28-4c66e7357a6c", + "title": "Melk", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "d69caa52-c0ec-4cb9-8ce2-7c81b747386a", + "title": "Laktose", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "3756752d-631a-43fb-94e1-b8e193ad7421", + "title": "Selleri", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "b093d220-1878-41e8-8650-f85161570303", + "title": "Sennep", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "0f919bf6-7cd1-4358-94c1-e266848e8b5f", + "title": "Sesamfrø", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "aa225989-8af4-4939-a4f1-2ef8aad7904c", + "title": "Svoveldioksid og sulfitter", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "8f850ef5-0013-455c-9a09-db94ff7e66d9", + "title": "Lupin", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "29da074f-59b6-47ec-b7f6-e8c6c82e0a3a", + "title": "Bløtdyr", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "db4b617a-e5a7-4965-aa57-8bcfad36488e", + "title": "Romoppsett", + "description": "", + "codes": [ + { + "id": "8cbc73c2-222f-4011-9546-bed1639a4851", + "title": "Klasserom", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "ff2c1750-6867-4a4d-9d47-fb1d09c39369", + "title": "Scene", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "60a748d2-5a68-494f-a4a4-3a610ea1a801", + "title": "Styreoppsett/langbord", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "13f875f9-9e71-44c4-ba7d-c0c44bd1cbdc", + "title": "Klasserom", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "007bff18-2977-4cfc-8789-5e684704ee02", + "title": "Grupperom", + "description": "3-6 personer", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "e8ac700e-4192-4b95-acea-768e9161b951", + "title": "Grupperom ", + "description": "7-12 personer", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "f82fb0ad-0706-4cc1-bbcc-621b02373628", + "title": "U-bord/hestesko", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "a232c075-f83b-4cda-9ebb-bffa29ecf43b", + "title": "T-bord", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "f661462c-ab6b-4e7f-920b-a00f164bb584", + "title": "Kino", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "48b2cbe8-a985-485c-889d-e4e37cbc2406", + "title": "Runde bord", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "e48ca47f-38aa-4786-a3e3-257d5bc1ec41", + "title": "Delplenum", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "7bff77c0-6eba-48ee-b77d-01ec4fdaae18", + "title": "Kafébord", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "25e48d34-e889-4641-994a-819f7a78e4d0", + "title": "Standard konferanseteknikk/AV-utstyr", + "description": "", + "codes": [ + { + "id": "abed440c-edec-4da6-bf95-ad3d3ef4ab5f", + "title": "Mikrofon/mygg", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "b25d1fec-4263-4d93-a969-c249ab825bc6", + "title": "Mikrofon håndholdt", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "9f6b63cc-cad8-4c73-bd1f-900f2e357f14", + "title": "Lydforsterkere", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "267a511a-ddd0-4167-8fe1-36ace119f495", + "title": "Miksere", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "1cd072cb-bf30-44a4-ad47-c4f90b64c0cb", + "title": "Prosjektor/storskjerm ", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "21caf73c-2959-44e0-84ac-a83d80a80dbd", + "title": "Overgang (VGA-HDMI display port)", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "5670311a-fcd0-40e4-bc70-76d29c7cc49b", + "title": "Flipover/whiteboard", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "33f10d40-5bb4-4f5d-8d95-3c70c0f65fba", + "title": "Streamingmuligheter (Kamera, m.m.)", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "6fb3295e-7341-4c81-8945-98de56c23e94", + "title": "Teknisk assistanse", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "cb54c860-0983-4273-8ac2-aebb0ac77afe", + "title": "Høytaler", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "adb122a3-113a-4fd7-8acc-637b52f58d0e", + "title": "Konferansetelefon", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "0025f3c0-06ef-4e28-aa13-6aceef952c14", + "title": "Lyskastere", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "1faf643d-e2ee-41dc-be08-ffade6480276", + "title": "Spotlights", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "1677f4ac-f089-41aa-8b99-20da8233fe1e", + "title": "Stemningsbelysning", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "63ef122b-2627-4c66-a042-61c475547abe", + "title": "Talerstol", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "72dbe24c-7c15-466d-8de4-0c736f57a8ac", + "title": "Tilgang til skjermer på møterom/grupperom", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "c904f802-21e2-4554-9357-d9e31f433e9c", + "title": "Tilgang til innganger (PC) på møterom/grupperom", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "765409a0-14cc-4944-8c04-1411e6fb4059", + "title": "Tilgang på lydkilder på møterom/grupperom", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "1e62febb-30b5-4e63-b7e6-f50c1aa6fc4d", + "title": "Leie av PC", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "e5d97ee0-cac7-4903-b157-5808bac9df0c", + "title": "Webcam", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "84adb6f9-f1a5-495a-8c5d-9d99ba0f3f67", + "title": "Aktiviteter/teambuilding", + "description": "", + "codes": [ + { + "id": "cc842990-b0ec-4d34-907d-ece90257d2d8", + "title": "Vin-/ølsmaking", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "b13cf6d0-f9f0-4765-aee3-057980f3e009", + "title": "Sjokoladesmaking", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "ae8fd18a-a8c2-41d3-b9a2-1ff49f60a626", + "title": "Omvisning/guidet tur", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "20a06f9f-77a2-4454-92a4-c458a6e986cb", + "title": "Båttur", + "description": "Seilbåt, rib, robåt, pedalbåt, m.m.", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "f84f17f3-c5ae-4e0b-9ca6-087a641ce92a", + "title": "Escape room", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "46073609-99d7-4eca-92e2-14781b7d64d2", + "title": "Padling", + "description": "Kajakk, kano, SUP, m.m.", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "12038bd5-a3a5-4238-ae02-5f6e0261dae0", + "title": "Flerkamp", + "description": "5-/10-kamp", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "1a5e19b6-a62f-4db7-a907-d53d937b1518", + "title": "Boblefotball", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "b3065e3d-122d-4e1d-aefe-c641d95ee5fe", + "title": "Skitur", + "description": "Leie av langrennsski og forslag til tur.", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "c240e4fc-c4b4-4b55-b7b6-c7e808a0b9e0", + "title": "Discogolf", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "a4c66c80-3872-47c6-98ee-954ebd1f059b", + "title": "Shuffleboard", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "9b984e63-422a-4f5b-a836-7a808a42df13", + "title": "Biljard", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "b461e8d6-651c-4a6d-8cae-304bd4f866d5", + "title": "Sykkeltur", + "description": "Leie av sykkel og forslag til tur.", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "dbb9e49f-e99b-4412-8291-b0ef95dc637f", + "title": "Minigolf", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "fd83fafa-60bc-4cf1-bd05-7f40e3e81698", + "title": "Ridning", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "d6b9dbba-ec04-46cf-b689-e02a0e4fe4ca", + "title": "Fisketur", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "5f5bfbf9-06ac-40f0-a24a-06153b2262bc", + "title": "Bordtennis", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "32c132ff-1b34-42cb-b4a2-30b6405fa9ce", + "title": "Klatring", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "bb025b17-e5b1-4fee-b90a-d13f530ce4eb", + "title": "Matkurs", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "f2770612-bb0e-47c9-b076-7990da435847", + "title": "Yoga", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "f9beafb9-6b2a-4ddb-9b62-ed180acd9bec", + "title": "Dansekurs", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "84cccf75-9fb9-477c-8760-2bc21fac949a", + "title": "Gruppetrening", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "80226d5d-d30a-4e98-a386-9b6f65578e6b", + "title": "Underholdning", + "description": "", + "codes": [ + { + "id": "65198083-f31c-45c4-b298-8b166ee56165", + "title": "Foredrag", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "a2753926-6a57-4734-b704-24eb855a3487", + "title": "Musikalsk innslag", + "description": "Band, DJ, m.m.", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "176c368f-8f12-48d3-aa03-6f90d825d800", + "title": "Danseshow", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "2c65ccad-c99f-41ac-b825-9c517384ad3a", + "title": "Magiker", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "e9b54bbb-00b5-4d7f-be9b-ee807803b290", + "title": "DJ", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "7beb89e7-deaa-4bff-ad10-fb8076187fae", + "title": "Festmiddag", + "description": "", + "codes": [], + "type": "codelist", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "23ec62dc-2d00-4e74-b20a-4d4e9dddf8ec", + "title": "Universell utforming", + "description": "", + "codes": [], + "type": "codelist", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "3c0ba5c8-2a26-40e1-8428-a7443ff93655", + "title": "Sikkerhet", + "description": "Krav til fysisk sikring under arrangementet. ", + "codes": [ + { + "id": "4d401b5b-db6f-4103-b075-c064ddf1ee78", + "title": "Skuddsikre glass", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "8d65f8f9-14ad-4f31-8f9e-bcbf42048664", + "title": "Forsterkede vegger", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "d0269b05-adff-456a-beac-5bb0b14a2c00", + "title": "Begrenset adkomst", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "45e31473-10de-4f5e-92bc-df5f339144d3", + "title": "Ekstra vakthold", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "73e6dbec-2d1f-4d46-b7db-8044fd180f43", + "title": "Standard møterom/lokale", + "description": "", + "codes": [ + { + "id": "ccb987ad-5a65-4177-a2dc-9cf93870d0c8", + "title": "Lav standard", + "description": "Enkel romstandard, ingen tilgjengelig teknisk assistanse, begrenset med teknisk utstyr.", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "e8fadb8b-e327-4afb-92e2-7ba23b724d08", + "title": "Middels standard", + "description": "Lokale med god standard, gode lysforhold og ventilasjon, servering av alle måltider i egne eller nærliggende lokaler, standard teknisk utstyr, teknisk assistanse under deler av arrangementet. ", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "adf58ab1-72c4-4928-a239-04afbc6ba5d3", + "title": "Høy standard", + "description": "Lokale med meget god standard, meget gode lysforhold og ventilasjon, utsikt, alle måltider tilbys i egne lokaler, fellesarealer, serviceytelser på høyt nivå, tilgjengelig kursvertinne/vert under hele arrangementet, god tilgang på teknisk utstyr, tilgang på wifi og teknisk assistanse under hele arrangementet.", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "81a52088-64b3-48a8-9ac3-55029938134c", + "title": "Høy standard +", + "description": "Lokaler av svært god kvalitet, svært gode lysforhold og ventilasjon, utsikt, alle måltider tilbys i egen restaurant, tilgang på fellesarealer, serviceytelser på et høyt nivå, tilgjengelig kursvertinne/vert under hele arrangementet, god tilgang på teknisk utstyr, tilgang til wifi og teknisk assistanse under hele arrangementet. ", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "1c2873da-0fb7-4604-92aa-d9c483d0b554", + "title": "Standard hotellrom", + "description": "", + "codes": [ + { + "id": "5ecc2c59-bc10-495b-a69b-417f58a0ca7a", + "title": "Lav standard/DNT-standard", + "description": "Gjestegård, e.l. Sted med enkel romstandard, felles dusj og toalett. ", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "61e80cf4-667b-4fbc-a36b-ee251c788985", + "title": "Middels standard", + "description": "God romstandard med TV, dusj, toalett og skrivebord. ", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "53b3b15f-9acb-49ad-8258-d643ea7e58a6", + "title": "Høy standard", + "description": "Meget god romstandard. TV, dusj, toalett, skrivebord og wifi på rommet. 24-timers resepsjon. Tilgjengelig restaurant på hotellet. Tilgang til svømmebasseng, spa eller treningssenter på hotellet. ", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "33bc8bb4-96ea-4a95-acf4-96c6b5b9509e", + "title": "Høy standard +", + "description": "Svært god romstandard. TV, dusj, toalett, skrivebord og wifi på rommet. 24-timers resepsjon og room-service. Kostnadsfri tilgang til svømmebasseng, spa eller treningssenter. Alle måltider tilbys i egen restaurant. ", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + } + ], + "products": [ + { + "id": "c087beae-1a3d-427b-b0fe-2859f3a93a63", + "title": "Hotellrom", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "adf7dbf8-d86e-4550-a018-6fffe283876f", + "title": "Enkeltrom", + "description": "", + "type": "product", + "parent": "c087beae-1a3d-427b-b0fe-2859f3a93a63", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "deb4c8f2-e2ee-4278-90f5-a986bd3cbf40", + "title": "Dobbeltrom", + "description": "", + "type": "product", + "parent": "c087beae-1a3d-427b-b0fe-2859f3a93a63", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "217cda9b-1984-4a5f-8467-bda3293133ca", + "title": "Twin-rom", + "description": "", + "type": "product", + "parent": "c087beae-1a3d-427b-b0fe-2859f3a93a63", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "b2d12668-3db1-4a63-bd38-5263f1b6ae23", + "title": "Familierom", + "description": "", + "type": "product", + "parent": "c087beae-1a3d-427b-b0fe-2859f3a93a63", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "7665fbf9-deba-4cb7-b2a4-30c976231077", + "title": "Junior suite", + "description": "", + "type": "product", + "parent": "c087beae-1a3d-427b-b0fe-2859f3a93a63", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "ce098cbf-90d2-4019-b4c3-42e3308ebde7", + "title": "Suite", + "description": "", + "type": "product", + "parent": "c087beae-1a3d-427b-b0fe-2859f3a93a63", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "66da97ac-466e-4914-af7f-28dbeef05d24", + "title": "Penthouse suite", + "description": "", + "type": "product", + "parent": "c087beae-1a3d-427b-b0fe-2859f3a93a63", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "title": "Møterom", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "feccdcfc-c124-4525-8e26-853f2d46bceb", + "title": "Plenumssal", + "description": "", + "type": "product", + "parent": "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "title": "Møterom/grupperom", + "description": "", + "type": "product", + "parent": "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "ad432819-47dc-443a-804d-261b78d6d43d", + "title": "Kursrom", + "description": "", + "type": "product", + "parent": "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "19deb58c-d37d-4031-ae8c-e45e27632f08", + "title": "Klasserom", + "description": "", + "type": "product", + "parent": "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "title": "Møterom tilpasset hybridmøter", + "description": "", + "type": "product", + "parent": "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f", + "title": "Utstillerareal", + "description": "", + "type": "product", + "parent": "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "de87935c-40fa-49cd-9dfd-59a18ea88635", + "title": "Bankett/festmiddag", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "2efda706-512a-4a9b-ba6e-9fbe590bbcca", + "title": "Festmiddag", + "description": "", + "type": "product", + "parent": "de87935c-40fa-49cd-9dfd-59a18ea88635", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "62d484a3-cd25-4f1d-9ff0-d2816e10f7db", + "title": "Aktiviteter/teambuilding", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "166d1f14-d964-43a4-a08b-854fffdba28a", + "title": "Gruppeaktiviteter", + "description": "", + "type": "product", + "parent": "62d484a3-cd25-4f1d-9ff0-d2816e10f7db", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "49c2537b-684f-4b57-ae98-ec8c339e9068", + "title": "Underholdning", + "description": "Foredrag, musikalsk innslag, m.m.", + "type": "product", + "parent": "", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "647f6c0e-24dd-43d5-adcd-b1503ac50a14", + "title": "Servering", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "1d855ecf-48c7-4cda-87c0-03e6167ef345", + "title": "Frokost", + "description": "", + "type": "product", + "parent": "647f6c0e-24dd-43d5-adcd-b1503ac50a14", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "67577fef-c766-4bf6-9c78-8c0c83ca7bae", + "title": "Lunsj", + "description": "", + "type": "product", + "parent": "647f6c0e-24dd-43d5-adcd-b1503ac50a14", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "e5065081-7c78-4c41-8478-af3de75bc7f8", + "title": "Middag", + "description": "", + "type": "product", + "parent": "647f6c0e-24dd-43d5-adcd-b1503ac50a14", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "2da680fd-039d-440e-8188-4fa80082b995", + "title": "Møtemat/pausemat", + "description": "", + "type": "product", + "parent": "647f6c0e-24dd-43d5-adcd-b1503ac50a14", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "9c8ba3d1-ce00-42c8-82b6-706859c097cc", + "title": "Parkering", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "ffc1c540-5655-4430-8545-136ecb6aa041", + "title": "Parkering på egen tomt", + "description": "", + "type": "product", + "parent": "9c8ba3d1-ce00-42c8-82b6-706859c097cc", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "eb2a27df-615b-4eae-ab0c-209a95d37a3d", + "title": "Parkeringshus ", + "description": "Parkeringshus i nærheten av kurs- og konferansestedet. ", + "type": "product", + "parent": "9c8ba3d1-ce00-42c8-82b6-706859c097cc", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "683e1061-c8ab-43ee-920a-ad32f6b209f1", + "title": "Parkering utendørs på offentlig sted", + "description": "Tilgjengelig parkering utendørs på offentlig sted.", + "type": "product", + "parent": "9c8ba3d1-ce00-42c8-82b6-706859c097cc", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "0dc9950f-81e5-486d-aec3-caec82a51a14", + "title": "Gateparkering", + "description": "Tilgjengelig gateparkering i nærhet til kurs- og konferansestedet.", + "type": "product", + "parent": "9c8ba3d1-ce00-42c8-82b6-706859c097cc", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "320ffb0e-e707-40ed-8330-cdf97624ec97", + "title": "Parkering med elbil-lader", + "description": "Tilgjengelig parkering i nærheten av kurs- og konferansestedet med elbil-lader.", + "type": "product", + "parent": "9c8ba3d1-ce00-42c8-82b6-706859c097cc", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [], + "tags": [], + "version": 1, + "publishedDate": "2022-08-29T12:11:35.686Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "deletedDate": null + }, + { + "id": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "title": "Kurs og konferanse ASI (NY)", + "description": "Under arbeid, skal bli kravbank for produksjon", + "needs": [ + { + "id": "c8dd0912-eb52-4895-96e3-58996001d5b2", + "title": "Kurs- og konferanse", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "d8070a7d-3610-4ba1-90be-587d1bf1bb2a", + "title": "Tilgjengelighet og universell utforming", + "description": "Tilrettelegging for de med funksjonsnedsettelse. ", + "requirements": [ + { + "id": "8bcc2231-51b5-468e-a1c7-ae3853e543f5", + "title": "Tilgjengelighet", + "description": "", + "needId": "d8070a7d-3610-4ba1-90be-587d1bf1bb2a", + "type": "requirement", + "variants": [ + { + "id": "1c90c20e-7164-4b9c-b6b8-a98fd4459e65", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "Tilgjengelighet" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "0c04e641-d684-4595-b1e7-8552190ef23c", + "title": "Universell utforming", + "description": "", + "needId": "d8070a7d-3610-4ba1-90be-587d1bf1bb2a", + "type": "requirement", + "variants": [ + { + "id": "b6ba8933-01ed-43ac-9d58-42f40baf84e1", + "requirementText": "Oppfyller dere kravene til universell utforming?", + "instruction": "Trenger dere at leverandør oppfyller kravene til universell utforming?", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "e706b478-80e1-4fd8-b742-dcc661e6428b", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "23ec62dc-2d00-4e74-b20a-4d4e9dddf8ec", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Universell utforming" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + } + ], + "type": "need", + "parent": "c8dd0912-eb52-4895-96e3-58996001d5b2", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "37444ee7-b902-4e34-988a-08a78af878c0", + "title": "Sikkerhet", + "description": "", + "requirements": [ + { + "id": "98c2e29f-5f4e-40e5-92e4-6c840569e931", + "title": "Fysisk sikring", + "description": "", + "needId": "37444ee7-b902-4e34-988a-08a78af878c0", + "type": "requirement", + "variants": [ + { + "id": "6ba17c09-8951-4101-82b5-b12f1af65f3d", + "requirementText": "Kan dere tilby fysisk sikring for gjestene? 1) Svar ja/nei 2) Velg fra kodelisten hvilke krav dere oppfyller til fysisk sikring. ", + "instruction": "Trenger dere ekstra fysisk sikring under oppholdet? 1) Svar ja/nei 2) Velg fra kodelisten.", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "fd6a588a-9e6c-4f88-b430-38d52c86e220", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "3c0ba5c8-2a26-40e1-8428-a7443ff93655", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Krav til fysisk sikring under arrangementet" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + } + ], + "type": "need", + "parent": "c8dd0912-eb52-4895-96e3-58996001d5b2", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "f0fadfd5-325d-4572-b424-854203b66d93", + "title": "Standard", + "description": "", + "requirements": [ + { + "id": "25c63963-2416-45bd-8848-170ef883b953", + "title": "Standard på lokalene", + "description": "", + "needId": "f0fadfd5-325d-4572-b424-854203b66d93", + "type": "requirement", + "variants": [ + { + "id": "a434a5f5-1ae7-4564-a750-f5420da5a5f6", + "requirementText": "Velg fra kodelisten hvilken standard dere tilbyr på møterommene. ", + "instruction": "Velg fra kodelisten hvilken standard dere ønsker på møterommene. ", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "0dbbe638-7d9c-41ce-90e2-98febda4d5e1", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "73e6dbec-2d1f-4d46-b7db-8044fd180f43", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Standard på møterommene/kurs- og konferanserommene" + }, + { + "id": "c2621611-09af-418d-85ba-6a6775d4652a", + "requirementText": "Beskriv hvilken standard dere tilbyr på hotellrommene. Velg fra kodelisten.", + "instruction": "Velg hvilken standard dere ønsker på hotellrommene. Velg fra kodelisten. ", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c087beae-1a3d-427b-b0fe-2859f3a93a63", + "adf7dbf8-d86e-4550-a018-6fffe283876f", + "deb4c8f2-e2ee-4278-90f5-a986bd3cbf40", + "217cda9b-1984-4a5f-8467-bda3293133ca", + "b2d12668-3db1-4a63-bd38-5263f1b6ae23", + "7665fbf9-deba-4cb7-b2a4-30c976231077", + "ce098cbf-90d2-4019-b4c3-42e3308ebde7", + "66da97ac-466e-4914-af7f-28dbeef05d24" + ], + "questions": [ + { + "id": "3d3ce232-f9ad-45fb-bb9f-b9c6f717c57e", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "1c2873da-0fb7-4604-92aa-d9c483d0b554", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Standard på hotellrommene" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "d90feb81-f55f-4171-a177-364dd79601bf", + "title": "Luftkvalitet", + "description": "", + "needId": "f0fadfd5-325d-4572-b424-854203b66d93", + "type": "requirement", + "variants": [ + { + "id": "95eb744f-a8c5-4924-8eb6-a984956d8a77", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "Luftkvalitet" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + } + ], + "type": "need", + "parent": "c8dd0912-eb52-4895-96e3-58996001d5b2", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "cb2e7f5e-2831-4577-ace1-826ce87a9ffa", + "title": "Kundeservice", + "description": "Teknisk utstyr, teknisk assistanse, m.m.", + "requirements": [ + { + "id": "4c24c9e1-b7e9-452b-9078-53c1bad66064", + "title": "Teknisk utstyr", + "description": "", + "needId": "cb2e7f5e-2831-4577-ace1-826ce87a9ffa", + "type": "requirement", + "variants": [ + { + "id": "c3152c6b-5ba8-4e3e-b311-3c8f050213e4", + "requirementText": "Oppgi om dere kan tilby standard konferanseteknikk/AV-utstyr under arrangementet. 1) Svar ja/nei 2) Oppgi hvilket utstyr dere har tilgjengelig fra kodelisten. ", + "instruction": "Oppgi om dere trenger standard konferanseteknikk/AV-utstyr under arrangementet. 1) Svar ja/nei 2) Oppgi hvilket utstyr dere trenger fra kodelisten. ", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "82fc4874-282a-44b5-b350-6fb42ca062bc", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "4f39242f-7d8c-4002-a042-8d2ef94ffff3", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "25e48d34-e889-4641-994a-819f7a78e4d0", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Standard konferanseteknikk/AV-utstyr" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "3d47bcec-f798-4406-ba0f-54a922da659b", + "title": "Teknisk assistanse under arrangementet", + "description": "", + "needId": "cb2e7f5e-2831-4577-ace1-826ce87a9ffa", + "type": "requirement", + "variants": [ + { + "id": "aab14b3f-3182-46e6-94bf-3e3ab1d38d43", + "requirementText": "Oppgi om dere kan tilby teknisk assistanse under arrangementet. 1) Svar ja/nei 2) Beskriv om dere kan tilby tekniker under hele/deler av arrangementet 3) Oppgi dato for når dette kan tilbys 4) Oppgi tidspunkt for når dette kan tilbys.", + "instruction": "Oppgi om dere har behov for teknisk assistanse under arrangementet 1) Svar ja/nei 2) Beskriv om dere trenger assistanse under hele/deler av arrangementet 3) Oppgi dato for når dere trenger teknisk assistanse 4) Oppgi tidspunkt for når dere har behov for teknisk assistanse. ", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f", + "de87935c-40fa-49cd-9dfd-59a18ea88635", + "2efda706-512a-4a9b-ba6e-9fbe590bbcca" + ], + "questions": [ + { + "id": "7252fb80-0970-4b4e-ab63-f1f188e54c55", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tilgang til tekniker under arrangementet" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "9fee7e48-1c40-44a0-b204-74b1c9f647fa", + "title": "Oppsett av lokalet (rigg)", + "description": "", + "needId": "cb2e7f5e-2831-4577-ace1-826ce87a9ffa", + "type": "requirement", + "variants": [ + { + "id": "94c67e1e-0d37-405a-94bf-b3840b1ea3eb", + "requirementText": "Tilbyr dere å rigge lokalet før arrangementet finner sted?", + "instruction": "Ønsker dere at leverandør skal rigge lokalet før arrangementet finner sted?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "59737edc-3dfc-4f02-9aa6-24c15060f15d", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "db4b617a-e5a7-4965-aa57-8bcfad36488e", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Oppsett av lokalet" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "cade9c5b-c841-4acb-8b2b-1a56350994f4", + "title": "Omrigg av lokalet", + "description": "", + "needId": "cb2e7f5e-2831-4577-ace1-826ce87a9ffa", + "type": "requirement", + "variants": [ + { + "id": "a0b108d8-743a-4042-94f4-50b894762640", + "requirementText": "Kan dere tilby omrigg underveis i arrangementet?", + "instruction": "Ønsker dere omrigg underveis i arrangementet?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "35b419aa-cca6-480a-b099-dac4c3ec3d83", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "db4b617a-e5a7-4965-aa57-8bcfad36488e", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Omrigg av lokalet" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "8063ec2e-0fef-4d90-b627-bf0fea5b1a01", + "title": "Nedrigg av lokalet", + "description": "", + "needId": "cb2e7f5e-2831-4577-ace1-826ce87a9ffa", + "type": "requirement", + "variants": [ + { + "id": "d0053bfa-27b3-4405-a625-fd0f725a50de", + "requirementText": "Kan dere tilby opprydding etter arrangementet (nedrigg av lokalet)?", + "instruction": "Ønsker dere opprydding etter arrangementet (nedrigg av lokalet)?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "b09d1491-a336-4923-a089-86f61bdd15b7", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "db4b617a-e5a7-4965-aa57-8bcfad36488e", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Nedrigg av lokalet" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "23ae018b-2377-4447-853c-aca486da955b", + "title": "Dato for oppsett av lokalet (rigg)", + "description": "", + "needId": "cb2e7f5e-2831-4577-ace1-826ce87a9ffa", + "type": "requirement", + "variants": [ + { + "id": "2aa37883-0697-4002-b757-e236b92ef741", + "requirementText": "Hvilken dato kan dere tilby oppsett av lokalet?", + "instruction": "Hvilken dato ønsker dere oppsett av lokalet?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "c5d170ae-c31e-4ec3-b639-42b261de1799", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [ + { + "date": null, + "score": 0 + }, + { + "date": null, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Dato for oppsett av lokalet" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "dc5536dc-e811-4739-a522-a43f37b914b2", + "title": "Dato for omrigg av lokalet", + "description": "", + "needId": "cb2e7f5e-2831-4577-ace1-826ce87a9ffa", + "type": "requirement", + "variants": [ + { + "id": "ddcb74b9-2484-4644-bf72-954d1a1ff886", + "requirementText": "Hvilken dato kan dere tilby omrigg av lokalet?", + "instruction": "Hvilken dato ønsker dere omrigg av lokalet?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "a58954d6-e94d-4137-8b96-121a459b7905", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [ + { + "date": null, + "score": 0 + }, + { + "date": null, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Dato for omrigg av lokalet" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "ff2d6b73-fa61-4101-92bd-f85c7f303b05", + "title": "Dato for nedrigg av lokalet ", + "description": "", + "needId": "cb2e7f5e-2831-4577-ace1-826ce87a9ffa", + "type": "requirement", + "variants": [ + { + "id": "1f6ba82b-6126-4f83-9bac-5eed91c27214", + "requirementText": "Hvilken dato kan dere tilby nedrigg av lokalet?", + "instruction": "Hvilken dato ønsker dere nedrigg av lokalet?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "4659491d-5834-474b-b653-8d98afd4603a", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [ + { + "date": null, + "score": 0 + }, + { + "date": null, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Nedrigg av lokalet" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "7a4ba4bf-5735-4d70-bf3b-8ac87da8fa0e", + "title": "Tidspunkt for oppsett av lokalet (rigg)", + "description": "", + "needId": "cb2e7f5e-2831-4577-ace1-826ce87a9ffa", + "type": "requirement", + "variants": [ + { + "id": "e43cda65-0734-475e-9c98-229c14909ff7", + "requirementText": "Hvilket tidspunkt kan dere tilby oppsett av lokalet (rigg)?", + "instruction": "Hvilket tidspunkt ønsker dere oppsett av lokalet (rigg)?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "e3396e9e-909f-4cfd-a6db-a2619f66faab", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [ + { + "time": null, + "score": 0 + }, + { + "time": null, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tidspunkt for oppsett av lokalet (rigg)" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "e4762151-a05e-4e20-afde-ef2816eb4c39", + "title": "Tidspunkt for omrigg av lokalet", + "description": "", + "needId": "cb2e7f5e-2831-4577-ace1-826ce87a9ffa", + "type": "requirement", + "variants": [ + { + "id": "12f084d6-6565-4380-9654-d76689465a63", + "requirementText": "Hvilket tidspunkt kan dere tilby omrigg av lokalet?", + "instruction": "Hvilket tidspunkt ønsker dere omrigg av lokalet?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "6827a0da-2570-4ccd-b09b-51490ab2ddd1", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [ + { + "time": null, + "score": 0 + }, + { + "time": null, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tidspunkt for omrigg av lokalet" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "3d45bb8c-d325-4804-925d-2c2c5945f75e", + "title": "Tidspunkt for nedrigg av lokalet", + "description": "", + "needId": "cb2e7f5e-2831-4577-ace1-826ce87a9ffa", + "type": "requirement", + "variants": [ + { + "id": "768bc43b-c53d-4666-98e4-4ddd3c8defb1", + "requirementText": "Hvilket tidspunkt kan dere tilby nedrigg av lokalet (opprydding)?", + "instruction": "Hvilket tidspunkt ønsker dere nedrigg av lokalet (opprydding)?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "f17a7355-b486-4701-bcd4-79d99926b5ff", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [ + { + "time": null, + "score": 0 + }, + { + "time": null, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tidspunkt for nedrigg av lokalet" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "50e0d4b1-b779-4017-98a9-dd2031254d80", + "title": "Påmeldingssystem", + "description": "", + "needId": "cb2e7f5e-2831-4577-ace1-826ce87a9ffa", + "type": "requirement", + "variants": [ + { + "id": "1623a231-a40e-40cc-a402-9f70062063f6", + "requirementText": "Kan dere tilby oppdragsgiver et påmeldingssystem for deltakere?", + "instruction": "Ønsker dere at leverandør stiller med et påmeldingssystem for deltakere?", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "bc6bffc0-5305-4221-8383-49fc73dca4ca", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Påmeldingssystem" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "3c400c71-0a66-4a1a-adf4-ccf9876f492e", + "title": "Registrering", + "description": "", + "needId": "cb2e7f5e-2831-4577-ace1-826ce87a9ffa", + "type": "requirement", + "variants": [ + { + "id": "d8223377-675d-4472-95a8-2e20f769b0e0", + "requirementText": "Kan dere bistå oppdragsgiver med registrering av deltakere?", + "instruction": "Ønsker dere at leverandør bistår dere med registrering av deltakere?", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "95deca78-b51e-4045-98aa-f73eed32e606", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Bistand med registrering" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "1e6c4921-6840-4c63-aa43-36096a6b6c44", + "title": "Fast kontaktperson", + "description": "", + "needId": "cb2e7f5e-2831-4577-ace1-826ce87a9ffa", + "type": "requirement", + "variants": [ + { + "id": "860d917c-a4fe-4b16-b57b-1b49feec15c8", + "requirementText": "Kan dere tilby oppdragsgiver en fast kontaktperson før og under arrangementet for planlegging og gjennomføring av arrangementet? Personen skal bistå med koordinering under gjennomføringen av arrangementet.", + "instruction": "Ønsker dere en fast kontaktperson før og under arrangementet for planlegging og gjennomføring av arrangementet? Personen skal bistå med koordinering under gjennomføringen av arrangementet.", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "9b6f3a1d-fbcc-4ea1-8707-ab7c6d16e270", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Fast kontaktperson" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + } + ], + "type": "need", + "parent": "c8dd0912-eb52-4895-96e3-58996001d5b2", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "1836802d-5f10-4a32-bbac-db9ac4d5f899", + "title": "Servering", + "description": "", + "requirements": [ + { + "id": "6fba8d3a-a599-4ef8-9647-03aec980b50b", + "title": "Inkludert frokost", + "description": "", + "needId": "1836802d-5f10-4a32-bbac-db9ac4d5f899", + "type": "requirement", + "variants": [ + { + "id": "7d7f0afa-1706-41f2-af0c-5a5fc9d9bd5a", + "requirementText": "1) Er frokost inkludert ved bestilling av overnatting? Svar ja/nei.\n2) Oppgi hvilken type frokost dere kan tilby.\n3) Oppgi antall personer dere har kapasitet til å tilby frokost til.", + "instruction": "1) Er det ønskelig med frokost inkludert ved bestilling av overnatting? Svar ja/nei.\n2) Hvilken type frokost ønsker dere? Velg ønsket alternativ.\n3) Hvor mange personer skal ha frokost inkludert ved bestilling av overnatting? Velg antall. \n", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "adf7dbf8-d86e-4550-a018-6fffe283876f", + "deb4c8f2-e2ee-4278-90f5-a986bd3cbf40", + "217cda9b-1984-4a5f-8467-bda3293133ca", + "b2d12668-3db1-4a63-bd38-5263f1b6ae23", + "7665fbf9-deba-4cb7-b2a4-30c976231077", + "ce098cbf-90d2-4019-b4c3-42e3308ebde7", + "66da97ac-466e-4914-af7f-28dbeef05d24", + "c087beae-1a3d-427b-b0fe-2859f3a93a63" + ], + "questions": [ + { + "id": "e7de2885-9ba1-4ffd-9f69-1c8c7e794852", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "79d8f285-0368-44d2-8b3f-33a42ea045ea", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "6904f02d-fcd8-4a2d-80af-494cb2c6b6aa", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "4af41af5-0426-494d-b3f9-22ee5540c4a9", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 2000, + "step": 1, + "unit": "Antall personer", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 0, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Frokost inkludert ved bestilling av overnatting" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "a8be850a-3ffa-4941-9d32-60bfeee409fe", + "title": "Inkludert møtemat/pausemat", + "description": "", + "needId": "1836802d-5f10-4a32-bbac-db9ac4d5f899", + "type": "requirement", + "variants": [ + { + "id": "279f57a4-5551-47a6-bf7a-fa4640ea1695", + "requirementText": "Oppgi om dere kan tilby møtemat/pausemat ved bestilling av møterom/konferanserom.\n", + "instruction": "Oppgi om du ønsker møtemat/pausemat ved bestilling av møterom/konferanserom.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "81d387d0-f5ac-4c60-8d3f-f164113af336", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "fa708687-b5ee-482c-abfb-05d469695433", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "2cabbc89-f46a-4d71-b95e-c0de391da038", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "c4e46ec7-5039-4060-bfff-8c0d4d4d88b3", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 2000, + "step": 1, + "unit": "Personer", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 0, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Møtemat/pausemat inkludert ved bestilling av møterom/konferanserom" + }, + { + "id": "8ed4ce0b-7cb3-4f68-8eed-16e711a8e220", + "requirementText": "Oppgi hvilke tilpasninger dere kan tilby for møtemat/pausemat ved bestilling av møterom/konferanserom.", + "instruction": "Oppgi hvilke tilpasninger dere trenger for møtemat/pausemat ved bestilling av møterom/konferanserom.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "1fb3289f-ffc7-4552-96c7-fb1e48eed64b", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "d6fdb096-2c50-4356-abd3-816568582d39", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "8aca0a91-c1f7-4a2a-bb0d-0ab99d17aec7", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "9b4848bc-27d0-4f37-90bd-547f659af0d1", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 2000, + "step": 1, + "unit": "Personer", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 0, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Møtemat/pausemat inkludert (allergener) ved bestilling av møterom/konferanserom" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "61890b79-f482-44bd-80a8-68920891e74c", + "title": "Inkludert middag", + "description": "", + "needId": "1836802d-5f10-4a32-bbac-db9ac4d5f899", + "type": "requirement", + "variants": [ + { + "id": "783445e1-440c-41e7-ada5-5ffa66867c22", + "requirementText": "Oppgi om dere har middag inkludert ved bestilling av overnatting eller kurs- og konferanserom", + "instruction": "Oppgi om du ønsker middag inkludert ved bestilling av overnatting eller kurs- og konferanserom", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "7c01f2ca-73c5-4bd4-9bf9-ea44d199fad3", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "7ff601ee-1502-40c8-a576-a62d0db394b5", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "9db68a5d-1ef9-45ab-a2b8-c519dd96e92a", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Middag inkludert ved bestilling av overnatting eller kurs- og konferanserom" + }, + { + "id": "37493cdc-6849-48f7-8680-14e9114073d4", + "requirementText": "Kan dere tilby middag (tilpasset matallergi) inkludert ved bestilling av overnatting eller kurs- og konferanserom?", + "instruction": "Ønsker dere middag (tilpasset matallergi) inkludert ved bestilling av overnatting eller kurs- og konferanserom?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "5c4bb2a7-3ead-48ed-ade5-f7cc2871b7f4", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "d6fdb096-2c50-4356-abd3-816568582d39", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "ec0b3595-3feb-4553-be0d-3277af993cd7", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 2000, + "step": 1, + "unit": "Personer", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 0, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Middag inkludert ved bestilling av overnatting (tilpasset matallergi) eller kurs- og konferanserom" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "3699b540-9aa8-4300-967c-130b373f5c1c", + "title": "Middag (tilvalg)", + "description": "", + "needId": "1836802d-5f10-4a32-bbac-db9ac4d5f899", + "type": "requirement", + "variants": [ + { + "id": "b080dac4-83b8-46fc-bedb-8b57e03f1314", + "requirementText": "Kan dere tilby Oppdragsgiver oppgradering til festmiddag? 1) Ja/nei 2) Velg fra kodeliste", + "instruction": "Ønsker dere å oppgradere til festmiddag? 1) Ja/nei 2) Velg fra kodeliste", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "de87935c-40fa-49cd-9dfd-59a18ea88635", + "2efda706-512a-4a9b-ba6e-9fbe590bbcca" + ], + "questions": [ + { + "id": "67263e92-fd47-4dc7-9b5e-8d42d7b60bc0", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "58ece071-458b-4c25-a4c0-ad0fb33c311f", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "7beb89e7-deaa-4bff-ad10-fb8076187fae", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "c250a02e-b82b-4ca5-a50c-99f9ca5853d3", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 2000, + "step": 1, + "unit": "Personer", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 0, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Festmiddag" + }, + { + "id": "ece6fe25-818b-4817-803e-5777dce4a4fd", + "requirementText": "Kan dere tilby kjøp av middag dersom det ikke er inkludert i booking av møterom?", + "instruction": "Ønsker dere å kjøpe middag dersom det ikke er inkludert i booking av møterom?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e5065081-7c78-4c41-8478-af3de75bc7f8", + "2efda706-512a-4a9b-ba6e-9fbe590bbcca", + "de87935c-40fa-49cd-9dfd-59a18ea88635" + ], + "questions": [ + { + "id": "8415749e-3f7a-4855-941c-23d5fd6ded1d", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "a147b589-f866-456b-a03f-64e6cd4e560d", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "9db68a5d-1ef9-45ab-a2b8-c519dd96e92a", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "5095bd36-1670-4609-ae06-eec8f230052b", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 2000, + "step": 1, + "unit": "Personer", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 0, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Middag" + }, + { + "id": "cd6d819f-3712-434f-9c9b-8082f5dbcc88", + "requirementText": "Kan dere tilby kjøp av middag (tilpasset allergener) dersom det ikke er inkludert i booking av møterom/hotellrom?", + "instruction": "Ønsker dere å kjøpe middag (tilpasset allergener) dersom dette ikke er inkludert i booking av møterom/hotellrom?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e5065081-7c78-4c41-8478-af3de75bc7f8", + "2efda706-512a-4a9b-ba6e-9fbe590bbcca", + "de87935c-40fa-49cd-9dfd-59a18ea88635" + ], + "questions": [ + { + "id": "2f2301aa-22bb-4a57-93bc-1d19a7f4eb9c", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "8d5e45fb-c14e-422e-bcb0-097885f4862c", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "d6fdb096-2c50-4356-abd3-816568582d39", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "779be458-64b3-47f0-a3c5-ccc20f1b2d25", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 2000, + "step": 1, + "unit": "Personer", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 0, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Middag (tilpasset allergener)" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "5d10f387-0e31-4dc1-86f0-8a7b5390ab41", + "title": "Inkludert lunsj", + "description": "", + "needId": "1836802d-5f10-4a32-bbac-db9ac4d5f899", + "type": "requirement", + "variants": [ + { + "id": "0c4eef50-bc8f-42e9-9ff4-26e264720dca", + "requirementText": "Kan dere tilby lunsj inkludert ved bestilling av overnatting eller møterom? 1) Ja/nei 2) Velg fra kodeliste.", + "instruction": "Ønsker dere lunsj inkludert ved bestilling av overnatting eller møterom? 1) Ja/nei 2) Velg fra kodeliste.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "0cd36309-aaf6-4ce0-9b43-e412ddd453d8", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "7e7610e0-6fba-46a8-828a-38f50ead2406", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "d27a6c21-5f16-48c6-9d1c-271b41c5b0c3", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "51cb90d0-9b48-4e77-b62f-7b57bb990ccb", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 1000, + "step": 1, + "unit": "Personer", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 0, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Lunsj inkludert ved bestilling av overnatting eller møterom" + }, + { + "id": "56ae8c8e-c921-4515-aa0c-bac6d91272bb", + "requirementText": "Kan dere tilby lunsj tilpasset allergener inkludert ved bestilling av overnatting eller møterom? 1) Ja/nei 2) Velg matallergi dere kan ta hensyn til 3) Velg antall dere kan tilby.", + "instruction": "Ønsker dere lunsj inkludert tilpasset allergener ved bestilling av overnatting eller møterom? 1) Ja/nei 2) Velg matallergi dere ønsker at Leverandør skal ta hensyn til 3) Velg antall personer som trenger matservering tilpasset matallergi. \n\nDette skal ikke settes som et krav ved matpreferanser. ", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "3b77919f-b447-4d97-80ec-fb5cbfbd7c36", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "916727da-8d0a-47cf-91ef-ec1a7195644d", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "d6fdb096-2c50-4356-abd3-816568582d39", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "c7651f06-f1da-49bf-99d6-9dcc935d7b14", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 2000, + "step": 1, + "unit": "Antall personer", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 0, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Lunsj inkludert ved bestilling av overnatting eller møterom (tilpasset matallergi)" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "b67944e3-77de-49c9-beb1-a96eaf937456", + "title": "Frokost (tilvalg)", + "description": "", + "needId": "1836802d-5f10-4a32-bbac-db9ac4d5f899", + "type": "requirement", + "variants": [ + { + "id": "500a10f8-2917-48cd-b0e1-f3cdc27b8a30", + "requirementText": "Kan dere tilby kjøp av frokost dersom det ikke er inkludert i booking av f.eks. hotellrom? 1) Svar ja/nei 2) Oppgi hvilken type frokost dere i så fall kan tilby 3) Oppgi antall dere kan tilby frokost til.", + "instruction": "Ønsker dere å kjøpe frokost for en eller flere dager? 1) Svar ja/nei 2) Oppgi hvilken frokost dere ønsker 3) Oppgi antall som ønsker frokost.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "1d855ecf-48c7-4cda-87c0-03e6167ef345" + ], + "questions": [ + { + "id": "7427d2d9-1f8d-486a-8bf5-d6aaa471b5ce", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "1dd85812-a269-4639-b8eb-b51c8c50aaad", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "6904f02d-fcd8-4a2d-80af-494cb2c6b6aa", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "3233ace5-3868-4e19-b045-43cf20535830", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 2000, + "step": 1, + "unit": "Personer", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 0, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Kjøp av ekstra frokost" + }, + { + "id": "da82675f-42d2-4c38-9689-2be0621f5549", + "requirementText": "Kan dere tilby kjøp av frokost tilpasset allergener dersom det ikke er inkludert i booking av f.eks. hotellrom? 1) Svar ja/nei 2) Oppgi hvilke tilpasninger dere kan tilby 3) Oppgi antall dere kan tilby til.", + "instruction": "Ønsker dere å kjøpe ekstra frokost tilpasset allergener dersom det ikke er inkludert i booking av f.eks. hotellrom? 1) Svar ja/nei 2)Oppgi hvilke tilpasninger dere ønsker fra leverandør 3) Oppgi antallet dere ønsker å kjøpe frokost tilpasset allergener til.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "1d855ecf-48c7-4cda-87c0-03e6167ef345" + ], + "questions": [ + { + "id": "1f2cb734-77fd-414c-b717-f3eb3bdabaf6", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "12bf0348-7b9f-4ace-87d0-ca5783b5972f", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "d6fdb096-2c50-4356-abd3-816568582d39", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "1688d222-641f-4f8f-b859-85e9e1d4898b", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 2000, + "step": 1, + "unit": "Personer", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 0, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Kjøp av ekstra frokost (tilpasset allergener)" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "01920d9d-d717-4397-a8be-0a7895f734b8", + "title": "Lunsj (tilvalg)", + "description": "", + "needId": "1836802d-5f10-4a32-bbac-db9ac4d5f899", + "type": "requirement", + "variants": [ + { + "id": "9a677fa8-cd31-471b-a2f6-aad6b3a46b12", + "requirementText": "Kan dere tilby kjøp av lunsj som ikke er inkludert ved booking av f.eks. hotellrom? 1) Svar ja/nei 2) Oppgi hvilken type lunsj dere kan tilby", + "instruction": "Ønsker dere å kjøpe ekstra lunsj for en eller flere dager? 1) Ja/nei 2) Oppgi hvilken type lunsj dere ønsker.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "67577fef-c766-4bf6-9c78-8c0c83ca7bae" + ], + "questions": [ + { + "id": "96ec6ad2-78b4-498d-9fd0-ec8acfc268d9", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "d3233a94-7198-45a5-bff6-2de3d272ce39", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "d27a6c21-5f16-48c6-9d1c-271b41c5b0c3", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Kjøp av ekstra lunsj" + }, + { + "id": "3e3d023c-ec13-451e-9c4a-fe18fbd2a02a", + "requirementText": "Kan dere tilby lunsj tilpasset allergener?", + "instruction": "Ønsker dere lunsj tilpasset allergener?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "67577fef-c766-4bf6-9c78-8c0c83ca7bae" + ], + "questions": [ + { + "id": "bbe2d0c3-be3f-43f5-b849-4c124a25d1ca", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "18005fae-6489-4bec-a27b-680661afafc7", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "d6fdb096-2c50-4356-abd3-816568582d39", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Kjøp av lunsj tilpasset allergener" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "7ec46b18-529d-49ce-bd42-ad9caae31547", + "title": "Møtemat (tilvalg)", + "description": "", + "needId": "1836802d-5f10-4a32-bbac-db9ac4d5f899", + "type": "requirement", + "variants": [ + { + "id": "b8f7b325-0f57-43e0-a7ab-eaa1ff47378c", + "requirementText": "Kan dere tilby kjøp av ekstra møtemat/pausemat?", + "instruction": "Ønsker dere å kjøpe ekstra møtemat/pausemat?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "2da680fd-039d-440e-8188-4fa80082b995" + ], + "questions": [ + { + "id": "9365c3dd-70b3-4aba-bacc-2f8af5d5a5ca", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "e8a100de-06ca-431b-a38b-4891488505b5", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "2cabbc89-f46a-4d71-b95e-c0de391da038", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "558c2c73-dc48-4610-88ab-0c98a431a4b1", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 2000, + "step": 1, + "unit": "Personer", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 0, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Kjøp av ekstra møtemat" + }, + { + "id": "4264fc6c-5bef-4aa9-9058-555215eb44fb", + "requirementText": "Kan dere tilby møtemat/pausemat tilpasset allergener?", + "instruction": "Ønsker dere møtemat/pausemat tilpasset allergener?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "2da680fd-039d-440e-8188-4fa80082b995" + ], + "questions": [ + { + "id": "a898dda9-0a93-49d9-a881-9bfe67e89c72", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "cfab3eb2-e7d1-4a48-a8a3-4e100be38861", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "d6fdb096-2c50-4356-abd3-816568582d39", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "ddabc8af-4285-442e-84db-a321e3a8fd00", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 2000, + "step": 1, + "unit": "Personer", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 0, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Kjøp av møtemat/pausemat tilpasset allergener" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "6be90939-bd8e-444c-a30c-2f58aa8ff9a0", + "title": "Inkludert frokost ved bestilling av overnatting (tilpasset matallergi)", + "description": "", + "needId": "1836802d-5f10-4a32-bbac-db9ac4d5f899", + "type": "requirement", + "variants": [ + { + "id": "022589e7-1c54-4ceb-b20b-c382af9a33b0", + "requirementText": "Velg hvilke matallergier dere kan ta hensyn til under frokosten.", + "instruction": "Velg hvilke matallergier det skal tilpasses for under frokosten. Dette kravet skal ikke brukes ved matpreferanser. ", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c087beae-1a3d-427b-b0fe-2859f3a93a63", + "adf7dbf8-d86e-4550-a018-6fffe283876f", + "deb4c8f2-e2ee-4278-90f5-a986bd3cbf40", + "217cda9b-1984-4a5f-8467-bda3293133ca", + "b2d12668-3db1-4a63-bd38-5263f1b6ae23", + "7665fbf9-deba-4cb7-b2a4-30c976231077", + "ce098cbf-90d2-4019-b4c3-42e3308ebde7", + "66da97ac-466e-4914-af7f-28dbeef05d24" + ], + "questions": [ + { + "id": "fa7d12fd-26b0-4656-8db5-beec3b793619", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "d6fdb096-2c50-4356-abd3-816568582d39", + "codes": [], + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Frokost inkludert ved bestilling av overnatting (tilpasset matallergi)" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + } + ], + "type": "need", + "parent": "c8dd0912-eb52-4895-96e3-58996001d5b2", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "16f8b402-a74d-4c5f-8cc9-23654bc7e50a", + "title": "Møterom", + "description": "", + "requirements": [ + { + "id": "e6eff920-6325-4378-a285-e0066a0663db", + "title": "Møterom", + "description": "", + "needId": "16f8b402-a74d-4c5f-8cc9-23654bc7e50a", + "type": "requirement", + "variants": [ + { + "id": "b0f23d50-85d5-4730-abc1-43f5f9d0cdd3", + "requirementText": "Velg type møterom dere kan tilby. ", + "instruction": "Velg type møterom som er ønskelig under arrangementet. ", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "ad432819-47dc-443a-804d-261b78d6d43d", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "987a7622-287e-4973-80bc-0329635c0c5e", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "db4b617a-e5a7-4965-aa57-8bcfad36488e", + "codes": [], + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Valg av møterom til kurs- og konferanser" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + } + ], + "type": "need", + "parent": "c8dd0912-eb52-4895-96e3-58996001d5b2", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "f3d61877-48ef-46b3-9759-2bad07cb17f6", + "title": "Aktiviteter/teambuilding", + "description": "", + "requirements": [ + { + "id": "b16fd274-af99-4f93-9fa0-4cb91cff6620", + "title": "Gruppeaktiviteter", + "description": "", + "needId": "f3d61877-48ef-46b3-9759-2bad07cb17f6", + "type": "requirement", + "variants": [ + { + "id": "d87a9b47-1cc1-4eed-8512-a9e06f055bac", + "requirementText": "Kan dere tilby gruppeaktiviteter/teambuildingsaktiviteter?", + "instruction": "Oppgi ønskede gruppeaktiviteter for oppholdet.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "166d1f14-d964-43a4-a08b-854fffdba28a", + "03e54d89-9b6c-4e01-91ad-3b659837979f", + "6fd6f3af-a48f-431c-a968-a19a876575eb", + "23ac680d-b7d6-4288-93bb-42686e50fbb5", + "eabaf6b8-d47c-4718-9d09-9444d35836a6", + "a0a9a371-0ce1-4a05-9412-3a42f90ef79e", + "d2177612-f32a-43c3-9ea8-8fad12cb8126", + "fdb7b369-18a1-4407-84e6-e04e54211422", + "c3e16ea0-eca7-47c8-b123-393c3794817a", + "9e36774a-3937-4b9f-9341-42e390103e81" + ], + "questions": [ + { + "id": "e1113ef6-95c0-453a-ae17-cfde76674bee", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "84adb6f9-f1a5-495a-8c5d-9d99ba0f3f67", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Ønskede gruppeaktiviteter" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "ba53595b-0615-4386-ad86-5d7215e56fa4", + "title": "Dato for gruppeaktiviteter", + "description": "", + "needId": "f3d61877-48ef-46b3-9759-2bad07cb17f6", + "type": "requirement", + "variants": [ + { + "id": "b0f541f3-d046-4ec7-b7ef-8b2ba06321ec", + "requirementText": "Oppgi dato dere kan tilby teambuilding/gruppeaktiviteter", + "instruction": "Oppgi dato dere ønsker teambuilding/aktiviteter", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "62d484a3-cd25-4f1d-9ff0-d2816e10f7db", + "166d1f14-d964-43a4-a08b-854fffdba28a" + ], + "questions": [ + { + "id": "ff9a3f0c-c15c-42f3-8a15-35314679209b", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [ + { + "date": null, + "score": 0 + }, + { + "date": null, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Dato for teambuilding" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "388c6314-e681-4344-81d3-504a55910d4c", + "title": "Tidspunkt for gruppeaktiviteter", + "description": "", + "needId": "f3d61877-48ef-46b3-9759-2bad07cb17f6", + "type": "requirement", + "variants": [ + { + "id": "ba0aa927-f9ce-4b1b-bd5b-3f716cdaaea4", + "requirementText": "Oppgi tidspunkt dere kan tilby teambuilding/gruppeaktiviteter", + "instruction": "Oppgi tidspunkt dere ønsker teambuilding/gruppeaktiviteter", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "62d484a3-cd25-4f1d-9ff0-d2816e10f7db", + "166d1f14-d964-43a4-a08b-854fffdba28a" + ], + "questions": [ + { + "id": "974e4305-43ce-48e7-ade3-14b0c7eb6341", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [ + { + "time": null, + "score": 0 + }, + { + "time": null, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Tidspunkt for teambuilding" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + } + ], + "type": "need", + "parent": "c8dd0912-eb52-4895-96e3-58996001d5b2", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "4c172142-4b13-463a-bc7b-54abe835a198", + "title": "Underholdning", + "description": "", + "requirements": [ + { + "id": "b48245fa-7792-4f1b-9e8c-06cc51d73274", + "title": "Underholdning", + "description": "", + "needId": "4c172142-4b13-463a-bc7b-54abe835a198", + "type": "requirement", + "variants": [ + { + "id": "2f0eed33-d977-421e-9b16-544d9a1c7480", + "requirementText": "Kan dere tilby underholdning under arrangementet?", + "instruction": "Ønsker dere underholdning under arrangementet?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "49c2537b-684f-4b57-ae98-ec8c339e9068" + ], + "questions": [ + { + "id": "caeada82-7884-4728-adfc-98b08f27d6b8", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "80226d5d-d30a-4e98-a386-9b6f65578e6b", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Underholdning" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "0052a996-af19-4473-b93b-c1dd676e0501", + "title": "Dato for underholdning", + "description": "", + "needId": "4c172142-4b13-463a-bc7b-54abe835a198", + "type": "requirement", + "variants": [ + { + "id": "16e528f9-1c26-4170-b3f5-c28b349ecebe", + "requirementText": "Oppgi dato for når dere kan tilby underholdning", + "instruction": "Oppgi dato for når dere ønsker underholdning", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "49c2537b-684f-4b57-ae98-ec8c339e9068" + ], + "questions": [ + { + "id": "1ccd002a-b301-474b-bd1b-06676853a78b", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [ + { + "date": null, + "score": 0 + }, + { + "date": null, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Dato for underholdning" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "b59d8ccf-5b01-4711-ad61-4d37caaf054c", + "title": "Tidspunkt for underholdning", + "description": "", + "needId": "4c172142-4b13-463a-bc7b-54abe835a198", + "type": "requirement", + "variants": [ + { + "id": "02f766a6-a714-472d-b22c-08c49bed97f0", + "requirementText": "Oppgi tidspunkt dere kan tilby underholdning", + "instruction": "Oppgi tidspunkt for når dere ønsker underholdning", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "49c2537b-684f-4b57-ae98-ec8c339e9068" + ], + "questions": [ + { + "id": "b21a9e9e-889f-45da-ad42-4c9ec4f66308", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [ + { + "time": null, + "score": 0 + }, + { + "time": null, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Tidspunkt for underholdning" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + } + ], + "type": "need", + "parent": "c8dd0912-eb52-4895-96e3-58996001d5b2", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "53771ec9-a99f-4e33-ab36-85d9726cc345", + "title": "Transport", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "0a472e20-c7f9-40ff-af50-ac6c1d364890", + "title": "Parkering", + "description": "", + "requirements": [ + { + "id": "b4719d50-874a-4df6-860c-b44a3ffa195b", + "title": "Inkludert gratis parkering", + "description": "", + "needId": "0a472e20-c7f9-40ff-af50-ac6c1d364890", + "type": "requirement", + "variants": [ + { + "id": "4448e152-75c1-4bc6-8b45-356643eac4a5", + "requirementText": "Kan dere tilby gratis parkering på egen tomt? ", + "instruction": "Ønsker dere gratis parkering på stedets egen tomt?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "320ffb0e-e707-40ed-8330-cdf97624ec97", + "9c8ba3d1-ce00-42c8-82b6-706859c097cc", + "ffc1c540-5655-4430-8545-136ecb6aa041" + ], + "questions": [ + { + "id": "a7acd0a0-4e77-48f9-8d1f-73f221ec8761", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Gratis parkering på egen tomt" + }, + { + "id": "5446e0c0-9349-4248-b90a-acaaae4f3fae", + "requirementText": "Kan dere tilby gratis parkering i parkeringshus?", + "instruction": "Ønsker dere gratis parkering i parkeringshus? ", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "9c8ba3d1-ce00-42c8-82b6-706859c097cc", + "eb2a27df-615b-4eae-ab0c-209a95d37a3d", + "320ffb0e-e707-40ed-8330-cdf97624ec97" + ], + "questions": [ + { + "id": "e9db943d-e3f4-4dd1-8896-2c699129e38c", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Gratis parkering i parkeringshus" + }, + { + "id": "9fdfbdeb-a09e-497b-9c59-92155678732e", + "requirementText": "Finnes det gratis parkering utendørs på offentlig sted i nærheten av kurs- og konferanselokalet?", + "instruction": "Ønsker dere gratis parkering utendørs på offentlig sted i nærheten av kurs- og konferanselokalet?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "320ffb0e-e707-40ed-8330-cdf97624ec97", + "683e1061-c8ab-43ee-920a-ad32f6b209f1", + "9c8ba3d1-ce00-42c8-82b6-706859c097cc", + "0dc9950f-81e5-486d-aec3-caec82a51a14" + ], + "questions": [ + { + "id": "deb76d2f-eb98-4b47-ae15-d5ddf069a2ce", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Gratis parkering utendørs på offentlig sted " + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "6904f02d-fcd8-4a2d-80af-494cb2c6b6aa", + "title": "Frokost", + "description": "", + "codes": [ + { + "id": "dd5c87f5-c1b5-4fe9-8ea2-c6e2f585a666", + "title": "Frokostbuffet", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "bee4b7e0-1557-42ad-b893-f40593c46242", + "title": "Kontinentalfrokost", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "b6e1f5f6-9493-40a8-a3b6-2d66918c2e3a", + "title": "Engelsk frokost", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "f186373b-5f73-4420-9d5b-4aafceb40110", + "title": "Amerikansk frokost", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "d27a6c21-5f16-48c6-9d1c-271b41c5b0c3", + "title": "Lunsj", + "description": "", + "codes": [ + { + "id": "f7b7c818-2275-4e1c-bed2-8ab183277dfb", + "title": "Lunsj-buffet", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "a274c89b-7d12-4d08-b1b6-53c049fe8e5c", + "title": "2-retters", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "d0f465b3-62f3-4972-b594-a1559341e069", + "title": "3- retters", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "e75e7614-a904-4cd2-9581-1f9feacbb254", + "title": "Vegetar", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "f6c79f19-2a7b-4019-adfc-0c1220254fc9", + "title": "Vegansk", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "3df9a8e2-7bd9-43e5-b63d-889c3f06ac57", + "title": "Økologisk", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "82a066ce-9095-4fbc-aa5a-8b60b7e275bc", + "title": "Fingermat/tapas", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "6dc3ae60-e777-4117-bc30-13b55d6bc509", + "title": "Alkoholfri drikke", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "2ec04913-f0e8-477d-b276-468d85921edf", + "title": "Mineralvann", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "e3ebc0c6-0c33-496d-b3aa-f5072cb8f6ec", + "title": "Kaffe/te", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "9db68a5d-1ef9-45ab-a2b8-c519dd96e92a", + "title": "Middag", + "description": "", + "codes": [ + { + "id": "2c7796db-c585-4243-a154-eccdedbe7cc2", + "title": "Middagsbuffet", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "c3541b50-6b05-460a-be08-00bfa61b0e57", + "title": "2-retters", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "b3428af1-0c74-4225-8524-51cf3a6ccb1e", + "title": "3-retters", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "96058fb2-abe6-4656-8b73-0c96e1fef874", + "title": "4-retters", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "667359b7-f683-4193-913f-949a3daa5c66", + "title": "5-retters", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "6ee9771f-6c28-499c-8f1a-acc2624153fe", + "title": "Vegetarmat", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "63d9f4cc-c27f-4fc5-aca4-73c0100a984c", + "title": "Vegansk mat", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "4f1be30c-1832-4958-9d7d-9e731e7da63b", + "title": "Økologisk mat", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "d9fbfc4a-65a6-4bc8-874d-9ca493fd043f", + "title": "Fingermat/tapas", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "016f7ee6-aa64-4ca4-a440-adb49b2a8583", + "title": "Tilpasset matregler knyttet til religion", + "description": "F.eks. kosher, halal, mv. ", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "f0eb9370-0549-441a-a5a9-4a55be3a4b7a", + "title": "Alkoholfri drikke", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "d109b4cd-a7c1-4a7c-880a-60b2c9ffa6fa", + "title": "Øl/vin/apertif/café avec", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "2cabbc89-f46a-4d71-b95e-c0de391da038", + "title": "Møtemat/pausemat", + "description": "", + "codes": [ + { + "id": "df6c952e-d644-4b01-b5a0-dbbfd629619b", + "title": "Smoothie", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "1f47c194-202e-4eab-bb03-96e162b220d5", + "title": "Mineralvann", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "031436eb-0f22-4c34-8bef-9cce818092de", + "title": "Nøtter", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "c94fd068-521f-4aa6-91d6-988dc9dee873", + "title": "Wraps", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "4c60b618-1882-4c18-8f19-5c389f7c922d", + "title": "Smørbrød", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "68b897e4-ca43-43f5-bdb8-ba6e1bae47c4", + "title": "Kaffe/te", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "7c7ad4f5-6637-4b06-8070-3d816fc94fa7", + "title": "Kake/bakst", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "c73e5699-02c9-4c24-8bac-d2ff9408b0dd", + "title": "Fingermat/tapas", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "adbd9948-5f5a-4ed3-87ea-1d46691fcea2", + "title": "Frukt", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "d6fdb096-2c50-4356-abd3-816568582d39", + "title": "Allergener", + "description": "", + "codes": [ + { + "id": "a8e7e16e-766d-40ec-8781-050eec182aec", + "title": "Gluten", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "a564f0b1-157a-4ae2-a60a-197fb90b19f3", + "title": "Skalldyr", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "a73e446d-690f-4cfd-aef3-2b7fd919af47", + "title": "Egg", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "ccc4f51f-642c-4495-a6ed-d8d0bb7a6e84", + "title": "Fisk", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "59081e1c-86d8-4dc6-b466-43a27c42959b", + "title": "Nøtter", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "9b525938-576c-4ef5-90c8-a93fcb76e60e", + "title": "Soya", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "2c133fa2-660b-46d7-be28-4c66e7357a6c", + "title": "Melk", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "d69caa52-c0ec-4cb9-8ce2-7c81b747386a", + "title": "Laktose", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "3756752d-631a-43fb-94e1-b8e193ad7421", + "title": "Selleri", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "b093d220-1878-41e8-8650-f85161570303", + "title": "Sennep", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "0f919bf6-7cd1-4358-94c1-e266848e8b5f", + "title": "Sesamfrø", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "aa225989-8af4-4939-a4f1-2ef8aad7904c", + "title": "Svoveldioksid og sulfitter", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "8f850ef5-0013-455c-9a09-db94ff7e66d9", + "title": "Lupin", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "29da074f-59b6-47ec-b7f6-e8c6c82e0a3a", + "title": "Bløtdyr", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "db4b617a-e5a7-4965-aa57-8bcfad36488e", + "title": "Romoppsett", + "description": "", + "codes": [ + { + "id": "8cbc73c2-222f-4011-9546-bed1639a4851", + "title": "Klasserom", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "ff2c1750-6867-4a4d-9d47-fb1d09c39369", + "title": "Scene", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "60a748d2-5a68-494f-a4a4-3a610ea1a801", + "title": "Styreoppsett/langbord", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "13f875f9-9e71-44c4-ba7d-c0c44bd1cbdc", + "title": "Klasserom", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "007bff18-2977-4cfc-8789-5e684704ee02", + "title": "Grupperom", + "description": "3-6 personer", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "e8ac700e-4192-4b95-acea-768e9161b951", + "title": "Grupperom ", + "description": "7-12 personer", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "f82fb0ad-0706-4cc1-bbcc-621b02373628", + "title": "U-bord/hestesko", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "a232c075-f83b-4cda-9ebb-bffa29ecf43b", + "title": "T-bord", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "f661462c-ab6b-4e7f-920b-a00f164bb584", + "title": "Kino", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "48b2cbe8-a985-485c-889d-e4e37cbc2406", + "title": "Runde bord", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "e48ca47f-38aa-4786-a3e3-257d5bc1ec41", + "title": "Delplenum", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "7bff77c0-6eba-48ee-b77d-01ec4fdaae18", + "title": "Kafébord", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "25e48d34-e889-4641-994a-819f7a78e4d0", + "title": "Standard konferanseteknikk/AV-utstyr", + "description": "", + "codes": [ + { + "id": "abed440c-edec-4da6-bf95-ad3d3ef4ab5f", + "title": "Mikrofon/mygg", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "b25d1fec-4263-4d93-a969-c249ab825bc6", + "title": "Mikrofon håndholdt", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "9f6b63cc-cad8-4c73-bd1f-900f2e357f14", + "title": "Lydforsterkere", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "267a511a-ddd0-4167-8fe1-36ace119f495", + "title": "Miksere", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "1cd072cb-bf30-44a4-ad47-c4f90b64c0cb", + "title": "Prosjektor/storskjerm ", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "21caf73c-2959-44e0-84ac-a83d80a80dbd", + "title": "Overgang (VGA-HDMI display port)", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "5670311a-fcd0-40e4-bc70-76d29c7cc49b", + "title": "Flipover/whiteboard", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "33f10d40-5bb4-4f5d-8d95-3c70c0f65fba", + "title": "Streamingmuligheter (Kamera, m.m.)", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "6fb3295e-7341-4c81-8945-98de56c23e94", + "title": "Teknisk assistanse", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "cb54c860-0983-4273-8ac2-aebb0ac77afe", + "title": "Høytaler", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "adb122a3-113a-4fd7-8acc-637b52f58d0e", + "title": "Konferansetelefon", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "0025f3c0-06ef-4e28-aa13-6aceef952c14", + "title": "Lyskastere", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "1faf643d-e2ee-41dc-be08-ffade6480276", + "title": "Spotlights", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "1677f4ac-f089-41aa-8b99-20da8233fe1e", + "title": "Stemningsbelysning", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "63ef122b-2627-4c66-a042-61c475547abe", + "title": "Talerstol", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "72dbe24c-7c15-466d-8de4-0c736f57a8ac", + "title": "Tilgang til skjermer på møterom/grupperom", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "c904f802-21e2-4554-9357-d9e31f433e9c", + "title": "Tilgang til innganger (PC) på møterom/grupperom", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "765409a0-14cc-4944-8c04-1411e6fb4059", + "title": "Tilgang på lydkilder på møterom/grupperom", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "1e62febb-30b5-4e63-b7e6-f50c1aa6fc4d", + "title": "Leie av PC", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "e5d97ee0-cac7-4903-b157-5808bac9df0c", + "title": "Webcam", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "84adb6f9-f1a5-495a-8c5d-9d99ba0f3f67", + "title": "Aktiviteter/teambuilding", + "description": "", + "codes": [ + { + "id": "cc842990-b0ec-4d34-907d-ece90257d2d8", + "title": "Vin-/ølsmaking", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "b13cf6d0-f9f0-4765-aee3-057980f3e009", + "title": "Sjokoladesmaking", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "ae8fd18a-a8c2-41d3-b9a2-1ff49f60a626", + "title": "Omvisning/guidet tur", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "20a06f9f-77a2-4454-92a4-c458a6e986cb", + "title": "Båttur", + "description": "Seilbåt, rib, robåt, pedalbåt, m.m.", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "f84f17f3-c5ae-4e0b-9ca6-087a641ce92a", + "title": "Escape room", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "46073609-99d7-4eca-92e2-14781b7d64d2", + "title": "Padling", + "description": "Kajakk, kano, SUP, m.m.", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "12038bd5-a3a5-4238-ae02-5f6e0261dae0", + "title": "Flerkamp", + "description": "5-/10-kamp", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "1a5e19b6-a62f-4db7-a907-d53d937b1518", + "title": "Boblefotball", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "b3065e3d-122d-4e1d-aefe-c641d95ee5fe", + "title": "Skitur", + "description": "Leie av langrennsski og forslag til tur.", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "c240e4fc-c4b4-4b55-b7b6-c7e808a0b9e0", + "title": "Discogolf", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "a4c66c80-3872-47c6-98ee-954ebd1f059b", + "title": "Shuffleboard", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "9b984e63-422a-4f5b-a836-7a808a42df13", + "title": "Biljard", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "b461e8d6-651c-4a6d-8cae-304bd4f866d5", + "title": "Sykkeltur", + "description": "Leie av sykkel og forslag til tur.", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "dbb9e49f-e99b-4412-8291-b0ef95dc637f", + "title": "Minigolf", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "fd83fafa-60bc-4cf1-bd05-7f40e3e81698", + "title": "Ridning", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "d6b9dbba-ec04-46cf-b689-e02a0e4fe4ca", + "title": "Fisketur", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "5f5bfbf9-06ac-40f0-a24a-06153b2262bc", + "title": "Bordtennis", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "32c132ff-1b34-42cb-b4a2-30b6405fa9ce", + "title": "Klatring", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "bb025b17-e5b1-4fee-b90a-d13f530ce4eb", + "title": "Matkurs", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "f2770612-bb0e-47c9-b076-7990da435847", + "title": "Yoga", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "f9beafb9-6b2a-4ddb-9b62-ed180acd9bec", + "title": "Dansekurs", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "84cccf75-9fb9-477c-8760-2bc21fac949a", + "title": "Gruppetrening", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "80226d5d-d30a-4e98-a386-9b6f65578e6b", + "title": "Underholdning", + "description": "", + "codes": [ + { + "id": "65198083-f31c-45c4-b298-8b166ee56165", + "title": "Foredrag", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "a2753926-6a57-4734-b704-24eb855a3487", + "title": "Musikalsk innslag", + "description": "Band, DJ, m.m.", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "176c368f-8f12-48d3-aa03-6f90d825d800", + "title": "Danseshow", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "2c65ccad-c99f-41ac-b825-9c517384ad3a", + "title": "Magiker", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "e9b54bbb-00b5-4d7f-be9b-ee807803b290", + "title": "DJ", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "7beb89e7-deaa-4bff-ad10-fb8076187fae", + "title": "Festmiddag", + "description": "", + "codes": [], + "type": "codelist", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "23ec62dc-2d00-4e74-b20a-4d4e9dddf8ec", + "title": "Universell utforming", + "description": "", + "codes": [], + "type": "codelist", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "3c0ba5c8-2a26-40e1-8428-a7443ff93655", + "title": "Sikkerhet", + "description": "Krav til fysisk sikring under arrangementet. ", + "codes": [ + { + "id": "4d401b5b-db6f-4103-b075-c064ddf1ee78", + "title": "Skuddsikre glass", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "8d65f8f9-14ad-4f31-8f9e-bcbf42048664", + "title": "Forsterkede vegger", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "d0269b05-adff-456a-beac-5bb0b14a2c00", + "title": "Begrenset adkomst", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "45e31473-10de-4f5e-92bc-df5f339144d3", + "title": "Ekstra vakthold", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "73e6dbec-2d1f-4d46-b7db-8044fd180f43", + "title": "Standard møterom/lokale", + "description": "", + "codes": [ + { + "id": "ccb987ad-5a65-4177-a2dc-9cf93870d0c8", + "title": "Lav standard", + "description": "Enkel romstandard, ingen tilgjengelig teknisk assistanse, begrenset med teknisk utstyr.", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "e8fadb8b-e327-4afb-92e2-7ba23b724d08", + "title": "Middels standard", + "description": "Lokale med god standard, gode lysforhold og ventilasjon, servering av alle måltider i egne eller nærliggende lokaler, standard teknisk utstyr, teknisk assistanse under deler av arrangementet. ", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "adf58ab1-72c4-4928-a239-04afbc6ba5d3", + "title": "Høy standard", + "description": "Lokale med meget god standard, meget gode lysforhold og ventilasjon, utsikt, alle måltider tilbys i egne lokaler, fellesarealer, serviceytelser på høyt nivå, tilgjengelig kursvertinne/vert under hele arrangementet, god tilgang på teknisk utstyr, tilgang på wifi og teknisk assistanse under hele arrangementet.", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "81a52088-64b3-48a8-9ac3-55029938134c", + "title": "Høy standard +", + "description": "Lokaler av svært god kvalitet, svært gode lysforhold og ventilasjon, utsikt, alle måltider tilbys i egen restaurant, tilgang på fellesarealer, serviceytelser på et høyt nivå, tilgjengelig kursvertinne/vert under hele arrangementet, god tilgang på teknisk utstyr, tilgang til wifi og teknisk assistanse under hele arrangementet. ", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "1c2873da-0fb7-4604-92aa-d9c483d0b554", + "title": "Standard hotellrom", + "description": "", + "codes": [ + { + "id": "5ecc2c59-bc10-495b-a69b-417f58a0ca7a", + "title": "Lav standard/DNT-standard", + "description": "Gjestegård, e.l. Sted med enkel romstandard, felles dusj og toalett. ", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "61e80cf4-667b-4fbc-a36b-ee251c788985", + "title": "Middels standard", + "description": "God romstandard med TV, dusj, toalett og skrivebord. ", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "53b3b15f-9acb-49ad-8258-d643ea7e58a6", + "title": "Høy standard", + "description": "Meget god romstandard. TV, dusj, toalett, skrivebord og wifi på rommet. 24-timers resepsjon. Tilgjengelig restaurant på hotellet. Tilgang til svømmebasseng, spa eller treningssenter på hotellet. ", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "33bc8bb4-96ea-4a95-acf4-96c6b5b9509e", + "title": "Høy standard +", + "description": "Svært god romstandard. TV, dusj, toalett, skrivebord og wifi på rommet. 24-timers resepsjon og room-service. Kostnadsfri tilgang til svømmebasseng, spa eller treningssenter. Alle måltider tilbys i egen restaurant. ", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + } + ], + "products": [ + { + "id": "c087beae-1a3d-427b-b0fe-2859f3a93a63", + "title": "Hotellrom", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "adf7dbf8-d86e-4550-a018-6fffe283876f", + "title": "Enkeltrom", + "description": "", + "type": "product", + "parent": "c087beae-1a3d-427b-b0fe-2859f3a93a63", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "deb4c8f2-e2ee-4278-90f5-a986bd3cbf40", + "title": "Dobbeltrom", + "description": "", + "type": "product", + "parent": "c087beae-1a3d-427b-b0fe-2859f3a93a63", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "217cda9b-1984-4a5f-8467-bda3293133ca", + "title": "Twin-rom", + "description": "", + "type": "product", + "parent": "c087beae-1a3d-427b-b0fe-2859f3a93a63", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "b2d12668-3db1-4a63-bd38-5263f1b6ae23", + "title": "Familierom", + "description": "", + "type": "product", + "parent": "c087beae-1a3d-427b-b0fe-2859f3a93a63", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "7665fbf9-deba-4cb7-b2a4-30c976231077", + "title": "Junior suite", + "description": "", + "type": "product", + "parent": "c087beae-1a3d-427b-b0fe-2859f3a93a63", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "ce098cbf-90d2-4019-b4c3-42e3308ebde7", + "title": "Suite", + "description": "", + "type": "product", + "parent": "c087beae-1a3d-427b-b0fe-2859f3a93a63", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "66da97ac-466e-4914-af7f-28dbeef05d24", + "title": "Penthouse suite", + "description": "", + "type": "product", + "parent": "c087beae-1a3d-427b-b0fe-2859f3a93a63", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "title": "Møterom", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "feccdcfc-c124-4525-8e26-853f2d46bceb", + "title": "Plenumssal", + "description": "", + "type": "product", + "parent": "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "title": "Møterom/grupperom", + "description": "", + "type": "product", + "parent": "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "ad432819-47dc-443a-804d-261b78d6d43d", + "title": "Kursrom", + "description": "", + "type": "product", + "parent": "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "19deb58c-d37d-4031-ae8c-e45e27632f08", + "title": "Klasserom", + "description": "", + "type": "product", + "parent": "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "title": "Møterom tilpasset hybridmøter", + "description": "", + "type": "product", + "parent": "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f", + "title": "Utstillerareal", + "description": "", + "type": "product", + "parent": "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "de87935c-40fa-49cd-9dfd-59a18ea88635", + "title": "Bankett/festmiddag", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "2efda706-512a-4a9b-ba6e-9fbe590bbcca", + "title": "Festmiddag", + "description": "", + "type": "product", + "parent": "de87935c-40fa-49cd-9dfd-59a18ea88635", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "62d484a3-cd25-4f1d-9ff0-d2816e10f7db", + "title": "Aktiviteter/teambuilding", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "166d1f14-d964-43a4-a08b-854fffdba28a", + "title": "Gruppeaktiviteter", + "description": "", + "type": "product", + "parent": "62d484a3-cd25-4f1d-9ff0-d2816e10f7db", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "49c2537b-684f-4b57-ae98-ec8c339e9068", + "title": "Underholdning", + "description": "Foredrag, musikalsk innslag, m.m.", + "type": "product", + "parent": "", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "647f6c0e-24dd-43d5-adcd-b1503ac50a14", + "title": "Servering", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "1d855ecf-48c7-4cda-87c0-03e6167ef345", + "title": "Frokost", + "description": "", + "type": "product", + "parent": "647f6c0e-24dd-43d5-adcd-b1503ac50a14", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "67577fef-c766-4bf6-9c78-8c0c83ca7bae", + "title": "Lunsj", + "description": "", + "type": "product", + "parent": "647f6c0e-24dd-43d5-adcd-b1503ac50a14", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "e5065081-7c78-4c41-8478-af3de75bc7f8", + "title": "Middag", + "description": "", + "type": "product", + "parent": "647f6c0e-24dd-43d5-adcd-b1503ac50a14", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "2da680fd-039d-440e-8188-4fa80082b995", + "title": "Møtemat/pausemat", + "description": "", + "type": "product", + "parent": "647f6c0e-24dd-43d5-adcd-b1503ac50a14", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "9c8ba3d1-ce00-42c8-82b6-706859c097cc", + "title": "Parkering", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "ffc1c540-5655-4430-8545-136ecb6aa041", + "title": "Parkering på egen tomt", + "description": "", + "type": "product", + "parent": "9c8ba3d1-ce00-42c8-82b6-706859c097cc", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "eb2a27df-615b-4eae-ab0c-209a95d37a3d", + "title": "Parkeringshus ", + "description": "Parkeringshus i nærheten av kurs- og konferansestedet. ", + "type": "product", + "parent": "9c8ba3d1-ce00-42c8-82b6-706859c097cc", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "683e1061-c8ab-43ee-920a-ad32f6b209f1", + "title": "Parkering utendørs på offentlig sted", + "description": "Tilgjengelig parkering utendørs på offentlig sted.", + "type": "product", + "parent": "9c8ba3d1-ce00-42c8-82b6-706859c097cc", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "0dc9950f-81e5-486d-aec3-caec82a51a14", + "title": "Gateparkering", + "description": "Tilgjengelig gateparkering i nærhet til kurs- og konferansestedet.", + "type": "product", + "parent": "9c8ba3d1-ce00-42c8-82b6-706859c097cc", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "320ffb0e-e707-40ed-8330-cdf97624ec97", + "title": "Parkering med elbil-lader", + "description": "Tilgjengelig parkering i nærheten av kurs- og konferansestedet med elbil-lader.", + "type": "product", + "parent": "9c8ba3d1-ce00-42c8-82b6-706859c097cc", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [ + { + "id": "eae6dcf4-4333-4873-9fee-2e38dc1e9ee7", + "bankId": "eae6dcf4-4333-4873-9fee-2e38dc1e9ee7", + "comment": "Første utgave", + "date": "2022-08-29T12:11:35.686Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null + } + ], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "be17e2fb-cd0e-478e-869a-9452a851846c", + "title": "Kurs og konferanse", + "description": "", + "needs": [ + { + "id": "e5395f5b-9ac0-43dc-a320-0bb745406480", + "title": "Arrangement", + "description": "", + "requirements": [ + { + "id": "b5707497-e01f-47b3-9360-5e5ccece30e8", + "title": "Type arrangement", + "description": "", + "needId": "e5395f5b-9ac0-43dc-a320-0bb745406480", + "type": "requirement", + "variants": [ + { + "id": "ce0e313b-6a8b-43d3-b600-3950be55f226", + "requirementText": "Arrangementet er av følgende type:", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "618d36f0-6367-4b0d-af12-bcb35a4ab8fa", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "14ad306a-fa4c-4b72-9cce-570f0a313a92", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Kode" + }, + { + "id": "4fff3c1a-83cf-476a-8964-ff316e8f3e50", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "dd197ec5-4e06-43db-923f-f83f9bf956df", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10, + "step": 1, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Fritekst" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "fbad687f-9a30-4619-8fdf-3fb64ea63b26", + "title": "Ankomst", + "description": "", + "needId": "e5395f5b-9ac0-43dc-a320-0bb745406480", + "type": "requirement", + "variants": [ + { + "id": "68dc0156-b90a-4d81-b56f-1edb020d02f3", + "requirementText": "Dato for ankomst:", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "67d46a71-e437-46ce-acec-cef6d52f0a01", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Dato for ankomst" + }, + { + "id": "db6bb874-baff-4707-91d1-c45d1d8cc0fe", + "requirementText": "Dato for innsjekk:", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "27d21926-6fbd-4fa0-81a1-cca0b85906e0", + "89a12bae-4efd-4d63-8104-812c4320a0f0", + "9dc5b01c-fdb5-43c8-8a90-264c3d0212ea", + "9738b9ec-61b9-458f-b3a8-91598bc14d8e" + ], + "questions": [ + { + "id": "497f52ec-84bf-486a-b625-929dca4c8fe4", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Dato for innsjekk" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "73269ed6-335b-4bcf-b23b-bd2b89255a2a", + "title": "Avreise", + "description": "", + "needId": "e5395f5b-9ac0-43dc-a320-0bb745406480", + "type": "requirement", + "variants": [ + { + "id": "8c63d7e7-ed19-4b22-b196-9a63451b69be", + "requirementText": "Dato for avreise:", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "2e3c98b4-c7bc-4ba2-9f07-950b379dfc8a", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Dato for avreise" + }, + { + "id": "cdd13caa-668c-4bc6-a637-ec60cf50eb2f", + "requirementText": "Dato for utsjekk:", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "27d21926-6fbd-4fa0-81a1-cca0b85906e0", + "89a12bae-4efd-4d63-8104-812c4320a0f0", + "9dc5b01c-fdb5-43c8-8a90-264c3d0212ea", + "9738b9ec-61b9-458f-b3a8-91598bc14d8e" + ], + "questions": [ + { + "id": "fa4b8956-8bae-4471-9e93-94a75fe5a9ab", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Dato for utsjekk" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "ee650624-77f6-4deb-8f1a-c767629f4ba8", + "title": "Tidspunkt (dato)", + "description": "", + "needId": "e5395f5b-9ac0-43dc-a320-0bb745406480", + "type": "requirement", + "variants": [ + { + "id": "57ad74c4-73ec-4bec-9ac0-0e839ddb5ab9", + "requirementText": "Produktet er for følgende dato:", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "f9217dbc-16b1-4b29-8453-d3f22f169b2e", + "2148ae47-a626-442c-897f-fe00f2391828", + "aa329b5d-9bbf-4cfd-bd1d-f49bd5d93251", + "4c7fd42b-5b8c-4c01-82d3-c58ca03c9826", + "ee1516e6-a4da-4b0f-b7a8-55e528d2f7f3", + "6563ced7-29a9-4297-a17e-cf30a1f9f184", + "679b16c2-6eae-430c-91fa-e06ca5a4fab4", + "d3e9b0fb-7b15-4227-910f-b8ba89b76793", + "99ae62a9-a814-4013-8e47-2dc05bad21a0", + "7642f782-5dbb-4743-9c2d-3509f46b694f", + "38ac2409-606c-4325-ae11-f65e149c20ee", + "7d534b07-9a2b-44cb-8b20-ee962427580b", + "ffa3b3d7-1c9b-453e-8122-3fd966b4677e" + ], + "questions": [ + { + "id": "705fbd70-554c-4e67-b4c1-a4db13ce5412", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Dato for bestillingen" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "239dbf15-da7c-4f7f-8fa9-9e8e80ee04b3", + "title": "Fasiliteter", + "description": "", + "requirements": [ + { + "id": "8b32029e-8d6d-45fd-94bc-248b4e942f1f", + "title": "Størrelse", + "description": "", + "needId": "239dbf15-da7c-4f7f-8fa9-9e8e80ee04b3", + "type": "requirement", + "variants": [ + { + "id": "81ab7342-fdf1-4a2e-867f-11dd138c3792", + "requirementText": "Antall personer det må være plass til på møterom:", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "f9217dbc-16b1-4b29-8453-d3f22f169b2e", + "2148ae47-a626-442c-897f-fe00f2391828", + "aa329b5d-9bbf-4cfd-bd1d-f49bd5d93251" + ], + "questions": [ + { + "id": "9071ccdf-4010-41e1-bc23-9fb5f315f147", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 30, + "step": 1, + "unit": "personer", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Antall personer på møterom" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "b46be6a6-d2ae-494c-8d80-3a48df4bf427", + "title": "Tilgang til Internett", + "description": "", + "needId": "239dbf15-da7c-4f7f-8fa9-9e8e80ee04b3", + "type": "requirement", + "variants": [ + { + "id": "5bd07d1f-5d49-4da1-84f6-251ffb105331", + "requirementText": "Det gis fri tilgang til Internett uten ekstra kostnader eller tegning av abonnement.", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "b5f86d49-a89f-4be6-a1a1-bb92890404d8", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tilgang til Internett uten ekstra kostnad/abonnement" + }, + { + "id": "3484e292-4d33-407e-a415-1070ec9f15fc", + "requirementText": "Det må være tilkoblingspunkt for arrangørens eget nettverksutstyr.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "f9217dbc-16b1-4b29-8453-d3f22f169b2e", + "2148ae47-a626-442c-897f-fe00f2391828", + "aa329b5d-9bbf-4cfd-bd1d-f49bd5d93251", + "4c7fd42b-5b8c-4c01-82d3-c58ca03c9826", + "ee1516e6-a4da-4b0f-b7a8-55e528d2f7f3", + "6563ced7-29a9-4297-a17e-cf30a1f9f184", + "679b16c2-6eae-430c-91fa-e06ca5a4fab4" + ], + "questions": [ + { + "id": "b31fa533-d093-402c-862f-3477511a09a1", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tilgang til å sette opp eget nettverk" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "e8c223c3-653c-4f21-9f7b-d5883e833d89", + "title": "Geografisk lokasjon", + "description": "", + "requirements": [ + { + "id": "f98184d7-fd2a-4590-bf15-d776d5472c1a", + "title": "Distanse fra lokasjon", + "description": "", + "needId": "e8c223c3-653c-4f21-9f7b-d5883e833d89", + "type": "requirement", + "variants": [ + { + "id": "10840910-8699-4356-9819-a9e0021f374b", + "requirementText": "Oppgi distanse til nærmeste kollektivknytepunkt (togstasjon, bussterminal). Oppgis i antall meter kalkulert på Google Maps fra leverandørs adresse til knytepunktets adresse.", + "instruction": "Benyttes når distanse til kollektivknytepunkt er relevant for evaluering.", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "bedd9862-53ac-43c2-a545-efa9326fd39f", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10000, + "step": 50, + "unit": "meter", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Distanse fra nærmeste kollektivknytepunkt" + }, + { + "id": "1b1153cb-7671-437b-aa06-5c2a127a64f2", + "requirementText": "Oppgi distanse til adressen oppgitt under. Oppgis i antall kilometer kalkulert på Google Maps fra leverandørs adresse til oppgitt adresse.", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "d3715cf2-38df-4d08-9ac2-b705cf2bbf57", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 100, + "step": 0.1, + "unit": "km", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Distanse fra oppgitt adresse" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "d328160e-d04a-4a36-8031-f39fcb819206", + "title": "Adresse for avstandsberegning", + "description": "", + "needId": "e8c223c3-653c-4f21-9f7b-d5883e833d89", + "type": "requirement", + "variants": [ + { + "id": "08273d97-8798-493f-83eb-beb20d60b2e8", + "requirementText": "Følgende adresse brukes til avstandsberegning i kravet over:", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "41c160c8-1d9b-4679-9389-b74a1fef0abe", + "type": "Q_TEXT", + "config": { + "max": 200, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Oppgitt adresse" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + } + ], + "type": "need", + "parent": "239dbf15-da7c-4f7f-8fa9-9e8e80ee04b3", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "d5b2380c-9e20-4657-8ae6-ef5308206bb6", + "title": "Universell utforming", + "description": "", + "requirements": [ + { + "id": "76c6113a-3904-4fd5-95fc-639c29ea2740", + "title": "Tilgjengelighet", + "description": "", + "needId": "d5b2380c-9e20-4657-8ae6-ef5308206bb6", + "type": "requirement", + "variants": [ + { + "id": "7aef945e-5541-476a-ba71-4ab2eb51970c", + "requirementText": "Følgende tilrettelegging må være på plass på lokasjonen:", + "instruction": "Brukes i tilfeller hvor man er avhengig av tilrettelegging eller at det er politisk bestemt at det skal stilles krav om tilrettelegging.", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "c53732e5-8d57-462f-be05-c0ca8d4576e6", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "94ae8e4d-080a-4447-b98e-ab4de03b5e32", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Påkrevd tilrettelegging" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "b64c0e32-3a65-4aff-968d-060b6e2336f8", + "title": "Handikap-rom", + "description": "", + "needId": "d5b2380c-9e20-4657-8ae6-ef5308206bb6", + "type": "requirement", + "variants": [ + { + "id": "45d8a855-13b1-4f0f-bf74-b8851b1fa719", + "requirementText": "Rommet må være tilpasset person med handikap eller rullestol.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "27d21926-6fbd-4fa0-81a1-cca0b85906e0", + "89a12bae-4efd-4d63-8104-812c4320a0f0", + "9dc5b01c-fdb5-43c8-8a90-264c3d0212ea", + "9738b9ec-61b9-458f-b3a8-91598bc14d8e" + ], + "questions": [ + { + "id": "dfb67b99-cc3d-4876-a4e7-d5d2774d44d1", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Rom tilpasset for person med handikap eller rullestol" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "41a7f4cd-e7a5-4cfe-a78a-2035bf8dd332", + "title": "Handikap-parkering", + "description": "", + "needId": "d5b2380c-9e20-4657-8ae6-ef5308206bb6", + "type": "requirement", + "variants": [ + { + "id": "7ead3a51-fc99-42c4-b9b2-52d6faa27a32", + "requirementText": "Det må være tilgjengelig handikap-parkering på lokasjonen.", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "86c66da1-8394-4114-99af-a5554f4a1f76", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Handikap-parkering på lokasjonen" + }, + { + "id": "3776ff93-9df2-4a57-9c89-5076da428727", + "requirementText": "Antall parkeringsplasser som må være tilgjengelig for arrangementet på lokasjonen:", + "instruction": "Brukes når man på forhånd vet at man har et gitt behov så leverandør kan tilrettelegge dersom det er et større antall enn \"vanlig\".", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "4ed501f2-7b17-4c93-83a4-9a845abbd1f4", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 20, + "step": 1, + "unit": "parkeringsplasser", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Antall parkeringsplasser for handikap på lokasjonen" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + } + ], + "type": "need", + "parent": "239dbf15-da7c-4f7f-8fa9-9e8e80ee04b3", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "787ec415-f367-41d2-8870-2116728c60b5", + "title": "Oppsett", + "description": "", + "requirements": [ + { + "id": "094d5911-3c21-432e-aa5a-2c4645ba348a", + "title": "Møteromsoppsett", + "description": "", + "needId": "787ec415-f367-41d2-8870-2116728c60b5", + "type": "requirement", + "variants": [ + { + "id": "667aff0b-df93-4bf3-aa16-e9dac51ca117", + "requirementText": "Beskrivelse av oppsett på møterom:", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "f9217dbc-16b1-4b29-8453-d3f22f169b2e", + "2148ae47-a626-442c-897f-fe00f2391828", + "aa329b5d-9bbf-4cfd-bd1d-f49bd5d93251" + ], + "questions": [ + { + "id": "7a092004-7f20-4d1f-9466-3fddcf5d1c27", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Fritekst" + }, + { + "id": "27266ffd-2fdc-44ab-b9b9-fb938d0dff71", + "requirementText": "Følgende oppsett på møterommet er ønsket:", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "f9217dbc-16b1-4b29-8453-d3f22f169b2e", + "2148ae47-a626-442c-897f-fe00f2391828", + "aa329b5d-9bbf-4cfd-bd1d-f49bd5d93251" + ], + "questions": [ + { + "id": "1afd939f-a66b-4146-b663-87229f7c1517", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "9b63a659-ae0f-4008-8e53-d96e60f869fe", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Predefinert" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "527b6568-5d7f-475c-a93c-0d46512022e3", + "title": "Teknisk utstyr", + "description": "", + "needId": "787ec415-f367-41d2-8870-2116728c60b5", + "type": "requirement", + "variants": [ + { + "id": "79ce2146-acb2-4ce5-a43f-3c0f32850365", + "requirementText": "Følgende utstyr må være tilgjengelig på møterommet:", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "f9217dbc-16b1-4b29-8453-d3f22f169b2e", + "2148ae47-a626-442c-897f-fe00f2391828", + "aa329b5d-9bbf-4cfd-bd1d-f49bd5d93251" + ], + "questions": [ + { + "id": "dab691a8-c6e8-4e30-9835-9a322dd6837d", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "8b03cd70-5f2c-4399-a134-736b5bcfb591", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Utstyr på møterommet" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + } + ], + "type": "need", + "parent": "239dbf15-da7c-4f7f-8fa9-9e8e80ee04b3", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "9bd9b6ea-6b25-4a43-a23b-e19bb0d2de71", + "title": "Overnatting", + "description": "", + "requirements": [ + { + "id": "3ff3c708-9055-4b16-ac93-e20d330c4b69", + "title": "Inventar", + "description": "", + "needId": "9bd9b6ea-6b25-4a43-a23b-e19bb0d2de71", + "type": "requirement", + "variants": [ + { + "id": "9267b007-a8de-4119-bc44-4086d018a12d", + "requirementText": "Følgende inventar er ønskelig/nødvendig på rommet:", + "instruction": "Benyttes i tilfeller hvor spesifikt inventar er ønskelig eller nødvendig.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "27d21926-6fbd-4fa0-81a1-cca0b85906e0", + "89a12bae-4efd-4d63-8104-812c4320a0f0", + "9dc5b01c-fdb5-43c8-8a90-264c3d0212ea", + "9738b9ec-61b9-458f-b3a8-91598bc14d8e" + ], + "questions": [ + { + "id": "bdb829d7-5db6-4375-87bd-6bc09bdbe254", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "fd5fc764-aef6-4e36-8d2b-942670fae95c", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Inventar på rom" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "4c700f6a-5330-455b-bfa3-f9c3c995e1c0", + "title": "To enkeltsenger", + "description": "", + "needId": "9bd9b6ea-6b25-4a43-a23b-e19bb0d2de71", + "type": "requirement", + "variants": [ + { + "id": "c7ca5c98-9d6c-4d84-853d-c955ba2ca852", + "requirementText": "Ønsker at det benyttes to enkeltsenger i stedet for dobbeltseng.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "9dc5b01c-fdb5-43c8-8a90-264c3d0212ea", + "9738b9ec-61b9-458f-b3a8-91598bc14d8e" + ], + "questions": [ + { + "id": "57e69a50-d0f4-45d0-a3f2-ef51e9627c35", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Enkeltsenger" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "5639d0ca-bbbe-441f-965b-688ee957b2ab", + "title": "Bespisning", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "dc1081a9-0cad-48ac-bb6e-4a797866d381", + "title": "Inkludert bespisning", + "description": "Måltider inkludert i ikke-dedikerte produkter", + "requirements": [ + { + "id": "cbd51b69-dca8-4296-98c4-a8089ca11e6f", + "title": "Frokost", + "description": "", + "needId": "dc1081a9-0cad-48ac-bb6e-4a797866d381", + "type": "requirement", + "variants": [ + { + "id": "6bd8971b-2844-418e-9fc3-2be0abc3f6f3", + "requirementText": "Angi om frokost inngår i prisen for overnatting.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "27d21926-6fbd-4fa0-81a1-cca0b85906e0", + "89a12bae-4efd-4d63-8104-812c4320a0f0", + "9dc5b01c-fdb5-43c8-8a90-264c3d0212ea", + "9738b9ec-61b9-458f-b3a8-91598bc14d8e" + ], + "questions": [ + { + "id": "dee9bafd-1243-4aff-8787-477423c94a8b", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Inkludert frokost" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "d6781a8a-c8ac-4636-80dd-493ad3d62717", + "title": "Kvelds", + "description": "", + "needId": "dc1081a9-0cad-48ac-bb6e-4a797866d381", + "type": "requirement", + "variants": [ + { + "id": "3dffff0d-a23c-4abd-8e33-9efec0dbe173", + "requirementText": "Angi om kvelds inngår i prisen for overnatting.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "27d21926-6fbd-4fa0-81a1-cca0b85906e0", + "89a12bae-4efd-4d63-8104-812c4320a0f0", + "9dc5b01c-fdb5-43c8-8a90-264c3d0212ea", + "9738b9ec-61b9-458f-b3a8-91598bc14d8e" + ], + "questions": [ + { + "id": "5c92ac6e-8a1a-4bd7-9319-4fd7f436afbc", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Inkludert kvelds" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "9ad25c53-faab-4581-a486-63bb33461e0f", + "title": "Møteromsbespisning", + "description": "", + "needId": "dc1081a9-0cad-48ac-bb6e-4a797866d381", + "type": "requirement", + "variants": [ + { + "id": "38216a20-2d97-4b57-88cd-8c3f3dc17348", + "requirementText": "Oppgi tilgjengelig mat/drikke på møtetrommet", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "f9217dbc-16b1-4b29-8453-d3f22f169b2e", + "2148ae47-a626-442c-897f-fe00f2391828", + "aa329b5d-9bbf-4cfd-bd1d-f49bd5d93251" + ], + "questions": [ + { + "id": "cfdca67d-9994-4034-bf5a-5127786ff2e0", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "b6f7cc03-08d6-4bcc-9d69-9074bd729741", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tilgjengelig mat/drikke på møterom" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + } + ], + "type": "need", + "parent": "5639d0ca-bbbe-441f-965b-688ee957b2ab", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "999804a6-d3a5-4fc2-a845-b61bbbc15878", + "title": "Tilpasninger", + "description": "", + "requirements": [ + { + "id": "30bb95d6-c16c-4f13-a9a0-828d34d7afa8", + "title": "Allergener (høy sensitivitet)", + "description": "", + "needId": "999804a6-d3a5-4fc2-a845-b61bbbc15878", + "type": "requirement", + "variants": [ + { + "id": "4028127d-4247-4876-a44c-6b464ed1684d", + "requirementText": "Følgende matvarer kan ikke være i området for arrangementet.", + "instruction": "Brukes når personer på arrangementet ikke kan være i nærheten av spesifikk mat uten å få allergisk reaksjon.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "f9217dbc-16b1-4b29-8453-d3f22f169b2e", + "2148ae47-a626-442c-897f-fe00f2391828", + "aa329b5d-9bbf-4cfd-bd1d-f49bd5d93251", + "4c7fd42b-5b8c-4c01-82d3-c58ca03c9826", + "ee1516e6-a4da-4b0f-b7a8-55e528d2f7f3", + "6563ced7-29a9-4297-a17e-cf30a1f9f184", + "679b16c2-6eae-430c-91fa-e06ca5a4fab4", + "d3e9b0fb-7b15-4227-910f-b8ba89b76793", + "99ae62a9-a814-4013-8e47-2dc05bad21a0", + "7642f782-5dbb-4743-9c2d-3509f46b694f", + "38ac2409-606c-4325-ae11-f65e149c20ee", + "7d534b07-9a2b-44cb-8b20-ee962427580b", + "ffa3b3d7-1c9b-453e-8122-3fd966b4677e" + ], + "questions": [ + { + "id": "6732ac73-d429-4161-8b76-d94e0e35095e", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "7d36781c-fbd1-4f6a-9f9b-2ba1f005b4a2", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Allergener i området for arrangementet" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "f52a1ce1-391f-49a4-b42f-bd568e0b877e", + "title": "Allergener", + "description": "", + "needId": "999804a6-d3a5-4fc2-a845-b61bbbc15878", + "type": "requirement", + "variants": [ + { + "id": "e5600806-b7df-43e8-8744-4010aea724a4", + "requirementText": "Følgende allergener må man ta høyde for:", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "d3e9b0fb-7b15-4227-910f-b8ba89b76793", + "99ae62a9-a814-4013-8e47-2dc05bad21a0", + "7642f782-5dbb-4743-9c2d-3509f46b694f", + "38ac2409-606c-4325-ae11-f65e149c20ee", + "7d534b07-9a2b-44cb-8b20-ee962427580b", + "ffa3b3d7-1c9b-453e-8122-3fd966b4677e" + ], + "questions": [ + { + "id": "e190c6d7-7ad2-429e-9b0c-f5370d5d31d8", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "7d36781c-fbd1-4f6a-9f9b-2ba1f005b4a2", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Allergener" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + } + ], + "type": "need", + "parent": "5639d0ca-bbbe-441f-965b-688ee957b2ab", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "14ad306a-fa4c-4b72-9cce-570f0a313a92", + "title": "Arrangementstype", + "description": "", + "codes": [ + { + "id": "369458cb-0873-4d3e-9f56-afc93c9c0147", + "title": "Internt møte", + "description": "Mindre møte med i hovedsak interne deltakere", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "b07db7f4-26c9-4de3-8da9-03d72a594b48", + "title": "Intern samling", + "description": "Samling med i hovedsak interne deltakere", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "d186d9ec-34c0-4f3d-8266-1dc5f3062081", + "title": "Møte med eksterne", + "description": "Mindre møte med i hovedsak eksterne deltakere", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "3c251c5a-7f3a-4f4c-af46-24ec90df1dcb", + "title": "Samling med eksterne", + "description": "Samling med i hovedsak eksterne deltakere", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "f3b0450f-577b-448d-914e-7a6f3f82c577", + "title": "Konferanse", + "description": "Arrangement som skal behandles som en konferanse", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "94ae8e4d-080a-4447-b98e-ab4de03b5e32", + "title": "Tilgjengelighet", + "description": "Universell utforming", + "codes": [ + { + "id": "2f897c9f-5f9c-4127-8a48-cfaad4499503", + "title": "Syn", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "69b5cf55-3ff0-4ae7-b5eb-eb6e3a630873", + "title": "Hørsel", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "cde3f5b8-d252-4a26-b650-3d2dc0a3b9a2", + "title": "Bevegelse", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "fc4ea4d1-beca-404d-abd2-93ffc52dea49", + "title": "Rullestol", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "fd5fc764-aef6-4e36-8d2b-942670fae95c", + "title": "Inventar, hotellrom", + "description": "", + "codes": [ + { + "id": "3e438b0e-1e59-488c-88e3-c341cf6e8ebc", + "title": "Skrivebord", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "f33d1a87-de81-4a1c-96f4-11c7a6be000d", + "title": "Sofagruppe", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "532037bc-a78b-4111-a504-edb7a2f07fa8", + "title": "Lenestol", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "9e43d7f0-b65f-46e8-b18e-2a31d101395f", + "title": "Safe", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "94af1e45-d31f-4723-a182-af449218dfd1", + "title": "Badekar", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "8b03cd70-5f2c-4399-a134-736b5bcfb591", + "title": "Teknisk utstyr, møterom", + "description": "", + "codes": [ + { + "id": "01f625da-c93e-428d-b661-ce993ce5b552", + "title": "Videokanon", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "0ec827a4-0a87-4ce1-80f1-f93c67d6ca5c", + "title": "Overhead", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "b6f7cc03-08d6-4bcc-9d69-9074bd729741", + "title": "Bespisning på møterom", + "description": "", + "codes": [ + { + "id": "9e8c31f4-74f9-4bc6-834b-3034554881cf", + "title": "Kaffe/te og vann", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "d6162dc4-bd2b-4f5d-a21e-0cf68424db31", + "title": "Mineralvann", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "67250e53-3f0c-473a-9d9b-65beb82b9fdd", + "title": "Fersk frukt", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "9a02b5cb-0649-42d5-81c8-c293abd92820", + "title": "Kake eller fingermat", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "9b63a659-ae0f-4008-8e53-d96e60f869fe", + "title": "Møteromsoppsett", + "description": "", + "codes": [ + { + "id": "d3c254ac-e65d-46a3-97cb-44d278a6c3b3", + "title": "Langbord", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "435eedfa-05f3-441c-bfa9-73e7940587ba", + "title": "Klasserom", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "9dd2094c-5309-40db-9f15-8dc7f15743a9", + "title": "Hestesko", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "b0c773fb-5e1f-4ab0-8185-dde9ffa78e1d", + "title": "Grupper", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "7d36781c-fbd1-4f6a-9f9b-2ba1f005b4a2", + "title": "Allergener", + "description": "", + "codes": [ + { + "id": "a56a6a3d-f31f-4439-b582-a1759e69b913", + "title": "Hasselnøtt", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "3a20f29e-3000-467f-a8ae-886b35233b32", + "title": "Peanøtter", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "bce74154-b37d-49f4-9047-155394d1d1a9", + "title": "Fisk", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "ec45d176-c792-4419-a003-31f86f27e9d8", + "title": "Skalldyr", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + } + ], + "products": [ + { + "id": "f9217dbc-16b1-4b29-8453-d3f22f169b2e", + "title": "Møtefasiliteter", + "description": "Fasiliteter for møter", + "type": "product", + "parent": "", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "2148ae47-a626-442c-897f-fe00f2391828", + "title": "Grupperom", + "description": "Rom for inntil 10 personer", + "type": "product", + "parent": "f9217dbc-16b1-4b29-8453-d3f22f169b2e", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "aa329b5d-9bbf-4cfd-bd1d-f49bd5d93251", + "title": "Møterom", + "description": "Rom for inntil 30 personer", + "type": "product", + "parent": "f9217dbc-16b1-4b29-8453-d3f22f169b2e", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "4c7fd42b-5b8c-4c01-82d3-c58ca03c9826", + "title": "Konferansefasiliteter", + "description": "Fasiliteter for konferanser", + "type": "product", + "parent": "", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "ee1516e6-a4da-4b0f-b7a8-55e528d2f7f3", + "title": "Plenumssal", + "description": "Større sal som kan samle alle deltakerne", + "type": "product", + "parent": "4c7fd42b-5b8c-4c01-82d3-c58ca03c9826", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "6563ced7-29a9-4297-a17e-cf30a1f9f184", + "title": "Resepsjon", + "description": "Dedikert resepsjon for deltakere", + "type": "product", + "parent": "4c7fd42b-5b8c-4c01-82d3-c58ca03c9826", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "679b16c2-6eae-430c-91fa-e06ca5a4fab4", + "title": "Utstillerområde", + "description": "Område for utstillere", + "type": "product", + "parent": "4c7fd42b-5b8c-4c01-82d3-c58ca03c9826", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "27d21926-6fbd-4fa0-81a1-cca0b85906e0", + "title": "Rom", + "description": "Rom for overnatting", + "type": "product", + "parent": "", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "89a12bae-4efd-4d63-8104-812c4320a0f0", + "title": "Enkeltrom", + "description": "Rom for overnatting for en person", + "type": "product", + "parent": "27d21926-6fbd-4fa0-81a1-cca0b85906e0", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "9dc5b01c-fdb5-43c8-8a90-264c3d0212ea", + "title": "Dobbeltrom", + "description": "Rom for overnatting for inntil to personer", + "type": "product", + "parent": "27d21926-6fbd-4fa0-81a1-cca0b85906e0", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "9738b9ec-61b9-458f-b3a8-91598bc14d8e", + "title": "Familierom", + "description": "Rom for overnatting med dobbeltseng og to enkeltsenger", + "type": "product", + "parent": "27d21926-6fbd-4fa0-81a1-cca0b85906e0", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "d3e9b0fb-7b15-4227-910f-b8ba89b76793", + "title": "Bespisning", + "description": "Måltid som ikke inngår i andre produkter", + "type": "product", + "parent": "", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "99ae62a9-a814-4013-8e47-2dc05bad21a0", + "title": "Frokost", + "description": "Måltid servert før klokka 10", + "type": "product", + "parent": "d3e9b0fb-7b15-4227-910f-b8ba89b76793", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "7642f782-5dbb-4743-9c2d-3509f46b694f", + "title": "Lunsj", + "description": "Måltid servert mellom klokka 11 og 13", + "type": "product", + "parent": "d3e9b0fb-7b15-4227-910f-b8ba89b76793", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "38ac2409-606c-4325-ae11-f65e149c20ee", + "title": "Middag", + "description": "Større måltid servert etter klokka 15", + "type": "product", + "parent": "d3e9b0fb-7b15-4227-910f-b8ba89b76793", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "7d534b07-9a2b-44cb-8b20-ee962427580b", + "title": "Kvelds", + "description": "Mindre måltid servert etter klokka 19", + "type": "product", + "parent": "d3e9b0fb-7b15-4227-910f-b8ba89b76793", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "ffa3b3d7-1c9b-453e-8122-3fd966b4677e", + "title": "Matpakke", + "description": "Ferdig smurt matpakke", + "type": "product", + "parent": "d3e9b0fb-7b15-4227-910f-b8ba89b76793", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [], + "tags": [], + "version": 2, + "publishedDate": "2022-06-14T13:47:11.778Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "deletedDate": null + }, + { + "id": "d593ed53-a9b6-41d9-8bef-8893a7fdec39", + "title": "Kurs og konferanse", + "description": "", + "needs": [ + { + "id": "e5395f5b-9ac0-43dc-a320-0bb745406480", + "title": "Arrangement", + "description": "", + "requirements": [ + { + "id": "b5707497-e01f-47b3-9360-5e5ccece30e8", + "title": "Type arrangement", + "description": "", + "needId": "e5395f5b-9ac0-43dc-a320-0bb745406480", + "type": "requirement", + "variants": [ + { + "id": "ce0e313b-6a8b-43d3-b600-3950be55f226", + "requirementText": "Arrangementet er av følgende type:", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "618d36f0-6367-4b0d-af12-bcb35a4ab8fa", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "14ad306a-fa4c-4b72-9cce-570f0a313a92", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Kode" + }, + { + "id": "bffd5391-510a-4504-836f-4fb2ee78d9a8", + "requirementText": "Kort beskrivelse av arrangementet:", + "instruction": "Benyttes kun dersom det mangler fornuftig kode for å angi type arrangement.", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "650b1d37-3e05-43a9-ba29-726f173f89f0", + "type": "Q_TEXT", + "config": { + "max": 2000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Fritekst" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "239dbf15-da7c-4f7f-8fa9-9e8e80ee04b3", + "title": "Fasiliteter", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "e8c223c3-653c-4f21-9f7b-d5883e833d89", + "title": "Geografisk lokasjon", + "description": "", + "requirements": [ + { + "id": "f98184d7-fd2a-4590-bf15-d776d5472c1a", + "title": "Distanse fra lokasjon", + "description": "", + "needId": "e8c223c3-653c-4f21-9f7b-d5883e833d89", + "type": "requirement", + "variants": [ + { + "id": "10840910-8699-4356-9819-a9e0021f374b", + "requirementText": "Oppgi distanse til nærmeste kollektivknytepunkt (togstasjon, bussterminal). Oppgis i antall meter kalkulert på Google Maps fra leverandørs adresse til knytepunktets adresse.", + "instruction": "Benyttes når distanse til kollektivknytepunkt er relevant for evaluering.", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "bedd9862-53ac-43c2-a545-efa9326fd39f", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10000, + "step": 50, + "unit": "meter", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Distanse fra nærmeste kollektivknytepunkt" + }, + { + "id": "1b1153cb-7671-437b-aa06-5c2a127a64f2", + "requirementText": "Oppgi distanse til adressen oppgitt under. Oppgis i antall kilometer kalkulert på Google Maps fra leverandørs adresse til oppgitt adresse.", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "d3715cf2-38df-4d08-9ac2-b705cf2bbf57", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 100, + "step": 0.1, + "unit": "km", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Distanse fra oppgitt adresse" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "d328160e-d04a-4a36-8031-f39fcb819206", + "title": "Adresse for avstandsberegning", + "description": "", + "needId": "e8c223c3-653c-4f21-9f7b-d5883e833d89", + "type": "requirement", + "variants": [ + { + "id": "08273d97-8798-493f-83eb-beb20d60b2e8", + "requirementText": "Følgende adresse brukes til avstandsberegning i kravet over:", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "41c160c8-1d9b-4679-9389-b74a1fef0abe", + "type": "Q_TEXT", + "config": { + "max": 200, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Oppgitt adresse" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + } + ], + "type": "need", + "parent": "239dbf15-da7c-4f7f-8fa9-9e8e80ee04b3", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "d5b2380c-9e20-4657-8ae6-ef5308206bb6", + "title": "Universell utforming", + "description": "", + "requirements": [ + { + "id": "76c6113a-3904-4fd5-95fc-639c29ea2740", + "title": "Tilgjengelighet", + "description": "", + "needId": "d5b2380c-9e20-4657-8ae6-ef5308206bb6", + "type": "requirement", + "variants": [ + { + "id": "7aef945e-5541-476a-ba71-4ab2eb51970c", + "requirementText": "Følgende tilrettelegging må være på plass på lokasjonen:", + "instruction": "Brukes i tilfeller hvor man er avhengig av tilrettelegging eller at det er politisk bestemt at det skal stilles krav om tilrettelegging.", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "c53732e5-8d57-462f-be05-c0ca8d4576e6", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "94ae8e4d-080a-4447-b98e-ab4de03b5e32", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Påkrevd tilrettelegging" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "b64c0e32-3a65-4aff-968d-060b6e2336f8", + "title": "Handikap-rom", + "description": "", + "needId": "d5b2380c-9e20-4657-8ae6-ef5308206bb6", + "type": "requirement", + "variants": [ + { + "id": "45d8a855-13b1-4f0f-bf74-b8851b1fa719", + "requirementText": "Rommet må være tilpasset person med handikap eller rullestol.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "27d21926-6fbd-4fa0-81a1-cca0b85906e0", + "89a12bae-4efd-4d63-8104-812c4320a0f0", + "9dc5b01c-fdb5-43c8-8a90-264c3d0212ea", + "9738b9ec-61b9-458f-b3a8-91598bc14d8e" + ], + "questions": [ + { + "id": "dfb67b99-cc3d-4876-a4e7-d5d2774d44d1", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Rom tilpasset for person med handikap eller rullestol" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "41a7f4cd-e7a5-4cfe-a78a-2035bf8dd332", + "title": "Handikap-parkering", + "description": "", + "needId": "d5b2380c-9e20-4657-8ae6-ef5308206bb6", + "type": "requirement", + "variants": [ + { + "id": "7ead3a51-fc99-42c4-b9b2-52d6faa27a32", + "requirementText": "Det må være tilgjengelig handikap-parkering på lokasjonen.", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "86c66da1-8394-4114-99af-a5554f4a1f76", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Handikap-parkering på lokasjonen" + }, + { + "id": "3776ff93-9df2-4a57-9c89-5076da428727", + "requirementText": "Antall parkeringsplasser som må være tilgjengelig for arrangementet på lokasjonen:", + "instruction": "Brukes når man på forhånd vet at man har et gitt behov så leverandør kan tilrettelegge dersom det er et større antall enn \"vanlig\".", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "4ed501f2-7b17-4c93-83a4-9a845abbd1f4", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 20, + "step": 1, + "unit": "parkeringsplasser", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Antall parkeringsplasser for handikap på lokasjonen" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + } + ], + "type": "need", + "parent": "239dbf15-da7c-4f7f-8fa9-9e8e80ee04b3", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "9bd9b6ea-6b25-4a43-a23b-e19bb0d2de71", + "title": "Overnatting", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "5639d0ca-bbbe-441f-965b-688ee957b2ab", + "title": "Bespisning", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "dc1081a9-0cad-48ac-bb6e-4a797866d381", + "title": "Inkludert bespisning", + "description": "Måltider inkludert i ikke-dedikerte produkter", + "requirements": [ + { + "id": "cbd51b69-dca8-4296-98c4-a8089ca11e6f", + "title": "Frokost", + "description": "", + "needId": "dc1081a9-0cad-48ac-bb6e-4a797866d381", + "type": "requirement", + "variants": [ + { + "id": "6bd8971b-2844-418e-9fc3-2be0abc3f6f3", + "requirementText": "Angi om frokost inngår i prisen for overnatting.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "27d21926-6fbd-4fa0-81a1-cca0b85906e0", + "89a12bae-4efd-4d63-8104-812c4320a0f0", + "9dc5b01c-fdb5-43c8-8a90-264c3d0212ea", + "9738b9ec-61b9-458f-b3a8-91598bc14d8e" + ], + "questions": [ + { + "id": "dee9bafd-1243-4aff-8787-477423c94a8b", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Inkludert frokost" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "d6781a8a-c8ac-4636-80dd-493ad3d62717", + "title": "Kvelds", + "description": "", + "needId": "dc1081a9-0cad-48ac-bb6e-4a797866d381", + "type": "requirement", + "variants": [ + { + "id": "3dffff0d-a23c-4abd-8e33-9efec0dbe173", + "requirementText": "Angi om kvelds inngår i prisen for overnatting.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "27d21926-6fbd-4fa0-81a1-cca0b85906e0", + "89a12bae-4efd-4d63-8104-812c4320a0f0", + "9dc5b01c-fdb5-43c8-8a90-264c3d0212ea", + "9738b9ec-61b9-458f-b3a8-91598bc14d8e" + ], + "questions": [ + { + "id": "5c92ac6e-8a1a-4bd7-9319-4fd7f436afbc", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Inkludert kvelds" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + } + ], + "type": "need", + "parent": "5639d0ca-bbbe-441f-965b-688ee957b2ab", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "999804a6-d3a5-4fc2-a845-b61bbbc15878", + "title": "Tilpasninger", + "description": "", + "requirements": [ + { + "id": "30bb95d6-c16c-4f13-a9a0-828d34d7afa8", + "title": "Allergener", + "description": "", + "needId": "999804a6-d3a5-4fc2-a845-b61bbbc15878", + "type": "requirement", + "variants": [], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "01acf81a-6bed-4681-99d2-34a16fa1866e", + "title": "Diett", + "description": "", + "needId": "999804a6-d3a5-4fc2-a845-b61bbbc15878", + "type": "requirement", + "variants": [], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "a444be65-4fa5-421c-adf0-f1715b286f61", + "title": "Religiøse tilpasninger", + "description": "", + "needId": "999804a6-d3a5-4fc2-a845-b61bbbc15878", + "type": "requirement", + "variants": [], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + } + ], + "type": "need", + "parent": "5639d0ca-bbbe-441f-965b-688ee957b2ab", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "14ad306a-fa4c-4b72-9cce-570f0a313a92", + "title": "Arrangementstype", + "description": "", + "codes": [ + { + "id": "369458cb-0873-4d3e-9f56-afc93c9c0147", + "title": "Internt møte", + "description": "Mindre møte med i hovedsak interne deltakere", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "b07db7f4-26c9-4de3-8da9-03d72a594b48", + "title": "Intern samling", + "description": "Samling med i hovedsak interne deltakere", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "d186d9ec-34c0-4f3d-8266-1dc5f3062081", + "title": "Møte med eksterne", + "description": "Mindre møte med i hovedsak eksterne deltakere", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "3c251c5a-7f3a-4f4c-af46-24ec90df1dcb", + "title": "Samling med eksterne", + "description": "Samling med i hovedsak eksterne deltakere", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "f3b0450f-577b-448d-914e-7a6f3f82c577", + "title": "Konferanse", + "description": "Arrangement som skal behandles som en konferanse", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "94ae8e4d-080a-4447-b98e-ab4de03b5e32", + "title": "Tilgjengelighet", + "description": "Universell utforming", + "codes": [ + { + "id": "2f897c9f-5f9c-4127-8a48-cfaad4499503", + "title": "Syn", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "69b5cf55-3ff0-4ae7-b5eb-eb6e3a630873", + "title": "Hørsel", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "cde3f5b8-d252-4a26-b650-3d2dc0a3b9a2", + "title": "Bevegelse", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "fc4ea4d1-beca-404d-abd2-93ffc52dea49", + "title": "Rullestol", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + } + ], + "products": [ + { + "id": "f9217dbc-16b1-4b29-8453-d3f22f169b2e", + "title": "Møtefasiliteter", + "description": "Fasiliteter for møter", + "type": "product", + "parent": "", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "2148ae47-a626-442c-897f-fe00f2391828", + "title": "Grupperom", + "description": "Rom for inntil 10 personer", + "type": "product", + "parent": "f9217dbc-16b1-4b29-8453-d3f22f169b2e", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "aa329b5d-9bbf-4cfd-bd1d-f49bd5d93251", + "title": "Møterom", + "description": "Rom for inntil 30 personer", + "type": "product", + "parent": "f9217dbc-16b1-4b29-8453-d3f22f169b2e", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "4c7fd42b-5b8c-4c01-82d3-c58ca03c9826", + "title": "Konferansefasiliteter", + "description": "Fasiliteter for konferanser", + "type": "product", + "parent": "", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "ee1516e6-a4da-4b0f-b7a8-55e528d2f7f3", + "title": "Plenumssal", + "description": "Større sal som kan samle alle deltakerne", + "type": "product", + "parent": "4c7fd42b-5b8c-4c01-82d3-c58ca03c9826", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "6563ced7-29a9-4297-a17e-cf30a1f9f184", + "title": "Resepsjon", + "description": "Dedikert resepsjon for deltakere", + "type": "product", + "parent": "4c7fd42b-5b8c-4c01-82d3-c58ca03c9826", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "679b16c2-6eae-430c-91fa-e06ca5a4fab4", + "title": "Utstillerområde", + "description": "Område for utstillere", + "type": "product", + "parent": "4c7fd42b-5b8c-4c01-82d3-c58ca03c9826", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "27d21926-6fbd-4fa0-81a1-cca0b85906e0", + "title": "Rom", + "description": "Rom for overnatting", + "type": "product", + "parent": "", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "89a12bae-4efd-4d63-8104-812c4320a0f0", + "title": "Enkeltrom", + "description": "Rom for overnatting for en person", + "type": "product", + "parent": "27d21926-6fbd-4fa0-81a1-cca0b85906e0", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "9dc5b01c-fdb5-43c8-8a90-264c3d0212ea", + "title": "Dobbeltrom", + "description": "Rom for overnatting for inntil to personer", + "type": "product", + "parent": "27d21926-6fbd-4fa0-81a1-cca0b85906e0", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "9738b9ec-61b9-458f-b3a8-91598bc14d8e", + "title": "Familierom", + "description": "Rom for overnatting med dobbeltseng og to enkeltsenger", + "type": "product", + "parent": "27d21926-6fbd-4fa0-81a1-cca0b85906e0", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "d3e9b0fb-7b15-4227-910f-b8ba89b76793", + "title": "Bespisning", + "description": "Måltid som ikke inngår i andre produkter", + "type": "product", + "parent": "", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "99ae62a9-a814-4013-8e47-2dc05bad21a0", + "title": "Frokost", + "description": "Måltid servert før klokka 10", + "type": "product", + "parent": "d3e9b0fb-7b15-4227-910f-b8ba89b76793", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "7642f782-5dbb-4743-9c2d-3509f46b694f", + "title": "Lunsj", + "description": "Måltid servert mellom klokka 11 og 13", + "type": "product", + "parent": "d3e9b0fb-7b15-4227-910f-b8ba89b76793", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "38ac2409-606c-4325-ae11-f65e149c20ee", + "title": "Middag", + "description": "Større måltid servert etter klokka 15", + "type": "product", + "parent": "d3e9b0fb-7b15-4227-910f-b8ba89b76793", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "7d534b07-9a2b-44cb-8b20-ee962427580b", + "title": "Kvelds", + "description": "Mindre måltid servert etter klokka 19", + "type": "product", + "parent": "d3e9b0fb-7b15-4227-910f-b8ba89b76793", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "ffa3b3d7-1c9b-453e-8122-3fd966b4677e", + "title": "Matpakke", + "description": "Ferdig smurt matpakke", + "type": "product", + "parent": "d3e9b0fb-7b15-4227-910f-b8ba89b76793", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [], + "tags": [], + "version": 1, + "publishedDate": "2022-06-14T07:08:25.250Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "deletedDate": null + }, + { + "id": "5e639185-19f0-4303-97ea-660ab26b4fb5", + "title": "Kriterieveiviseren TestProsjekt", + "description": "Test av Nye møbler", + "needs": [ + { + "id": "8cd63f21-e12d-4692-af12-316ea19fc0fc", + "title": "Robuste møbler", + "description": "Kravspesifikasjon", + "requirements": [ + { + "id": "5e7cd008-9e04-497f-867e-456cf9d1fa02", + "title": "Kvalitetskrav", + "description": "", + "needId": "8cd63f21-e12d-4692-af12-316ea19fc0fc", + "type": "requirement", + "variants": [ + { + "id": "39c9e87a-aa97-440e-bdd1-2a70d241b0fc", + "requirementText": "Fargeekthet ved våtgnidning (Kravet gjelder ikke for hvite tekstiler eller tekstiler som hverken er farget eller trykt)", + "instruction": "ISO 105 X12 eller tilsvarende", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "Kvalitetskrav" + } + ], + "tags": [], + "sourceOriginal": "9790342b-f279-4044-9083-c6beed3bdb43", + "sourceRel": null + }, + { + "id": "33aa88f2-52a4-4607-86f1-1cb8b15d15f5", + "title": "Kvalitetskrav", + "description": "", + "needId": "8cd63f21-e12d-4692-af12-316ea19fc0fc", + "type": "requirement", + "variants": [ + { + "id": "650a3d68-74e6-4435-9b6c-024816009eab", + "requirementText": "Fargeekthet ved tørrgnidning (Kravet gjelder ikke for hvite tekstiler eller tekstiler som hverken er farget eller trykt)", + "instruction": "ISO 105 X12 eller tilsvarende", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "Kvalitetskrav" + } + ], + "tags": [], + "sourceOriginal": "9790342b-f279-4044-9083-c6beed3bdb43", + "sourceRel": null + }, + { + "id": "bf679a01-14e0-43dd-bec5-541dbc864992", + "title": "Dokumentasjon", + "description": "", + "needId": "8cd63f21-e12d-4692-af12-316ea19fc0fc", + "type": "requirement", + "variants": [ + { + "id": "e3927e7d-3059-4488-aced-06a446533eaf", + "requirementText": "Kravet skal dokumenteres ved erklæring fra produsent av tekstilene, støttet av relevante testrapporter, som viser at kvalitetskravene i tabellen er oppfylt. Oppfyllelse av kravet kan også dokumenteres ved tilgang på gyldig sertifikat på at tilbudt møbelprodukt er tildelt sertifisering utviklet i henhold til ISO 14024 (Type I eller Type I-lik) som oppfyller kravet. For eksempel Svanemerket. For kravet om slitasjestyrke (Martindale) skal det likevel kunne leveres egen dokumentasjon (erklæring fra produsent av tekstilene, støttet av relevant testrapport).", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "info", + "description": "Hvordan be om dokumentasjon " + } + ], + "tags": [], + "sourceOriginal": "9790342b-f279-4044-9083-c6beed3bdb43", + "sourceRel": null + }, + { + "id": "d09fe888-a8e0-4089-8ab6-b03ed65765bb", + "title": "Informasjon", + "description": "", + "needId": "8cd63f21-e12d-4692-af12-316ea19fc0fc", + "type": "requirement", + "variants": [ + { + "id": "7ac3dced-a3d9-4e56-9f64-e943130b2abd", + "requirementText": "Dette kravet bør stilles i alle anskaffelser som inkluderer møbler med tekstil. Av hensyn til dokumentasjonsbyrden er kravet på basisnivå innrettet slik at det kan dokumenteres med flere ulike merkeordninger (i tillegg til egen dokumentasjon på slitasjestyrke, siden noen av de vanligste miljømerkene har et lavere krav til Martindaletest enn hva som er angitt i dette kravet). Kravet på avansert nivå krever mer dokumentasjon siden leverandøren må levere inn relevante testrapporter (siden flere av de vanlige miljømerkene ikke stiller de samme kravene), men er særlig relevant å stille i anskaffelser hvor tekstilene utsettes for stor slitasje.", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "info", + "description": "Informasjon " + } + ], + "tags": [], + "sourceOriginal": "9790342b-f279-4044-9083-c6beed3bdb43", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "9790342b-f279-4044-9083-c6beed3bdb43", + "sourceRel": null + } + ], + "codelist": [], + "products": [], + "publications": [], + "tags": [], + "version": 1, + "publishedDate": "2022-04-25T14:56:31.126Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "9790342b-f279-4044-9083-c6beed3bdb43", + "deletedDate": null + }, + { + "id": "9790342b-f279-4044-9083-c6beed3bdb43", + "title": "Kriterieveiviseren TestProsjekt", + "description": "Test av Nye møbler", + "needs": [ + { + "id": "8cd63f21-e12d-4692-af12-316ea19fc0fc", + "title": "Robuste møbler", + "description": "Kravspesifikasjon", + "requirements": [ + { + "id": "5e7cd008-9e04-497f-867e-456cf9d1fa02", + "title": "Kvalitetskrav", + "description": "", + "needId": "8cd63f21-e12d-4692-af12-316ea19fc0fc", + "type": "requirement", + "variants": [ + { + "id": "39c9e87a-aa97-440e-bdd1-2a70d241b0fc", + "requirementText": "Fargeekthet ved våtgnidning (Kravet gjelder ikke for hvite tekstiler eller tekstiler som hverken er farget eller trykt)", + "instruction": "ISO 105 X12 eller tilsvarende", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "Kvalitetskrav" + } + ], + "tags": [], + "sourceOriginal": "9790342b-f279-4044-9083-c6beed3bdb43", + "sourceRel": null + }, + { + "id": "33aa88f2-52a4-4607-86f1-1cb8b15d15f5", + "title": "Kvalitetskrav", + "description": "", + "needId": "8cd63f21-e12d-4692-af12-316ea19fc0fc", + "type": "requirement", + "variants": [ + { + "id": "650a3d68-74e6-4435-9b6c-024816009eab", + "requirementText": "Fargeekthet ved tørrgnidning (Kravet gjelder ikke for hvite tekstiler eller tekstiler som hverken er farget eller trykt)", + "instruction": "ISO 105 X12 eller tilsvarende", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "Kvalitetskrav" + } + ], + "tags": [], + "sourceOriginal": "9790342b-f279-4044-9083-c6beed3bdb43", + "sourceRel": null + }, + { + "id": "bf679a01-14e0-43dd-bec5-541dbc864992", + "title": "Dokumentasjon", + "description": "", + "needId": "8cd63f21-e12d-4692-af12-316ea19fc0fc", + "type": "requirement", + "variants": [ + { + "id": "e3927e7d-3059-4488-aced-06a446533eaf", + "requirementText": "Kravet skal dokumenteres ved erklæring fra produsent av tekstilene, støttet av relevante testrapporter, som viser at kvalitetskravene i tabellen er oppfylt. Oppfyllelse av kravet kan også dokumenteres ved tilgang på gyldig sertifikat på at tilbudt møbelprodukt er tildelt sertifisering utviklet i henhold til ISO 14024 (Type I eller Type I-lik) som oppfyller kravet. For eksempel Svanemerket. For kravet om slitasjestyrke (Martindale) skal det likevel kunne leveres egen dokumentasjon (erklæring fra produsent av tekstilene, støttet av relevant testrapport).", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "info", + "description": "Hvordan be om dokumentasjon " + } + ], + "tags": [], + "sourceOriginal": "9790342b-f279-4044-9083-c6beed3bdb43", + "sourceRel": null + }, + { + "id": "d09fe888-a8e0-4089-8ab6-b03ed65765bb", + "title": "Informasjon", + "description": "", + "needId": "8cd63f21-e12d-4692-af12-316ea19fc0fc", + "type": "requirement", + "variants": [ + { + "id": "7ac3dced-a3d9-4e56-9f64-e943130b2abd", + "requirementText": "Dette kravet bør stilles i alle anskaffelser som inkluderer møbler med tekstil. Av hensyn til dokumentasjonsbyrden er kravet på basisnivå innrettet slik at det kan dokumenteres med flere ulike merkeordninger (i tillegg til egen dokumentasjon på slitasjestyrke, siden noen av de vanligste miljømerkene har et lavere krav til Martindaletest enn hva som er angitt i dette kravet). Kravet på avansert nivå krever mer dokumentasjon siden leverandøren må levere inn relevante testrapporter (siden flere av de vanlige miljømerkene ikke stiller de samme kravene), men er særlig relevant å stille i anskaffelser hvor tekstilene utsettes for stor slitasje.", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "info", + "description": "Informasjon " + } + ], + "tags": [], + "sourceOriginal": "9790342b-f279-4044-9083-c6beed3bdb43", + "sourceRel": null + }, + { + "id": "ff431620-828c-46af-bd9c-3819e8879abc", + "title": "Kvalitetskrav", + "description": "", + "needId": "8cd63f21-e12d-4692-af12-316ea19fc0fc", + "type": "requirement", + "variants": [], + "tags": [], + "sourceOriginal": "9790342b-f279-4044-9083-c6beed3bdb43", + "sourceRel": null + }, + { + "id": "d4ecb9dc-f2b4-4664-9b7c-b980d9720de7", + "title": "Kvalitetskrav", + "description": "", + "needId": "8cd63f21-e12d-4692-af12-316ea19fc0fc", + "type": "requirement", + "variants": [], + "tags": [], + "sourceOriginal": "9790342b-f279-4044-9083-c6beed3bdb43", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "9790342b-f279-4044-9083-c6beed3bdb43", + "sourceRel": null + } + ], + "codelist": [], + "products": [], + "publications": [ + { + "id": "5e639185-19f0-4303-97ea-660ab26b4fb5", + "bankId": "5e639185-19f0-4303-97ea-660ab26b4fb5", + "comment": "Første utgave", + "date": "2022-04-25T14:56:31.126Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null + } + ], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "25c257ad-ccd9-471e-88a2-5dcf358ea8a4", + "title": "Konsulentbistand [RD]", + "description": "", + "needs": [ + { + "id": "67e10415-783b-4fe5-97cc-a6ce0918e8a0", + "title": "Fagområder", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "cda8ff42-c32e-4a72-bde8-1b1a75cf7a15", + "title": "Personvern ", + "description": "", + "requirements": [], + "type": "need", + "parent": "67e10415-783b-4fe5-97cc-a6ce0918e8a0", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "e16d5e68-3d14-46f5-b26b-3692d426c5ab", + "title": "DPIA", + "description": "", + "requirements": [], + "type": "need", + "parent": "cda8ff42-c32e-4a72-bde8-1b1a75cf7a15", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "5c749ea3-311b-4c9a-b33f-ee857012c69e", + "title": "Risikovurderinger ", + "description": "", + "requirements": [ + { + "id": "92ae8f43-d2e8-42a4-a212-27c97212a102", + "title": "Gjennomføring av risikovurdering (ROS)", + "description": "", + "needId": "5c749ea3-311b-4c9a-b33f-ee857012c69e", + "type": "requirement", + "variants": [ + { + "id": "22af5ea3-4564-4aa9-9841-469273b5491e", + "requirementText": "Oppgi konsulentens kompetansenivå knyttet gjennomføring av risikovurderinger (ROS) innen personvern.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b1582f41-f2e1-4d3c-98ef-af8b914a3801" + ], + "questions": [ + { + "id": "098097c4-1077-4ef1-a353-6325349c792f", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "a5258b3e-e00b-4125-89f6-64c01e5ab308", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Kompetansenivå knyttet til risikovurdering" + } + ], + "tags": [], + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + } + ], + "type": "need", + "parent": "cda8ff42-c32e-4a72-bde8-1b1a75cf7a15", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "c1283a67-0263-482e-93ae-d39a249219ad", + "title": "Forretningsinnsikt (BI)", + "description": "", + "requirements": [], + "type": "need", + "parent": "67e10415-783b-4fe5-97cc-a6ce0918e8a0", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "68c5c0e9-237f-4525-a259-407db984c95c", + "title": "Kartlegging", + "description": "", + "requirements": [], + "type": "need", + "parent": "c1283a67-0263-482e-93ae-d39a249219ad", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "61f2a016-34ac-4786-af99-353c7cc6963f", + "title": "Uthenting", + "description": "", + "requirements": [], + "type": "need", + "parent": "c1283a67-0263-482e-93ae-d39a249219ad", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "83d99be8-5360-46e3-bc1b-b7535b14bd29", + "title": "Generelt", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "fab10d85-05bf-4c2d-ac0d-a63cd0c3baff", + "title": "Tilgjengelighet", + "description": "", + "requirements": [ + { + "id": "c37d44b8-6789-4f3f-9afe-29424826d58d", + "title": "Oppdragets oppstart", + "description": "", + "needId": "fab10d85-05bf-4c2d-ac0d-a63cd0c3baff", + "type": "requirement", + "variants": [ + { + "id": "1b8dc123-ec04-4964-90b9-320a32f3d390", + "requirementText": "Oppdraget starter følgende dato.", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "d6abafc9-b659-47ff-8b7a-6d375a4890d4", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Oppdragets oppstart" + } + ], + "tags": [], + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "441b29f4-845a-4a76-b7c6-382e3f1fed5e", + "title": "Oppdragets avslutning", + "description": "", + "needId": "fab10d85-05bf-4c2d-ac0d-a63cd0c3baff", + "type": "requirement", + "variants": [ + { + "id": "d330075a-a328-4845-be1c-0fe0eb54e57d", + "requirementText": "Oppdraget avsluttes følgende dato.", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "09ee53a8-9c65-47df-8324-0b46752f3b6c", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Oppdragets avslutning" + } + ], + "tags": [], + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "c52c0a19-a310-46d7-a27c-da95d0d9b291", + "title": "Belastning", + "description": "", + "needId": "fab10d85-05bf-4c2d-ac0d-a63cd0c3baff", + "type": "requirement", + "variants": [ + { + "id": "bd8cadba-e26c-4c1d-a447-87dd84eb448e", + "requirementText": "Oppgi maksimal belastning som kan tilgjengeliggjøres for oppdraget.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b1582f41-f2e1-4d3c-98ef-af8b914a3801" + ], + "questions": [ + { + "id": "b7b42a2f-8a9e-4e74-9af1-fa628786ed06", + "type": "Q_SLIDER", + "config": { + "min": 5, + "max": 100, + "step": 1, + "unit": "%", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tilgjengelig belastning" + }, + { + "id": "77baf95c-a85b-4551-8436-2170dc11c5a5", + "requirementText": "Oppdragsgiver avtaler fortløpende i ressursmøter ved avtalte intervall hvilken belastning man ønsker i oppdraget.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b1582f41-f2e1-4d3c-98ef-af8b914a3801" + ], + "questions": [ + { + "id": "5421a2bb-7c9e-4990-81fb-b1552c8be634", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Avtales underveis" + } + ], + "tags": [], + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "f7970a78-e303-4a90-a030-df049e200a20", + "title": "Periode 1: Tidsperiode", + "description": "", + "needId": "fab10d85-05bf-4c2d-ac0d-a63cd0c3baff", + "type": "requirement", + "variants": [ + { + "id": "dd1a359f-1bac-4e69-ac0d-94f05a128810", + "requirementText": "Følgende periode er periode 1.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b1582f41-f2e1-4d3c-98ef-af8b914a3801" + ], + "questions": [ + { + "id": "e74d790a-213e-4da5-9af9-3f3141fca29e", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Tidsperiode for periode 1" + } + ], + "tags": [], + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "4379f11d-4625-47f3-a7fb-9b8a5aa149d2", + "title": "Periode 1: Belastning", + "description": "", + "needId": "fab10d85-05bf-4c2d-ac0d-a63cd0c3baff", + "type": "requirement", + "variants": [ + { + "id": "55de4e79-b8d0-4b89-9ba4-152fdb7b3040", + "requirementText": "Følgende maksimal belastning i periode 1.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b1582f41-f2e1-4d3c-98ef-af8b914a3801" + ], + "questions": [ + { + "id": "41f7fcc1-ee0f-49ca-a8b7-4dcfb46dce74", + "type": "Q_SLIDER", + "config": { + "min": 5, + "max": 100, + "step": 1, + "unit": "%", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Belastning i periode 1" + } + ], + "tags": [], + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "5e5d55e0-f01f-4e60-a654-1b133109397f", + "title": "Periode 2: Tidsperiode", + "description": "", + "needId": "fab10d85-05bf-4c2d-ac0d-a63cd0c3baff", + "type": "requirement", + "variants": [ + { + "id": "f2ddc48e-96e3-4a0d-aea5-c2f57e9899bd", + "requirementText": "Følgende periode er periode 2.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b1582f41-f2e1-4d3c-98ef-af8b914a3801" + ], + "questions": [ + { + "id": "a554150f-67ea-4a56-a187-9d2030009e23", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Tidsperiode for periode 2" + } + ], + "tags": [], + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "1df4b33c-14e7-4cdd-b5c4-227829527819", + "title": "Periode 2: Belastning", + "description": "", + "needId": "fab10d85-05bf-4c2d-ac0d-a63cd0c3baff", + "type": "requirement", + "variants": [ + { + "id": "25f3143d-f401-4796-b30e-9dcbaaee1036", + "requirementText": "Følgende maksimal belastning i periode 2.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b1582f41-f2e1-4d3c-98ef-af8b914a3801" + ], + "questions": [ + { + "id": "c159c622-0d6c-4440-ada3-a5f1fd96a407", + "type": "Q_SLIDER", + "config": { + "min": 5, + "max": 100, + "step": 1, + "unit": "%", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Belastning i periode 2" + } + ], + "tags": [], + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "d6513f5d-75df-4e70-baac-c1cd771439c1", + "title": "Overtid", + "description": "", + "needId": "fab10d85-05bf-4c2d-ac0d-a63cd0c3baff", + "type": "requirement", + "variants": [ + { + "id": "916852d5-4b81-4c21-b7eb-5f43e13f529f", + "requirementText": "Oppgi om det er anledning til å benytte overtid i oppdraget.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b1582f41-f2e1-4d3c-98ef-af8b914a3801" + ], + "questions": [ + { + "id": "b60a8baa-ee82-408a-8e10-00b7019919b8", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Bruk av overtid" + } + ], + "tags": [], + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + } + ], + "type": "need", + "parent": "83d99be8-5360-46e3-bc1b-b7535b14bd29", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "952238a0-1616-4456-ada4-14f9eb806c90", + "title": "Tilstedeværelse", + "description": "", + "requirements": [ + { + "id": "ee473dba-b20f-4e1f-969b-755522f6f188", + "title": "Arbeidssted", + "description": "", + "needId": "952238a0-1616-4456-ada4-14f9eb806c90", + "type": "requirement", + "variants": [ + { + "id": "9f88745c-d2e6-4c6b-9a89-b2dbcdda1abc", + "requirementText": "Arbeidssted for innleid personell under gjennomføring av oppdraget.", + "instruction": "Benyttes i tilfeller hvor det er relevant hvor innleid personell arbeider. Anbefales ikke brukt når man leier inn nasjonal/internasjonal kompetanse som man ikke forventer å finne i eget nærmiljø.", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "b1582f41-f2e1-4d3c-98ef-af8b914a3801" + ], + "questions": [ + { + "id": "f380d61e-e466-45ad-b0c7-7679a481219e", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "b114e355-a2fa-4139-aebd-0c17f4848e17", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Arbeidssted under oppdraget" + } + ], + "tags": [], + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + } + ], + "type": "need", + "parent": "83d99be8-5360-46e3-bc1b-b7535b14bd29", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "2eeb7a3a-413d-42c6-bfd9-8bcfb967adf3", + "title": "Tekniske kapabiliteter", + "description": "", + "requirements": [], + "type": "need", + "parent": "83d99be8-5360-46e3-bc1b-b7535b14bd29", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "519be33f-c010-455e-a0f5-1814a763d104", + "title": "Ekstern tilgang (VPN)", + "description": "", + "requirements": [], + "type": "need", + "parent": "2eeb7a3a-413d-42c6-bfd9-8bcfb967adf3", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "e3779d3c-1343-47d6-9c29-50ca02c71b9c", + "title": "Opplæring ", + "description": "", + "requirements": [], + "type": "need", + "parent": "83d99be8-5360-46e3-bc1b-b7535b14bd29", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "cc5ac07e-0f31-410f-8992-b8d13b75f2b8", + "title": "Tilstedeværelse", + "description": "", + "requirements": [], + "type": "need", + "parent": "e3779d3c-1343-47d6-9c29-50ca02c71b9c", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "a5258b3e-e00b-4125-89f6-64c01e5ab308", + "title": "Kompetansenivå", + "description": "", + "codes": [ + { + "id": "81c5dd87-aa60-4425-9393-7e6883ef6e7d", + "title": "Ingen kompetanse", + "description": "Har ingen erfaring med området.", + "type": "code", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null, + "parent": "" + }, + { + "id": "9f165569-af0a-4a78-8291-9f3ed1dac7fa", + "title": "Nybegynner", + "description": "Mindre enn 2 års erfaring innen området.", + "type": "code", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null, + "parent": "" + }, + { + "id": "1ce7e1b2-89d4-4a13-8dfb-4ba6fa82e6d3", + "title": "Erfaren", + "description": "Mindre enn 5 års erfaring innen området.", + "type": "code", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null, + "parent": "" + }, + { + "id": "757e1435-1ee5-477a-8a41-80ad4d8e222d", + "title": "Ekspert", + "description": "Mer enn 5 års erfaring innen området eller leder utviklingen innen området i organisasjonen.", + "type": "code", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null, + "parent": "" + }, + { + "id": "99282743-f640-4011-b545-2a054edaeabe", + "title": "Internasjonal ekspert", + "description": "Deltar aktivt i utvikling innen området på internasjonalt nivå.", + "type": "code", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "b114e355-a2fa-4139-aebd-0c17f4848e17", + "title": "Arbeidssted", + "description": "", + "codes": [ + { + "id": "9548fd74-8144-4e2b-ad80-f285131a85f9", + "title": "Oppdragsgivers kontorsted", + "description": "Kontorstedet som kontaktperson jobber fra.", + "type": "code", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null, + "parent": "" + }, + { + "id": "526a752e-3318-4c5a-9437-1cae8241192f", + "title": "Primært oppdragsgivers kontorsted", + "description": "Oppdragsgivers kontorsted benyttes med det kan avtales underveis.", + "type": "code", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null, + "parent": "" + }, + { + "id": "a4241610-890f-48cb-babc-f544c0d27a80", + "title": "Eget kontor/arbeidssted", + "description": "Kontoret/arbeidsstedet til leverandør med mulig for oppdragsgiver å benytte samme arbeidssted underveis i arbeidet.", + "type": "code", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null, + "parent": "" + }, + { + "id": "d76d5d3a-fa74-4037-9f94-1ecba2b159f8", + "title": "Fjernarbeid", + "description": "Egenstyrt arbeidslokasjon utenom oppdragsgivers kontorsted.", + "type": "code", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + } + ], + "products": [ + { + "id": "b1582f41-f2e1-4d3c-98ef-af8b914a3801", + "title": "Konsulent på personvern", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [], + "tags": [], + "version": 2, + "publishedDate": "2022-05-19T10:45:57.272Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "deletedDate": null + }, + { + "id": "0c205e2e-765c-4a90-8d8b-30d31968f83d", + "title": "Konsulentbistand [RD]", + "description": "", + "needs": [ + { + "id": "67e10415-783b-4fe5-97cc-a6ce0918e8a0", + "title": "Fagområder", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "cda8ff42-c32e-4a72-bde8-1b1a75cf7a15", + "title": "Personvern ", + "description": "", + "requirements": [], + "type": "need", + "parent": "67e10415-783b-4fe5-97cc-a6ce0918e8a0", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "e16d5e68-3d14-46f5-b26b-3692d426c5ab", + "title": "DPIA", + "description": "", + "requirements": [], + "type": "need", + "parent": "cda8ff42-c32e-4a72-bde8-1b1a75cf7a15", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "5c749ea3-311b-4c9a-b33f-ee857012c69e", + "title": "Risikovurderinger ", + "description": "", + "requirements": [ + { + "id": "92ae8f43-d2e8-42a4-a212-27c97212a102", + "title": "Gjennomføring av risikovurdering (ROS)", + "description": "", + "needId": "5c749ea3-311b-4c9a-b33f-ee857012c69e", + "type": "requirement", + "variants": [ + { + "id": "22af5ea3-4564-4aa9-9841-469273b5491e", + "requirementText": "Oppgi konsulentens kompetansenivå knyttet gjennomføring av risikovurderinger (ROS) innen personvern.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b1582f41-f2e1-4d3c-98ef-af8b914a3801" + ], + "questions": [ + { + "id": "098097c4-1077-4ef1-a353-6325349c792f", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "a5258b3e-e00b-4125-89f6-64c01e5ab308", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Kompetansenivå knyttet til risikovurdering" + } + ], + "tags": [], + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + } + ], + "type": "need", + "parent": "cda8ff42-c32e-4a72-bde8-1b1a75cf7a15", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "c1283a67-0263-482e-93ae-d39a249219ad", + "title": "Forretningsinnsikt (BI)", + "description": "", + "requirements": [], + "type": "need", + "parent": "67e10415-783b-4fe5-97cc-a6ce0918e8a0", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "68c5c0e9-237f-4525-a259-407db984c95c", + "title": "Kartlegging", + "description": "", + "requirements": [], + "type": "need", + "parent": "c1283a67-0263-482e-93ae-d39a249219ad", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "61f2a016-34ac-4786-af99-353c7cc6963f", + "title": "Uthenting", + "description": "", + "requirements": [], + "type": "need", + "parent": "c1283a67-0263-482e-93ae-d39a249219ad", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "83d99be8-5360-46e3-bc1b-b7535b14bd29", + "title": "Generelt", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "2eeb7a3a-413d-42c6-bfd9-8bcfb967adf3", + "title": "Tekniske kapabiliteter", + "description": "", + "requirements": [], + "type": "need", + "parent": "83d99be8-5360-46e3-bc1b-b7535b14bd29", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "519be33f-c010-455e-a0f5-1814a763d104", + "title": "Ekstern tilgang (VPN)", + "description": "", + "requirements": [], + "type": "need", + "parent": "2eeb7a3a-413d-42c6-bfd9-8bcfb967adf3", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "e3779d3c-1343-47d6-9c29-50ca02c71b9c", + "title": "Opplæring ", + "description": "", + "requirements": [], + "type": "need", + "parent": "83d99be8-5360-46e3-bc1b-b7535b14bd29", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "a5258b3e-e00b-4125-89f6-64c01e5ab308", + "title": "Kompetansenivå", + "description": "", + "codes": [ + { + "id": "81c5dd87-aa60-4425-9393-7e6883ef6e7d", + "title": "Ingen kompetanse", + "description": "Har ingen erfaring med området.", + "type": "code", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null, + "parent": "" + }, + { + "id": "9f165569-af0a-4a78-8291-9f3ed1dac7fa", + "title": "Nybegynner", + "description": "Mindre enn 2 års erfaring innen området.", + "type": "code", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null, + "parent": "" + }, + { + "id": "1ce7e1b2-89d4-4a13-8dfb-4ba6fa82e6d3", + "title": "Erfaren", + "description": "Mindre enn 5 års erfaring innen området.", + "type": "code", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null, + "parent": "" + }, + { + "id": "757e1435-1ee5-477a-8a41-80ad4d8e222d", + "title": "Ekspert", + "description": "Mer enn 5 års erfaring innen området eller leder utviklingen innen området i organisasjonen.", + "type": "code", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null, + "parent": "" + }, + { + "id": "99282743-f640-4011-b545-2a054edaeabe", + "title": "Internasjonal ekspert", + "description": "Deltar aktivt i utvikling innen området på internasjonalt nivå.", + "type": "code", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + } + ], + "products": [ + { + "id": "b1582f41-f2e1-4d3c-98ef-af8b914a3801", + "title": "Konsulent på personvern", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [], + "tags": [], + "version": 1, + "publishedDate": "2022-05-19T08:22:01.750Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "deletedDate": null + }, + { + "id": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "title": "Konsulentbistand [RD]", + "description": "", + "needs": [ + { + "id": "67e10415-783b-4fe5-97cc-a6ce0918e8a0", + "title": "Fagområder", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "cda8ff42-c32e-4a72-bde8-1b1a75cf7a15", + "title": "Personvern ", + "description": "", + "requirements": [], + "type": "need", + "parent": "67e10415-783b-4fe5-97cc-a6ce0918e8a0", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "e16d5e68-3d14-46f5-b26b-3692d426c5ab", + "title": "DPIA", + "description": "", + "requirements": [], + "type": "need", + "parent": "cda8ff42-c32e-4a72-bde8-1b1a75cf7a15", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "5c749ea3-311b-4c9a-b33f-ee857012c69e", + "title": "Risikovurderinger ", + "description": "", + "requirements": [ + { + "id": "92ae8f43-d2e8-42a4-a212-27c97212a102", + "title": "Gjennomføring av risikovurdering (ROS)", + "description": "", + "needId": "5c749ea3-311b-4c9a-b33f-ee857012c69e", + "type": "requirement", + "variants": [ + { + "id": "22af5ea3-4564-4aa9-9841-469273b5491e", + "requirementText": "Oppgi konsulentens kompetansenivå knyttet gjennomføring av risikovurderinger (ROS) innen personvern.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b1582f41-f2e1-4d3c-98ef-af8b914a3801" + ], + "questions": [ + { + "id": "098097c4-1077-4ef1-a353-6325349c792f", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "a5258b3e-e00b-4125-89f6-64c01e5ab308", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Kompetansenivå knyttet til risikovurdering" + } + ], + "tags": [], + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + } + ], + "type": "need", + "parent": "cda8ff42-c32e-4a72-bde8-1b1a75cf7a15", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "c1283a67-0263-482e-93ae-d39a249219ad", + "title": "Forretningsinnsikt (BI)", + "description": "", + "requirements": [], + "type": "need", + "parent": "67e10415-783b-4fe5-97cc-a6ce0918e8a0", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "68c5c0e9-237f-4525-a259-407db984c95c", + "title": "Kartlegging", + "description": "", + "requirements": [], + "type": "need", + "parent": "c1283a67-0263-482e-93ae-d39a249219ad", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "61f2a016-34ac-4786-af99-353c7cc6963f", + "title": "Uthenting", + "description": "", + "requirements": [], + "type": "need", + "parent": "c1283a67-0263-482e-93ae-d39a249219ad", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "83d99be8-5360-46e3-bc1b-b7535b14bd29", + "title": "Generelt", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "fab10d85-05bf-4c2d-ac0d-a63cd0c3baff", + "title": "Tilgjengelighet", + "description": "", + "requirements": [ + { + "id": "c37d44b8-6789-4f3f-9afe-29424826d58d", + "title": "Oppdragets oppstart", + "description": "", + "needId": "fab10d85-05bf-4c2d-ac0d-a63cd0c3baff", + "type": "requirement", + "variants": [ + { + "id": "1b8dc123-ec04-4964-90b9-320a32f3d390", + "requirementText": "Oppdraget starter følgende dato.", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "d6abafc9-b659-47ff-8b7a-6d375a4890d4", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Oppdragets oppstart" + } + ], + "tags": [], + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "441b29f4-845a-4a76-b7c6-382e3f1fed5e", + "title": "Oppdragets avslutning", + "description": "", + "needId": "fab10d85-05bf-4c2d-ac0d-a63cd0c3baff", + "type": "requirement", + "variants": [ + { + "id": "d330075a-a328-4845-be1c-0fe0eb54e57d", + "requirementText": "Oppdraget avsluttes følgende dato.", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "09ee53a8-9c65-47df-8324-0b46752f3b6c", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Oppdragets avslutning" + } + ], + "tags": [], + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "c52c0a19-a310-46d7-a27c-da95d0d9b291", + "title": "Belastning", + "description": "", + "needId": "fab10d85-05bf-4c2d-ac0d-a63cd0c3baff", + "type": "requirement", + "variants": [ + { + "id": "bd8cadba-e26c-4c1d-a447-87dd84eb448e", + "requirementText": "Oppgi maksimal belastning som kan tilgjengeliggjøres for oppdraget.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b1582f41-f2e1-4d3c-98ef-af8b914a3801" + ], + "questions": [ + { + "id": "b7b42a2f-8a9e-4e74-9af1-fa628786ed06", + "type": "Q_SLIDER", + "config": { + "min": 5, + "max": 100, + "step": 1, + "unit": "%", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tilgjengelig belastning" + }, + { + "id": "77baf95c-a85b-4551-8436-2170dc11c5a5", + "requirementText": "Oppdragsgiver avtaler fortløpende i ressursmøter ved avtalte intervall hvilken belastning man ønsker i oppdraget.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b1582f41-f2e1-4d3c-98ef-af8b914a3801" + ], + "questions": [ + { + "id": "5421a2bb-7c9e-4990-81fb-b1552c8be634", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Avtales underveis" + } + ], + "tags": [], + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "f7970a78-e303-4a90-a030-df049e200a20", + "title": "Periode 1: Tidsperiode", + "description": "", + "needId": "fab10d85-05bf-4c2d-ac0d-a63cd0c3baff", + "type": "requirement", + "variants": [ + { + "id": "dd1a359f-1bac-4e69-ac0d-94f05a128810", + "requirementText": "Følgende periode er periode 1.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b1582f41-f2e1-4d3c-98ef-af8b914a3801" + ], + "questions": [ + { + "id": "e74d790a-213e-4da5-9af9-3f3141fca29e", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Tidsperiode for periode 1" + } + ], + "tags": [], + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "4379f11d-4625-47f3-a7fb-9b8a5aa149d2", + "title": "Periode 1: Belastning", + "description": "", + "needId": "fab10d85-05bf-4c2d-ac0d-a63cd0c3baff", + "type": "requirement", + "variants": [ + { + "id": "55de4e79-b8d0-4b89-9ba4-152fdb7b3040", + "requirementText": "Følgende maksimal belastning i periode 1.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b1582f41-f2e1-4d3c-98ef-af8b914a3801" + ], + "questions": [ + { + "id": "41f7fcc1-ee0f-49ca-a8b7-4dcfb46dce74", + "type": "Q_SLIDER", + "config": { + "min": 5, + "max": 100, + "step": 1, + "unit": "%", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Belastning i periode 1" + } + ], + "tags": [], + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "5e5d55e0-f01f-4e60-a654-1b133109397f", + "title": "Periode 2: Tidsperiode", + "description": "", + "needId": "fab10d85-05bf-4c2d-ac0d-a63cd0c3baff", + "type": "requirement", + "variants": [ + { + "id": "f2ddc48e-96e3-4a0d-aea5-c2f57e9899bd", + "requirementText": "Følgende periode er periode 2.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b1582f41-f2e1-4d3c-98ef-af8b914a3801" + ], + "questions": [ + { + "id": "a554150f-67ea-4a56-a187-9d2030009e23", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Tidsperiode for periode 2" + } + ], + "tags": [], + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "1df4b33c-14e7-4cdd-b5c4-227829527819", + "title": "Periode 2: Belastning", + "description": "", + "needId": "fab10d85-05bf-4c2d-ac0d-a63cd0c3baff", + "type": "requirement", + "variants": [ + { + "id": "25f3143d-f401-4796-b30e-9dcbaaee1036", + "requirementText": "Følgende maksimal belastning i periode 2.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b1582f41-f2e1-4d3c-98ef-af8b914a3801" + ], + "questions": [ + { + "id": "c159c622-0d6c-4440-ada3-a5f1fd96a407", + "type": "Q_SLIDER", + "config": { + "min": 5, + "max": 100, + "step": 1, + "unit": "%", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Belastning i periode 2" + } + ], + "tags": [], + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "d6513f5d-75df-4e70-baac-c1cd771439c1", + "title": "Overtid", + "description": "", + "needId": "fab10d85-05bf-4c2d-ac0d-a63cd0c3baff", + "type": "requirement", + "variants": [ + { + "id": "916852d5-4b81-4c21-b7eb-5f43e13f529f", + "requirementText": "Oppgi om det er anledning til å benytte overtid i oppdraget.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b1582f41-f2e1-4d3c-98ef-af8b914a3801" + ], + "questions": [ + { + "id": "b60a8baa-ee82-408a-8e10-00b7019919b8", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Bruk av overtid" + } + ], + "tags": [], + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + } + ], + "type": "need", + "parent": "83d99be8-5360-46e3-bc1b-b7535b14bd29", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "952238a0-1616-4456-ada4-14f9eb806c90", + "title": "Tilstedeværelse", + "description": "", + "requirements": [ + { + "id": "ee473dba-b20f-4e1f-969b-755522f6f188", + "title": "Arbeidssted", + "description": "", + "needId": "952238a0-1616-4456-ada4-14f9eb806c90", + "type": "requirement", + "variants": [ + { + "id": "9f88745c-d2e6-4c6b-9a89-b2dbcdda1abc", + "requirementText": "Arbeidssted for innleid personell under gjennomføring av oppdraget.", + "instruction": "Benyttes i tilfeller hvor det er relevant hvor innleid personell arbeider. Anbefales ikke brukt når man leier inn nasjonal/internasjonal kompetanse som man ikke forventer å finne i eget nærmiljø.", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "b1582f41-f2e1-4d3c-98ef-af8b914a3801" + ], + "questions": [ + { + "id": "f380d61e-e466-45ad-b0c7-7679a481219e", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "b114e355-a2fa-4139-aebd-0c17f4848e17", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Arbeidssted under oppdraget" + } + ], + "tags": [], + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + } + ], + "type": "need", + "parent": "83d99be8-5360-46e3-bc1b-b7535b14bd29", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "2eeb7a3a-413d-42c6-bfd9-8bcfb967adf3", + "title": "Tekniske kapabiliteter", + "description": "", + "requirements": [], + "type": "need", + "parent": "83d99be8-5360-46e3-bc1b-b7535b14bd29", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "519be33f-c010-455e-a0f5-1814a763d104", + "title": "Ekstern tilgang (VPN)", + "description": "", + "requirements": [], + "type": "need", + "parent": "2eeb7a3a-413d-42c6-bfd9-8bcfb967adf3", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "e3779d3c-1343-47d6-9c29-50ca02c71b9c", + "title": "Opplæring ", + "description": "", + "requirements": [], + "type": "need", + "parent": "83d99be8-5360-46e3-bc1b-b7535b14bd29", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "cc5ac07e-0f31-410f-8992-b8d13b75f2b8", + "title": "Tilstedeværelse", + "description": "", + "requirements": [], + "type": "need", + "parent": "e3779d3c-1343-47d6-9c29-50ca02c71b9c", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "a5258b3e-e00b-4125-89f6-64c01e5ab308", + "title": "Kompetansenivå", + "description": "", + "codes": [ + { + "id": "81c5dd87-aa60-4425-9393-7e6883ef6e7d", + "title": "Ingen kompetanse", + "description": "Har ingen erfaring med området.", + "type": "code", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null, + "parent": "" + }, + { + "id": "9f165569-af0a-4a78-8291-9f3ed1dac7fa", + "title": "Nybegynner", + "description": "Mindre enn 2 års erfaring innen området.", + "type": "code", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null, + "parent": "" + }, + { + "id": "1ce7e1b2-89d4-4a13-8dfb-4ba6fa82e6d3", + "title": "Erfaren", + "description": "Mindre enn 5 års erfaring innen området.", + "type": "code", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null, + "parent": "" + }, + { + "id": "757e1435-1ee5-477a-8a41-80ad4d8e222d", + "title": "Ekspert", + "description": "Mer enn 5 års erfaring innen området eller leder utviklingen innen området i organisasjonen.", + "type": "code", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null, + "parent": "" + }, + { + "id": "99282743-f640-4011-b545-2a054edaeabe", + "title": "Internasjonal ekspert", + "description": "Deltar aktivt i utvikling innen området på internasjonalt nivå.", + "type": "code", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "b114e355-a2fa-4139-aebd-0c17f4848e17", + "title": "Arbeidssted", + "description": "", + "codes": [ + { + "id": "9548fd74-8144-4e2b-ad80-f285131a85f9", + "title": "Oppdragsgivers kontorsted", + "description": "Kontorstedet som kontaktperson jobber fra.", + "type": "code", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null, + "parent": "" + }, + { + "id": "526a752e-3318-4c5a-9437-1cae8241192f", + "title": "Primært oppdragsgivers kontorsted", + "description": "Oppdragsgivers kontorsted benyttes med det kan avtales underveis.", + "type": "code", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null, + "parent": "" + }, + { + "id": "a4241610-890f-48cb-babc-f544c0d27a80", + "title": "Eget kontor/arbeidssted", + "description": "Kontoret/arbeidsstedet til leverandør med mulig for oppdragsgiver å benytte samme arbeidssted underveis i arbeidet.", + "type": "code", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null, + "parent": "" + }, + { + "id": "d76d5d3a-fa74-4037-9f94-1ecba2b159f8", + "title": "Fjernarbeid", + "description": "Egenstyrt arbeidslokasjon utenom oppdragsgivers kontorsted.", + "type": "code", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + } + ], + "products": [ + { + "id": "b1582f41-f2e1-4d3c-98ef-af8b914a3801", + "title": "Konsulent på personvern", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [ + { + "id": "0c205e2e-765c-4a90-8d8b-30d31968f83d", + "bankId": "0c205e2e-765c-4a90-8d8b-30d31968f83d", + "comment": "Første utgave", + "date": "2022-05-19T08:22:01.750Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "25c257ad-ccd9-471e-88a2-5dcf358ea8a4", + "bankId": "25c257ad-ccd9-471e-88a2-5dcf358ea8a4", + "comment": "Andre utgave", + "date": "2022-05-19T10:45:57.272Z", + "type": "publication", + "version": 2, + "sourceOriginal": null, + "sourceRel": null + } + ], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "ad50a977-93b0-4f93-a379-1411638d3720", + "title": "Kjøretøy under 7,5 tonn", + "description": "", + "needs": [ + { + "id": "8ca33302-a4d0-4f77-85ee-f0dc49b08fd8", + "title": "Motor", + "description": "", + "requirements": [ + { + "id": "7b05c867-0ed8-4e13-85f8-baf26ef333cf", + "title": "Energiform", + "description": "", + "needId": "8ca33302-a4d0-4f77-85ee-f0dc49b08fd8", + "type": "requirement", + "variants": [ + { + "id": "8ccffbb6-ddca-47dc-8166-6b52b65a86c8", + "requirementText": "Kjøretøyet må benytte følgende energiform.", + "instruction": "Benyttes når det er kun et alternativ til godkjent energiform.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "190fb393-6ba2-45ed-9887-03bf5ec96915" + ], + "questions": [ + { + "id": "e0ef64d5-df4e-4ddd-b8d3-91eb546a8c42", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "b5e26249-1497-4b01-a676-ce0b3bdf0594", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Kjøretøyets energiform" + }, + { + "id": "470c66c1-bf93-4d4c-9837-498219d961e9", + "requirementText": "Oppgi kjøretøyets energiform", + "instruction": "...", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "190fb393-6ba2-45ed-9887-03bf5ec96915" + ], + "questions": [ + { + "id": "323e1a40-cab2-4c18-a37a-610d2d97611f", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "b5e26249-1497-4b01-a676-ce0b3bdf0594", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Kjøretøyets energiform" + } + ], + "tags": [], + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null + }, + { + "id": "59f692f7-6766-4385-a6cf-1d2dd4285b35", + "title": "Rekkevidde", + "description": "", + "requirements": [], + "type": "need", + "parent": "8ca33302-a4d0-4f77-85ee-f0dc49b08fd8", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null + }, + { + "id": "737e56fa-ca62-46ba-b989-b4319c703688", + "title": "Utseende", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null + }, + { + "id": "82f6bea5-9b12-4044-9117-dba80bd5de64", + "title": "Profilering", + "description": "", + "requirements": [], + "type": "need", + "parent": "737e56fa-ca62-46ba-b989-b4319c703688", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null + }, + { + "id": "8cc70f40-47f1-40b5-987d-8ef34e6da440", + "title": "Varsellys", + "description": "", + "requirements": [], + "type": "need", + "parent": "737e56fa-ca62-46ba-b989-b4319c703688", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null + }, + { + "id": "80cc0931-9948-4a5f-86d5-9aabae9cb92c", + "title": "Størrelse", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null + }, + { + "id": "b80fcaaf-23df-4c85-91bf-3d78fd393e47", + "title": "Tilgjengelighet", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null + }, + { + "id": "ed5765b5-93c6-47b9-84c8-08ef12a67e68", + "title": "Service/vedlikehold", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "b5e26249-1497-4b01-a676-ce0b3bdf0594", + "title": "Energiform", + "description": "", + "codes": [ + { + "id": "9ef1b3eb-17b5-4198-9ae1-a4772c263933", + "title": "Bensin", + "description": "", + "type": "code", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null, + "parent": "" + }, + { + "id": "b8eb28d0-578d-4145-a231-cf443da9d9a7", + "title": "Diesel", + "description": "", + "type": "code", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null, + "parent": "" + }, + { + "id": "e478420d-7cdd-421d-afeb-abe3032d9718", + "title": "Elektrisitet", + "description": "", + "type": "code", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null + } + ], + "products": [ + { + "id": "190fb393-6ba2-45ed-9887-03bf5ec96915", + "title": "Bil", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "bdab3636-d807-4e56-a0ef-5319f3ddf9d4", + "title": "Varebil", + "description": "", + "type": "product", + "parent": "190fb393-6ba2-45ed-9887-03bf5ec96915", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "f0fc0e2c-af31-4329-b751-a5f8f81976b9", + "title": "Elbil", + "description": "", + "type": "product", + "parent": "190fb393-6ba2-45ed-9887-03bf5ec96915", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null, + "deletedDate": "2022-06-07T09:41:32.984Z" + }, + { + "id": "1ead6dbb-7165-4e31-b4a2-a52ca02ccd27", + "title": "Dieselbil", + "description": "", + "type": "product", + "parent": "190fb393-6ba2-45ed-9887-03bf5ec96915", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null, + "deletedDate": "2022-06-07T09:41:35.507Z" + }, + { + "id": "4ae1d465-2935-4ec6-91e1-9f551336e622", + "title": "Bensinbil", + "description": "", + "type": "product", + "parent": "190fb393-6ba2-45ed-9887-03bf5ec96915", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null, + "deletedDate": "2022-06-07T09:41:37.767Z" + }, + { + "id": "538228dc-c5bd-455b-8322-cec6a1a720f3", + "title": "Traktor", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "61a04f97-17ef-488b-b1c9-9f8955c5bbe5", + "title": "Elsykkel", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [], + "tags": [], + "version": 1, + "publishedDate": "2022-06-07T09:51:28.748Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "457b5f97-da8e-487c-be9a-d45a27404721", + "deletedDate": null + }, + { + "id": "457b5f97-da8e-487c-be9a-d45a27404721", + "title": "Kjøretøy under 7,5 tonn", + "description": "", + "needs": [ + { + "id": "8ca33302-a4d0-4f77-85ee-f0dc49b08fd8", + "title": "Motor", + "description": "", + "requirements": [ + { + "id": "7b05c867-0ed8-4e13-85f8-baf26ef333cf", + "title": "Energiform", + "description": "", + "needId": "8ca33302-a4d0-4f77-85ee-f0dc49b08fd8", + "type": "requirement", + "variants": [ + { + "id": "8ccffbb6-ddca-47dc-8166-6b52b65a86c8", + "requirementText": "Kjøretøyet må benytte følgende energiform.", + "instruction": "Benyttes når det er kun et alternativ til godkjent energiform.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "190fb393-6ba2-45ed-9887-03bf5ec96915" + ], + "questions": [ + { + "id": "e0ef64d5-df4e-4ddd-b8d3-91eb546a8c42", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "b5e26249-1497-4b01-a676-ce0b3bdf0594", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Kjøretøyets energiform" + }, + { + "id": "470c66c1-bf93-4d4c-9837-498219d961e9", + "requirementText": "Oppgi kjøretøyets energiform", + "instruction": "...", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "190fb393-6ba2-45ed-9887-03bf5ec96915" + ], + "questions": [ + { + "id": "323e1a40-cab2-4c18-a37a-610d2d97611f", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "b5e26249-1497-4b01-a676-ce0b3bdf0594", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Kjøretøyets energiform" + } + ], + "tags": [], + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null + }, + { + "id": "59f692f7-6766-4385-a6cf-1d2dd4285b35", + "title": "Rekkevidde", + "description": "", + "requirements": [], + "type": "need", + "parent": "8ca33302-a4d0-4f77-85ee-f0dc49b08fd8", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null + }, + { + "id": "737e56fa-ca62-46ba-b989-b4319c703688", + "title": "Utseende", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null + }, + { + "id": "82f6bea5-9b12-4044-9117-dba80bd5de64", + "title": "Profilering", + "description": "", + "requirements": [], + "type": "need", + "parent": "737e56fa-ca62-46ba-b989-b4319c703688", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null + }, + { + "id": "8cc70f40-47f1-40b5-987d-8ef34e6da440", + "title": "Varsellys", + "description": "", + "requirements": [], + "type": "need", + "parent": "737e56fa-ca62-46ba-b989-b4319c703688", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null + }, + { + "id": "80cc0931-9948-4a5f-86d5-9aabae9cb92c", + "title": "Størrelse", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null + }, + { + "id": "b80fcaaf-23df-4c85-91bf-3d78fd393e47", + "title": "Tilgjengelighet", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null + }, + { + "id": "ed5765b5-93c6-47b9-84c8-08ef12a67e68", + "title": "Service/vedlikehold", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "b5e26249-1497-4b01-a676-ce0b3bdf0594", + "title": "Energiform", + "description": "", + "codes": [ + { + "id": "9ef1b3eb-17b5-4198-9ae1-a4772c263933", + "title": "Bensin", + "description": "", + "type": "code", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null, + "parent": "" + }, + { + "id": "b8eb28d0-578d-4145-a231-cf443da9d9a7", + "title": "Diesel", + "description": "", + "type": "code", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null, + "parent": "" + }, + { + "id": "e478420d-7cdd-421d-afeb-abe3032d9718", + "title": "Elektrisitet", + "description": "", + "type": "code", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null + } + ], + "products": [ + { + "id": "190fb393-6ba2-45ed-9887-03bf5ec96915", + "title": "Bil", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "bdab3636-d807-4e56-a0ef-5319f3ddf9d4", + "title": "Varebil", + "description": "", + "type": "product", + "parent": "190fb393-6ba2-45ed-9887-03bf5ec96915", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "f0fc0e2c-af31-4329-b751-a5f8f81976b9", + "title": "Elbil", + "description": "", + "type": "product", + "parent": "190fb393-6ba2-45ed-9887-03bf5ec96915", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null, + "deletedDate": "2022-06-07T09:41:32.984Z" + }, + { + "id": "1ead6dbb-7165-4e31-b4a2-a52ca02ccd27", + "title": "Dieselbil", + "description": "", + "type": "product", + "parent": "190fb393-6ba2-45ed-9887-03bf5ec96915", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null, + "deletedDate": "2022-06-07T09:41:35.507Z" + }, + { + "id": "4ae1d465-2935-4ec6-91e1-9f551336e622", + "title": "Bensinbil", + "description": "", + "type": "product", + "parent": "190fb393-6ba2-45ed-9887-03bf5ec96915", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null, + "deletedDate": "2022-06-07T09:41:37.767Z" + }, + { + "id": "538228dc-c5bd-455b-8322-cec6a1a720f3", + "title": "Traktor", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "61a04f97-17ef-488b-b1c9-9f8955c5bbe5", + "title": "Elsykkel", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [ + { + "id": "ad50a977-93b0-4f93-a379-1411638d3720", + "bankId": "ad50a977-93b0-4f93-a379-1411638d3720", + "comment": "Første utgave", + "date": "2022-06-07T09:51:28.748Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null + } + ], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "fb7d1130-f80b-45fc-9453-61c471d7c331", + "title": "Kjøretøy til hjemmetjenesten", + "description": "", + "needs": [ + { + "id": "2376e4df-070b-480b-9254-7f3d6d999868", + "title": "Tjenester", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "f992f93a-3b78-4463-b5a3-ab5d8652d649", + "title": "Levering", + "description": "", + "requirements": [ + { + "id": "5c4ba703-c12b-4b9b-9311-26a1cb398dc5", + "title": "Leveringstid", + "description": "", + "needId": "f992f93a-3b78-4463-b5a3-ab5d8652d649", + "type": "requirement", + "variants": [ + { + "id": "3080766a-3432-4b03-93b4-1ad04c49340a", + "requirementText": "Oppgi hvor mange dager man maksimalt må påregne fra bestilling til leveranse.", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "3ef1eaef-7ade-40fb-a379-9906840d7bdf", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 90, + "step": 1, + "unit": "dag(er)", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Maksimal forventet leveringstid" + }, + { + "id": "1c13f326-2717-4c82-a449-28430ef44884", + "requirementText": "Oppgi hvor mange dager man gjennomsnittlig må påregne fra bestilling til leveranse.", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "93aa56c0-3940-4ce8-a8b0-94896de5cbbb", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 90, + "step": 1, + "unit": "dag(er)", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Gjennomsnittlig forventet leveringstid" + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "97ccfc65-a1c6-4091-8bd7-03cd5f321511", + "title": "Leveringssted", + "description": "", + "needId": "f992f93a-3b78-4463-b5a3-ab5d8652d649", + "type": "requirement", + "variants": [ + { + "id": "3fe6a9b9-76c9-48a3-bf13-138dcc100a3b", + "requirementText": "Kjøretøy må leveres på følgende sted for å kunne regnes som levert:", + "instruction": "Brukes dersom man ønsker at kjøretøy skal leveres i stedet for å hentes hos leverandør.", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "a1341758-a55f-48b0-9f04-70022c7aae1a", + "type": "Q_TEXT", + "config": { + "max": 400, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Leveringssted " + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + } + ], + "type": "need", + "parent": "2376e4df-070b-480b-9254-7f3d6d999868", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "051d0699-e767-497a-9885-64a96a69865a", + "title": "Vedlikehold", + "description": "", + "requirements": [ + { + "id": "bb07d56f-312c-4195-aae9-ed2aa9126fd5", + "title": "Avstand til godkjent verksted", + "description": "", + "needId": "051d0699-e767-497a-9885-64a96a69865a", + "type": "requirement", + "variants": [ + { + "id": "ebcdb9e8-40bb-46c5-a2e5-76e705bf203b", + "requirementText": "Oppgi avstand fra leveringssted til nærmeste godkjente verksted.\n\nBenytt Google Maps til å beregne kjørelengde, benytt korteste kjørelengde. Avrundes oppover til nærmeste 0,1 km.", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "981877b7-093e-42d5-90ac-5badea45d128", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 1000, + "step": 0.1, + "unit": "km", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Avstand" + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + } + ], + "type": "need", + "parent": "2376e4df-070b-480b-9254-7f3d6d999868", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "5c331890-cae1-4a69-8956-c964c3ad701d", + "title": "Kjøretøy", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "11674baa-8f9b-44bb-b2fd-bdf4f7b0e606", + "title": "Tilstand", + "description": "", + "requirements": [ + { + "id": "37f7f2e8-9963-4b64-9cd6-d75caa4e753a", + "title": "Fabrikk-ny", + "description": "", + "needId": "11674baa-8f9b-44bb-b2fd-bdf4f7b0e606", + "type": "requirement", + "variants": [ + { + "id": "9f1ecb6e-90f2-49c7-8bbd-7d0842d72340", + "requirementText": "Kommer kjøretøyet direkte fra fabrikk til forhandler?", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "aacfeb2e-811b-4f21-8229-7399e04f9125", + "b15d3434-ff76-4676-b9d7-183438c1e6b1", + "6d916c0f-f378-4d0f-88f8-f703d1cce58a" + ], + "questions": [ + { + "id": "61acc870-13c5-425b-8e77-87984cc668ce", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Helt ny bil" + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + } + ], + "type": "need", + "parent": "5c331890-cae1-4a69-8956-c964c3ad701d", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "445ef81a-06ca-4dda-9c29-d87c1adc3c76", + "title": "Kjøreegenskaper", + "description": "", + "requirements": [ + { + "id": "293d0d46-ddef-4d8d-8e9b-ba1c8ca9f33d", + "title": "Type gir", + "description": "", + "needId": "445ef81a-06ca-4dda-9c29-d87c1adc3c76", + "type": "requirement", + "variants": [ + { + "id": "db610fcc-c760-49c0-8fbe-2e7b7dd034f3", + "requirementText": "Kjøretøyet har automatgir.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "91730e0f-984d-4889-b371-a7bf4b2b3d33", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Automatgir" + }, + { + "id": "46ead1b3-ff3e-47a7-95af-565de915d917", + "requirementText": "Kjøretøyet har manuelt gir.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "ccbcde12-5c25-4dc0-be53-a36fda48528b", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Manuelt gir" + }, + { + "id": "f2c5a15d-f13c-4f16-a486-0012eda48c05", + "requirementText": "Oppgi type gir i kjøretøyet.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "44c32f6c-17eb-45dc-ac2c-2544a02ff614", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "a9c304ba-1e07-4cb2-ad9c-cf5375f33656", + "codes": [], + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Oppgi type" + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + } + ], + "type": "need", + "parent": "5c331890-cae1-4a69-8956-c964c3ad701d", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "7c7631a7-eacb-4c3a-82ca-e3096c50e71d", + "title": "Inventar", + "description": "", + "requirements": [ + { + "id": "11fa06ac-8257-47a3-8dff-89fa82bcb833", + "title": "Tilbehør i kupé", + "description": "", + "needId": "7c7631a7-eacb-4c3a-82ca-e3096c50e71d", + "type": "requirement", + "variants": [ + { + "id": "3c973b6e-2f10-4914-98a6-eec7d9212f3c", + "requirementText": "Oppgi tilgjengelig tilbehør i kupéen.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "aacfeb2e-811b-4f21-8229-7399e04f9125", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "2b9fe78e-2c74-4d61-bb65-b9fb609ab7a0", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "8c5e2ae0-66e2-4c0a-8702-cd065925b101", + "codes": [], + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tilbehør i kupéen" + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "1d44e888-b624-47e2-8dcc-eea12af39d4e", + "title": "Seter foran", + "description": "", + "needId": "7c7631a7-eacb-4c3a-82ca-e3096c50e71d", + "type": "requirement", + "variants": [ + { + "id": "b1d22e3d-5fbe-47df-807c-14a378d1a5a3", + "requirementText": "Oppgi antall seter foran i kjøretøyet inkludert sjåførens sete.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "aacfeb2e-811b-4f21-8229-7399e04f9125", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "2f975346-7f8f-4684-8879-d2b663be79ab", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 3, + "step": 1, + "unit": "sete(r)", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": "1" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Antall" + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "8654537f-5c0e-40e5-afcb-ebadd7538f6d", + "title": "Seter bak", + "description": "", + "needId": "7c7631a7-eacb-4c3a-82ca-e3096c50e71d", + "type": "requirement", + "variants": [ + { + "id": "00f081ee-f787-4419-9eb7-52fcfe8f2d01", + "requirementText": "Oppgi antall seter bak i kjøretøyet.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "aacfeb2e-811b-4f21-8229-7399e04f9125", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "3de86915-dbbd-4fe3-88d9-b18cc747616d", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 7, + "step": 1, + "unit": "", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": "0" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Antall" + }, + { + "id": "a6eaca9b-3b29-43a3-b374-fda756536b6f", + "requirementText": "Kjøretøyet har ikke seter bak sjåfør.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "aacfeb2e-811b-4f21-8229-7399e04f9125", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "9e692a53-2e72-4064-9d51-a836ab4ca606", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Ingen seter bak" + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + } + ], + "type": "need", + "parent": "5c331890-cae1-4a69-8956-c964c3ad701d", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "ca08b990-55c0-4683-9428-97a53a727ccf", + "title": "Bagasjerom", + "description": "", + "requirements": [ + { + "id": "0784e425-5cfd-4c4f-af01-5216211c6bd3", + "title": "Volum", + "description": "", + "needId": "ca08b990-55c0-4683-9428-97a53a727ccf", + "type": "requirement", + "variants": [ + { + "id": "74ad87c5-1ccb-403f-8a21-364ece821b22", + "requirementText": "Godsrommet eller planet må kunne romme en rettvinklet kasse (også kalt \"statskassa\") med lengde/bredde/høyde 140 x 90 x 105 cm.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "aacfeb2e-811b-4f21-8229-7399e04f9125", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "e3412818-88cf-4fa6-880f-3685e234441f", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Støtte for \"statsakassa\"" + }, + { + "id": "64e9a281-02c1-436d-9f82-e44e01708e31", + "requirementText": "Oppgi basjerommets volum.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "aacfeb2e-811b-4f21-8229-7399e04f9125", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "06c7b134-30f7-4ccb-8baf-1616f46d6758", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 8, + "step": 0.1, + "unit": "m³", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Volum" + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + } + ], + "type": "need", + "parent": "5c331890-cae1-4a69-8956-c964c3ad701d", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "3f7076c6-d54c-4733-a480-6ab95fcb1ab4", + "title": "Sikring", + "description": "", + "requirements": [ + { + "id": "c2bfc159-dcd2-4d3e-8585-bc02605e2423", + "title": "Sentrallås", + "description": "", + "needId": "3f7076c6-d54c-4733-a480-6ab95fcb1ab4", + "type": "requirement", + "variants": [ + { + "id": "e6cd46fd-0371-4e16-9be0-451204dca112", + "requirementText": "Kjøretøyet er utstyrt med sentrallås.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "aacfeb2e-811b-4f21-8229-7399e04f9125", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "1f20d46b-ff70-4fe5-8a2f-eac0c453eb5c", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Med sentrallås" + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + } + ], + "type": "need", + "parent": "5c331890-cae1-4a69-8956-c964c3ad701d", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "b07a677e-0e0e-4ad2-82fa-8a756f29fe7c", + "title": "Sikkerhet", + "description": "", + "requirements": [], + "type": "need", + "parent": "5c331890-cae1-4a69-8956-c964c3ad701d", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "6bddecaf-dce4-4942-ab64-7bc439f75b25", + "title": "Utseende", + "description": "", + "requirements": [ + { + "id": "0e5086cb-e4fc-493c-8286-e524dd925ab8", + "title": "Karosserifarge", + "description": "", + "needId": "6bddecaf-dce4-4942-ab64-7bc439f75b25", + "type": "requirement", + "variants": [ + { + "id": "4c27a656-1f39-45cd-9757-cd3605500597", + "requirementText": "Oppgi kjøretøyets primære farge på karosseriet.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "aacfeb2e-811b-4f21-8229-7399e04f9125", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "d56195e3-ee4e-403c-8687-1ebcac80c94d", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "322ffb17-c74d-4da3-8827-d6bbdbe241ff", + "codes": [], + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Farge" + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + } + ], + "type": "need", + "parent": "5c331890-cae1-4a69-8956-c964c3ad701d", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "8c5e2ae0-66e2-4c0a-8702-cd065925b101", + "title": "Tilbehør, kupé", + "description": "", + "codes": [ + { + "id": "ea5095d0-6e3a-497f-ad22-d2fb86db3433", + "title": "Koppholder for sjåfør", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "aa465e7e-36ef-487a-a415-a0afa3da456f", + "title": "Koppholder for passasjer foran", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "718f0944-9082-453c-b71e-56b9d8b1857e", + "title": "Mobilholder", + "description": "Holder for mobiltelefon med tilhørende USB-ladepunkt", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "22ecc9e1-020a-4bf5-bc2c-9471ed39c618", + "title": "Nettbrettholder", + "description": "Holder for nettbrett med tilhørender USB-ladepunkt", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "a9c304ba-1e07-4cb2-ad9c-cf5375f33656", + "title": "Gir", + "description": "", + "codes": [ + { + "id": "26230250-0ab2-416d-abdd-b2acbb0a4b14", + "title": "Manuelt gir", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "076fda24-a7f3-4d06-869a-e030740bc42e", + "title": "Automatgir", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "cf09deaf-d1ce-404e-81a2-f41c4d095cba", + "title": "Trekk", + "description": "", + "codes": [ + { + "id": "2fba46b3-26d1-483b-80f9-456d9298c61c", + "title": "Forhjuls-trekk", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "324b481b-3b78-4f08-989e-068006b52092", + "title": "Bakhjuls-trekk", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "175e3dbd-8a8f-4368-90bd-b25665e5c4fe", + "title": "Trekk på alle hjul", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "322ffb17-c74d-4da3-8827-d6bbdbe241ff", + "title": "Farger", + "description": "", + "codes": [ + { + "id": "f9935288-7729-4ae0-bbb5-465684f9773f", + "title": "Hvit", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "aecee155-92cd-4f81-a878-20910e0307ab", + "title": "Svart", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "79c4461f-1c53-4038-a620-3146170df0e6", + "title": "Rød", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "b324b109-a78a-40cf-a131-ea82aaaffcfa", + "title": "Gul", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "f10b5c7e-e7fe-47b5-b479-9fd410c7bdb4", + "title": "Orange", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "b2da9b1e-d48f-4994-a89a-f14b44c34660", + "title": "Sølv", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "205c9c23-4d07-43e3-842e-fbfa303df76d", + "title": "Blå", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + } + ], + "products": [ + { + "id": "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "title": "Bil", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "deletedDate": null, + "unit": "Stk" + }, + { + "id": "aacfeb2e-811b-4f21-8229-7399e04f9125", + "title": "El-bil", + "description": "", + "type": "product", + "parent": "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "deletedDate": null, + "unit": "Stk" + }, + { + "id": "b15d3434-ff76-4676-b9d7-183438c1e6b1", + "title": "Fossil-bil", + "description": "", + "type": "product", + "parent": "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "deletedDate": null, + "unit": "Stk" + } + ], + "publications": [], + "tags": [], + "version": 4, + "publishedDate": "2022-09-29T06:21:05.218Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "deletedDate": null + }, + { + "id": "dc4f9e9c-f090-4c75-9e76-58f2d1fa5bd8", + "title": "Kjøretøy til hjemmetjenesten", + "description": "", + "needs": [ + { + "id": "2376e4df-070b-480b-9254-7f3d6d999868", + "title": "Tjenester", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "f992f93a-3b78-4463-b5a3-ab5d8652d649", + "title": "Levering", + "description": "", + "requirements": [ + { + "id": "5c4ba703-c12b-4b9b-9311-26a1cb398dc5", + "title": "Leveringstid", + "description": "", + "needId": "f992f93a-3b78-4463-b5a3-ab5d8652d649", + "type": "requirement", + "variants": [ + { + "id": "3080766a-3432-4b03-93b4-1ad04c49340a", + "requirementText": "Oppgi hvor mange dager man maksimalt må påregne fra bestilling til leveranse.", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "3ef1eaef-7ade-40fb-a379-9906840d7bdf", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 90, + "step": 1, + "unit": "dag(er)", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Maksimal forventet leveringstid" + }, + { + "id": "1c13f326-2717-4c82-a449-28430ef44884", + "requirementText": "Oppgi hvor mange dager man gjennomsnittlig må påregne fra bestilling til leveranse.", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "93aa56c0-3940-4ce8-a8b0-94896de5cbbb", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 90, + "step": 1, + "unit": "dag(er)", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Gjennomsnittlig forventet leveringstid" + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "97ccfc65-a1c6-4091-8bd7-03cd5f321511", + "title": "Leveringssted", + "description": "", + "needId": "f992f93a-3b78-4463-b5a3-ab5d8652d649", + "type": "requirement", + "variants": [ + { + "id": "3fe6a9b9-76c9-48a3-bf13-138dcc100a3b", + "requirementText": "Kjøretøy må leveres på følgende sted for å kunne regnes som levert:", + "instruction": "Brukes dersom man ønsker at kjøretøy skal leveres i stedet for å hentes hos leverandør.", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "a1341758-a55f-48b0-9f04-70022c7aae1a", + "type": "Q_TEXT", + "config": { + "max": 400, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Leveringssted " + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + } + ], + "type": "need", + "parent": "2376e4df-070b-480b-9254-7f3d6d999868", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "051d0699-e767-497a-9885-64a96a69865a", + "title": "Vedlikehold", + "description": "", + "requirements": [ + { + "id": "bb07d56f-312c-4195-aae9-ed2aa9126fd5", + "title": "Avstand til godkjent verksted", + "description": "", + "needId": "051d0699-e767-497a-9885-64a96a69865a", + "type": "requirement", + "variants": [ + { + "id": "ebcdb9e8-40bb-46c5-a2e5-76e705bf203b", + "requirementText": "Oppgi avstand fra leveringssted til nærmeste godkjente verksted.\n\nBenytt Google Maps til å beregne kjørelengde, benytt korteste kjørelengde. Avrundes oppover til nærmeste 0,1 km.", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "981877b7-093e-42d5-90ac-5badea45d128", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 1000, + "step": 0.1, + "unit": "km", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Avstand" + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + } + ], + "type": "need", + "parent": "2376e4df-070b-480b-9254-7f3d6d999868", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "5c331890-cae1-4a69-8956-c964c3ad701d", + "title": "Kjøretøy", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "11674baa-8f9b-44bb-b2fd-bdf4f7b0e606", + "title": "Tilstand", + "description": "", + "requirements": [], + "type": "need", + "parent": "5c331890-cae1-4a69-8956-c964c3ad701d", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "445ef81a-06ca-4dda-9c29-d87c1adc3c76", + "title": "Kjøreegenskaper", + "description": "", + "requirements": [ + { + "id": "293d0d46-ddef-4d8d-8e9b-ba1c8ca9f33d", + "title": "Type gir", + "description": "", + "needId": "445ef81a-06ca-4dda-9c29-d87c1adc3c76", + "type": "requirement", + "variants": [ + { + "id": "db610fcc-c760-49c0-8fbe-2e7b7dd034f3", + "requirementText": "Kjøretøyet har automatgir.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "91730e0f-984d-4889-b371-a7bf4b2b3d33", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Automatgir" + }, + { + "id": "46ead1b3-ff3e-47a7-95af-565de915d917", + "requirementText": "Kjøretøyet har manuelt gir.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "ccbcde12-5c25-4dc0-be53-a36fda48528b", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Manuelt gir" + }, + { + "id": "f2c5a15d-f13c-4f16-a486-0012eda48c05", + "requirementText": "Oppgi type gir i kjøretøyet.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "44c32f6c-17eb-45dc-ac2c-2544a02ff614", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "a9c304ba-1e07-4cb2-ad9c-cf5375f33656", + "codes": [], + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Oppgi type" + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + } + ], + "type": "need", + "parent": "5c331890-cae1-4a69-8956-c964c3ad701d", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "7c7631a7-eacb-4c3a-82ca-e3096c50e71d", + "title": "Inventar", + "description": "", + "requirements": [ + { + "id": "11fa06ac-8257-47a3-8dff-89fa82bcb833", + "title": "Tilbehør i kupé", + "description": "", + "needId": "7c7631a7-eacb-4c3a-82ca-e3096c50e71d", + "type": "requirement", + "variants": [ + { + "id": "3c973b6e-2f10-4914-98a6-eec7d9212f3c", + "requirementText": "Oppgi tilgjengelig tilbehør i kupéen.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "aacfeb2e-811b-4f21-8229-7399e04f9125", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "2b9fe78e-2c74-4d61-bb65-b9fb609ab7a0", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "8c5e2ae0-66e2-4c0a-8702-cd065925b101", + "codes": [], + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tilbehør i kupéen" + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "1d44e888-b624-47e2-8dcc-eea12af39d4e", + "title": "Seter foran", + "description": "", + "needId": "7c7631a7-eacb-4c3a-82ca-e3096c50e71d", + "type": "requirement", + "variants": [ + { + "id": "b1d22e3d-5fbe-47df-807c-14a378d1a5a3", + "requirementText": "Oppgi antall seter foran i kjøretøyet inkludert sjåførens sete.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "aacfeb2e-811b-4f21-8229-7399e04f9125", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "2f975346-7f8f-4684-8879-d2b663be79ab", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 3, + "step": 1, + "unit": "sete(r)", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": "1" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Antall" + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "8654537f-5c0e-40e5-afcb-ebadd7538f6d", + "title": "Seter bak", + "description": "", + "needId": "7c7631a7-eacb-4c3a-82ca-e3096c50e71d", + "type": "requirement", + "variants": [ + { + "id": "00f081ee-f787-4419-9eb7-52fcfe8f2d01", + "requirementText": "Oppgi antall seter bak i kjøretøyet.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "aacfeb2e-811b-4f21-8229-7399e04f9125", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "3de86915-dbbd-4fe3-88d9-b18cc747616d", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 7, + "step": 1, + "unit": "", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": "0" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Antall" + }, + { + "id": "a6eaca9b-3b29-43a3-b374-fda756536b6f", + "requirementText": "Kjøretøyet har ikke seter bak sjåfør.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "aacfeb2e-811b-4f21-8229-7399e04f9125", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "9e692a53-2e72-4064-9d51-a836ab4ca606", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Ingen seter bak" + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + } + ], + "type": "need", + "parent": "5c331890-cae1-4a69-8956-c964c3ad701d", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "ca08b990-55c0-4683-9428-97a53a727ccf", + "title": "Bagasjerom", + "description": "", + "requirements": [ + { + "id": "0784e425-5cfd-4c4f-af01-5216211c6bd3", + "title": "Volum", + "description": "", + "needId": "ca08b990-55c0-4683-9428-97a53a727ccf", + "type": "requirement", + "variants": [ + { + "id": "74ad87c5-1ccb-403f-8a21-364ece821b22", + "requirementText": "Godsrommet eller planet må kunne romme en rettvinklet kasse (også kalt \"statskassa\") med lengde/bredde/høyde 140 x 90 x 105 cm.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "aacfeb2e-811b-4f21-8229-7399e04f9125", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "e3412818-88cf-4fa6-880f-3685e234441f", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Støtte for \"statsakassa\"" + }, + { + "id": "64e9a281-02c1-436d-9f82-e44e01708e31", + "requirementText": "Oppgi basjerommets volum.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "aacfeb2e-811b-4f21-8229-7399e04f9125", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "06c7b134-30f7-4ccb-8baf-1616f46d6758", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 8, + "step": 0.1, + "unit": "m³", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Volum" + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + } + ], + "type": "need", + "parent": "5c331890-cae1-4a69-8956-c964c3ad701d", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "3f7076c6-d54c-4733-a480-6ab95fcb1ab4", + "title": "Sikring", + "description": "", + "requirements": [ + { + "id": "c2bfc159-dcd2-4d3e-8585-bc02605e2423", + "title": "Sentrallås", + "description": "", + "needId": "3f7076c6-d54c-4733-a480-6ab95fcb1ab4", + "type": "requirement", + "variants": [ + { + "id": "e6cd46fd-0371-4e16-9be0-451204dca112", + "requirementText": "Kjøretøyet er utstyrt med sentrallås.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "aacfeb2e-811b-4f21-8229-7399e04f9125", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "1f20d46b-ff70-4fe5-8a2f-eac0c453eb5c", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Med sentrallås" + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + } + ], + "type": "need", + "parent": "5c331890-cae1-4a69-8956-c964c3ad701d", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "b07a677e-0e0e-4ad2-82fa-8a756f29fe7c", + "title": "Sikkerhet", + "description": "", + "requirements": [], + "type": "need", + "parent": "5c331890-cae1-4a69-8956-c964c3ad701d", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "6bddecaf-dce4-4942-ab64-7bc439f75b25", + "title": "Utseende", + "description": "", + "requirements": [ + { + "id": "0e5086cb-e4fc-493c-8286-e524dd925ab8", + "title": "Karosserifarge", + "description": "", + "needId": "6bddecaf-dce4-4942-ab64-7bc439f75b25", + "type": "requirement", + "variants": [ + { + "id": "4c27a656-1f39-45cd-9757-cd3605500597", + "requirementText": "Oppgi kjøretøyets primære farge på karosseriet.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "aacfeb2e-811b-4f21-8229-7399e04f9125", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "d56195e3-ee4e-403c-8687-1ebcac80c94d", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "322ffb17-c74d-4da3-8827-d6bbdbe241ff", + "codes": [], + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Farge" + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + } + ], + "type": "need", + "parent": "5c331890-cae1-4a69-8956-c964c3ad701d", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "8c5e2ae0-66e2-4c0a-8702-cd065925b101", + "title": "Tilbehør, kupé", + "description": "", + "codes": [ + { + "id": "ea5095d0-6e3a-497f-ad22-d2fb86db3433", + "title": "Koppholder for sjåfør", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "aa465e7e-36ef-487a-a415-a0afa3da456f", + "title": "Koppholder for passasjer foran", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "718f0944-9082-453c-b71e-56b9d8b1857e", + "title": "Mobilholder", + "description": "Holder for mobiltelefon med tilhørende USB-ladepunkt", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "22ecc9e1-020a-4bf5-bc2c-9471ed39c618", + "title": "Nettbrettholder", + "description": "Holder for nettbrett med tilhørender USB-ladepunkt", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "a9c304ba-1e07-4cb2-ad9c-cf5375f33656", + "title": "Gir", + "description": "", + "codes": [ + { + "id": "26230250-0ab2-416d-abdd-b2acbb0a4b14", + "title": "Manuelt gir", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "076fda24-a7f3-4d06-869a-e030740bc42e", + "title": "Automatgir", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "cf09deaf-d1ce-404e-81a2-f41c4d095cba", + "title": "Trekk", + "description": "", + "codes": [ + { + "id": "2fba46b3-26d1-483b-80f9-456d9298c61c", + "title": "Forhjuls-trekk", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "324b481b-3b78-4f08-989e-068006b52092", + "title": "Bakhjuls-trekk", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "175e3dbd-8a8f-4368-90bd-b25665e5c4fe", + "title": "Trekk på alle hjul", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "322ffb17-c74d-4da3-8827-d6bbdbe241ff", + "title": "Farger", + "description": "", + "codes": [ + { + "id": "f9935288-7729-4ae0-bbb5-465684f9773f", + "title": "Hvit", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "aecee155-92cd-4f81-a878-20910e0307ab", + "title": "Svart", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "79c4461f-1c53-4038-a620-3146170df0e6", + "title": "Rød", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "b324b109-a78a-40cf-a131-ea82aaaffcfa", + "title": "Gul", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "f10b5c7e-e7fe-47b5-b479-9fd410c7bdb4", + "title": "Orange", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "b2da9b1e-d48f-4994-a89a-f14b44c34660", + "title": "Sølv", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "205c9c23-4d07-43e3-842e-fbfa303df76d", + "title": "Blå", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + } + ], + "products": [ + { + "id": "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "title": "Bil", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "aacfeb2e-811b-4f21-8229-7399e04f9125", + "title": "El-bil", + "description": "", + "type": "product", + "parent": "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "b15d3434-ff76-4676-b9d7-183438c1e6b1", + "title": "Fossil-bil", + "description": "", + "type": "product", + "parent": "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [], + "tags": [], + "version": 2, + "publishedDate": "2022-09-20T08:34:54.974Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "deletedDate": null + }, + { + "id": "18769a27-09c2-4527-8911-8cb061d3fbe9", + "title": "Kjøretøy til hjemmetjenesten", + "description": "", + "needs": [ + { + "id": "2376e4df-070b-480b-9254-7f3d6d999868", + "title": "Tjenester", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "f992f93a-3b78-4463-b5a3-ab5d8652d649", + "title": "Levering", + "description": "", + "requirements": [ + { + "id": "5c4ba703-c12b-4b9b-9311-26a1cb398dc5", + "title": "Leveringstid", + "description": "", + "needId": "f992f93a-3b78-4463-b5a3-ab5d8652d649", + "type": "requirement", + "variants": [ + { + "id": "3080766a-3432-4b03-93b4-1ad04c49340a", + "requirementText": "Oppgi hvor mange dager man maksimalt må påregne fra bestilling til leveranse.", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "3ef1eaef-7ade-40fb-a379-9906840d7bdf", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 90, + "step": 1, + "unit": "dag(er)", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Maksimal forventet leveringstid" + }, + { + "id": "1c13f326-2717-4c82-a449-28430ef44884", + "requirementText": "Oppgi hvor mange dager man gjennomsnittlig må påregne fra bestilling til leveranse.", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "93aa56c0-3940-4ce8-a8b0-94896de5cbbb", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 90, + "step": 1, + "unit": "dag(er)", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Gjennomsnittlig forvantet leveringstid" + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "97ccfc65-a1c6-4091-8bd7-03cd5f321511", + "title": "Leveringssted", + "description": "", + "needId": "f992f93a-3b78-4463-b5a3-ab5d8652d649", + "type": "requirement", + "variants": [ + { + "id": "3fe6a9b9-76c9-48a3-bf13-138dcc100a3b", + "requirementText": "Kjøretøy må leveres på følgende sted for å kunne regnes som levert:", + "instruction": "Brukes dersom man ønsker at kjøretøy skal leveres i stedet for å hentes hos leverandør.", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "a1341758-a55f-48b0-9f04-70022c7aae1a", + "type": "Q_TEXT", + "config": { + "max": 400, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Leveringssted " + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + } + ], + "type": "need", + "parent": "2376e4df-070b-480b-9254-7f3d6d999868", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "051d0699-e767-497a-9885-64a96a69865a", + "title": "Vedlikehold", + "description": "", + "requirements": [ + { + "id": "bb07d56f-312c-4195-aae9-ed2aa9126fd5", + "title": "Avstand til godkjent verksted", + "description": "", + "needId": "051d0699-e767-497a-9885-64a96a69865a", + "type": "requirement", + "variants": [ + { + "id": "ebcdb9e8-40bb-46c5-a2e5-76e705bf203b", + "requirementText": "Oppgi avstand fra leveringssted til nærmeste godkjente verksted.\n\nBenytt Google Maps til å beregne kjørelengde, benytt korteste kjørelengde. Avrundes oppover til nærmeste 0,1 km.", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "981877b7-093e-42d5-90ac-5badea45d128", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 1000, + "step": 0.1, + "unit": "km", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Avstand" + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + } + ], + "type": "need", + "parent": "2376e4df-070b-480b-9254-7f3d6d999868", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "5c331890-cae1-4a69-8956-c964c3ad701d", + "title": "Kjøretøy", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "11674baa-8f9b-44bb-b2fd-bdf4f7b0e606", + "title": "Tilstand", + "description": "", + "requirements": [], + "type": "need", + "parent": "5c331890-cae1-4a69-8956-c964c3ad701d", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "445ef81a-06ca-4dda-9c29-d87c1adc3c76", + "title": "Kjøreegenskaper", + "description": "", + "requirements": [ + { + "id": "293d0d46-ddef-4d8d-8e9b-ba1c8ca9f33d", + "title": "Type gir", + "description": "", + "needId": "445ef81a-06ca-4dda-9c29-d87c1adc3c76", + "type": "requirement", + "variants": [ + { + "id": "db610fcc-c760-49c0-8fbe-2e7b7dd034f3", + "requirementText": "Kjøretøyet har automatgir.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "91730e0f-984d-4889-b371-a7bf4b2b3d33", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Automatgir" + }, + { + "id": "46ead1b3-ff3e-47a7-95af-565de915d917", + "requirementText": "Kjøretøyet har manuelt gir.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "ccbcde12-5c25-4dc0-be53-a36fda48528b", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Manuelt gir" + }, + { + "id": "f2c5a15d-f13c-4f16-a486-0012eda48c05", + "requirementText": "Oppgi type gir i kjøretøyet.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "44c32f6c-17eb-45dc-ac2c-2544a02ff614", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "a9c304ba-1e07-4cb2-ad9c-cf5375f33656", + "codes": [], + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Oppgi type" + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + } + ], + "type": "need", + "parent": "5c331890-cae1-4a69-8956-c964c3ad701d", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "7c7631a7-eacb-4c3a-82ca-e3096c50e71d", + "title": "Inventar", + "description": "", + "requirements": [ + { + "id": "11fa06ac-8257-47a3-8dff-89fa82bcb833", + "title": "Tilbehør i kupé", + "description": "", + "needId": "7c7631a7-eacb-4c3a-82ca-e3096c50e71d", + "type": "requirement", + "variants": [ + { + "id": "3c973b6e-2f10-4914-98a6-eec7d9212f3c", + "requirementText": "Oppgi tilgjengelig tilbehør i kupéen.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "aacfeb2e-811b-4f21-8229-7399e04f9125", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "2b9fe78e-2c74-4d61-bb65-b9fb609ab7a0", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "8c5e2ae0-66e2-4c0a-8702-cd065925b101", + "codes": [], + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tilbehør i kupéen" + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "1d44e888-b624-47e2-8dcc-eea12af39d4e", + "title": "Seter foran", + "description": "", + "needId": "7c7631a7-eacb-4c3a-82ca-e3096c50e71d", + "type": "requirement", + "variants": [ + { + "id": "b1d22e3d-5fbe-47df-807c-14a378d1a5a3", + "requirementText": "Oppgi antall seter foran i kjøretøyet inkludert sjåførens sete.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "aacfeb2e-811b-4f21-8229-7399e04f9125", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "2f975346-7f8f-4684-8879-d2b663be79ab", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 3, + "step": 1, + "unit": "sete(r)", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": "1" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Antall" + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "8654537f-5c0e-40e5-afcb-ebadd7538f6d", + "title": "Seter bak", + "description": "", + "needId": "7c7631a7-eacb-4c3a-82ca-e3096c50e71d", + "type": "requirement", + "variants": [ + { + "id": "00f081ee-f787-4419-9eb7-52fcfe8f2d01", + "requirementText": "Oppgi antall seter bak i kjøretøyet.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "aacfeb2e-811b-4f21-8229-7399e04f9125", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "3de86915-dbbd-4fe3-88d9-b18cc747616d", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 7, + "step": 1, + "unit": "", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": "0" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Antall" + }, + { + "id": "a6eaca9b-3b29-43a3-b374-fda756536b6f", + "requirementText": "Kjøretøyet har ikke seter bak sjåfør.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "aacfeb2e-811b-4f21-8229-7399e04f9125", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "9e692a53-2e72-4064-9d51-a836ab4ca606", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Ingen seter bak" + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + } + ], + "type": "need", + "parent": "5c331890-cae1-4a69-8956-c964c3ad701d", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "ca08b990-55c0-4683-9428-97a53a727ccf", + "title": "Bagasjerom", + "description": "", + "requirements": [ + { + "id": "0784e425-5cfd-4c4f-af01-5216211c6bd3", + "title": "Volum", + "description": "", + "needId": "ca08b990-55c0-4683-9428-97a53a727ccf", + "type": "requirement", + "variants": [ + { + "id": "74ad87c5-1ccb-403f-8a21-364ece821b22", + "requirementText": "Godsrommet eller planet må kunne romme en rettvinklet kasse (også kalt \"statskassa\") med lengde/bredde/høyde 140 x 90 x 105 cm.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "aacfeb2e-811b-4f21-8229-7399e04f9125", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "e3412818-88cf-4fa6-880f-3685e234441f", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Støtte for \"statsakassa\"" + }, + { + "id": "64e9a281-02c1-436d-9f82-e44e01708e31", + "requirementText": "Oppgi basjerommets volum.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "aacfeb2e-811b-4f21-8229-7399e04f9125", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "06c7b134-30f7-4ccb-8baf-1616f46d6758", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 8, + "step": 0.1, + "unit": "m³", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Volum" + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + } + ], + "type": "need", + "parent": "5c331890-cae1-4a69-8956-c964c3ad701d", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "3f7076c6-d54c-4733-a480-6ab95fcb1ab4", + "title": "Sikring", + "description": "", + "requirements": [ + { + "id": "c2bfc159-dcd2-4d3e-8585-bc02605e2423", + "title": "Sentrallås", + "description": "", + "needId": "3f7076c6-d54c-4733-a480-6ab95fcb1ab4", + "type": "requirement", + "variants": [ + { + "id": "e6cd46fd-0371-4e16-9be0-451204dca112", + "requirementText": "Kjøretøyet er utstyrt med sentrallås.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "aacfeb2e-811b-4f21-8229-7399e04f9125", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "1f20d46b-ff70-4fe5-8a2f-eac0c453eb5c", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Med sentrallås" + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + } + ], + "type": "need", + "parent": "5c331890-cae1-4a69-8956-c964c3ad701d", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "b07a677e-0e0e-4ad2-82fa-8a756f29fe7c", + "title": "Sikkerhet", + "description": "", + "requirements": [], + "type": "need", + "parent": "5c331890-cae1-4a69-8956-c964c3ad701d", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "6bddecaf-dce4-4942-ab64-7bc439f75b25", + "title": "Utseende", + "description": "", + "requirements": [ + { + "id": "0e5086cb-e4fc-493c-8286-e524dd925ab8", + "title": "Karosserifarge", + "description": "", + "needId": "6bddecaf-dce4-4942-ab64-7bc439f75b25", + "type": "requirement", + "variants": [ + { + "id": "4c27a656-1f39-45cd-9757-cd3605500597", + "requirementText": "Oppgi kjøretøyets primære farge på karosseriet.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "aacfeb2e-811b-4f21-8229-7399e04f9125", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "d56195e3-ee4e-403c-8687-1ebcac80c94d", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "322ffb17-c74d-4da3-8827-d6bbdbe241ff", + "codes": [], + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Farge" + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + } + ], + "type": "need", + "parent": "5c331890-cae1-4a69-8956-c964c3ad701d", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "8c5e2ae0-66e2-4c0a-8702-cd065925b101", + "title": "Tilbehør, kupé", + "description": "", + "codes": [ + { + "id": "ea5095d0-6e3a-497f-ad22-d2fb86db3433", + "title": "Koppholder for sjåfør", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "aa465e7e-36ef-487a-a415-a0afa3da456f", + "title": "Koppholder for passasjer foran", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "718f0944-9082-453c-b71e-56b9d8b1857e", + "title": "Mobilholder", + "description": "Holder for mobiltelefon med tilhørende USB-ladepunkt", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "22ecc9e1-020a-4bf5-bc2c-9471ed39c618", + "title": "Nettbrettholder", + "description": "Holder for nettbrett med tilhørender USB-ladepunkt", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "a9c304ba-1e07-4cb2-ad9c-cf5375f33656", + "title": "Gir", + "description": "", + "codes": [ + { + "id": "26230250-0ab2-416d-abdd-b2acbb0a4b14", + "title": "Manuelt gir", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "076fda24-a7f3-4d06-869a-e030740bc42e", + "title": "Automatgir", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "cf09deaf-d1ce-404e-81a2-f41c4d095cba", + "title": "Trekk", + "description": "", + "codes": [ + { + "id": "2fba46b3-26d1-483b-80f9-456d9298c61c", + "title": "Forhjuls-trekk", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "324b481b-3b78-4f08-989e-068006b52092", + "title": "Bakhjuls-trekk", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "175e3dbd-8a8f-4368-90bd-b25665e5c4fe", + "title": "Trekk på alle hjul", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "322ffb17-c74d-4da3-8827-d6bbdbe241ff", + "title": "Farger", + "description": "", + "codes": [ + { + "id": "f9935288-7729-4ae0-bbb5-465684f9773f", + "title": "Hvit", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "aecee155-92cd-4f81-a878-20910e0307ab", + "title": "Svart", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "79c4461f-1c53-4038-a620-3146170df0e6", + "title": "Rød", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "b324b109-a78a-40cf-a131-ea82aaaffcfa", + "title": "Gul", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "f10b5c7e-e7fe-47b5-b479-9fd410c7bdb4", + "title": "Orange", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "b2da9b1e-d48f-4994-a89a-f14b44c34660", + "title": "Sølv", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "205c9c23-4d07-43e3-842e-fbfa303df76d", + "title": "Blå", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + } + ], + "products": [ + { + "id": "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "title": "Bil", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "aacfeb2e-811b-4f21-8229-7399e04f9125", + "title": "El-bil", + "description": "", + "type": "product", + "parent": "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "b15d3434-ff76-4676-b9d7-183438c1e6b1", + "title": "Fossil-bil", + "description": "", + "type": "product", + "parent": "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [], + "tags": [], + "version": 1, + "publishedDate": "2022-09-16T06:02:02.935Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "deletedDate": null + }, + { + "id": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "title": "Kjøretøy til hjemmetjenesten", + "description": "", + "needs": [ + { + "id": "2376e4df-070b-480b-9254-7f3d6d999868", + "title": "Tjenester", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "f992f93a-3b78-4463-b5a3-ab5d8652d649", + "title": "Levering", + "description": "", + "requirements": [ + { + "id": "5c4ba703-c12b-4b9b-9311-26a1cb398dc5", + "title": "Leveringstid", + "description": "", + "needId": "f992f93a-3b78-4463-b5a3-ab5d8652d649", + "type": "requirement", + "variants": [ + { + "id": "3080766a-3432-4b03-93b4-1ad04c49340a", + "requirementText": "Oppgi hvor mange dager man maksimalt må påregne fra bestilling til leveranse.", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "3ef1eaef-7ade-40fb-a379-9906840d7bdf", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 90, + "step": 1, + "unit": "dag(er)", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Maksimal forventet leveringstid" + }, + { + "id": "1c13f326-2717-4c82-a449-28430ef44884", + "requirementText": "Oppgi hvor mange dager man gjennomsnittlig må påregne fra bestilling til leveranse.", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "93aa56c0-3940-4ce8-a8b0-94896de5cbbb", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 90, + "step": 1, + "unit": "dag(er)", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Gjennomsnittlig forventet leveringstid" + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "97ccfc65-a1c6-4091-8bd7-03cd5f321511", + "title": "Leveringssted", + "description": "", + "needId": "f992f93a-3b78-4463-b5a3-ab5d8652d649", + "type": "requirement", + "variants": [ + { + "id": "3fe6a9b9-76c9-48a3-bf13-138dcc100a3b", + "requirementText": "Kjøretøy må leveres på følgende sted for å kunne regnes som levert:", + "instruction": "Brukes dersom man ønsker at kjøretøy skal leveres i stedet for å hentes hos leverandør.", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "a1341758-a55f-48b0-9f04-70022c7aae1a", + "type": "Q_TEXT", + "config": { + "max": 400, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Leveringssted " + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + } + ], + "type": "need", + "parent": "2376e4df-070b-480b-9254-7f3d6d999868", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "051d0699-e767-497a-9885-64a96a69865a", + "title": "Vedlikehold", + "description": "", + "requirements": [ + { + "id": "bb07d56f-312c-4195-aae9-ed2aa9126fd5", + "title": "Avstand til godkjent verksted", + "description": "", + "needId": "051d0699-e767-497a-9885-64a96a69865a", + "type": "requirement", + "variants": [ + { + "id": "ebcdb9e8-40bb-46c5-a2e5-76e705bf203b", + "requirementText": "Oppgi avstand fra leveringssted til nærmeste godkjente verksted.\n\nBenytt Google Maps til å beregne kjørelengde, benytt korteste kjørelengde. Avrundes oppover til nærmeste 0,1 km.", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "981877b7-093e-42d5-90ac-5badea45d128", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 1000, + "step": 0.1, + "unit": "km", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Avstand" + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + } + ], + "type": "need", + "parent": "2376e4df-070b-480b-9254-7f3d6d999868", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "5c331890-cae1-4a69-8956-c964c3ad701d", + "title": "Kjøretøy", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "11674baa-8f9b-44bb-b2fd-bdf4f7b0e606", + "title": "Tilstand", + "description": "", + "requirements": [ + { + "id": "37f7f2e8-9963-4b64-9cd6-d75caa4e753a", + "title": "Fabrikk-ny", + "description": "", + "needId": "11674baa-8f9b-44bb-b2fd-bdf4f7b0e606", + "type": "requirement", + "variants": [ + { + "id": "9f1ecb6e-90f2-49c7-8bbd-7d0842d72340", + "requirementText": "Kommer kjøretøyet direkte fra fabrikk til forhandler?", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "aacfeb2e-811b-4f21-8229-7399e04f9125", + "b15d3434-ff76-4676-b9d7-183438c1e6b1", + "6d916c0f-f378-4d0f-88f8-f703d1cce58a" + ], + "questions": [ + { + "id": "61acc870-13c5-425b-8e77-87984cc668ce", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Helt ny bil" + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + } + ], + "type": "need", + "parent": "5c331890-cae1-4a69-8956-c964c3ad701d", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "445ef81a-06ca-4dda-9c29-d87c1adc3c76", + "title": "Kjøreegenskaper", + "description": "", + "requirements": [ + { + "id": "293d0d46-ddef-4d8d-8e9b-ba1c8ca9f33d", + "title": "Type gir", + "description": "", + "needId": "445ef81a-06ca-4dda-9c29-d87c1adc3c76", + "type": "requirement", + "variants": [ + { + "id": "db610fcc-c760-49c0-8fbe-2e7b7dd034f3", + "requirementText": "Kjøretøyet har automatgir.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "91730e0f-984d-4889-b371-a7bf4b2b3d33", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Automatgir" + }, + { + "id": "46ead1b3-ff3e-47a7-95af-565de915d917", + "requirementText": "Kjøretøyet har manuelt gir.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "ccbcde12-5c25-4dc0-be53-a36fda48528b", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Manuelt gir" + }, + { + "id": "f2c5a15d-f13c-4f16-a486-0012eda48c05", + "requirementText": "Oppgi type gir i kjøretøyet.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "44c32f6c-17eb-45dc-ac2c-2544a02ff614", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "a9c304ba-1e07-4cb2-ad9c-cf5375f33656", + "codes": [], + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Oppgi type" + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + } + ], + "type": "need", + "parent": "5c331890-cae1-4a69-8956-c964c3ad701d", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "7c7631a7-eacb-4c3a-82ca-e3096c50e71d", + "title": "Inventar", + "description": "", + "requirements": [ + { + "id": "11fa06ac-8257-47a3-8dff-89fa82bcb833", + "title": "Tilbehør i kupé", + "description": "", + "needId": "7c7631a7-eacb-4c3a-82ca-e3096c50e71d", + "type": "requirement", + "variants": [ + { + "id": "3c973b6e-2f10-4914-98a6-eec7d9212f3c", + "requirementText": "Oppgi tilgjengelig tilbehør i kupéen.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "aacfeb2e-811b-4f21-8229-7399e04f9125", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "2b9fe78e-2c74-4d61-bb65-b9fb609ab7a0", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "8c5e2ae0-66e2-4c0a-8702-cd065925b101", + "codes": [], + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tilbehør i kupéen" + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "1d44e888-b624-47e2-8dcc-eea12af39d4e", + "title": "Seter foran", + "description": "", + "needId": "7c7631a7-eacb-4c3a-82ca-e3096c50e71d", + "type": "requirement", + "variants": [ + { + "id": "b1d22e3d-5fbe-47df-807c-14a378d1a5a3", + "requirementText": "Oppgi antall seter foran i kjøretøyet inkludert sjåførens sete.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "aacfeb2e-811b-4f21-8229-7399e04f9125", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "2f975346-7f8f-4684-8879-d2b663be79ab", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 3, + "step": 1, + "unit": "sete(r)", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": "1" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Antall" + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "8654537f-5c0e-40e5-afcb-ebadd7538f6d", + "title": "Seter bak", + "description": "", + "needId": "7c7631a7-eacb-4c3a-82ca-e3096c50e71d", + "type": "requirement", + "variants": [ + { + "id": "00f081ee-f787-4419-9eb7-52fcfe8f2d01", + "requirementText": "Oppgi antall seter bak i kjøretøyet.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "aacfeb2e-811b-4f21-8229-7399e04f9125", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "3de86915-dbbd-4fe3-88d9-b18cc747616d", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 7, + "step": 1, + "unit": "", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": "0" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Antall" + }, + { + "id": "a6eaca9b-3b29-43a3-b374-fda756536b6f", + "requirementText": "Kjøretøyet har ikke seter bak sjåfør.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "aacfeb2e-811b-4f21-8229-7399e04f9125", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "9e692a53-2e72-4064-9d51-a836ab4ca606", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Ingen seter bak" + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + } + ], + "type": "need", + "parent": "5c331890-cae1-4a69-8956-c964c3ad701d", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "ca08b990-55c0-4683-9428-97a53a727ccf", + "title": "Bagasjerom", + "description": "", + "requirements": [ + { + "id": "0784e425-5cfd-4c4f-af01-5216211c6bd3", + "title": "Volum", + "description": "", + "needId": "ca08b990-55c0-4683-9428-97a53a727ccf", + "type": "requirement", + "variants": [ + { + "id": "74ad87c5-1ccb-403f-8a21-364ece821b22", + "requirementText": "Godsrommet eller planet må kunne romme en rettvinklet kasse (også kalt \"statskassa\") med lengde/bredde/høyde 140 x 90 x 105 cm.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "aacfeb2e-811b-4f21-8229-7399e04f9125", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "e3412818-88cf-4fa6-880f-3685e234441f", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Støtte for \"statsakassa\"" + }, + { + "id": "64e9a281-02c1-436d-9f82-e44e01708e31", + "requirementText": "Oppgi basjerommets volum.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "aacfeb2e-811b-4f21-8229-7399e04f9125", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "06c7b134-30f7-4ccb-8baf-1616f46d6758", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 8, + "step": 0.1, + "unit": "m³", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Volum" + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + } + ], + "type": "need", + "parent": "5c331890-cae1-4a69-8956-c964c3ad701d", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "3f7076c6-d54c-4733-a480-6ab95fcb1ab4", + "title": "Sikring", + "description": "", + "requirements": [ + { + "id": "c2bfc159-dcd2-4d3e-8585-bc02605e2423", + "title": "Sentrallås", + "description": "", + "needId": "3f7076c6-d54c-4733-a480-6ab95fcb1ab4", + "type": "requirement", + "variants": [ + { + "id": "e6cd46fd-0371-4e16-9be0-451204dca112", + "requirementText": "Kjøretøyet er utstyrt med sentrallås.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "aacfeb2e-811b-4f21-8229-7399e04f9125", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "1f20d46b-ff70-4fe5-8a2f-eac0c453eb5c", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Med sentrallås" + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + } + ], + "type": "need", + "parent": "5c331890-cae1-4a69-8956-c964c3ad701d", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "b07a677e-0e0e-4ad2-82fa-8a756f29fe7c", + "title": "Sikkerhet", + "description": "", + "requirements": [], + "type": "need", + "parent": "5c331890-cae1-4a69-8956-c964c3ad701d", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "6bddecaf-dce4-4942-ab64-7bc439f75b25", + "title": "Utseende", + "description": "", + "requirements": [ + { + "id": "0e5086cb-e4fc-493c-8286-e524dd925ab8", + "title": "Karosserifarge", + "description": "", + "needId": "6bddecaf-dce4-4942-ab64-7bc439f75b25", + "type": "requirement", + "variants": [ + { + "id": "4c27a656-1f39-45cd-9757-cd3605500597", + "requirementText": "Oppgi kjøretøyets primære farge på karosseriet.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "aacfeb2e-811b-4f21-8229-7399e04f9125", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "d56195e3-ee4e-403c-8687-1ebcac80c94d", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "322ffb17-c74d-4da3-8827-d6bbdbe241ff", + "codes": [], + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Farge" + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + } + ], + "type": "need", + "parent": "5c331890-cae1-4a69-8956-c964c3ad701d", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "8c5e2ae0-66e2-4c0a-8702-cd065925b101", + "title": "Tilbehør, kupé", + "description": "", + "codes": [ + { + "id": "ea5095d0-6e3a-497f-ad22-d2fb86db3433", + "title": "Koppholder for sjåfør", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "aa465e7e-36ef-487a-a415-a0afa3da456f", + "title": "Koppholder for passasjer foran", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "718f0944-9082-453c-b71e-56b9d8b1857e", + "title": "Mobilholder", + "description": "Holder for mobiltelefon med tilhørende USB-ladepunkt", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "22ecc9e1-020a-4bf5-bc2c-9471ed39c618", + "title": "Nettbrettholder", + "description": "Holder for nettbrett med tilhørender USB-ladepunkt", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "a9c304ba-1e07-4cb2-ad9c-cf5375f33656", + "title": "Gir", + "description": "", + "codes": [ + { + "id": "26230250-0ab2-416d-abdd-b2acbb0a4b14", + "title": "Manuelt gir", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "076fda24-a7f3-4d06-869a-e030740bc42e", + "title": "Automatgir", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "cf09deaf-d1ce-404e-81a2-f41c4d095cba", + "title": "Trekk", + "description": "", + "codes": [ + { + "id": "2fba46b3-26d1-483b-80f9-456d9298c61c", + "title": "Forhjuls-trekk", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "324b481b-3b78-4f08-989e-068006b52092", + "title": "Bakhjuls-trekk", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "175e3dbd-8a8f-4368-90bd-b25665e5c4fe", + "title": "Trekk på alle hjul", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "322ffb17-c74d-4da3-8827-d6bbdbe241ff", + "title": "Farger", + "description": "", + "codes": [ + { + "id": "f9935288-7729-4ae0-bbb5-465684f9773f", + "title": "Hvit", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "aecee155-92cd-4f81-a878-20910e0307ab", + "title": "Svart", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "79c4461f-1c53-4038-a620-3146170df0e6", + "title": "Rød", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "b324b109-a78a-40cf-a131-ea82aaaffcfa", + "title": "Gul", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "f10b5c7e-e7fe-47b5-b479-9fd410c7bdb4", + "title": "Orange", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "b2da9b1e-d48f-4994-a89a-f14b44c34660", + "title": "Sølv", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "205c9c23-4d07-43e3-842e-fbfa303df76d", + "title": "Blå", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + } + ], + "products": [ + { + "id": "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "title": "Bil", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "deletedDate": null, + "unit": "Stk" + }, + { + "id": "aacfeb2e-811b-4f21-8229-7399e04f9125", + "title": "El-bil", + "description": "", + "type": "product", + "parent": "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "deletedDate": null, + "unit": "Stk" + }, + { + "id": "b15d3434-ff76-4676-b9d7-183438c1e6b1", + "title": "Fossil-bil", + "description": "", + "type": "product", + "parent": "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "deletedDate": null, + "unit": "Stk" + } + ], + "publications": [ + { + "id": "18769a27-09c2-4527-8911-8cb061d3fbe9", + "bankId": "18769a27-09c2-4527-8911-8cb061d3fbe9", + "comment": "Første utgave", + "date": "2022-09-16T06:02:02.935Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + }, + { + "id": "dc4f9e9c-f090-4c75-9e76-58f2d1fa5bd8", + "bankId": "dc4f9e9c-f090-4c75-9e76-58f2d1fa5bd8", + "comment": "Sikre at endringer er kommet med.", + "date": "2022-09-20T08:34:54.974Z", + "type": "publication", + "version": 2, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + }, + { + "id": "582c2b73-3c66-4748-b166-eaac2febb54d", + "bankId": "582c2b73-3c66-4748-b166-eaac2febb54d", + "comment": "Ny endring i produkt form", + "date": "2022-09-23T08:36:15.043Z", + "type": "publication", + "version": 3, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-09-23T08:45:36.717Z" + }, + { + "id": "fb7d1130-f80b-45fc-9453-61c471d7c331", + "bankId": "fb7d1130-f80b-45fc-9453-61c471d7c331", + "comment": "Legge til ja/nei-spørsmål", + "date": "2022-09-29T06:21:05.218Z", + "type": "publication", + "version": 4, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + } + ], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "ed2c59b2-ef81-4a5b-a397-13f01257ad77", + "title": "Kens Test", + "description": "Kort beskrivelse av Kens testprosjekt", + "needs": [], + "codelist": [], + "products": [], + "publications": [], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "4db56c43-9408-4849-ba53-b848347ae5fc", + "title": "Frukt og grønt [RD]", + "description": "Innkjøp av frukt og grønt", + "needs": [ + { + "id": "953f8f0e-2211-4885-b728-96ab06e7e0fc", + "title": "Bærekraft", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null + }, + { + "id": "1fbc871a-ff1b-4b3c-8528-1b71a7724d63", + "title": "Form og farge", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null + }, + { + "id": "3bad8a87-245f-4eae-b8ad-8c2acc3d29d3", + "title": "Utseende", + "description": "", + "requirements": [], + "type": "need", + "parent": "1fbc871a-ff1b-4b3c-8528-1b71a7724d63", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null + }, + { + "id": "bd4fd8c6-4d03-40b8-991e-05753ca252be", + "title": "Størrelse", + "description": "", + "requirements": [ + { + "id": "f5437580-fa7f-439c-905b-4361687ea8b6", + "title": "Lengde på banan", + "description": "", + "needId": "bd4fd8c6-4d03-40b8-991e-05753ca252be", + "type": "requirement", + "variants": [ + { + "id": "829a1b89-324b-4c58-8a7b-995356ae99fe", + "requirementText": "Bananen må ha minimumslengde.", + "instruction": "Brukes der man ønsker at forbrukerne ikke skal se stor forskjell på hverandre, f.eks. i barnehage.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "362e2fc3-81c5-47d7-8d67-ae55e59e8309" + ], + "questions": [ + { + "id": "4f758ecb-ba79-41d3-aa69-584227a6cc1e", + "type": "Q_SLIDER", + "config": { + "min": 5, + "max": 30, + "step": 0.5, + "unit": "cm", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Angir minimumslengde på banan" + } + ], + "tags": [], + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null + } + ], + "type": "need", + "parent": "1fbc871a-ff1b-4b3c-8528-1b71a7724d63", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null + }, + { + "id": "75908d3e-dbea-42d7-9d69-5971730a5233", + "title": "Smak", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null + }, + { + "id": "c5112d91-afeb-4e21-9d16-5e01edd0e313", + "title": "Type", + "description": "", + "requirements": [ + { + "id": "81a5e27e-5d6c-4f0f-b9b2-41c967eaf101", + "title": "Epletype", + "description": "", + "needId": "c5112d91-afeb-4e21-9d16-5e01edd0e313", + "type": "requirement", + "variants": [ + { + "id": "ea4951ff-9e2e-474b-ad93-6995248082ba", + "requirementText": "Eple må være av følgende type", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "0c00196a-488b-46a3-87c5-836afff2da05" + ], + "questions": [ + { + "id": "2cd0cb38-5bc9-4b8b-830d-4bbe0345d7a4", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "bcb0ec38-df9d-4f53-8bc8-743ed73665d3", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Type eple" + } + ], + "tags": [], + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null + }, + { + "id": "58b2f9c9-3a8f-4d9c-a0ac-38758c06db07", + "title": "Leveranse", + "description": "", + "requirements": [ + { + "id": "4cb6e0ee-a42e-4e06-96e8-0bb5fd0cc5c4", + "title": "Leveringstid", + "description": "", + "needId": "58b2f9c9-3a8f-4d9c-a0ac-38758c06db07", + "type": "requirement", + "variants": [ + { + "id": "f0df396b-e451-443a-a2e0-2dc90b6e3590", + "requirementText": "Leveransen må leveres innen gitt antall arbeidsdager.", + "instruction": "Brukes på de fleste kravspekker.", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "fc56cfd6-6238-4a60-8814-580b827dcf2d", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 30, + "step": 1, + "unit": "dager", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tidspunkt forleveranse" + }, + { + "id": "bbb0adc3-a2ff-409a-8631-969f841f34ea", + "requirementText": "Leveransen må være levert innen følgende dato.", + "instruction": "Brukes i hovedsak nå du trenger leveransen innen et gitt tidspunkt.", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "82b94671-f442-4317-814d-32ac8444ca6d", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Leveranse innen gitt tidspunkt" + } + ], + "tags": [], + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "bcb0ec38-df9d-4f53-8bc8-743ed73665d3", + "title": "Epletyper", + "description": "", + "codes": [ + { + "id": "64c687fb-eee9-4177-91a1-67dc694eddd5", + "title": "Granny Smith", + "description": "", + "type": "code", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null, + "parent": "" + }, + { + "id": "a276fa2f-3391-48b1-80ad-b5c66e66acf8", + "title": "Gravenstein", + "description": "", + "type": "code", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null, + "parent": "" + }, + { + "id": "c7f61d90-b44e-449d-a26d-557bdccd5f9f", + "title": "Annet grønn eple", + "description": "", + "type": "code", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null, + "parent": "" + }, + { + "id": "47a8df43-dc18-430a-b55a-da685384982c", + "title": "Gult eple", + "description": "", + "type": "code", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null + } + ], + "products": [ + { + "id": "87835e26-12ed-415e-8b63-241e2a584cdf", + "title": "Frukt", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "0c00196a-488b-46a3-87c5-836afff2da05", + "title": "Eple", + "description": "", + "type": "product", + "parent": "87835e26-12ed-415e-8b63-241e2a584cdf", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "deff7e6c-83a9-49f1-9ad0-4368cdfc6781", + "title": "Grønne epler", + "description": "", + "type": "product", + "parent": "0c00196a-488b-46a3-87c5-836afff2da05", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "9b3cf0da-ccc5-454f-81ba-5b364522ab5d", + "title": "Gravenstein", + "description": "", + "type": "product", + "parent": "deff7e6c-83a9-49f1-9ad0-4368cdfc6781", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null, + "deletedDate": "2022-05-18T10:48:48.407Z" + }, + { + "id": "395bae6c-50ab-414a-a8b5-0498e01eaaa2", + "title": "Granny Smith", + "description": "", + "type": "product", + "parent": "deff7e6c-83a9-49f1-9ad0-4368cdfc6781", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null, + "deletedDate": "2022-05-18T10:48:46.367Z" + }, + { + "id": "362e2fc3-81c5-47d7-8d67-ae55e59e8309", + "title": "Banan", + "description": "", + "type": "product", + "parent": "87835e26-12ed-415e-8b63-241e2a584cdf", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "9b5ab031-4f47-437d-81ab-4210b64edeab", + "title": "Grønnsaker", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "692f430b-4b57-44c3-9ae0-465adb194079", + "title": "Potet", + "description": "", + "type": "product", + "parent": "9b5ab031-4f47-437d-81ab-4210b64edeab", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "e8298a52-0c00-4dca-806e-e5a8020a98a9", + "title": "Bær", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "33407a7e-9d8c-4149-ae63-38a8f94c9a84", + "title": "Nøtter", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [], + "tags": [], + "version": 1, + "publishedDate": "2022-05-18T10:54:02.853Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "deletedDate": null + }, + { + "id": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "title": "Frukt og grønt [RD]", + "description": "Innkjøp av frukt og grønt", + "needs": [ + { + "id": "953f8f0e-2211-4885-b728-96ab06e7e0fc", + "title": "Bærekraft", + "description": "", + "requirements": [ + { + "id": "65d0f74a-eaad-4ea0-8973-d6ba4cac9672", + "title": "Krav1", + "description": "", + "needId": "953f8f0e-2211-4885-b728-96ab06e7e0fc", + "type": "requirement", + "variants": [], + "tags": [], + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null + }, + { + "id": "1fbc871a-ff1b-4b3c-8528-1b71a7724d63", + "title": "Form og farge", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null + }, + { + "id": "3bad8a87-245f-4eae-b8ad-8c2acc3d29d3", + "title": "Utseende", + "description": "", + "requirements": [], + "type": "need", + "parent": "1fbc871a-ff1b-4b3c-8528-1b71a7724d63", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null + }, + { + "id": "bd4fd8c6-4d03-40b8-991e-05753ca252be", + "title": "Størrelse", + "description": "", + "requirements": [ + { + "id": "f5437580-fa7f-439c-905b-4361687ea8b6", + "title": "Lengde på banan", + "description": "", + "needId": "bd4fd8c6-4d03-40b8-991e-05753ca252be", + "type": "requirement", + "variants": [ + { + "id": "829a1b89-324b-4c58-8a7b-995356ae99fe", + "requirementText": "Bananen må ha minimumslengde.", + "instruction": "Brukes der man ønsker at forbrukerne ikke skal se stor forskjell på hverandre, f.eks. i barnehage.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "362e2fc3-81c5-47d7-8d67-ae55e59e8309" + ], + "questions": [ + { + "id": "4f758ecb-ba79-41d3-aa69-584227a6cc1e", + "type": "Q_SLIDER", + "config": { + "min": 5, + "max": 30, + "step": 0.5, + "unit": "cm", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Angir minimumslengde på banan" + } + ], + "tags": [], + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null + } + ], + "type": "need", + "parent": "1fbc871a-ff1b-4b3c-8528-1b71a7724d63", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null + }, + { + "id": "75908d3e-dbea-42d7-9d69-5971730a5233", + "title": "Smak", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null + }, + { + "id": "c5112d91-afeb-4e21-9d16-5e01edd0e313", + "title": "Type", + "description": "", + "requirements": [ + { + "id": "81a5e27e-5d6c-4f0f-b9b2-41c967eaf101", + "title": "Epletype", + "description": "", + "needId": "c5112d91-afeb-4e21-9d16-5e01edd0e313", + "type": "requirement", + "variants": [ + { + "id": "ea4951ff-9e2e-474b-ad93-6995248082ba", + "requirementText": "Eple må være av følgende type", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "0c00196a-488b-46a3-87c5-836afff2da05" + ], + "questions": [ + { + "id": "2cd0cb38-5bc9-4b8b-830d-4bbe0345d7a4", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "bcb0ec38-df9d-4f53-8bc8-743ed73665d3", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Type eple" + } + ], + "tags": [], + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null + }, + { + "id": "58b2f9c9-3a8f-4d9c-a0ac-38758c06db07", + "title": "Leveranse", + "description": "", + "requirements": [ + { + "id": "4cb6e0ee-a42e-4e06-96e8-0bb5fd0cc5c4", + "title": "Leveringstid", + "description": "", + "needId": "58b2f9c9-3a8f-4d9c-a0ac-38758c06db07", + "type": "requirement", + "variants": [ + { + "id": "f0df396b-e451-443a-a2e0-2dc90b6e3590", + "requirementText": "Leveransen må leveres innen gitt antall arbeidsdager.", + "instruction": "Brukes på de fleste kravspekker.", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "fc56cfd6-6238-4a60-8814-580b827dcf2d", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 30, + "step": 1, + "unit": "dager", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tidspunkt forleveranse" + }, + { + "id": "bbb0adc3-a2ff-409a-8631-969f841f34ea", + "requirementText": "Leveransen må være levert innen følgende dato.", + "instruction": "Brukes i hovedsak nå du trenger leveransen innen et gitt tidspunkt.", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "82b94671-f442-4317-814d-32ac8444ca6d", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Leveranse innen gitt tidspunkt" + } + ], + "tags": [], + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "bcb0ec38-df9d-4f53-8bc8-743ed73665d3", + "title": "Epletyper", + "description": "", + "codes": [ + { + "id": "64c687fb-eee9-4177-91a1-67dc694eddd5", + "title": "Granny Smith", + "description": "", + "type": "code", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null, + "parent": "" + }, + { + "id": "a276fa2f-3391-48b1-80ad-b5c66e66acf8", + "title": "Gravenstein", + "description": "", + "type": "code", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null, + "parent": "" + }, + { + "id": "c7f61d90-b44e-449d-a26d-557bdccd5f9f", + "title": "Annet grønn eple", + "description": "", + "type": "code", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null, + "parent": "" + }, + { + "id": "47a8df43-dc18-430a-b55a-da685384982c", + "title": "Gult eple", + "description": "", + "type": "code", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null + } + ], + "products": [ + { + "id": "87835e26-12ed-415e-8b63-241e2a584cdf", + "title": "Frukt", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "0c00196a-488b-46a3-87c5-836afff2da05", + "title": "Eple", + "description": "", + "type": "product", + "parent": "87835e26-12ed-415e-8b63-241e2a584cdf", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "deff7e6c-83a9-49f1-9ad0-4368cdfc6781", + "title": "Grønne epler", + "description": "", + "type": "product", + "parent": "0c00196a-488b-46a3-87c5-836afff2da05", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "9b3cf0da-ccc5-454f-81ba-5b364522ab5d", + "title": "Gravenstein", + "description": "", + "type": "product", + "parent": "deff7e6c-83a9-49f1-9ad0-4368cdfc6781", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null, + "deletedDate": "2022-05-18T10:48:48.407Z" + }, + { + "id": "395bae6c-50ab-414a-a8b5-0498e01eaaa2", + "title": "Granny Smith", + "description": "", + "type": "product", + "parent": "deff7e6c-83a9-49f1-9ad0-4368cdfc6781", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null, + "deletedDate": "2022-05-18T10:48:46.367Z" + }, + { + "id": "362e2fc3-81c5-47d7-8d67-ae55e59e8309", + "title": "Banan", + "description": "", + "type": "product", + "parent": "87835e26-12ed-415e-8b63-241e2a584cdf", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "9b5ab031-4f47-437d-81ab-4210b64edeab", + "title": "Grønnsaker", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "692f430b-4b57-44c3-9ae0-465adb194079", + "title": "Potet", + "description": "", + "type": "product", + "parent": "9b5ab031-4f47-437d-81ab-4210b64edeab", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "e8298a52-0c00-4dca-806e-e5a8020a98a9", + "title": "Bær", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "33407a7e-9d8c-4149-ae63-38a8f94c9a84", + "title": "Nøtter", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [ + { + "id": "4db56c43-9408-4849-ba53-b848347ae5fc", + "bankId": "4db56c43-9408-4849-ba53-b848347ae5fc", + "comment": "Første utgave", + "date": "2022-05-18T10:54:02.853Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null + } + ], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "0de6b75a-30aa-4da1-8bb1-a6713b42d85e", + "title": "Frukt og grønnsaker", + "description": "Innkjøp av frukt og grønt til institusjoner/barnehager.", + "needs": [ + { + "id": "0b359334-50c0-4f63-b400-9bbca588098c", + "title": "Levering", + "description": "", + "requirements": [ + { + "id": "14198bbe-2198-41f7-97a1-a3465b6e3521", + "title": "Leveringstidspunkt", + "description": "", + "needId": "0b359334-50c0-4f63-b400-9bbca588098c", + "type": "requirement", + "variants": [ + { + "id": "f91d81d3-bc08-4701-9128-654115c83a26", + "requirementText": "Oppdragsgiver kan ta imot produkter i følgende tidsperiode:", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "0428bd38-7171-4d8c-b758-14e420b0db17", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Tidspunkt for leveranser" + } + ], + "tags": [], + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null + }, + { + "id": "9397c17c-81a4-4d88-ab87-0390da87a528", + "title": "Utseende", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null + }, + { + "id": "6a63c462-b4d4-4f04-901b-b4699763c720", + "title": "Størrelse", + "description": "", + "requirements": [ + { + "id": "ea6e8578-c369-4b73-85ee-43b4c900ce50", + "title": "Produktets lengde", + "description": "", + "needId": "6a63c462-b4d4-4f04-901b-b4699763c720", + "type": "requirement", + "variants": [ + { + "id": "35f11d71-907d-4df6-a295-74e4d4bde48b", + "requirementText": "Banens lengde skal være minimum:", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "78597480-33cd-454d-99c1-546a0534f020" + ], + "questions": [ + { + "id": "9273f300-ea9e-45d5-aad4-14cdd44cc474", + "type": "Q_SLIDER", + "config": { + "min": 5, + "max": 30, + "step": 0.5, + "unit": "cm", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Minimumslengde for banan" + }, + { + "id": "c9e422ed-7d01-4ffb-8122-a5d95df5172e", + "requirementText": "Gulerotens lengde skal være minimum:", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "be1e712f-e762-4439-a967-368bba3f00c4" + ], + "questions": [ + { + "id": "5a8513ff-c47f-4bb2-b29d-f440dbf09ac2", + "type": "Q_SLIDER", + "config": { + "min": 4, + "max": 40, + "step": 1, + "unit": "cm", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Minimumslengde for gulerot" + } + ], + "tags": [], + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null + } + ], + "type": "need", + "parent": "9397c17c-81a4-4d88-ab87-0390da87a528", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null + }, + { + "id": "9ffb02b7-98ed-4987-acdf-23eb81bf959c", + "title": "Farge", + "description": "", + "requirements": [], + "type": "need", + "parent": "9397c17c-81a4-4d88-ab87-0390da87a528", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null + }, + { + "id": "a65feb59-92bf-4aef-abe3-4e3dc9ddd037", + "title": "Kvalitet", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null + }, + { + "id": "d2e29913-50c3-4fee-b39d-8788548039b4", + "title": "Bærekraft", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null + }, + { + "id": "2c6f50a0-e225-4592-9846-0ed1a1659beb", + "title": "Type", + "description": "", + "requirements": [ + { + "id": "d22b18f5-68b6-422d-b147-569b1ed92422", + "title": "Type eple", + "description": "", + "needId": "2c6f50a0-e225-4592-9846-0ed1a1659beb", + "type": "requirement", + "variants": [ + { + "id": "d1a56262-25b3-4bae-bad7-4ffd14fda9f1", + "requirementText": "Eplene må være av følgende type:", + "instruction": "Velg type(r) eple(r) dersom det er viktig.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "84a20d8a-35b3-4d7a-94e4-2bb97baca2c6" + ], + "questions": [ + { + "id": "04819611-8e07-414f-ab4c-941620490165", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "1931a6f0-b198-4c4c-a970-35cd9d92b671", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Angivelse av type eple" + }, + { + "id": "a289fc46-d034-4272-8949-d4377e6ca8d7", + "requirementText": "Eplene er helst av følgende type:", + "instruction": "Velg denne om det er preferanser, men som ikke er obligatorisk.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "84a20d8a-35b3-4d7a-94e4-2bb97baca2c6" + ], + "questions": [ + { + "id": "dc086e45-60b8-4e3d-9890-3d9e0f5ed528", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "1931a6f0-b198-4c4c-a970-35cd9d92b671", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Foretrukket type eple" + } + ], + "tags": [], + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "1931a6f0-b198-4c4c-a970-35cd9d92b671", + "title": "Epletyper", + "description": "", + "codes": [ + { + "id": "5272e27d-8952-4b43-9b06-b4a6148a8fe5", + "title": "Gravensten", + "description": "Grønne og sure", + "type": "code", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null, + "parent": "" + }, + { + "id": "a59784b6-3fa3-4ce4-ae64-d301957fc660", + "title": "Granny Smith", + "description": "", + "type": "code", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null, + "parent": "" + }, + { + "id": "f7b7b67c-db7c-449d-89ab-bfe0ef9b5526", + "title": "Pink Lady", + "description": "", + "type": "code", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null, + "parent": "" + }, + { + "id": "5b4c690a-9a86-4b93-b5b2-6cfc675aa2df", + "title": "Gule epler", + "description": "", + "type": "code", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null + } + ], + "products": [ + { + "id": "e02aa2a8-4325-4bdd-a5dd-ce721f67e08b", + "title": "Frukt", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "78597480-33cd-454d-99c1-546a0534f020", + "title": "Banan", + "description": "", + "type": "product", + "parent": "e02aa2a8-4325-4bdd-a5dd-ce721f67e08b", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "84a20d8a-35b3-4d7a-94e4-2bb97baca2c6", + "title": "Eple", + "description": "", + "type": "product", + "parent": "e02aa2a8-4325-4bdd-a5dd-ce721f67e08b", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "9796365a-ee4d-4b84-9e20-b643a2de8bba", + "title": "Gravensten", + "description": "", + "type": "product", + "parent": "84a20d8a-35b3-4d7a-94e4-2bb97baca2c6", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null, + "deletedDate": "2022-05-12T11:34:24.675Z" + }, + { + "id": "f8e4cfa5-2392-4dfc-9629-2e918e864e60", + "title": "Pink Lady", + "description": "", + "type": "product", + "parent": "84a20d8a-35b3-4d7a-94e4-2bb97baca2c6", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null, + "deletedDate": "2022-05-12T11:34:27.470Z" + }, + { + "id": "6ab17e68-673a-43c9-89f7-f52a4e479373", + "title": "Granny Smith", + "description": "", + "type": "product", + "parent": "84a20d8a-35b3-4d7a-94e4-2bb97baca2c6", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null, + "deletedDate": "2022-05-12T11:34:29.225Z" + }, + { + "id": "13afe5d9-832c-44a5-ad88-a9460f99b907", + "title": "Grønnsaker", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "be1e712f-e762-4439-a967-368bba3f00c4", + "title": "Gulerot", + "description": "", + "type": "product", + "parent": "13afe5d9-832c-44a5-ad88-a9460f99b907", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "d906b0dc-7a40-42ed-9498-50c8e2308afb", + "title": "Bær", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "26aaf2cf-59b2-4e59-8976-1b1d43a67a35", + "title": "Jordbær", + "description": "", + "type": "product", + "parent": "d906b0dc-7a40-42ed-9498-50c8e2308afb", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [], + "tags": [], + "version": 1, + "publishedDate": "2022-05-12T11:45:21.339Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "deletedDate": null + }, + { + "id": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "title": "Frukt og grønnsaker", + "description": "Innkjøp av frukt og grønt til institusjoner/barnehager.", + "needs": [ + { + "id": "0b359334-50c0-4f63-b400-9bbca588098c", + "title": "Levering", + "description": "", + "requirements": [ + { + "id": "14198bbe-2198-41f7-97a1-a3465b6e3521", + "title": "Leveringstidspunkt", + "description": "", + "needId": "0b359334-50c0-4f63-b400-9bbca588098c", + "type": "requirement", + "variants": [ + { + "id": "f91d81d3-bc08-4701-9128-654115c83a26", + "requirementText": "Oppdragsgiver kan ta imot produkter i følgende tidsperiode:", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "0428bd38-7171-4d8c-b758-14e420b0db17", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Tidspunkt for leveranser" + } + ], + "tags": [], + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null + }, + { + "id": "3db3aac4-a9c7-4709-b5de-c67c284f72b5", + "title": "dsfsa", + "description": "", + "needId": "0b359334-50c0-4f63-b400-9bbca588098c", + "type": "requirement", + "variants": [ + { + "id": "ac425f56-a976-4d0b-9cec-cf8cee8e17de", + "requirementText": "...", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "d906b0dc-7a40-42ed-9498-50c8e2308afb", + "26aaf2cf-59b2-4e59-8976-1b1d43a67a35" + ], + "questions": [ + { + "id": "8bcaa0a4-b82c-4ea0-ad58-1ea4fd379aa2", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Test" + }, + { + "id": "83fa2716-0b2c-4dcb-8b1e-09c15990f5aa", + "requirementText": "...", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e02aa2a8-4325-4bdd-a5dd-ce721f67e08b", + "78597480-33cd-454d-99c1-546a0534f020", + "84a20d8a-35b3-4d7a-94e4-2bb97baca2c6" + ], + "questions": [ + { + "id": "9d9ca9a0-8bd7-4acc-8e0f-dfd05341ff7f", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 100, + "step": 0.1, + "unit": "cm", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Test 2" + } + ], + "tags": [], + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null + }, + { + "id": "9397c17c-81a4-4d88-ab87-0390da87a528", + "title": "Utseende", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null + }, + { + "id": "6a63c462-b4d4-4f04-901b-b4699763c720", + "title": "Størrelse", + "description": "", + "requirements": [ + { + "id": "ea6e8578-c369-4b73-85ee-43b4c900ce50", + "title": "Produktets lengde", + "description": "", + "needId": "6a63c462-b4d4-4f04-901b-b4699763c720", + "type": "requirement", + "variants": [ + { + "id": "35f11d71-907d-4df6-a295-74e4d4bde48b", + "requirementText": "Banens lengde skal være minimum:", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "78597480-33cd-454d-99c1-546a0534f020" + ], + "questions": [ + { + "id": "9273f300-ea9e-45d5-aad4-14cdd44cc474", + "type": "Q_SLIDER", + "config": { + "min": 5, + "max": 30, + "step": 0.5, + "unit": "cm", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "f7b2e9de-7f02-48fb-8e03-21f8dba66d92", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "9eb0e535-6910-41d4-aedd-2c02aed9a23b", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "1931a6f0-b198-4c4c-a970-35cd9d92b671", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Minimumslengde for banan" + }, + { + "id": "c9e422ed-7d01-4ffb-8122-a5d95df5172e", + "requirementText": "Gulerotens lengde skal være minimum:", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "be1e712f-e762-4439-a967-368bba3f00c4" + ], + "questions": [ + { + "id": "5a8513ff-c47f-4bb2-b29d-f440dbf09ac2", + "type": "Q_SLIDER", + "config": { + "min": 4, + "max": 40, + "step": 1, + "unit": "cm", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Minimumslengde for gulerot" + } + ], + "tags": [], + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null + } + ], + "type": "need", + "parent": "9397c17c-81a4-4d88-ab87-0390da87a528", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null + }, + { + "id": "9ffb02b7-98ed-4987-acdf-23eb81bf959c", + "title": "Farge", + "description": "", + "requirements": [], + "type": "need", + "parent": "9397c17c-81a4-4d88-ab87-0390da87a528", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null + }, + { + "id": "a65feb59-92bf-4aef-abe3-4e3dc9ddd037", + "title": "Kvalitet", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null + }, + { + "id": "d2e29913-50c3-4fee-b39d-8788548039b4", + "title": "Bærekraft", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null + }, + { + "id": "2c6f50a0-e225-4592-9846-0ed1a1659beb", + "title": "Type", + "description": "", + "requirements": [ + { + "id": "d22b18f5-68b6-422d-b147-569b1ed92422", + "title": "Type eple", + "description": "", + "needId": "2c6f50a0-e225-4592-9846-0ed1a1659beb", + "type": "requirement", + "variants": [ + { + "id": "d1a56262-25b3-4bae-bad7-4ffd14fda9f1", + "requirementText": "Eplene må være av følgende type:", + "instruction": "Velg type(r) eple(r) dersom det er viktig.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "84a20d8a-35b3-4d7a-94e4-2bb97baca2c6" + ], + "questions": [ + { + "id": "04819611-8e07-414f-ab4c-941620490165", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "1931a6f0-b198-4c4c-a970-35cd9d92b671", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Angivelse av type eple" + }, + { + "id": "a289fc46-d034-4272-8949-d4377e6ca8d7", + "requirementText": "Eplene er helst av følgende type:", + "instruction": "Velg denne om det er preferanser, men som ikke er obligatorisk.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "84a20d8a-35b3-4d7a-94e4-2bb97baca2c6" + ], + "questions": [ + { + "id": "dc086e45-60b8-4e3d-9890-3d9e0f5ed528", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "1931a6f0-b198-4c4c-a970-35cd9d92b671", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Foretrukket type eple" + } + ], + "tags": [], + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null + }, + { + "id": "89e3be26-4a01-4e94-95b7-1fcbce1705c2", + "title": "Banan", + "description": "", + "requirements": [ + { + "id": "05bdc11d-9af8-4d80-ba8e-1177baba6e27", + "title": "gule bananer", + "description": "", + "needId": "89e3be26-4a01-4e94-95b7-1fcbce1705c2", + "type": "requirement", + "variants": [], + "tags": [], + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "1931a6f0-b198-4c4c-a970-35cd9d92b671", + "title": "Epletyper", + "description": "", + "codes": [ + { + "id": "5272e27d-8952-4b43-9b06-b4a6148a8fe5", + "title": "Gravensten", + "description": "Grønne og sure", + "type": "code", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null, + "parent": "" + }, + { + "id": "a59784b6-3fa3-4ce4-ae64-d301957fc660", + "title": "Granny Smith", + "description": "", + "type": "code", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null, + "parent": "" + }, + { + "id": "f7b7b67c-db7c-449d-89ab-bfe0ef9b5526", + "title": "Pink Lady", + "description": "", + "type": "code", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null, + "parent": "" + }, + { + "id": "5b4c690a-9a86-4b93-b5b2-6cfc675aa2df", + "title": "Gule epler", + "description": "", + "type": "code", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null + } + ], + "products": [ + { + "id": "e02aa2a8-4325-4bdd-a5dd-ce721f67e08b", + "title": "Frukt", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "78597480-33cd-454d-99c1-546a0534f020", + "title": "Banan", + "description": "", + "type": "product", + "parent": "e02aa2a8-4325-4bdd-a5dd-ce721f67e08b", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "84a20d8a-35b3-4d7a-94e4-2bb97baca2c6", + "title": "Eple", + "description": "", + "type": "product", + "parent": "e02aa2a8-4325-4bdd-a5dd-ce721f67e08b", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "9796365a-ee4d-4b84-9e20-b643a2de8bba", + "title": "Gravensten", + "description": "", + "type": "product", + "parent": "84a20d8a-35b3-4d7a-94e4-2bb97baca2c6", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null, + "deletedDate": "2022-05-12T11:34:24.675Z" + }, + { + "id": "f8e4cfa5-2392-4dfc-9629-2e918e864e60", + "title": "Pink Lady", + "description": "", + "type": "product", + "parent": "84a20d8a-35b3-4d7a-94e4-2bb97baca2c6", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null, + "deletedDate": "2022-05-12T11:34:27.470Z" + }, + { + "id": "6ab17e68-673a-43c9-89f7-f52a4e479373", + "title": "Granny Smith", + "description": "", + "type": "product", + "parent": "84a20d8a-35b3-4d7a-94e4-2bb97baca2c6", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null, + "deletedDate": "2022-05-12T11:34:29.225Z" + }, + { + "id": "13afe5d9-832c-44a5-ad88-a9460f99b907", + "title": "Grønnsaker", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "be1e712f-e762-4439-a967-368bba3f00c4", + "title": "Gulerot", + "description": "", + "type": "product", + "parent": "13afe5d9-832c-44a5-ad88-a9460f99b907", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "d906b0dc-7a40-42ed-9498-50c8e2308afb", + "title": "Bær", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "26aaf2cf-59b2-4e59-8976-1b1d43a67a35", + "title": "Jordbær", + "description": "", + "type": "product", + "parent": "d906b0dc-7a40-42ed-9498-50c8e2308afb", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [ + { + "id": "0de6b75a-30aa-4da1-8bb1-a6713b42d85e", + "bankId": "0de6b75a-30aa-4da1-8bb1-a6713b42d85e", + "comment": "Første utgave", + "date": "2022-05-12T11:45:21.339Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null + } + ], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "05d0f2c5-c150-43b3-bc47-eb3e27aaacdc", + "title": "Et lite testprosjekt", + "description": "Av Balder", + "needs": [ + { + "id": "54ceb13e-b6d0-4b52-9e5c-196bf7d8daa6", + "title": "Testbehov", + "description": "Test", + "requirements": [ + { + "id": "871b3e50-f564-4a12-a1b4-62756fb8e724", + "title": "Nytt krav", + "description": "", + "needId": "54ceb13e-b6d0-4b52-9e5c-196bf7d8daa6", + "tags": [], + "variants": [ + { + "id": "739e2b5d-dee1-449f-b0b4-07d04d1fc46c", + "requirementText": "sda", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + } + ], + "type": "requirement", + "sourceOriginal": "05d0f2c5-c150-43b3-bc47-eb3e27aaacdc", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "05d0f2c5-c150-43b3-bc47-eb3e27aaacdc", + "sourceRel": null + }, + { + "id": "922d6a1b-d272-4b7f-a3d5-6b309c80aa5c", + "title": "Behov", + "description": "Test", + "requirements": [ + { + "id": "22871f4e-819a-49f3-8b22-7b2fca87e332", + "title": "test 2", + "description": "", + "needId": "922d6a1b-d272-4b7f-a3d5-6b309c80aa5c", + "type": "requirement", + "variants": [ + { + "id": "5e0f7aba-3b7d-4151-b36d-ba2ec710e79b", + "requirementText": "test 2", + "instruction": "hei", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "ok." + }, + { + "id": "a7cd6663-0983-455f-9cc0-254f5cec2be7", + "requirementText": "Test 1000", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + } + ], + "tags": [], + "sourceOriginal": "05d0f2c5-c150-43b3-bc47-eb3e27aaacdc", + "sourceRel": null + }, + { + "id": "05019bf0-d9fe-40db-b677-58fd291bd672", + "title": "Nytt krav", + "description": "", + "needId": "922d6a1b-d272-4b7f-a3d5-6b309c80aa5c", + "type": "requirement", + "variants": [], + "tags": [], + "sourceOriginal": "05d0f2c5-c150-43b3-bc47-eb3e27aaacdc", + "sourceRel": null + } + ], + "type": "need", + "parent": "54ceb13e-b6d0-4b52-9e5c-196bf7d8daa6", + "sourceOriginal": "05d0f2c5-c150-43b3-bc47-eb3e27aaacdc", + "sourceRel": null + }, + { + "id": "27070ffc-3a40-4424-98e5-ccf63d1d558b", + "title": "Test", + "description": "", + "requirements": [], + "type": "need", + "parent": "922d6a1b-d272-4b7f-a3d5-6b309c80aa5c", + "sourceOriginal": "05d0f2c5-c150-43b3-bc47-eb3e27aaacdc", + "sourceRel": null + }, + { + "id": "95a2a907-5a23-449a-8ef8-6d5df7f11d0b", + "title": "Behov", + "description": "", + "requirements": [ + { + "id": "ac11706b-907e-490e-a500-de65cf4d6656", + "title": "hey", + "description": "", + "needId": "95a2a907-5a23-449a-8ef8-6d5df7f11d0b", + "type": "requirement", + "variants": [ + { + "id": "3c356827-bad1-45c6-b233-699fc1bf3592", + "requirementText": "kjørra", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + } + ], + "tags": [], + "sourceOriginal": "05d0f2c5-c150-43b3-bc47-eb3e27aaacdc", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "05d0f2c5-c150-43b3-bc47-eb3e27aaacdc", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "e44512de-842f-4fbd-a257-87f3d261e67e", + "title": "Bobbo", + "description": "", + "codes": [], + "type": "codelist", + "sourceOriginal": "05d0f2c5-c150-43b3-bc47-eb3e27aaacdc", + "sourceRel": null + } + ], + "products": [ + { + "id": "54ceb13e-b6d0-4b52-9e5c-196bf7d8daa6", + "title": "Testbehov", + "description": "Test", + "requirements": [ + { + "id": "871b3e50-f564-4a12-a1b4-62756fb8e724", + "title": "Nytt krav", + "description": "", + "needId": "54ceb13e-b6d0-4b52-9e5c-196bf7d8daa6", + "tags": [], + "variants": [ + { + "id": "739e2b5d-dee1-449f-b0b4-07d04d1fc46c", + "requirementText": "sda", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + } + ], + "type": "requirement", + "sourceOriginal": "05d0f2c5-c150-43b3-bc47-eb3e27aaacdc", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "05d0f2c5-c150-43b3-bc47-eb3e27aaacdc", + "sourceRel": null + }, + { + "id": "922d6a1b-d272-4b7f-a3d5-6b309c80aa5c", + "title": "Behov", + "description": "Test", + "requirements": [ + { + "id": "22871f4e-819a-49f3-8b22-7b2fca87e332", + "title": "test 2", + "description": "", + "needId": "922d6a1b-d272-4b7f-a3d5-6b309c80aa5c", + "type": "requirement", + "variants": [ + { + "id": "5e0f7aba-3b7d-4151-b36d-ba2ec710e79b", + "requirementText": "test 2", + "instruction": "hei", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "ok." + }, + { + "id": "a7cd6663-0983-455f-9cc0-254f5cec2be7", + "requirementText": "Test 1000", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + } + ], + "tags": [], + "sourceOriginal": "05d0f2c5-c150-43b3-bc47-eb3e27aaacdc", + "sourceRel": null + }, + { + "id": "05019bf0-d9fe-40db-b677-58fd291bd672", + "title": "Nytt krav", + "description": "", + "needId": "922d6a1b-d272-4b7f-a3d5-6b309c80aa5c", + "type": "requirement", + "variants": [], + "tags": [], + "sourceOriginal": "05d0f2c5-c150-43b3-bc47-eb3e27aaacdc", + "sourceRel": null + } + ], + "type": "need", + "parent": "54ceb13e-b6d0-4b52-9e5c-196bf7d8daa6", + "sourceOriginal": "05d0f2c5-c150-43b3-bc47-eb3e27aaacdc", + "sourceRel": null + }, + { + "id": "27070ffc-3a40-4424-98e5-ccf63d1d558b", + "title": "Test", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "05d0f2c5-c150-43b3-bc47-eb3e27aaacdc", + "sourceRel": null + } + ], + "publications": [], + "tags": [ + { + "id": "7f0f2f75-81fd-46f9-9676-e14651136cc9", + "title": "Dust oppg", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "05d0f2c5-c150-43b3-bc47-eb3e27aaacdc", + "sourceRel": null + } + ], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "bc062276-66cd-401e-a055-8094e8c197bc", + "title": "Erik testar kravbank veke 41 - 1", + "description": "Berre ein test", + "needs": [ + { + "id": "10dfbb61-087c-4d40-b649-c9f7d109b306", + "title": "Berre ein test", + "description": "", + "requirements": [ + { + "id": "e3cb9092-94d8-4acf-9421-53722cfb40c3", + "title": "Jau jau jau", + "description": "", + "needId": "10dfbb61-087c-4d40-b649-c9f7d109b306", + "type": "requirement", + "variants": [ + { + "id": "465b9f4e-c0b2-41e2-bd29-6c1b17b4c616", + "requirementText": "hei fara", + "instruction": "på vedaskog", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "Og mannen han gjekk seg på vedaskog" + }, + { + "id": "a94c2c33-525f-4a62-9e19-020d30064d51", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "Test" + } + ], + "tags": [], + "sourceOriginal": "bae1913f-06d9-443c-8bc5-5c1e22243e78", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "bae1913f-06d9-443c-8bc5-5c1e22243e78", + "sourceRel": null + }, + { + "id": "19bdd2d3-f022-4ce2-8d1a-2f92c9ea5454", + "title": "Gåsa", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "bae1913f-06d9-443c-8bc5-5c1e22243e78", + "sourceRel": null + }, + { + "id": "aae30f2f-357d-44f8-a5db-9c820ad3ccae", + "title": "Katten", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "bae1913f-06d9-443c-8bc5-5c1e22243e78", + "sourceRel": null + }, + { + "id": "6c5fa0aa-9830-4119-894f-0dc81f4ff1d4", + "title": "Hanen", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "bae1913f-06d9-443c-8bc5-5c1e22243e78", + "sourceRel": null + } + ], + "codelist": [], + "products": [], + "publications": [], + "tags": [], + "version": 1, + "publishedDate": "2022-10-17T13:28:39.986Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "bae1913f-06d9-443c-8bc5-5c1e22243e78", + "deletedDate": null + }, + { + "id": "bae1913f-06d9-443c-8bc5-5c1e22243e78", + "title": "Erik testar kravbank veke 41 - 1", + "description": "Berre ein test", + "needs": [ + { + "id": "10dfbb61-087c-4d40-b649-c9f7d109b306", + "title": "Berre ein test", + "description": "", + "requirements": [ + { + "id": "e3cb9092-94d8-4acf-9421-53722cfb40c3", + "title": "Jau jau jau", + "description": "", + "needId": "10dfbb61-087c-4d40-b649-c9f7d109b306", + "type": "requirement", + "variants": [ + { + "id": "465b9f4e-c0b2-41e2-bd29-6c1b17b4c616", + "requirementText": "hei fara", + "instruction": "på vedaskog", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "Og mannen han gjekk seg på vedaskog" + }, + { + "id": "a94c2c33-525f-4a62-9e19-020d30064d51", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "Test" + } + ], + "tags": [], + "sourceOriginal": "bae1913f-06d9-443c-8bc5-5c1e22243e78", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "bae1913f-06d9-443c-8bc5-5c1e22243e78", + "sourceRel": null + }, + { + "id": "19bdd2d3-f022-4ce2-8d1a-2f92c9ea5454", + "title": "Gåsa", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "bae1913f-06d9-443c-8bc5-5c1e22243e78", + "sourceRel": null + }, + { + "id": "aae30f2f-357d-44f8-a5db-9c820ad3ccae", + "title": "Katten", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "bae1913f-06d9-443c-8bc5-5c1e22243e78", + "sourceRel": null + }, + { + "id": "6c5fa0aa-9830-4119-894f-0dc81f4ff1d4", + "title": "Hanen", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "bae1913f-06d9-443c-8bc5-5c1e22243e78", + "sourceRel": null + } + ], + "codelist": [], + "products": [], + "publications": [ + { + "id": "bc062276-66cd-401e-a055-8094e8c197bc", + "bankId": "bc062276-66cd-401e-a055-8094e8c197bc", + "comment": "Mest for å fylle ut framsida", + "date": "2022-10-17T13:28:39.986Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + } + ], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "a8dde58f-fff9-4d14-8263-3097bf3b6c0a", + "title": "Erik sitt testprosjekt", + "description": "Erik testar Kravbank", + "needs": [ + { + "id": "a7705e2c-0ffc-4834-b44d-c8d6ec72d147", + "title": "PC", + "description": "", + "requirements": [ + { + "id": "af10c83a-3d47-497d-a600-de2fe36d9e57", + "title": "Minne", + "description": "", + "needId": "a7705e2c-0ffc-4834-b44d-c8d6ec72d147", + "type": "requirement", + "variants": [ + { + "id": "4bf6dc8e-d011-4ae4-bb6e-c53c9b1c6691", + "requirementText": "....", + "instruction": "....", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "44b45ef5-28d0-4aac-9aa6-6af20c2871ff" + ], + "questions": [ + { + "id": "44aee15c-ac8a-43b2-bf6a-34ae6ea6f11a", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "64 GB Minne" + }, + { + "id": "59d289c7-44fa-4423-9700-b1e7b9b826dc", + "requirementText": "Maskinen har minst 32 GB innebygget minne og et eller flere ledige minnespor som kan brukes til å oppgradere til minst 64 GB uten åta ut originalminne.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "43ada92f-660a-478f-8edf-31cafd3f5020" + ], + "questions": [ + { + "id": "4793642d-deb9-491f-8f8d-4be93ff64cb5", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "32 GB Minne med mulight for oppgradering" + } + ], + "tags": [], + "sourceOriginal": "aa58330b-df56-4c07-ad8f-663160b59e9a", + "sourceRel": null + }, + { + "id": "d337eb02-5790-4c55-a888-1160fb9bd05c", + "title": "Prosessor ", + "description": "", + "needId": "a7705e2c-0ffc-4834-b44d-c8d6ec72d147", + "type": "requirement", + "variants": [ + { + "id": "354848a5-0d6c-4497-810d-3dbe46a1f151", + "requirementText": "", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "44b45ef5-28d0-4aac-9aa6-6af20c2871ff" + ], + "questions": [], + "type": "requirement", + "description": "AMD64-type prosessor (AMD/Intel, 64 bit)" + }, + { + "id": "31bf207c-2073-404c-a87e-7e15cb3f8f6a", + "requirementText": "", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "44b45ef5-28d0-4aac-9aa6-6af20c2871ff" + ], + "questions": [], + "type": "requirement", + "description": "M1" + }, + { + "id": "f9a57cbf-b0fa-43d8-8120-1dd84fc83407", + "requirementText": "", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "44b45ef5-28d0-4aac-9aa6-6af20c2871ff" + ], + "questions": [], + "type": "requirement", + "description": "M2" + } + ], + "tags": [], + "sourceOriginal": "aa58330b-df56-4c07-ad8f-663160b59e9a", + "sourceRel": null + }, + { + "id": "cd23d998-2749-4717-b959-8c4542daaaf6", + "title": "Tastatur", + "description": "", + "needId": "a7705e2c-0ffc-4834-b44d-c8d6ec72d147", + "type": "requirement", + "variants": [ + { + "id": "ba70af53-ef79-4afb-b3be-913b7600461c", + "requirementText": "Tastaturet må være tilpasset skriving på norsk", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6474f020-7b7b-4bdc-b56f-1bf475c63b2c" + ], + "questions": [ + { + "id": "6bf9d8fb-22a0-46cf-ac76-0fc9f1484b41", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Norsk/nordisk tastatur" + } + ], + "tags": [], + "sourceOriginal": "aa58330b-df56-4c07-ad8f-663160b59e9a", + "sourceRel": null + }, + { + "id": "eaaad5bd-92fe-4501-ae27-69d313244e83", + "title": "Garanti", + "description": "", + "needId": "a7705e2c-0ffc-4834-b44d-c8d6ec72d147", + "type": "requirement", + "variants": [ + { + "id": "19bacda7-ac82-4768-aac4-d930981b1134", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "142e5dc2-041a-4b56-897f-6abf5a717dde", + "type": "Q_SLIDER", + "config": { + "min": 2, + "max": 10, + "step": 1, + "unit": "år", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 2, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": "2" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "2 års garanti eller mer" + } + ], + "tags": [], + "sourceOriginal": "aa58330b-df56-4c07-ad8f-663160b59e9a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "aa58330b-df56-4c07-ad8f-663160b59e9a", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "f5243df3-5886-4f90-9ff6-0e83d14db0db", + "title": "En kodeliste", + "description": "", + "codes": [ + { + "id": "a8f73f75-b34d-4ebf-b3dd-05a1a38e2fdb", + "title": "qwe", + "description": "", + "type": "code", + "sourceOriginal": "aa58330b-df56-4c07-ad8f-663160b59e9a", + "sourceRel": null, + "parent": "" + }, + { + "id": "fbba10f5-5034-4678-8878-0cea92bbbbfd", + "title": "wer", + "description": "", + "type": "code", + "sourceOriginal": "aa58330b-df56-4c07-ad8f-663160b59e9a", + "sourceRel": null, + "parent": "" + }, + { + "id": "271df2a5-5454-46f3-b155-d96f12c7e739", + "title": "ert", + "description": "", + "type": "code", + "sourceOriginal": "aa58330b-df56-4c07-ad8f-663160b59e9a", + "sourceRel": null, + "parent": "" + }, + { + "id": "b6b9f56f-972c-4257-983d-0ab5dbc538b1", + "title": "rty", + "description": "", + "type": "code", + "sourceOriginal": "aa58330b-df56-4c07-ad8f-663160b59e9a", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "aa58330b-df56-4c07-ad8f-663160b59e9a", + "sourceRel": null + } + ], + "products": [ + { + "id": "44b45ef5-28d0-4aac-9aa6-6af20c2871ff", + "title": "Prosessor", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "aa58330b-df56-4c07-ad8f-663160b59e9a", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "43ada92f-660a-478f-8edf-31cafd3f5020", + "title": "Minne", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "aa58330b-df56-4c07-ad8f-663160b59e9a", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "6474f020-7b7b-4bdc-b56f-1bf475c63b2c", + "title": "Tastatur", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "aa58330b-df56-4c07-ad8f-663160b59e9a", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [], + "tags": [], + "version": 1, + "publishedDate": "2022-09-14T05:17:16.645Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "aa58330b-df56-4c07-ad8f-663160b59e9a", + "deletedDate": null + }, + { + "id": "aa58330b-df56-4c07-ad8f-663160b59e9a", + "title": "Erik sitt testprosjekt", + "description": "Erik testar Kravbank", + "needs": [ + { + "id": "a7705e2c-0ffc-4834-b44d-c8d6ec72d147", + "title": "PC", + "description": "", + "requirements": [ + { + "id": "af10c83a-3d47-497d-a600-de2fe36d9e57", + "title": "Minne", + "description": "", + "needId": "a7705e2c-0ffc-4834-b44d-c8d6ec72d147", + "type": "requirement", + "variants": [ + { + "id": "4bf6dc8e-d011-4ae4-bb6e-c53c9b1c6691", + "requirementText": "....", + "instruction": "....", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "44b45ef5-28d0-4aac-9aa6-6af20c2871ff" + ], + "questions": [ + { + "id": "44aee15c-ac8a-43b2-bf6a-34ae6ea6f11a", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "64 GB Minne" + }, + { + "id": "59d289c7-44fa-4423-9700-b1e7b9b826dc", + "requirementText": "Maskinen har minst 32 GB innebygget minne og et eller flere ledige minnespor som kan brukes til å oppgradere til minst 64 GB uten åta ut originalminne.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "43ada92f-660a-478f-8edf-31cafd3f5020" + ], + "questions": [ + { + "id": "4793642d-deb9-491f-8f8d-4be93ff64cb5", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "32 GB Minne med mulight for oppgradering" + } + ], + "tags": [], + "sourceOriginal": "aa58330b-df56-4c07-ad8f-663160b59e9a", + "sourceRel": null + }, + { + "id": "d337eb02-5790-4c55-a888-1160fb9bd05c", + "title": "Prosessor ", + "description": "", + "needId": "a7705e2c-0ffc-4834-b44d-c8d6ec72d147", + "type": "requirement", + "variants": [ + { + "id": "354848a5-0d6c-4497-810d-3dbe46a1f151", + "requirementText": "", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "44b45ef5-28d0-4aac-9aa6-6af20c2871ff" + ], + "questions": [], + "type": "requirement", + "description": "AMD64-type prosessor (AMD/Intel, 64 bit)" + }, + { + "id": "31bf207c-2073-404c-a87e-7e15cb3f8f6a", + "requirementText": "", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "44b45ef5-28d0-4aac-9aa6-6af20c2871ff" + ], + "questions": [], + "type": "requirement", + "description": "M1" + }, + { + "id": "f9a57cbf-b0fa-43d8-8120-1dd84fc83407", + "requirementText": "", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "44b45ef5-28d0-4aac-9aa6-6af20c2871ff" + ], + "questions": [], + "type": "requirement", + "description": "M2" + } + ], + "tags": [], + "sourceOriginal": "aa58330b-df56-4c07-ad8f-663160b59e9a", + "sourceRel": null + }, + { + "id": "cd23d998-2749-4717-b959-8c4542daaaf6", + "title": "Tastatur", + "description": "", + "needId": "a7705e2c-0ffc-4834-b44d-c8d6ec72d147", + "type": "requirement", + "variants": [ + { + "id": "ba70af53-ef79-4afb-b3be-913b7600461c", + "requirementText": "Tastaturet må være tilpasset skriving på norsk", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6474f020-7b7b-4bdc-b56f-1bf475c63b2c" + ], + "questions": [ + { + "id": "6bf9d8fb-22a0-46cf-ac76-0fc9f1484b41", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Norsk/nordisk tastatur" + } + ], + "tags": [], + "sourceOriginal": "aa58330b-df56-4c07-ad8f-663160b59e9a", + "sourceRel": null + }, + { + "id": "eaaad5bd-92fe-4501-ae27-69d313244e83", + "title": "Garanti", + "description": "", + "needId": "a7705e2c-0ffc-4834-b44d-c8d6ec72d147", + "type": "requirement", + "variants": [ + { + "id": "19bacda7-ac82-4768-aac4-d930981b1134", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "142e5dc2-041a-4b56-897f-6abf5a717dde", + "type": "Q_SLIDER", + "config": { + "min": 2, + "max": 10, + "step": 1, + "unit": "år", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 2, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": "2" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "2 års garanti eller mer" + } + ], + "tags": [], + "sourceOriginal": "aa58330b-df56-4c07-ad8f-663160b59e9a", + "sourceRel": null + }, + { + "id": "435b799e-1350-44e5-b056-0a4b961a5ad2", + "title": "tgaerye", + "description": "", + "needId": "a7705e2c-0ffc-4834-b44d-c8d6ec72d147", + "type": "requirement", + "variants": [], + "tags": [], + "sourceOriginal": "aa58330b-df56-4c07-ad8f-663160b59e9a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "aa58330b-df56-4c07-ad8f-663160b59e9a", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "f5243df3-5886-4f90-9ff6-0e83d14db0db", + "title": "En kodeliste", + "description": "", + "codes": [ + { + "id": "a8f73f75-b34d-4ebf-b3dd-05a1a38e2fdb", + "title": "qwe", + "description": "", + "type": "code", + "sourceOriginal": "aa58330b-df56-4c07-ad8f-663160b59e9a", + "sourceRel": null, + "parent": "" + }, + { + "id": "fbba10f5-5034-4678-8878-0cea92bbbbfd", + "title": "wer", + "description": "", + "type": "code", + "sourceOriginal": "aa58330b-df56-4c07-ad8f-663160b59e9a", + "sourceRel": null, + "parent": "" + }, + { + "id": "271df2a5-5454-46f3-b155-d96f12c7e739", + "title": "ert", + "description": "", + "type": "code", + "sourceOriginal": "aa58330b-df56-4c07-ad8f-663160b59e9a", + "sourceRel": null, + "parent": "" + }, + { + "id": "b6b9f56f-972c-4257-983d-0ab5dbc538b1", + "title": "rty", + "description": "", + "type": "code", + "sourceOriginal": "aa58330b-df56-4c07-ad8f-663160b59e9a", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "aa58330b-df56-4c07-ad8f-663160b59e9a", + "sourceRel": null + } + ], + "products": [ + { + "id": "44b45ef5-28d0-4aac-9aa6-6af20c2871ff", + "title": "Prosessor", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "aa58330b-df56-4c07-ad8f-663160b59e9a", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "43ada92f-660a-478f-8edf-31cafd3f5020", + "title": "Minne", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "aa58330b-df56-4c07-ad8f-663160b59e9a", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "6474f020-7b7b-4bdc-b56f-1bf475c63b2c", + "title": "Tastatur", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "aa58330b-df56-4c07-ad8f-663160b59e9a", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [ + { + "id": "a8dde58f-fff9-4d14-8263-3097bf3b6c0a", + "bankId": "a8dde58f-fff9-4d14-8263-3097bf3b6c0a", + "comment": "Første publisering", + "date": "2022-09-14T05:17:16.645Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + } + ], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "84362eae-1a61-41c4-b210-d38d8a08a2a3", + "title": "Enda en test", + "description": "Denne kan slettes - ", + "needs": [], + "codelist": [], + "products": [], + "publications": [], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "1af3f003-11a8-4805-8a07-e81717d34317", + "title": "El-bil til kommunedrift", + "description": "", + "needs": [ + { + "id": "c06819bc-0459-43fc-bc06-5e44fb538b14", + "title": "Levering", + "description": "", + "requirements": [ + { + "id": "99b35df9-27fd-4486-ae39-8701c5a2dda5", + "title": "Leveringstidspunkt", + "description": "", + "needId": "c06819bc-0459-43fc-bc06-5e44fb538b14", + "type": "requirement", + "variants": [ + { + "id": "1bf2d7c5-f880-4387-b465-7fe6c62e77f1", + "requirementText": "Bilen(e) skal leveres klar til bruk innen 3 måneder.", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "8171b24f-5361-470c-b688-17233f91d5ae", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Innen 3 måneder" + }, + { + "id": "c12ac64e-923d-4802-9b2a-4de492ad0f54", + "requirementText": "Bilen(e) skal leveres klar til bruk innen 6 måneder.", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "3533cf12-c92c-4dab-b57f-13a1f127e619", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Innen 6 måneder" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "1077fe91-b42e-4fff-9663-533fed23a88d", + "title": "Leveringssted", + "description": "", + "needId": "c06819bc-0459-43fc-bc06-5e44fb538b14", + "type": "requirement", + "variants": [ + { + "id": "38ba639c-a186-4b09-9600-4da42e38a16b", + "requirementText": "Bilen(e) må leveres på følgende adresse for å være ansett som levert:", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "c55da865-4e7f-45f5-91eb-d2995c24127b", + "type": "Q_TEXT", + "config": { + "max": 1000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Angitt adresse" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "e72fd4f7-5971-4ea3-804c-a1d8ae813e45", + "title": "Egnethet", + "description": "", + "requirements": [ + { + "id": "8a15488d-50fc-44db-9de3-2cacd62cd7d5", + "title": "Bruk", + "description": "", + "needId": "e72fd4f7-5971-4ea3-804c-a1d8ae813e45", + "type": "requirement", + "variants": [ + { + "id": "ff2497e9-52a8-49d0-ad45-78a4ec9366d1", + "requirementText": "Bil skal være godt egnet til helårsbruk under nordiske forhold.", + "instruction": "Brukes dersom bilen skal benyttes gjennom hele året.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "c63ad29b-0b62-4a37-8e63-cb9fb5ca4914", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Helårsbruk i Norden" + }, + { + "id": "fe38eac3-5ac0-400d-85d5-c48b5da826dd", + "requirementText": "Bil skal være godt egnet til bruk i sommerhalvåret (fom. april- tom. oktober) under nordiske forhold.", + "instruction": "Brukes dersom bilen bare benyttes på bart føre.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6", + "b662684a-3f6b-4599-8452-ab699b0c83be" + ], + "questions": [ + { + "id": "3c770ccb-266c-40ed-8128-a41a29d37b6b", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Bruk kun i sommerhalvåret" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "30835af7-d228-4954-93eb-ebb7036dc288", + "title": "Ytelse", + "description": "", + "requirements": [ + { + "id": "2a1954fb-55a7-418d-ba33-7ad7ba835315", + "title": "Trekkraft for tilhenger", + "description": "", + "needId": "30835af7-d228-4954-93eb-ebb7036dc288", + "type": "requirement", + "variants": [ + { + "id": "71841596-6630-4ca4-b0e0-0dbeedc9918f", + "requirementText": "Oppgi maksimal hengervekt dersom bilen er påmontert hengerfeste:", + "instruction": "Benyttes fortrinnsvis i tilfeller hvor man stiller krav om påmontert hengerfeste.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "f2dee43f-ea7c-407d-92eb-cf4aa89bc29e", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 2500, + "step": 50, + "unit": "kg", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Maksimal hengervekt" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "37f5ea54-87c7-4e9c-a01d-3d17dd1c5df6", + "title": "Rekkevidde", + "description": "", + "needId": "30835af7-d228-4954-93eb-ebb7036dc288", + "type": "requirement", + "variants": [ + { + "id": "64ee25d5-b666-4900-a438-229dcace37eb", + "requirementText": "Bilen skal være testet og oppnådd målt rekkevidde på minimum 200 km WLTP.", + "instruction": "Brukes i utgangspunket for alle biler som kun småkjøres gjennom arbeidsdagen.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "be949330-fbf8-44a0-83d1-bf27c8920395", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Minimum 200 km WLTP" + }, + { + "id": "3078866b-0551-4aee-94bb-d220c8fd749e", + "requirementText": "Bilen skal være testet og oppnådd målt rekkevidde på minimum 350 km WLTP.", + "instruction": "Brukes i utgangspunket for alle biler som er beregnet på blandet kjøring eller tidvis lengre turer.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "4c557b8e-3c64-4402-8a30-495a7048348a", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Minimum 350 km WLTP" + }, + { + "id": "6624c39b-f9d0-4403-a6d8-d5fdab6ff9d3", + "requirementText": "Oppgi hvor mange km WLTP bilen er testet til:", + "instruction": "Benyttes når de to andre variantene ikke er egnet.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "6eec190e-9643-4955-8c95-010c67b552da", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "e7f7f9a5-90a5-42be-ad68-abe557081fff", + "type": "Q_SLIDER", + "config": { + "min": 200, + "max": 1000, + "step": 1, + "unit": "km WLTP", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": "200" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Angitt rekkevidde" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "925545a4-c671-4495-9146-79ed1ea21518", + "title": "Lading", + "description": "", + "requirements": [ + { + "id": "d9292336-3e07-4f04-8579-45ce5f79afbb", + "title": "Mode 2 - Sakte lading eller nødlading", + "description": "", + "needId": "925545a4-c671-4495-9146-79ed1ea21518", + "type": "requirement", + "variants": [ + { + "id": "9def52e3-b9b9-4478-956c-d70f8af98912", + "requirementText": "Bilen skal leveres med støtte for Mode 2 ladesystem. Kabel skal følge med.", + "instruction": "Ved Mode 2 lading benyttes det også standard-kontakter, men det lades med en ladekabel som er semi-aktiv. Det vil si at ladekabelen har innebygde sikkerhetsfunksjoner som delvis håndterer de risikoene som kan oppstå ved lading.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "ac70f92c-1f0c-4fc0-9862-fa5c8c2818fb", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Mode 2" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "989bb5af-8a31-41a1-99a8-6f80f5f39810", + "title": "Mode 3 - Normallading med fastmontert ladestasjon", + "description": "", + "needId": "925545a4-c671-4495-9146-79ed1ea21518", + "type": "requirement", + "variants": [ + { + "id": "f577cf63-18f1-41a2-9a55-9ebfce611aac", + "requirementText": "Bilen skal leveres med støtte for Mode 3 type 1 ladesystem. Kabel skal følge med.", + "instruction": "Støtte for sakte og hurtigere lading med kontakt utviklet for det amerikanse markedet. Brukes kun når du vet at dette er standard hos deg.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "3ff49758-b753-42f8-9cfd-142c0c429add", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Mode 3 type 1" + }, + { + "id": "fe6c95c4-b8c4-4ab2-aa64-dc8837fb57b1", + "requirementText": "Bilen skal leveres med støtte for Mode 3 type 2 ladesystem. Kabel skal følge med.", + "instruction": "Støtte for sakte og hurtigere lading med kontakt utviklet for det europeiske markedet. Som hovedregel benyttes dette kravet i Norge.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "8cfc31f3-fd2c-4503-bb84-4891335d99ca", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Mode 3 type 2" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "2460ce7a-107f-46e5-af81-d04246beb174", + "title": "Mode 4 - Hurtiglading", + "description": "", + "needId": "925545a4-c671-4495-9146-79ed1ea21518", + "type": "requirement", + "variants": [ + { + "id": "9f6910a1-baac-478b-a7e9-fac96c91d000", + "requirementText": "Bilen skal leveres med støtte for Mode 4 type CCS ladesystem. Kabel skal følge med.", + "instruction": "Støtte for hurtiglading med kontakt som brukes eller fases inn i Norge.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "b3252be2-8ead-401c-85e3-5e47e96e8ffa", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Mode 4 type CCS" + }, + { + "id": "92589666-8f73-40d4-8792-0387db74461e", + "requirementText": "Bilen skal leveres med støtte for Mode 4 type CHAdeMO ladesystem. Kabel skal følge med.", + "instruction": "Støtte for hurtiglading med kontakt som er under utfasing i Norge. Brukes kun i tilfeller hvor eksisterende anlegg benytter CHAdeMO og ikke er planlagt byttet ut på kort sikt.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "7c14d886-d56f-4e60-a1fe-3699d0f9429a", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Mode 4 type CHAdeMO" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "e25eed11-f6a9-4b68-bd88-0e60e72fbf5b", + "title": "Interiør", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "9d94e11d-4096-4cee-a2f3-bea56974cc30", + "title": "Sitteplasser", + "description": "", + "requirements": [ + { + "id": "5c9bacc1-5963-406a-a3b1-27481a783098", + "title": "Sitteplasser foran", + "description": "", + "needId": "9d94e11d-4096-4cee-a2f3-bea56974cc30", + "type": "requirement", + "variants": [ + { + "id": "649ffae0-aca5-43b9-ae6c-977fdea49495", + "requirementText": "Bilen skal ha to sitteplasser foran.", + "instruction": "Velges dersom man ønsker å motta tilbud utelukkende med to sitteplasser foran.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e" + ], + "questions": [ + { + "id": "148d5858-3f8e-480f-aafd-a8738e9592e8", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "To sitteplasser" + }, + { + "id": "e259ff55-18ad-46fb-91f7-d3e221ffb839", + "requirementText": "Oppgi antall sitteplasser foran:", + "instruction": "Brukes i hovedsak når man ønsker 1 eller 3 sitterplasser foran, eller aksepterer eksempelvis 2-3 sitteplasser foran.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "1b3f45dc-d876-42f5-a219-831f09994625", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 3, + "step": 1, + "unit": "sitteplasser", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": 1 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Angitt antall sitteplasser" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "a0242b93-22af-4d4f-a687-0910083e401b", + "title": "Sitteplasser bak", + "description": "", + "needId": "9d94e11d-4096-4cee-a2f3-bea56974cc30", + "type": "requirement", + "variants": [ + { + "id": "5942e0aa-eeaa-49c5-b2cc-99df72dc44b2", + "requirementText": "Bilen skal ikke ha sitteplasser utover sitteplassene foran.", + "instruction": "Brukes dersom man ønsker at bilen ikke skal ha sitteplasser bak.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82" + ], + "questions": [ + { + "id": "9698a5ec-fb2e-4b7a-94c0-c792d10ff537", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Ingen sitteplasser" + }, + { + "id": "5e5c4dc1-4c7a-4b20-a8ab-1b828162a4f8", + "requirementText": "Bilen skal ha tre sitteplasser bak.", + "instruction": "Velges dersom man ønsker å motta tilbud utelukkende med tre sitteplasser bak.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82" + ], + "questions": [ + { + "id": "e4fe1508-34c6-49e1-93bd-763600b92fc7", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tre sitteplasser" + }, + { + "id": "fcff32ad-faa7-4d69-b1f1-adc85d144847", + "requirementText": "Oppgi antall sitteplasser bak:", + "instruction": "Brukes i hovedsak når man ønsker et annet antall enn tre sitterplasser bak, eller aksepterer eksempelvis 1-5 sitteplasser bak.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82" + ], + "questions": [ + { + "id": "e20ed2dd-44e6-4fc8-b054-17edd226fed5", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 5, + "step": 1, + "unit": "sitteplasser", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": 1 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Angitt antall sitteplasser" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "e25eed11-f6a9-4b68-bd88-0e60e72fbf5b", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "6bd6fb37-2399-4734-b08e-41673568b6dc", + "title": "Bagasjerom/lasteplass", + "description": "", + "requirements": [ + { + "id": "474b9072-8ed7-41dc-9a6c-52f8469539f5", + "title": "Bagasjerom foran", + "description": "", + "needId": "6bd6fb37-2399-4734-b08e-41673568b6dc", + "type": "requirement", + "variants": [ + { + "id": "084ba585-2ecd-4a67-bbda-a1ee2f7f9e84", + "requirementText": "Det skal være eget bagasjerom foran i bilen.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82" + ], + "questions": [ + { + "id": "bb642602-8889-4502-9d8b-b95f78c5104c", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Bagasjerom foran" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "630dadb4-2b23-4eda-a867-4c1553e36021", + "title": "Dører", + "description": "", + "requirements": [ + { + "id": "08e73686-a56c-49ad-8559-837ea869208b", + "title": "Dører foran", + "description": "", + "needId": "630dadb4-2b23-4eda-a867-4c1553e36021", + "type": "requirement", + "variants": [ + { + "id": "7f01c12b-91df-41ff-82dd-1d22ddfdca75", + "requirementText": "Bilen skal leveres med to dører foran.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6", + "b662684a-3f6b-4599-8452-ab699b0c83be" + ], + "questions": [ + { + "id": "563f0486-aa24-4581-95e8-eb0783ff817a", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "2 dører" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "c4cfb797-1eb6-415f-8a5c-b149e460a18f", + "title": "Dører bak", + "description": "", + "needId": "630dadb4-2b23-4eda-a867-4c1553e36021", + "type": "requirement", + "variants": [ + { + "id": "8812c047-0c10-4460-b79d-4cd7d1243834", + "requirementText": "Bilen skal leveres med 2 dører bak.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82" + ], + "questions": [ + { + "id": "07f949c6-d0d5-4108-b96f-b7bd23d1ff22", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "2 dører" + }, + { + "id": "86b3d0b3-9dc1-4d3e-9aa2-46540e4021bb", + "requirementText": "Bilen skal leveres uten dører bak.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "6eec190e-9643-4955-8c95-010c67b552da", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "5f3c13d3-9dd4-4250-bae2-bfffad7aca6b", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Ingen dører bak" + }, + { + "id": "f565c4f7-7d06-4c0e-8856-ddfe613195ea", + "requirementText": "Bilen leveres med skyvedør på høyre side.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6", + "57706570-7442-485a-9c67-083a7a3e73ef" + ], + "questions": [ + { + "id": "8b54daa6-a98a-47e1-891f-b885ae00346c", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Skyvedør på høyre side" + }, + { + "id": "04892c71-5a68-42e8-b326-9077284187ce", + "requirementText": "Bilen leveres med skyvedør på begge sider.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "2b1f27e4-3872-4bb1-a17c-5e7b24a0e293", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Skyvedør på begge sider" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "0b97ca3a-6080-42bb-b248-ee2a2c3ee27f", + "title": "Dør til bagasjerom/lasterom", + "description": "", + "needId": "630dadb4-2b23-4eda-a867-4c1553e36021", + "type": "requirement", + "variants": [ + { + "id": "6433d404-ff43-4fb2-8f3f-453e2aad65cf", + "requirementText": "Bilen leveres med topphengslet dør til bagasjerom/lasterom.", + "instruction": "Dette er det vanligste alternativet.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "25c771a5-5b01-4169-837e-5ae986ed5139", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Topphengslet" + }, + { + "id": "4130f371-85c6-445e-b553-88a5ff9a642b", + "requirementText": "Bilen leveres med sidehengslet dør, montert på høyre side, til bagasjerom/lasterom.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "57706570-7442-485a-9c67-083a7a3e73ef", + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "c3a19e16-0350-483c-b29a-1af2b11fa377", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Sidehengslet (høyre)" + }, + { + "id": "5e0caf1f-341c-4bcc-a875-af06fe57a274", + "requirementText": "Bilen leveres med sidehengslet dør, montert på venstre side, til bagasjerom/lasterom.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "57706570-7442-485a-9c67-083a7a3e73ef", + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae" + ], + "questions": [ + { + "id": "86c4747a-28c4-4019-8906-0f6cdb500d70", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Sidehengslet (venstre)" + }, + { + "id": "0f362237-228e-4170-9948-7f923d8b954c", + "requirementText": "Bilen leveres med sidehengslede dører, montert på begge sider, til bagasjerom/lasterom.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "57706570-7442-485a-9c67-083a7a3e73ef", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "46f77661-afef-414c-92e3-61c9fb4b92eb", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Sidehengslet (begge sider)" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "dbac2fb8-c0a4-4b66-abfb-910e03bd4e70", + "title": "Dekk", + "description": "", + "requirements": [ + { + "id": "3b77d08d-adcb-43f7-98c5-b56ab8826d7b", + "title": "Skodd for årstid", + "description": "", + "needId": "dbac2fb8-c0a4-4b66-abfb-910e03bd4e70", + "type": "requirement", + "variants": [ + { + "id": "09321b5b-5985-4a22-9ee5-594c527c5db8", + "requirementText": "Bilen(e) skal leveres skodd for årstiden for leveranse.", + "instruction": "Brukes i tilfeller hvor bilen(e) skal leveres med dekk for to årstider.", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "1c7d2c6c-04a5-4c36-bf17-93e42affd7dc", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Gjeldende årstid" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "f9bf9ae0-bb94-43c5-86a9-ddb9e21ec23f", + "title": "Sommerdekk", + "description": "", + "needId": "dbac2fb8-c0a4-4b66-abfb-910e03bd4e70", + "type": "requirement", + "variants": [ + { + "id": "4200a375-0c03-422b-b98f-fb039a8f1bd7", + "requirementText": "Bilen skal leveres med ett sett sommerdekk.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "0b52d716-f3a9-4bb4-8ffd-ab2651c95a68", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Sommerdekk" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "c284e29d-334a-435e-86da-48931f57a616", + "title": "Vinterdekk", + "description": "", + "needId": "dbac2fb8-c0a4-4b66-abfb-910e03bd4e70", + "type": "requirement", + "variants": [ + { + "id": "a6ab39b5-e59a-42a8-895e-15ab90e3e74d", + "requirementText": "Bilen leveres med ett sett vinterdekk med pigg.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "476e1654-dbbb-40b4-ae6c-9f3356048709", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Piggdekk" + }, + { + "id": "bc4141c2-69b3-4224-ab68-daadc02125dc", + "requirementText": "Bilen leveres med ett sett vinterdekk uten pigg.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "b071e7f5-a580-4307-a708-18612016f2cd", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Piggfritt" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "8e991d1d-cf7d-4195-86db-76d73370c49e", + "title": "Service", + "description": "", + "requirements": [ + { + "id": "32d39821-6f64-49b0-926f-62750b3a6258", + "title": "Hente- og bringetjeneste", + "description": "", + "needId": "8e991d1d-cf7d-4195-86db-76d73370c49e", + "type": "requirement", + "variants": [ + { + "id": "6d1e3c77-7cf5-4525-b905-1f797f42e956", + "requirementText": "Leverandør må kunne tilby hente- og bringetjeneste ved periodisk service, vedlikehold og annet ved behov.", + "instruction": "Brukes som hovedregel dersom man ikke har nok kapasitet i egen bilflåte til å understøtte dette på egenhånd.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "4b35389b-1c72-492a-9aa1-af71b4674206", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tilbud om tjeneste" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "349e9811-1091-44df-bd75-6e1bdb70dd1a", + "title": "Erstatningsbil ved verkstedsbesøk", + "description": "", + "needId": "8e991d1d-cf7d-4195-86db-76d73370c49e", + "type": "requirement", + "variants": [ + { + "id": "83171f7f-a627-4dc5-93cb-0c770aeba676", + "requirementText": "Leverandøren skal kunne tilby tilsvarende erstatningsbil ved periodisk service og andre verkstedsbesøk.", + "instruction": "Brukes som hovedregel.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "57706570-7442-485a-9c67-083a7a3e73ef", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "7613bca5-0aa2-4e00-8bb3-6234cbf93e2e", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tilbud om tjeneste" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "b0345e40-77f3-41ca-9b61-f8a900622a8c", + "title": "Utseende", + "description": "", + "requirements": [ + { + "id": "27ff4fdc-5c3f-45bf-adaa-936254d521ec", + "title": "Farge", + "description": "", + "needId": "b0345e40-77f3-41ca-9b61-f8a900622a8c", + "type": "requirement", + "variants": [ + { + "id": "82a0de46-76fb-4cf2-9e14-f7da021e0f6e", + "requirementText": "Bilen skal leveres i nøytral lys farge, for eksempel grå, sølvgrå eller hvit.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "84848a60-9645-4d62-a34b-c3847537f864", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Nøytral lys farge" + }, + { + "id": "371f67fc-0a88-4252-9970-29c525dda450", + "requirementText": "Bilen skal leveres i nøytral mørge farge, for eksempel mørk grå, sort eller mørk blå.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "35901179-56aa-403b-893f-0d0072ba437f", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Nøytral mørk farge" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "title": "Utstyr", + "description": "", + "requirements": [ + { + "id": "7e17aa2f-e51c-4970-b941-e9a091aef692", + "title": "Hengerfeste", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "7625f820-882a-4f53-a5d1-d08fdad87de8", + "requirementText": "Bilen leveres med godkjent hengerfeste med modeltilpasset ledningsnett.", + "instruction": "Brukes dersom man ønsker at bilen leveres med hengerfeste.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "a3194e08-8271-4155-98a9-860a8c453269", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Leveres med hengerfest" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "a0247f6d-92be-4a72-aaea-6be678e2141a", + "title": "Lasteromsmatte", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "aea24fda-7b31-45cb-b15b-5afb669209fa", + "requirementText": "Bilen skal leveres med lasteromsmatte/-beskyttelse.", + "instruction": "Brukes dersom bruken av bilen tilsier at slik matte/beskyttelse vil forlenge bilens levetid.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "66ae0d3d-e090-4b53-95c8-bacf10e8f259", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Levert med lasteromsmatte" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "1de14d20-4d47-401d-9957-e121caad7a9b", + "title": "Handsfree", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "77bf3652-f369-4bf6-8810-9e13cff44a26", + "requirementText": "Bilen skal være utstyrt med handsfreeløsning over Bluetooth.", + "instruction": "Anbefalt brukt ved de fleste anskaffelser av bil.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "6eec190e-9643-4955-8c95-010c67b552da", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "55845b56-f335-46bc-a214-01089d7c6a0e", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Montert handsfree" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "1212cc2e-313d-4811-8001-50963bdcf28c", + "title": "Radio", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "69e8efaf-6262-4f41-a16b-7647c30f5bc8", + "requirementText": "Bilen skal være utstyrt med radio med støtte for DAB+.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "5f5c02a9-75bf-4307-9f93-ce28b0d3b662", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "DAB+-radio" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "a68e7be5-b945-4b11-ba1f-609214046962", + "title": "Ryggevarsel", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "510f30c6-69f6-4a99-b43d-92486caf1f38", + "requirementText": "Bilen skal leveres med ferdig montert ryggevarsel.", + "instruction": "Brukes på biler man ønsker skal pipe når den rygger.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "57706570-7442-485a-9c67-083a7a3e73ef", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6", + "b662684a-3f6b-4599-8452-ab699b0c83be" + ], + "questions": [ + { + "id": "fcc49d08-aba8-440c-a71c-9f8be45c6c1a", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Ferdig montert" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "9be41d0f-479b-4e39-9793-c15f6f3df119", + "title": "Ryggekamera", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "c65b477a-fb35-41e4-b440-a531eb39b3d1", + "requirementText": "Bilen skal være utstyrt med ryggekamera.", + "instruction": "Brukes dersom bilen skal ha skjerm som støtter sjåfør ved rygging.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "4b7b7be9-cc1b-4b49-ae91-ce8867d509e3", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Ferdig montert" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "d87525ab-08fe-46f6-9539-c491adbd0583", + "title": "Parkeringssensor", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "6e914bd8-2fbd-463e-a76c-def9446c859d", + "requirementText": "Bilen leveres med to parkeringssensorer bak, en på hver side, som gir lydsignal i bilen når man nærmer seg gjenstander/folk/fe som registreres av sensor(ene).", + "instruction": "Brukes dersom man har behov for parkeringssensorer bak.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "57e5e445-d621-4c48-9445-622366a531bf", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "To sensorer bak" + }, + { + "id": "7c6aebea-9f64-42ea-a196-7f4dae307db9", + "requirementText": "Bilen leveres med to parkeringssensorer bak, en på hver side, og to parkeringssenorer foran, en på hver side, som gir lydsignal i bilen når man nærmer seg gjenstander/folk/fe som registreres av sensor(ene).", + "instruction": "Brukes som hovedregel.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "3ba09985-023c-4ef2-9813-6e0a6c4cfdc1", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "To senorer bak og to sensorer foran" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "d8e25db7-888b-437d-bfce-181ecab15778", + "title": "Setevarme", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "3603e6c1-218a-4a2b-a756-de3f92585e99", + "requirementText": "Bilen leveres med setevarme på sitteplassene foran.", + "instruction": "Brukes som hovedregel.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "af6782f0-e653-42df-80e7-6d5debbae561", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Setevarme foran" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "3450166c-0022-4b87-ad11-ded2c9d111d5", + "title": "Klimaanlegg (Air condition)", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "a23872e0-bacc-4f02-a473-e14e65ed2df6", + "requirementText": "Bilen skal være utstyrt med klimaanlegg.", + "instruction": "Brukes som hovedregel.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "04c830d3-9a75-4b12-8961-f6133c364ec2", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Ferdig montert" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "2df3ab16-45a5-43b2-94a9-07abb91216cc", + "title": "Påbudt sikkerhetsutstyr", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "5199d927-2c6b-4b06-b84b-edc29586be92", + "requirementText": "Bilen skal leveres med godkjent varseltrekant og refleksvest som skal oppbevares ihht. regelverk.", + "instruction": "Brukes alltid.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "68f62c54-c46c-478e-ae17-12bad5288f8d", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Varseltrekant og refleksvest" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "2717cb6c-72f9-4e0c-8081-1479ddbd5173", + "title": "Førstehjelpsutstyr", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "6cfbeb90-3a1f-4529-9e81-6eb87ad9238e", + "requirementText": "Bilen skal leveres med pute med førstehjelpsutstyr.", + "instruction": "Bør ansees som minimum.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "487411be-f144-418a-b90c-1d381d4925e5", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Pute med førstehjelpsutstyr" + }, + { + "id": "0e45f2da-cd3f-4650-9b60-6a8e527d9921", + "requirementText": "Bilen skal leveres med fastmontert skrin med førstehjelpsutstyr.", + "instruction": "Anbefales brukt i arbeidsbiler.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "6eec190e-9643-4955-8c95-010c67b552da", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "b41de238-759f-4c6e-a77f-87051f2cc0fd", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Skrin med førstehjelpsutstyr" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "43866b18-9cad-4405-9d88-7f5891320f20", + "title": "Lys", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "cebe39ce-25a9-498b-ba4c-684cef6513ff", + "title": "Sikkerhet", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "43a0b886-3cd2-45b9-b0c8-ff7daf7a1035", + "title": "LCC", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "7527ba6a-12ea-4b9e-9ba0-c48ac22c1827", + "title": "Miljø", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "codelist": [], + "products": [ + { + "id": "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "title": "El-bil", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "fab4ddba-c6c7-493f-a24b-70bf3b4c6443", + "title": "Kassebil", + "description": "", + "type": "product", + "parent": "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null, + "deletedDate": "2022-10-24T14:37:41.698Z", + "unit": "stk" + }, + { + "id": "57706570-7442-485a-9c67-083a7a3e73ef", + "title": "Personbil", + "description": "", + "type": "product", + "parent": "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "title": "Kombi", + "description": "", + "type": "product", + "parent": "57706570-7442-485a-9c67-083a7a3e73ef", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "6eec190e-9643-4955-8c95-010c67b552da", + "title": "Mikrobil", + "description": "", + "type": "product", + "parent": "57706570-7442-485a-9c67-083a7a3e73ef", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "title": "Sedan", + "description": "", + "type": "product", + "parent": "57706570-7442-485a-9c67-083a7a3e73ef", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "8b12d26e-4772-4a33-b709-6447706f8b82", + "title": "Stasjonsvogn", + "description": "", + "type": "product", + "parent": "57706570-7442-485a-9c67-083a7a3e73ef", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "b662684a-3f6b-4599-8452-ab699b0c83be", + "title": "Pick-up", + "description": "", + "type": "product", + "parent": "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "cca9fdd8-5024-46a7-9d22-93c1f293e4d6", + "title": "Varebil", + "description": "", + "type": "product", + "parent": "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + } + ], + "publications": [], + "tags": [], + "version": 3, + "publishedDate": "2022-10-28T07:49:18.497Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "deletedDate": null + }, + { + "id": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "title": "El-bil til kommunedrift", + "description": "", + "needs": [ + { + "id": "c06819bc-0459-43fc-bc06-5e44fb538b14", + "title": "Levering", + "description": "", + "requirements": [ + { + "id": "99b35df9-27fd-4486-ae39-8701c5a2dda5", + "title": "Leveringstidspunkt", + "description": "", + "needId": "c06819bc-0459-43fc-bc06-5e44fb538b14", + "type": "requirement", + "variants": [ + { + "id": "1bf2d7c5-f880-4387-b465-7fe6c62e77f1", + "requirementText": "Bilen(e) skal leveres klar til bruk innen 3 måneder.", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "8171b24f-5361-470c-b688-17233f91d5ae", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Innen 3 måneder" + }, + { + "id": "c12ac64e-923d-4802-9b2a-4de492ad0f54", + "requirementText": "Bilen(e) skal leveres klar til bruk innen 6 måneder.", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "3533cf12-c92c-4dab-b57f-13a1f127e619", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Innen 6 måneder" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "1077fe91-b42e-4fff-9663-533fed23a88d", + "title": "Leveringssted", + "description": "", + "needId": "c06819bc-0459-43fc-bc06-5e44fb538b14", + "type": "requirement", + "variants": [ + { + "id": "38ba639c-a186-4b09-9600-4da42e38a16b", + "requirementText": "Bilen(e) må leveres på følgende adresse for å være ansett som levert:", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "c55da865-4e7f-45f5-91eb-d2995c24127b", + "type": "Q_TEXT", + "config": { + "max": 1000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Angitt adresse" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "e72fd4f7-5971-4ea3-804c-a1d8ae813e45", + "title": "Egnethet", + "description": "", + "requirements": [ + { + "id": "8a15488d-50fc-44db-9de3-2cacd62cd7d5", + "title": "Bruk", + "description": "", + "needId": "e72fd4f7-5971-4ea3-804c-a1d8ae813e45", + "type": "requirement", + "variants": [ + { + "id": "ff2497e9-52a8-49d0-ad45-78a4ec9366d1", + "requirementText": "Bil skal være godt egnet til helårsbruk under nordiske forhold.", + "instruction": "Brukes dersom bilen skal benyttes gjennom hele året.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "c63ad29b-0b62-4a37-8e63-cb9fb5ca4914", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Helårsbruk i Norden" + }, + { + "id": "fe38eac3-5ac0-400d-85d5-c48b5da826dd", + "requirementText": "Bil skal være godt egnet til bruk i sommerhalvåret (fom. april- tom. oktober) under nordiske forhold.", + "instruction": "Brukes dersom bilen bare benyttes på bart føre.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6", + "b662684a-3f6b-4599-8452-ab699b0c83be" + ], + "questions": [ + { + "id": "3c770ccb-266c-40ed-8128-a41a29d37b6b", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Bruk kun i sommerhalvåret" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "30835af7-d228-4954-93eb-ebb7036dc288", + "title": "Ytelse", + "description": "", + "requirements": [ + { + "id": "2a1954fb-55a7-418d-ba33-7ad7ba835315", + "title": "Trekkraft for tilhenger", + "description": "", + "needId": "30835af7-d228-4954-93eb-ebb7036dc288", + "type": "requirement", + "variants": [ + { + "id": "71841596-6630-4ca4-b0e0-0dbeedc9918f", + "requirementText": "Oppgi maksimal hengervekt dersom bilen er påmontert hengerfeste:", + "instruction": "Benyttes fortrinnsvis i tilfeller hvor man stiller krav om påmontert hengerfeste.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "f2dee43f-ea7c-407d-92eb-cf4aa89bc29e", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 2500, + "step": 50, + "unit": "kg", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Maksimal hengervekt" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "37f5ea54-87c7-4e9c-a01d-3d17dd1c5df6", + "title": "Rekkevidde", + "description": "", + "needId": "30835af7-d228-4954-93eb-ebb7036dc288", + "type": "requirement", + "variants": [ + { + "id": "64ee25d5-b666-4900-a438-229dcace37eb", + "requirementText": "Bilen skal være testet og oppnådd målt rekkevidde på minimum 200 km WLTP.", + "instruction": "Brukes i utgangspunket for alle biler som kun småkjøres gjennom arbeidsdagen.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "be949330-fbf8-44a0-83d1-bf27c8920395", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Minimum 200 km WLTP" + }, + { + "id": "3078866b-0551-4aee-94bb-d220c8fd749e", + "requirementText": "Bilen skal være testet og oppnådd målt rekkevidde på minimum 350 km WLTP.", + "instruction": "Brukes i utgangspunket for alle biler som er beregnet på blandet kjøring eller tidvis lengre turer.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "4c557b8e-3c64-4402-8a30-495a7048348a", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Minimum 350 km WLTP" + }, + { + "id": "6624c39b-f9d0-4403-a6d8-d5fdab6ff9d3", + "requirementText": "Oppgi hvor mange km WLTP bilen er testet til:", + "instruction": "Benyttes når de to andre variantene ikke er egnet.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "6eec190e-9643-4955-8c95-010c67b552da", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "e7f7f9a5-90a5-42be-ad68-abe557081fff", + "type": "Q_SLIDER", + "config": { + "min": 200, + "max": 1000, + "step": 1, + "unit": "km WLTP", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": "200" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Angitt rekkevidde" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "925545a4-c671-4495-9146-79ed1ea21518", + "title": "Lading", + "description": "", + "requirements": [ + { + "id": "d9292336-3e07-4f04-8579-45ce5f79afbb", + "title": "Mode 2 - Sakte lading eller nødlading", + "description": "", + "needId": "925545a4-c671-4495-9146-79ed1ea21518", + "type": "requirement", + "variants": [ + { + "id": "9def52e3-b9b9-4478-956c-d70f8af98912", + "requirementText": "Bilen skal leveres med støtte for Mode 2 ladesystem. Kabel skal følge med.", + "instruction": "Ved Mode 2 lading benyttes det også standard-kontakter, men det lades med en ladekabel som er semi-aktiv. Det vil si at ladekabelen har innebygde sikkerhetsfunksjoner som delvis håndterer de risikoene som kan oppstå ved lading.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "ac70f92c-1f0c-4fc0-9862-fa5c8c2818fb", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Mode 2" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "989bb5af-8a31-41a1-99a8-6f80f5f39810", + "title": "Mode 3 - Normallading med fastmontert ladestasjon", + "description": "", + "needId": "925545a4-c671-4495-9146-79ed1ea21518", + "type": "requirement", + "variants": [ + { + "id": "f577cf63-18f1-41a2-9a55-9ebfce611aac", + "requirementText": "Bilen skal leveres med støtte for Mode 3 type 1 ladesystem. Kabel skal følge med.", + "instruction": "Støtte for sakte og hurtigere lading med kontakt utviklet for det amerikanse markedet. Brukes kun når du vet at dette er standard hos deg.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "3ff49758-b753-42f8-9cfd-142c0c429add", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Mode 3 type 1" + }, + { + "id": "fe6c95c4-b8c4-4ab2-aa64-dc8837fb57b1", + "requirementText": "Bilen skal leveres med støtte for Mode 3 type 2 ladesystem. Kabel skal følge med.", + "instruction": "Støtte for sakte og hurtigere lading med kontakt utviklet for det europeiske markedet. Som hovedregel benyttes dette kravet i Norge.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "8cfc31f3-fd2c-4503-bb84-4891335d99ca", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Mode 3 type 2" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "2460ce7a-107f-46e5-af81-d04246beb174", + "title": "Mode 4 - Hurtiglading", + "description": "", + "needId": "925545a4-c671-4495-9146-79ed1ea21518", + "type": "requirement", + "variants": [ + { + "id": "9f6910a1-baac-478b-a7e9-fac96c91d000", + "requirementText": "Bilen skal leveres med støtte for Mode 4 type CCS ladesystem. Kabel skal følge med.", + "instruction": "Støtte for hurtiglading med kontakt som brukes eller fases inn i Norge.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "b3252be2-8ead-401c-85e3-5e47e96e8ffa", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Mode 4 type CCS" + }, + { + "id": "92589666-8f73-40d4-8792-0387db74461e", + "requirementText": "Bilen skal leveres med støtte for Mode 4 type CHAdeMO ladesystem. Kabel skal følge med.", + "instruction": "Støtte for hurtiglading med kontakt som er under utfasing i Norge. Brukes kun i tilfeller hvor eksisterende anlegg benytter CHAdeMO og ikke er planlagt byttet ut på kort sikt.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "7c14d886-d56f-4e60-a1fe-3699d0f9429a", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Mode 4 type CHAdeMO" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "e25eed11-f6a9-4b68-bd88-0e60e72fbf5b", + "title": "Interiør", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "9d94e11d-4096-4cee-a2f3-bea56974cc30", + "title": "Sitteplasser", + "description": "", + "requirements": [ + { + "id": "5c9bacc1-5963-406a-a3b1-27481a783098", + "title": "Sitteplasser foran", + "description": "", + "needId": "9d94e11d-4096-4cee-a2f3-bea56974cc30", + "type": "requirement", + "variants": [ + { + "id": "649ffae0-aca5-43b9-ae6c-977fdea49495", + "requirementText": "Bilen skal ha to sitteplasser foran.", + "instruction": "Velges dersom man ønsker å motta tilbud utelukkende med to sitteplasser foran.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e" + ], + "questions": [ + { + "id": "148d5858-3f8e-480f-aafd-a8738e9592e8", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "To sitteplasser" + }, + { + "id": "e259ff55-18ad-46fb-91f7-d3e221ffb839", + "requirementText": "Oppgi antall sitteplasser foran:", + "instruction": "Brukes i hovedsak når man ønsker 1 eller 3 sitterplasser foran, eller aksepterer eksempelvis 2-3 sitteplasser foran.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "1b3f45dc-d876-42f5-a219-831f09994625", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 3, + "step": 1, + "unit": "sitteplasser", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": 1 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Angitt antall sitteplasser" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "a0242b93-22af-4d4f-a687-0910083e401b", + "title": "Sitteplasser bak", + "description": "", + "needId": "9d94e11d-4096-4cee-a2f3-bea56974cc30", + "type": "requirement", + "variants": [ + { + "id": "5942e0aa-eeaa-49c5-b2cc-99df72dc44b2", + "requirementText": "Bilen skal ikke ha sitteplasser utover sitteplassene foran.", + "instruction": "Brukes dersom man ønsker at bilen ikke skal ha sitteplasser bak.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82" + ], + "questions": [ + { + "id": "9698a5ec-fb2e-4b7a-94c0-c792d10ff537", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Ingen sitteplasser" + }, + { + "id": "5e5c4dc1-4c7a-4b20-a8ab-1b828162a4f8", + "requirementText": "Bilen skal ha tre sitteplasser bak.", + "instruction": "Velges dersom man ønsker å motta tilbud utelukkende med tre sitteplasser bak.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82" + ], + "questions": [ + { + "id": "e4fe1508-34c6-49e1-93bd-763600b92fc7", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tre sitteplasser" + }, + { + "id": "fcff32ad-faa7-4d69-b1f1-adc85d144847", + "requirementText": "Oppgi antall sitteplasser bak:", + "instruction": "Brukes i hovedsak når man ønsker et annet antall enn tre sitterplasser bak, eller aksepterer eksempelvis 1-5 sitteplasser bak.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82" + ], + "questions": [ + { + "id": "e20ed2dd-44e6-4fc8-b054-17edd226fed5", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 5, + "step": 1, + "unit": "sitteplasser", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": 1 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Angitt antall sitteplasser" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "e25eed11-f6a9-4b68-bd88-0e60e72fbf5b", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "6bd6fb37-2399-4734-b08e-41673568b6dc", + "title": "Bagasjerom/lasteplass", + "description": "", + "requirements": [ + { + "id": "474b9072-8ed7-41dc-9a6c-52f8469539f5", + "title": "Bagasjerom foran", + "description": "", + "needId": "6bd6fb37-2399-4734-b08e-41673568b6dc", + "type": "requirement", + "variants": [ + { + "id": "084ba585-2ecd-4a67-bbda-a1ee2f7f9e84", + "requirementText": "Det skal være eget bagasjerom foran i bilen.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82" + ], + "questions": [ + { + "id": "bb642602-8889-4502-9d8b-b95f78c5104c", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Bagasjerom foran" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "630dadb4-2b23-4eda-a867-4c1553e36021", + "title": "Dører", + "description": "", + "requirements": [ + { + "id": "08e73686-a56c-49ad-8559-837ea869208b", + "title": "Dører foran", + "description": "", + "needId": "630dadb4-2b23-4eda-a867-4c1553e36021", + "type": "requirement", + "variants": [ + { + "id": "7f01c12b-91df-41ff-82dd-1d22ddfdca75", + "requirementText": "Bilen skal leveres med to dører foran.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6", + "b662684a-3f6b-4599-8452-ab699b0c83be" + ], + "questions": [ + { + "id": "563f0486-aa24-4581-95e8-eb0783ff817a", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "2 dører" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "c4cfb797-1eb6-415f-8a5c-b149e460a18f", + "title": "Dører bak", + "description": "", + "needId": "630dadb4-2b23-4eda-a867-4c1553e36021", + "type": "requirement", + "variants": [ + { + "id": "8812c047-0c10-4460-b79d-4cd7d1243834", + "requirementText": "Bilen skal leveres med 2 dører bak.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82" + ], + "questions": [ + { + "id": "07f949c6-d0d5-4108-b96f-b7bd23d1ff22", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "2 dører" + }, + { + "id": "86b3d0b3-9dc1-4d3e-9aa2-46540e4021bb", + "requirementText": "Bilen skal leveres uten dører bak.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "6eec190e-9643-4955-8c95-010c67b552da", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "5f3c13d3-9dd4-4250-bae2-bfffad7aca6b", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Ingen dører bak" + }, + { + "id": "f565c4f7-7d06-4c0e-8856-ddfe613195ea", + "requirementText": "Bilen leveres med skyvedør på høyre side.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6", + "57706570-7442-485a-9c67-083a7a3e73ef" + ], + "questions": [ + { + "id": "8b54daa6-a98a-47e1-891f-b885ae00346c", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Skyvedør på høyre side" + }, + { + "id": "04892c71-5a68-42e8-b326-9077284187ce", + "requirementText": "Bilen leveres med skyvedør på begge sider.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "2b1f27e4-3872-4bb1-a17c-5e7b24a0e293", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Skyvedør på begge sider" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "0b97ca3a-6080-42bb-b248-ee2a2c3ee27f", + "title": "Dør til bagasjerom/lasterom", + "description": "", + "needId": "630dadb4-2b23-4eda-a867-4c1553e36021", + "type": "requirement", + "variants": [ + { + "id": "6433d404-ff43-4fb2-8f3f-453e2aad65cf", + "requirementText": "Bilen leveres med topphengslet dør til bagasjerom/lasterom.", + "instruction": "Dette er det vanligste alternativet.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "25c771a5-5b01-4169-837e-5ae986ed5139", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Topphengslet" + }, + { + "id": "4130f371-85c6-445e-b553-88a5ff9a642b", + "requirementText": "Bilen leveres med sidehengslet dør, montert på høyre side, til bagasjerom/lasterom.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "57706570-7442-485a-9c67-083a7a3e73ef", + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "c3a19e16-0350-483c-b29a-1af2b11fa377", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Sidehengslet (høyre)" + }, + { + "id": "5e0caf1f-341c-4bcc-a875-af06fe57a274", + "requirementText": "Bilen leveres med sidehengslet dør, montert på venstre side, til bagasjerom/lasterom.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "57706570-7442-485a-9c67-083a7a3e73ef", + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae" + ], + "questions": [ + { + "id": "86c4747a-28c4-4019-8906-0f6cdb500d70", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Sidehengslet (venstre)" + }, + { + "id": "0f362237-228e-4170-9948-7f923d8b954c", + "requirementText": "Bilen leveres med sidehengslede dører, montert på begge sider, til bagasjerom/lasterom.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "57706570-7442-485a-9c67-083a7a3e73ef", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "46f77661-afef-414c-92e3-61c9fb4b92eb", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Sidehengslet (begge sider)" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "dbac2fb8-c0a4-4b66-abfb-910e03bd4e70", + "title": "Dekk", + "description": "", + "requirements": [ + { + "id": "3b77d08d-adcb-43f7-98c5-b56ab8826d7b", + "title": "Skodd for årstid", + "description": "", + "needId": "dbac2fb8-c0a4-4b66-abfb-910e03bd4e70", + "type": "requirement", + "variants": [ + { + "id": "09321b5b-5985-4a22-9ee5-594c527c5db8", + "requirementText": "Bilen(e) skal leveres skodd for årstiden for leveranse.", + "instruction": "Brukes i tilfeller hvor bilen(e) skal leveres med dekk for to årstider.", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "1c7d2c6c-04a5-4c36-bf17-93e42affd7dc", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Gjeldende årstid" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "f9bf9ae0-bb94-43c5-86a9-ddb9e21ec23f", + "title": "Sommerdekk", + "description": "", + "needId": "dbac2fb8-c0a4-4b66-abfb-910e03bd4e70", + "type": "requirement", + "variants": [ + { + "id": "4200a375-0c03-422b-b98f-fb039a8f1bd7", + "requirementText": "Bilen skal leveres med ett sett sommerdekk.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "0b52d716-f3a9-4bb4-8ffd-ab2651c95a68", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Sommerdekk" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "c284e29d-334a-435e-86da-48931f57a616", + "title": "Vinterdekk", + "description": "", + "needId": "dbac2fb8-c0a4-4b66-abfb-910e03bd4e70", + "type": "requirement", + "variants": [ + { + "id": "a6ab39b5-e59a-42a8-895e-15ab90e3e74d", + "requirementText": "Bilen leveres med ett sett vinterdekk med pigg.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "476e1654-dbbb-40b4-ae6c-9f3356048709", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Piggdekk" + }, + { + "id": "bc4141c2-69b3-4224-ab68-daadc02125dc", + "requirementText": "Bilen leveres med ett sett vinterdekk uten pigg.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "b071e7f5-a580-4307-a708-18612016f2cd", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Piggfritt" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "8e991d1d-cf7d-4195-86db-76d73370c49e", + "title": "Service", + "description": "", + "requirements": [ + { + "id": "32d39821-6f64-49b0-926f-62750b3a6258", + "title": "Hente- og bringetjeneste", + "description": "", + "needId": "8e991d1d-cf7d-4195-86db-76d73370c49e", + "type": "requirement", + "variants": [ + { + "id": "6d1e3c77-7cf5-4525-b905-1f797f42e956", + "requirementText": "Leverandør må kunne tilby hente- og bringetjeneste ved periodisk service, vedlikehold og annet ved behov.", + "instruction": "Brukes som hovedregel dersom man ikke har nok kapasitet i egen bilflåte til å understøtte dette på egenhånd.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "4b35389b-1c72-492a-9aa1-af71b4674206", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tilbud om tjeneste" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "349e9811-1091-44df-bd75-6e1bdb70dd1a", + "title": "Erstatningsbil ved verkstedsbesøk", + "description": "", + "needId": "8e991d1d-cf7d-4195-86db-76d73370c49e", + "type": "requirement", + "variants": [ + { + "id": "83171f7f-a627-4dc5-93cb-0c770aeba676", + "requirementText": "Leverandøren skal kunne tilby tilsvarende erstatningsbil ved periodisk service og andre verkstedsbesøk.", + "instruction": "Brukes som hovedregel.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "57706570-7442-485a-9c67-083a7a3e73ef", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "7613bca5-0aa2-4e00-8bb3-6234cbf93e2e", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tilbud om tjeneste" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "b0345e40-77f3-41ca-9b61-f8a900622a8c", + "title": "Utseende", + "description": "", + "requirements": [ + { + "id": "27ff4fdc-5c3f-45bf-adaa-936254d521ec", + "title": "Farge", + "description": "", + "needId": "b0345e40-77f3-41ca-9b61-f8a900622a8c", + "type": "requirement", + "variants": [ + { + "id": "82a0de46-76fb-4cf2-9e14-f7da021e0f6e", + "requirementText": "Bilen skal leveres i nøytral lys farge, for eksempel grå, sølvgrå eller hvit.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "84848a60-9645-4d62-a34b-c3847537f864", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Nøytral lys farge" + }, + { + "id": "371f67fc-0a88-4252-9970-29c525dda450", + "requirementText": "Bilen skal leveres i nøytral mørge farge, for eksempel mørk grå, sort eller mørk blå.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "35901179-56aa-403b-893f-0d0072ba437f", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Nøytral mørk farge" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "title": "Utstyr", + "description": "", + "requirements": [ + { + "id": "7e17aa2f-e51c-4970-b941-e9a091aef692", + "title": "Hengerfeste", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "7625f820-882a-4f53-a5d1-d08fdad87de8", + "requirementText": "Bilen leveres med godkjent hengerfeste med modeltilpasset ledningsnett.", + "instruction": "Brukes dersom man ønsker at bilen leveres med hengerfeste.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "a3194e08-8271-4155-98a9-860a8c453269", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Leveres med hengerfest" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "a0247f6d-92be-4a72-aaea-6be678e2141a", + "title": "Lasteromsmatte", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "aea24fda-7b31-45cb-b15b-5afb669209fa", + "requirementText": "Bilen skal leveres med lasteromsmatte/-beskyttelse.", + "instruction": "Brukes dersom bruken av bilen tilsier at slik matte/beskyttelse vil forlenge bilens levetid.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "66ae0d3d-e090-4b53-95c8-bacf10e8f259", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Levert med lasteromsmatte" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "1de14d20-4d47-401d-9957-e121caad7a9b", + "title": "Handsfree", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "77bf3652-f369-4bf6-8810-9e13cff44a26", + "requirementText": "Bilen skal være utstyrt med handsfreeløsning over Bluetooth.", + "instruction": "Anbefalt brukt ved de fleste anskaffelser av bil.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "6eec190e-9643-4955-8c95-010c67b552da", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "55845b56-f335-46bc-a214-01089d7c6a0e", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Montert handsfree" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "1212cc2e-313d-4811-8001-50963bdcf28c", + "title": "Radio", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "69e8efaf-6262-4f41-a16b-7647c30f5bc8", + "requirementText": "Bilen skal være utstyrt med radio med støtte for DAB+.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "5f5c02a9-75bf-4307-9f93-ce28b0d3b662", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "DAB+-radio" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "a68e7be5-b945-4b11-ba1f-609214046962", + "title": "Ryggevarsel", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "510f30c6-69f6-4a99-b43d-92486caf1f38", + "requirementText": "Bilen skal leveres med ferdig montert ryggevarsel.", + "instruction": "Brukes på biler man ønsker skal pipe når den rygger.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "57706570-7442-485a-9c67-083a7a3e73ef", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6", + "b662684a-3f6b-4599-8452-ab699b0c83be" + ], + "questions": [ + { + "id": "fcc49d08-aba8-440c-a71c-9f8be45c6c1a", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Ferdig montert" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "9be41d0f-479b-4e39-9793-c15f6f3df119", + "title": "Ryggekamera", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "c65b477a-fb35-41e4-b440-a531eb39b3d1", + "requirementText": "Bilen skal være utstyrt med ryggekamera.", + "instruction": "Brukes dersom bilen skal ha skjerm som støtter sjåfør ved rygging.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "4b7b7be9-cc1b-4b49-ae91-ce8867d509e3", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Ferdig montert" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "d87525ab-08fe-46f6-9539-c491adbd0583", + "title": "Parkeringssensor", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "6e914bd8-2fbd-463e-a76c-def9446c859d", + "requirementText": "Bilen leveres med to parkeringssensorer bak, en på hver side, som gir lydsignal i bilen når man nærmer seg gjenstander/folk/fe som registreres av sensor(ene).", + "instruction": "Brukes dersom man har behov for parkeringssensorer bak.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "57e5e445-d621-4c48-9445-622366a531bf", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "To sensorer bak" + }, + { + "id": "7c6aebea-9f64-42ea-a196-7f4dae307db9", + "requirementText": "Bilen leveres med to parkeringssensorer bak, en på hver side, og to parkeringssenorer foran, en på hver side, som gir lydsignal i bilen når man nærmer seg gjenstander/folk/fe som registreres av sensor(ene).", + "instruction": "Brukes som hovedregel.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "3ba09985-023c-4ef2-9813-6e0a6c4cfdc1", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "To senorer bak og to sensorer foran" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "d8e25db7-888b-437d-bfce-181ecab15778", + "title": "Setevarme", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "3603e6c1-218a-4a2b-a756-de3f92585e99", + "requirementText": "Bilen leveres med setevarme på sitteplassene foran.", + "instruction": "Brukes som hovedregel.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "af6782f0-e653-42df-80e7-6d5debbae561", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Setevarme foran" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "3450166c-0022-4b87-ad11-ded2c9d111d5", + "title": "Klimaanlegg (Air condition)", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "a23872e0-bacc-4f02-a473-e14e65ed2df6", + "requirementText": "Bilen skal være utstyrt med klimaanlegg.", + "instruction": "Brukes som hovedregel.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "04c830d3-9a75-4b12-8961-f6133c364ec2", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Ferdig montert" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "2df3ab16-45a5-43b2-94a9-07abb91216cc", + "title": "Påbudt sikkerhetsutstyr", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "5199d927-2c6b-4b06-b84b-edc29586be92", + "requirementText": "Bilen skal leveres med godkjent varseltrekant og refleksvest som skal oppbevares ihht. regelverk.", + "instruction": "Brukes alltid.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "68f62c54-c46c-478e-ae17-12bad5288f8d", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Varseltrekant og refleksvest" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "2717cb6c-72f9-4e0c-8081-1479ddbd5173", + "title": "Førstehjelpsutstyr", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "6cfbeb90-3a1f-4529-9e81-6eb87ad9238e", + "requirementText": "Bilen skal leveres med pute med førstehjelpsutstyr.", + "instruction": "Bør ansees som minimum.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "487411be-f144-418a-b90c-1d381d4925e5", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Pute med førstehjelpsutstyr" + }, + { + "id": "0e45f2da-cd3f-4650-9b60-6a8e527d9921", + "requirementText": "Bilen skal leveres med fastmontert skrin med førstehjelpsutstyr.", + "instruction": "Anbefales brukt i arbeidsbiler.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "6eec190e-9643-4955-8c95-010c67b552da", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "b41de238-759f-4c6e-a77f-87051f2cc0fd", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Skrin med førstehjelpsutstyr" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "43866b18-9cad-4405-9d88-7f5891320f20", + "title": "Lys", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "cebe39ce-25a9-498b-ba4c-684cef6513ff", + "title": "Sikkerhet", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "43a0b886-3cd2-45b9-b0c8-ff7daf7a1035", + "title": "LCC", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "7527ba6a-12ea-4b9e-9ba0-c48ac22c1827", + "title": "Miljø", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "codelist": [], + "products": [ + { + "id": "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "title": "El-bil", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "fab4ddba-c6c7-493f-a24b-70bf3b4c6443", + "title": "Kassebil", + "description": "", + "type": "product", + "parent": "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null, + "deletedDate": "2022-10-24T14:37:41.698Z", + "unit": "stk" + }, + { + "id": "57706570-7442-485a-9c67-083a7a3e73ef", + "title": "Personbil", + "description": "", + "type": "product", + "parent": "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "title": "Kombi", + "description": "", + "type": "product", + "parent": "57706570-7442-485a-9c67-083a7a3e73ef", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "6eec190e-9643-4955-8c95-010c67b552da", + "title": "Mikrobil", + "description": "", + "type": "product", + "parent": "57706570-7442-485a-9c67-083a7a3e73ef", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "title": "Sedan", + "description": "", + "type": "product", + "parent": "57706570-7442-485a-9c67-083a7a3e73ef", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "8b12d26e-4772-4a33-b709-6447706f8b82", + "title": "Stasjonsvogn", + "description": "", + "type": "product", + "parent": "57706570-7442-485a-9c67-083a7a3e73ef", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "b662684a-3f6b-4599-8452-ab699b0c83be", + "title": "Pick-up", + "description": "", + "type": "product", + "parent": "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "cca9fdd8-5024-46a7-9d22-93c1f293e4d6", + "title": "Varebil", + "description": "", + "type": "product", + "parent": "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + } + ], + "publications": [ + { + "id": "92b9bd96-984c-44cd-b051-bfcd04bb1115", + "bankId": "92b9bd96-984c-44cd-b051-bfcd04bb1115", + "comment": "Første utgave", + "date": "2022-10-24T16:43:01.005Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + }, + { + "id": "635a7430-f248-4884-a4d9-83b247b348e1", + "bankId": "635a7430-f248-4884-a4d9-83b247b348e1", + "comment": "Rettelser", + "date": "2022-10-24T16:53:57.969Z", + "type": "publication", + "version": 2, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + }, + { + "id": "1af3f003-11a8-4805-8a07-e81717d34317", + "bankId": "1af3f003-11a8-4805-8a07-e81717d34317", + "comment": "Versjon 3", + "date": "2022-10-28T07:49:18.497Z", + "type": "publication", + "version": 3, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + } + ], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "635a7430-f248-4884-a4d9-83b247b348e1", + "title": "El-bil inntil 3,5 tonn", + "description": "", + "needs": [ + { + "id": "c06819bc-0459-43fc-bc06-5e44fb538b14", + "title": "Levering", + "description": "", + "requirements": [ + { + "id": "99b35df9-27fd-4486-ae39-8701c5a2dda5", + "title": "Leveringstidspunkt", + "description": "", + "needId": "c06819bc-0459-43fc-bc06-5e44fb538b14", + "type": "requirement", + "variants": [ + { + "id": "1bf2d7c5-f880-4387-b465-7fe6c62e77f1", + "requirementText": "Bilen(e) skal leveres klar til bruk innen 3 måneder.", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "8171b24f-5361-470c-b688-17233f91d5ae", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Innen 3 måneder" + }, + { + "id": "c12ac64e-923d-4802-9b2a-4de492ad0f54", + "requirementText": "Bilen(e) skal leveres klar til bruk innen 6 måneder.", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "3533cf12-c92c-4dab-b57f-13a1f127e619", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Innen 6 måneder" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "1077fe91-b42e-4fff-9663-533fed23a88d", + "title": "Leveringssted", + "description": "", + "needId": "c06819bc-0459-43fc-bc06-5e44fb538b14", + "type": "requirement", + "variants": [ + { + "id": "38ba639c-a186-4b09-9600-4da42e38a16b", + "requirementText": "Bilen(e) må leveres på følgende adresse for å være ansett som levert:", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "c55da865-4e7f-45f5-91eb-d2995c24127b", + "type": "Q_TEXT", + "config": { + "max": 1000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Angitt adresse" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "e72fd4f7-5971-4ea3-804c-a1d8ae813e45", + "title": "Egnethet", + "description": "", + "requirements": [ + { + "id": "8a15488d-50fc-44db-9de3-2cacd62cd7d5", + "title": "Bruk", + "description": "", + "needId": "e72fd4f7-5971-4ea3-804c-a1d8ae813e45", + "type": "requirement", + "variants": [ + { + "id": "ff2497e9-52a8-49d0-ad45-78a4ec9366d1", + "requirementText": "Bil skal være godt egnet til helårsbruk under nordiske forhold.", + "instruction": "Brukes dersom bilen skal benyttes gjennom hele året.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "c63ad29b-0b62-4a37-8e63-cb9fb5ca4914", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Helårsbruk i Norden" + }, + { + "id": "fe38eac3-5ac0-400d-85d5-c48b5da826dd", + "requirementText": "Bil skal være godt egnet til bruk i sommerhalvåret (fom. april- tom. oktober) under nordiske forhold.", + "instruction": "Brukes dersom bilen bare benyttes på bart føre.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6", + "b662684a-3f6b-4599-8452-ab699b0c83be" + ], + "questions": [ + { + "id": "3c770ccb-266c-40ed-8128-a41a29d37b6b", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Bruk kun i sommerhalvåret" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "30835af7-d228-4954-93eb-ebb7036dc288", + "title": "Ytelse", + "description": "", + "requirements": [ + { + "id": "2a1954fb-55a7-418d-ba33-7ad7ba835315", + "title": "Trekkraft for tilhenger", + "description": "", + "needId": "30835af7-d228-4954-93eb-ebb7036dc288", + "type": "requirement", + "variants": [ + { + "id": "71841596-6630-4ca4-b0e0-0dbeedc9918f", + "requirementText": "Oppgi maksimal hengervekt dersom bilen er påmontert hengerfeste:", + "instruction": "Benyttes fortrinnsvis i tilfeller hvor man stiller krav om påmontert hengerfeste.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "f2dee43f-ea7c-407d-92eb-cf4aa89bc29e", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 2500, + "step": 50, + "unit": "kg", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Maksimal hengervekt" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "37f5ea54-87c7-4e9c-a01d-3d17dd1c5df6", + "title": "Rekkevidde", + "description": "", + "needId": "30835af7-d228-4954-93eb-ebb7036dc288", + "type": "requirement", + "variants": [ + { + "id": "64ee25d5-b666-4900-a438-229dcace37eb", + "requirementText": "Bilen skal være testet og oppnådd målt rekkevidde på minimum 200 km WLTP.", + "instruction": "Brukes i utgangspunket for alle biler som kun småkjøres gjennom arbeidsdagen.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "be949330-fbf8-44a0-83d1-bf27c8920395", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Minimum 200 km WLTP" + }, + { + "id": "3078866b-0551-4aee-94bb-d220c8fd749e", + "requirementText": "Bilen skal være testet og oppnådd målt rekkevidde på minimum 350 km WLTP.", + "instruction": "Brukes i utgangspunket for alle biler som er beregnet på blandet kjøring eller tidvis lengre turer.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "4c557b8e-3c64-4402-8a30-495a7048348a", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Minimum 350 km WLTP" + }, + { + "id": "6624c39b-f9d0-4403-a6d8-d5fdab6ff9d3", + "requirementText": "Oppgi hvor mange km WLTP bilen er testet til:", + "instruction": "Benyttes når de to andre variantene ikke er egnet.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "6eec190e-9643-4955-8c95-010c67b552da", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "e7f7f9a5-90a5-42be-ad68-abe557081fff", + "type": "Q_SLIDER", + "config": { + "min": 200, + "max": 1000, + "step": 1, + "unit": "km WLTP", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": "200" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Angitt rekkevidde" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "925545a4-c671-4495-9146-79ed1ea21518", + "title": "Lading", + "description": "", + "requirements": [ + { + "id": "d9292336-3e07-4f04-8579-45ce5f79afbb", + "title": "Mode 2 - Sakte lading eller nødlading", + "description": "", + "needId": "925545a4-c671-4495-9146-79ed1ea21518", + "type": "requirement", + "variants": [ + { + "id": "9def52e3-b9b9-4478-956c-d70f8af98912", + "requirementText": "Bilen skal leveres med støtte for Mode 2 ladesystem. Kabel skal følge med.", + "instruction": "Ved Mode 2 lading benyttes det også standard-kontakter, men det lades med en ladekabel som er semi-aktiv. Det vil si at ladekabelen har innebygde sikkerhetsfunksjoner som delvis håndterer de risikoene som kan oppstå ved lading.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "ac70f92c-1f0c-4fc0-9862-fa5c8c2818fb", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Mode 2" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "989bb5af-8a31-41a1-99a8-6f80f5f39810", + "title": "Mode 3 - Normallading med fastmontert ladestasjon", + "description": "", + "needId": "925545a4-c671-4495-9146-79ed1ea21518", + "type": "requirement", + "variants": [ + { + "id": "f577cf63-18f1-41a2-9a55-9ebfce611aac", + "requirementText": "Bilen skal leveres med støtte for Mode 3 type 1 ladesystem. Kabel skal følge med.", + "instruction": "Støtte for sakte og hurtigere lading med kontakt utviklet for det amerikanse markedet. Brukes kun når du vet at dette er standard hos deg.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "3ff49758-b753-42f8-9cfd-142c0c429add", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Mode 3 type 1" + }, + { + "id": "fe6c95c4-b8c4-4ab2-aa64-dc8837fb57b1", + "requirementText": "Bilen skal leveres med støtte for Mode 3 type 2 ladesystem. Kabel skal følge med.", + "instruction": "Støtte for sakte og hurtigere lading med kontakt utviklet for det europeiske markedet. Som hovedregel benyttes dette kravet i Norge.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "8cfc31f3-fd2c-4503-bb84-4891335d99ca", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Mode 3 type 2" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "2460ce7a-107f-46e5-af81-d04246beb174", + "title": "Mode 4 - Hurtiglading", + "description": "", + "needId": "925545a4-c671-4495-9146-79ed1ea21518", + "type": "requirement", + "variants": [ + { + "id": "9f6910a1-baac-478b-a7e9-fac96c91d000", + "requirementText": "Bilen skal leveres med støtte for Mode 4 type CCS ladesystem. Kabel skal følge med.", + "instruction": "Støtte for hurtiglading med kontakt som brukes eller fases inn i Norge.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "b3252be2-8ead-401c-85e3-5e47e96e8ffa", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Mode 4 type CCS" + }, + { + "id": "92589666-8f73-40d4-8792-0387db74461e", + "requirementText": "Bilen skal leveres med støtte for Mode 4 type CHAdeMO ladesystem. Kabel skal følge med.", + "instruction": "Støtte for hurtiglading med kontakt som er under utfasing i Norge. Brukes kun i tilfeller hvor eksisterende anlegg benytter CHAdeMO og ikke er planlagt byttet ut på kort sikt.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "7c14d886-d56f-4e60-a1fe-3699d0f9429a", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Mode 4 type CHAdeMO" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "e25eed11-f6a9-4b68-bd88-0e60e72fbf5b", + "title": "Interiør", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "9d94e11d-4096-4cee-a2f3-bea56974cc30", + "title": "Sitteplasser", + "description": "", + "requirements": [ + { + "id": "5c9bacc1-5963-406a-a3b1-27481a783098", + "title": "Sitteplasser foran", + "description": "", + "needId": "9d94e11d-4096-4cee-a2f3-bea56974cc30", + "type": "requirement", + "variants": [ + { + "id": "649ffae0-aca5-43b9-ae6c-977fdea49495", + "requirementText": "Bilen skal ha to sitteplasser foran.", + "instruction": "Velges dersom man ønsker å motta tilbud utelukkende med to sitteplasser foran.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e" + ], + "questions": [ + { + "id": "148d5858-3f8e-480f-aafd-a8738e9592e8", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "To sitteplasser" + }, + { + "id": "e259ff55-18ad-46fb-91f7-d3e221ffb839", + "requirementText": "Oppgi antall sitteplasser foran:", + "instruction": "Brukes i hovedsak når man ønsker 1 eller 3 sitterplasser foran, eller aksepterer eksempelvis 2-3 sitteplasser foran.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "1b3f45dc-d876-42f5-a219-831f09994625", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 3, + "step": 1, + "unit": "sitteplasser", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": 1 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Angitt antall sitteplasser" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "a0242b93-22af-4d4f-a687-0910083e401b", + "title": "Sitteplasser bak", + "description": "", + "needId": "9d94e11d-4096-4cee-a2f3-bea56974cc30", + "type": "requirement", + "variants": [ + { + "id": "5942e0aa-eeaa-49c5-b2cc-99df72dc44b2", + "requirementText": "Bilen skal ikke ha sitteplasser utover sitteplassene foran.", + "instruction": "Brukes dersom man ønsker at bilen ikke skal ha sitteplasser bak.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82" + ], + "questions": [ + { + "id": "9698a5ec-fb2e-4b7a-94c0-c792d10ff537", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Ingen sitteplasser" + }, + { + "id": "5e5c4dc1-4c7a-4b20-a8ab-1b828162a4f8", + "requirementText": "Bilen skal ha tre sitteplasser bak.", + "instruction": "Velges dersom man ønsker å motta tilbud utelukkende med tre sitteplasser bak.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82" + ], + "questions": [ + { + "id": "e4fe1508-34c6-49e1-93bd-763600b92fc7", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tre sitteplasser" + }, + { + "id": "fcff32ad-faa7-4d69-b1f1-adc85d144847", + "requirementText": "Oppgi antall sitteplasser bak:", + "instruction": "Brukes i hovedsak når man ønsker et annet antall enn tre sitterplasser bak, eller aksepterer eksempelvis 1-5 sitteplasser bak.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82" + ], + "questions": [ + { + "id": "e20ed2dd-44e6-4fc8-b054-17edd226fed5", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 5, + "step": 1, + "unit": "sitteplasser", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": 1 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Angitt antall sitteplasser" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "e25eed11-f6a9-4b68-bd88-0e60e72fbf5b", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "6bd6fb37-2399-4734-b08e-41673568b6dc", + "title": "Bagasjerom/lasteplass", + "description": "", + "requirements": [ + { + "id": "474b9072-8ed7-41dc-9a6c-52f8469539f5", + "title": "Bagasjerom foran", + "description": "", + "needId": "6bd6fb37-2399-4734-b08e-41673568b6dc", + "type": "requirement", + "variants": [ + { + "id": "084ba585-2ecd-4a67-bbda-a1ee2f7f9e84", + "requirementText": "Det skal være eget bagasjerom foran i bilen.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82" + ], + "questions": [ + { + "id": "bb642602-8889-4502-9d8b-b95f78c5104c", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Bagasjerom foran" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "630dadb4-2b23-4eda-a867-4c1553e36021", + "title": "Dører", + "description": "", + "requirements": [ + { + "id": "08e73686-a56c-49ad-8559-837ea869208b", + "title": "Dører foran", + "description": "", + "needId": "630dadb4-2b23-4eda-a867-4c1553e36021", + "type": "requirement", + "variants": [ + { + "id": "7f01c12b-91df-41ff-82dd-1d22ddfdca75", + "requirementText": "Bilen skal leveres med to dører foran.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6", + "b662684a-3f6b-4599-8452-ab699b0c83be" + ], + "questions": [ + { + "id": "563f0486-aa24-4581-95e8-eb0783ff817a", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "2 dører" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "c4cfb797-1eb6-415f-8a5c-b149e460a18f", + "title": "Dører bak", + "description": "", + "needId": "630dadb4-2b23-4eda-a867-4c1553e36021", + "type": "requirement", + "variants": [ + { + "id": "8812c047-0c10-4460-b79d-4cd7d1243834", + "requirementText": "Bilen skal leveres med 2 dører bak.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82" + ], + "questions": [ + { + "id": "07f949c6-d0d5-4108-b96f-b7bd23d1ff22", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "2 dører" + }, + { + "id": "86b3d0b3-9dc1-4d3e-9aa2-46540e4021bb", + "requirementText": "Bilen skal leveres uten dører bak.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "6eec190e-9643-4955-8c95-010c67b552da", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "5f3c13d3-9dd4-4250-bae2-bfffad7aca6b", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Ingen dører bak" + }, + { + "id": "f565c4f7-7d06-4c0e-8856-ddfe613195ea", + "requirementText": "Bilen leveres med skyvedør på høyre side.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6", + "57706570-7442-485a-9c67-083a7a3e73ef" + ], + "questions": [ + { + "id": "8b54daa6-a98a-47e1-891f-b885ae00346c", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Skyvedør på høyre side" + }, + { + "id": "04892c71-5a68-42e8-b326-9077284187ce", + "requirementText": "Bilen leveres med skyvedør på begge sider.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "2b1f27e4-3872-4bb1-a17c-5e7b24a0e293", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Skyvedør på begge sider" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "0b97ca3a-6080-42bb-b248-ee2a2c3ee27f", + "title": "Dør til bagasjerom/lasterom", + "description": "", + "needId": "630dadb4-2b23-4eda-a867-4c1553e36021", + "type": "requirement", + "variants": [ + { + "id": "6433d404-ff43-4fb2-8f3f-453e2aad65cf", + "requirementText": "Bilen leveres med topphengslet dør til bagasjerom/lasterom.", + "instruction": "Dette er det vanligste alternativet.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "25c771a5-5b01-4169-837e-5ae986ed5139", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Topphengslet" + }, + { + "id": "4130f371-85c6-445e-b553-88a5ff9a642b", + "requirementText": "Bilen leveres med sidehengslet dør, montert på høyre side, til bagasjerom/lasterom.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "57706570-7442-485a-9c67-083a7a3e73ef", + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "c3a19e16-0350-483c-b29a-1af2b11fa377", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Sidehengslet (høyre)" + }, + { + "id": "5e0caf1f-341c-4bcc-a875-af06fe57a274", + "requirementText": "Bilen leveres med sidehengslet dør, montert på venstre side, til bagasjerom/lasterom.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "57706570-7442-485a-9c67-083a7a3e73ef", + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae" + ], + "questions": [ + { + "id": "86c4747a-28c4-4019-8906-0f6cdb500d70", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Sidehengslet (venstre)" + }, + { + "id": "0f362237-228e-4170-9948-7f923d8b954c", + "requirementText": "Bilen leveres med sidehengslede dører, montert på begge sider, til bagasjerom/lasterom.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "57706570-7442-485a-9c67-083a7a3e73ef", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "46f77661-afef-414c-92e3-61c9fb4b92eb", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Sidehengslet (begge sider)" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "dbac2fb8-c0a4-4b66-abfb-910e03bd4e70", + "title": "Dekk", + "description": "", + "requirements": [ + { + "id": "3b77d08d-adcb-43f7-98c5-b56ab8826d7b", + "title": "Skodd for årstid", + "description": "", + "needId": "dbac2fb8-c0a4-4b66-abfb-910e03bd4e70", + "type": "requirement", + "variants": [ + { + "id": "09321b5b-5985-4a22-9ee5-594c527c5db8", + "requirementText": "Bilen(e) skal leveres skodd for årstiden for leveranse.", + "instruction": "Brukes i tilfeller hvor bilen(e) skal leveres med dekk for to årstider.", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "1c7d2c6c-04a5-4c36-bf17-93e42affd7dc", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Gjeldende årstid" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "f9bf9ae0-bb94-43c5-86a9-ddb9e21ec23f", + "title": "Sommerdekk", + "description": "", + "needId": "dbac2fb8-c0a4-4b66-abfb-910e03bd4e70", + "type": "requirement", + "variants": [ + { + "id": "4200a375-0c03-422b-b98f-fb039a8f1bd7", + "requirementText": "Bilen skal leveres med ett sett sommerdekk.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "0b52d716-f3a9-4bb4-8ffd-ab2651c95a68", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Sommerdekk" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "c284e29d-334a-435e-86da-48931f57a616", + "title": "Vinterdekk", + "description": "", + "needId": "dbac2fb8-c0a4-4b66-abfb-910e03bd4e70", + "type": "requirement", + "variants": [ + { + "id": "a6ab39b5-e59a-42a8-895e-15ab90e3e74d", + "requirementText": "Bilen leveres med ett sett vinterdekk med pigg.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "476e1654-dbbb-40b4-ae6c-9f3356048709", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Piggdekk" + }, + { + "id": "bc4141c2-69b3-4224-ab68-daadc02125dc", + "requirementText": "Bilen leveres med ett sett vinterdekk uten pigg.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "b071e7f5-a580-4307-a708-18612016f2cd", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Piggfritt" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "8e991d1d-cf7d-4195-86db-76d73370c49e", + "title": "Service", + "description": "", + "requirements": [ + { + "id": "32d39821-6f64-49b0-926f-62750b3a6258", + "title": "Hente- og bringetjeneste", + "description": "", + "needId": "8e991d1d-cf7d-4195-86db-76d73370c49e", + "type": "requirement", + "variants": [ + { + "id": "6d1e3c77-7cf5-4525-b905-1f797f42e956", + "requirementText": "Leverandør må kunne tilby hente- og bringetjeneste ved periodisk service, vedlikehold og annet ved behov.", + "instruction": "Brukes som hovedregel dersom man ikke har nok kapasitet i egen bilflåte til å understøtte dette på egenhånd.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "4b35389b-1c72-492a-9aa1-af71b4674206", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tilbud om tjeneste" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "349e9811-1091-44df-bd75-6e1bdb70dd1a", + "title": "Erstatningsbil ved verkstedsbesøk", + "description": "", + "needId": "8e991d1d-cf7d-4195-86db-76d73370c49e", + "type": "requirement", + "variants": [ + { + "id": "83171f7f-a627-4dc5-93cb-0c770aeba676", + "requirementText": "Leverandøren skal kunne tilby tilsvarende erstatningsbil ved periodisk service og andre verkstedsbesøk.", + "instruction": "Brukes som hovedregel.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "57706570-7442-485a-9c67-083a7a3e73ef", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "7613bca5-0aa2-4e00-8bb3-6234cbf93e2e", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tilbud om tjeneste" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "b0345e40-77f3-41ca-9b61-f8a900622a8c", + "title": "Utseende", + "description": "", + "requirements": [ + { + "id": "27ff4fdc-5c3f-45bf-adaa-936254d521ec", + "title": "Farge", + "description": "", + "needId": "b0345e40-77f3-41ca-9b61-f8a900622a8c", + "type": "requirement", + "variants": [ + { + "id": "82a0de46-76fb-4cf2-9e14-f7da021e0f6e", + "requirementText": "Bilen skal leveres i nøytral lys farge, for eksempel grå, sølvgrå eller hvit.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "84848a60-9645-4d62-a34b-c3847537f864", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Nøytral lys farge" + }, + { + "id": "371f67fc-0a88-4252-9970-29c525dda450", + "requirementText": "Bilen skal leveres i nøytral mørge farge, for eksempel mørk grå, sort eller mørk blå.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "35901179-56aa-403b-893f-0d0072ba437f", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Nøytral mørk farge" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "title": "Utstyr", + "description": "", + "requirements": [ + { + "id": "7e17aa2f-e51c-4970-b941-e9a091aef692", + "title": "Hengerfeste", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "7625f820-882a-4f53-a5d1-d08fdad87de8", + "requirementText": "Bilen leveres med godkjent hengerfeste med modeltilpasset ledningsnett.", + "instruction": "Brukes dersom man ønsker at bilen leveres med hengerfeste.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "a3194e08-8271-4155-98a9-860a8c453269", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Leveres med hengerfest" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "a0247f6d-92be-4a72-aaea-6be678e2141a", + "title": "Lasteromsmatte", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "aea24fda-7b31-45cb-b15b-5afb669209fa", + "requirementText": "Bilen skal leveres med lasteromsmatte/-beskyttelse.", + "instruction": "Brukes dersom bruken av bilen tilsier at slik matte/beskyttelse vil forlenge bilens levetid.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "66ae0d3d-e090-4b53-95c8-bacf10e8f259", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Levert med lasteromsmatte" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "1de14d20-4d47-401d-9957-e121caad7a9b", + "title": "Handsfree", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "77bf3652-f369-4bf6-8810-9e13cff44a26", + "requirementText": "Bilen skal være utstyrt med handsfreeløsning over Bluetooth.", + "instruction": "Anbefalt brukt ved de fleste anskaffelser av bil.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "6eec190e-9643-4955-8c95-010c67b552da", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "55845b56-f335-46bc-a214-01089d7c6a0e", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Montert handsfree" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "1212cc2e-313d-4811-8001-50963bdcf28c", + "title": "Radio", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "69e8efaf-6262-4f41-a16b-7647c30f5bc8", + "requirementText": "Bilen skal være utstyrt med radio med støtte for DAB+.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "5f5c02a9-75bf-4307-9f93-ce28b0d3b662", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "DAB+-radio" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "a68e7be5-b945-4b11-ba1f-609214046962", + "title": "Ryggevarsel", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "510f30c6-69f6-4a99-b43d-92486caf1f38", + "requirementText": "Bilen skal leveres med ferdig montert ryggevarsel.", + "instruction": "Brukes på biler man ønsker skal pipe når den rygger.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "57706570-7442-485a-9c67-083a7a3e73ef", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6", + "b662684a-3f6b-4599-8452-ab699b0c83be" + ], + "questions": [ + { + "id": "fcc49d08-aba8-440c-a71c-9f8be45c6c1a", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Ferdig montert" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "9be41d0f-479b-4e39-9793-c15f6f3df119", + "title": "Ryggekamera", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "c65b477a-fb35-41e4-b440-a531eb39b3d1", + "requirementText": "Bilen skal være utstyrt med ryggekamera.", + "instruction": "Brukes dersom bilen skal ha skjerm som støtter sjåfør ved rygging.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "4b7b7be9-cc1b-4b49-ae91-ce8867d509e3", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Ferdig montert" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "d87525ab-08fe-46f6-9539-c491adbd0583", + "title": "Parkeringssensor", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "6e914bd8-2fbd-463e-a76c-def9446c859d", + "requirementText": "Bilen leveres med to parkeringssensorer bak, en på hver side, som gir lydsignal i bilen når man nærmer seg gjenstander/folk/fe som registreres av sensor(ene).", + "instruction": "Brukes dersom man har behov for parkeringssensorer bak.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "57e5e445-d621-4c48-9445-622366a531bf", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "To sensorer bak" + }, + { + "id": "7c6aebea-9f64-42ea-a196-7f4dae307db9", + "requirementText": "Bilen leveres med to parkeringssensorer bak, en på hver side, og to parkeringssenorer foran, en på hver side, som gir lydsignal i bilen når man nærmer seg gjenstander/folk/fe som registreres av sensor(ene).", + "instruction": "Brukes som hovedregel.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "3ba09985-023c-4ef2-9813-6e0a6c4cfdc1", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "To senorer bak og to sensorer foran" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "d8e25db7-888b-437d-bfce-181ecab15778", + "title": "Setevarme", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "3603e6c1-218a-4a2b-a756-de3f92585e99", + "requirementText": "Bilen leveres med setevarme på sitteplassene foran.", + "instruction": "Brukes som hovedregel.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "af6782f0-e653-42df-80e7-6d5debbae561", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Setevarme foran" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "3450166c-0022-4b87-ad11-ded2c9d111d5", + "title": "Klimaanlegg (Air condition)", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "a23872e0-bacc-4f02-a473-e14e65ed2df6", + "requirementText": "Bilen skal være utstyrt med klimaanlegg.", + "instruction": "Brukes som hovedregel.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "04c830d3-9a75-4b12-8961-f6133c364ec2", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Ferdig montert" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "2df3ab16-45a5-43b2-94a9-07abb91216cc", + "title": "Påbudt sikkerhetsutstyr", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "5199d927-2c6b-4b06-b84b-edc29586be92", + "requirementText": "Bilen skal leveres med godkjent varseltrekant og refleksvest som skal oppbevares ihht. regelverk.", + "instruction": "Brukes alltid.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "68f62c54-c46c-478e-ae17-12bad5288f8d", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Varseltrekant og refleksvest" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "2717cb6c-72f9-4e0c-8081-1479ddbd5173", + "title": "Førstehjelpsutstyr", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "6cfbeb90-3a1f-4529-9e81-6eb87ad9238e", + "requirementText": "Bilen skal leveres med pute med førstehjelpsutstyr.", + "instruction": "Bør ansees som minimum.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "487411be-f144-418a-b90c-1d381d4925e5", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Pute med førstehjelpsutstyr" + }, + { + "id": "0e45f2da-cd3f-4650-9b60-6a8e527d9921", + "requirementText": "Bilen skal leveres med fastmontert skrin med førstehjelpsutstyr.", + "instruction": "Anbefales brukt i arbeidsbiler.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "6eec190e-9643-4955-8c95-010c67b552da", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "b41de238-759f-4c6e-a77f-87051f2cc0fd", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Skrin med førstehjelpsutstyr" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "43866b18-9cad-4405-9d88-7f5891320f20", + "title": "Lys", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "cebe39ce-25a9-498b-ba4c-684cef6513ff", + "title": "Sikkerhet", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "43a0b886-3cd2-45b9-b0c8-ff7daf7a1035", + "title": "LCC", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "7527ba6a-12ea-4b9e-9ba0-c48ac22c1827", + "title": "Miljø", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "codelist": [], + "products": [ + { + "id": "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "title": "El-bil", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "fab4ddba-c6c7-493f-a24b-70bf3b4c6443", + "title": "Kassebil", + "description": "", + "type": "product", + "parent": "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null, + "deletedDate": "2022-10-24T14:37:41.698Z", + "unit": "stk" + }, + { + "id": "57706570-7442-485a-9c67-083a7a3e73ef", + "title": "Personbil", + "description": "", + "type": "product", + "parent": "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "title": "Kombi", + "description": "", + "type": "product", + "parent": "57706570-7442-485a-9c67-083a7a3e73ef", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "6eec190e-9643-4955-8c95-010c67b552da", + "title": "Mikrobil", + "description": "", + "type": "product", + "parent": "57706570-7442-485a-9c67-083a7a3e73ef", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "title": "Sedan", + "description": "", + "type": "product", + "parent": "57706570-7442-485a-9c67-083a7a3e73ef", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "8b12d26e-4772-4a33-b709-6447706f8b82", + "title": "Stasjonsvogn", + "description": "", + "type": "product", + "parent": "57706570-7442-485a-9c67-083a7a3e73ef", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "b662684a-3f6b-4599-8452-ab699b0c83be", + "title": "Pick-up", + "description": "", + "type": "product", + "parent": "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "cca9fdd8-5024-46a7-9d22-93c1f293e4d6", + "title": "Varebil", + "description": "", + "type": "product", + "parent": "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + } + ], + "publications": [], + "tags": [], + "version": 2, + "publishedDate": "2022-10-24T16:53:57.969Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "deletedDate": null + }, + { + "id": "92b9bd96-984c-44cd-b051-bfcd04bb1115", + "title": "El-bil inntil 3,5 tonn", + "description": "", + "needs": [ + { + "id": "c06819bc-0459-43fc-bc06-5e44fb538b14", + "title": "Levering", + "description": "", + "requirements": [ + { + "id": "99b35df9-27fd-4486-ae39-8701c5a2dda5", + "title": "Leveringstidspunkt", + "description": "", + "needId": "c06819bc-0459-43fc-bc06-5e44fb538b14", + "type": "requirement", + "variants": [ + { + "id": "1bf2d7c5-f880-4387-b465-7fe6c62e77f1", + "requirementText": "Bilen(e) skal leveres klar til bruk innen 3 måneder.", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "8171b24f-5361-470c-b688-17233f91d5ae", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Innen 3 måneder" + }, + { + "id": "c12ac64e-923d-4802-9b2a-4de492ad0f54", + "requirementText": "Bilen(e) skal leveres klar til bruk innen 6 måneder.", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "3533cf12-c92c-4dab-b57f-13a1f127e619", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Innen 6 måneder" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "1077fe91-b42e-4fff-9663-533fed23a88d", + "title": "Leveringssted", + "description": "", + "needId": "c06819bc-0459-43fc-bc06-5e44fb538b14", + "type": "requirement", + "variants": [ + { + "id": "38ba639c-a186-4b09-9600-4da42e38a16b", + "requirementText": "Bilen(e) må leveres på følgende adresse for å være ansett som levert:", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "c55da865-4e7f-45f5-91eb-d2995c24127b", + "type": "Q_TEXT", + "config": { + "max": 1000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Angitt adresse" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "e72fd4f7-5971-4ea3-804c-a1d8ae813e45", + "title": "Egnethet", + "description": "", + "requirements": [ + { + "id": "8a15488d-50fc-44db-9de3-2cacd62cd7d5", + "title": "Bruk", + "description": "", + "needId": "e72fd4f7-5971-4ea3-804c-a1d8ae813e45", + "type": "requirement", + "variants": [ + { + "id": "ff2497e9-52a8-49d0-ad45-78a4ec9366d1", + "requirementText": "Bil skal være godt egnet til helårsbruk under nordiske forhold.", + "instruction": "Brukes dersom bilen skal benyttes gjennom hele året.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "c63ad29b-0b62-4a37-8e63-cb9fb5ca4914", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Helårsbruk i Norden" + }, + { + "id": "fe38eac3-5ac0-400d-85d5-c48b5da826dd", + "requirementText": "Bil skal være godt egnet til bruk i sommerhalvåret (fom. april- tom. oktober) under nordiske forhold.", + "instruction": "Brukes dersom bilen bare benyttes på bart føre.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6", + "b662684a-3f6b-4599-8452-ab699b0c83be" + ], + "questions": [ + { + "id": "3c770ccb-266c-40ed-8128-a41a29d37b6b", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Bruk kun i sommerhalvåret" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "30835af7-d228-4954-93eb-ebb7036dc288", + "title": "Ytelse", + "description": "", + "requirements": [ + { + "id": "2a1954fb-55a7-418d-ba33-7ad7ba835315", + "title": "Trekkraft for tilhenger", + "description": "", + "needId": "30835af7-d228-4954-93eb-ebb7036dc288", + "type": "requirement", + "variants": [ + { + "id": "71841596-6630-4ca4-b0e0-0dbeedc9918f", + "requirementText": "Oppgi maksimal hengervekt dersom bilen er påmontert hengerfeste:", + "instruction": "Benyttes fortrinnsvis i tilfeller hvor man stiller krav om påmontert hengerfeste.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "f2dee43f-ea7c-407d-92eb-cf4aa89bc29e", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 2500, + "step": 50, + "unit": "kg", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Maksimal hengervekt" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "37f5ea54-87c7-4e9c-a01d-3d17dd1c5df6", + "title": "Rekkevidde", + "description": "", + "needId": "30835af7-d228-4954-93eb-ebb7036dc288", + "type": "requirement", + "variants": [ + { + "id": "64ee25d5-b666-4900-a438-229dcace37eb", + "requirementText": "Bilen skal være testet og oppnådd målt rekkevidde på minimum 200 km WLTP.", + "instruction": "Brukes i utgangspunket for alle biler som kun småkjøres gjennom arbeidsdagen.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "be949330-fbf8-44a0-83d1-bf27c8920395", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Minimum 200 km WLTP" + }, + { + "id": "3078866b-0551-4aee-94bb-d220c8fd749e", + "requirementText": "Bilen skal være testet og oppnådd målt rekkevidde på minimum 350 km WLTP.", + "instruction": "Brukes i utgangspunket for alle biler som er beregnet på blandet kjøring eller tidvis lengre turer.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "4c557b8e-3c64-4402-8a30-495a7048348a", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Minimum 350 km WLTP" + }, + { + "id": "6624c39b-f9d0-4403-a6d8-d5fdab6ff9d3", + "requirementText": "Oppgi hvor mange km WLTP bilen er testet til:", + "instruction": "Benyttes når de to andre variantene ikke er egnet.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "6eec190e-9643-4955-8c95-010c67b552da", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "e7f7f9a5-90a5-42be-ad68-abe557081fff", + "type": "Q_SLIDER", + "config": { + "min": 200, + "max": 1000, + "step": 1, + "unit": "km WLTP", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": "200" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Angitt rekkevidde" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "925545a4-c671-4495-9146-79ed1ea21518", + "title": "Lading", + "description": "", + "requirements": [ + { + "id": "d9292336-3e07-4f04-8579-45ce5f79afbb", + "title": "Mode 2 - Sakte lading eller nødlading", + "description": "", + "needId": "925545a4-c671-4495-9146-79ed1ea21518", + "type": "requirement", + "variants": [ + { + "id": "9def52e3-b9b9-4478-956c-d70f8af98912", + "requirementText": "Bilen skal leveres med støtte for Mode 2 ladesystem. Kabel skal følge med.", + "instruction": "Ved Mode 2 lading benyttes det også standard-kontakter, men det lades med en ladekabel som er semi-aktiv. Det vil si at ladekabelen har innebygde sikkerhetsfunksjoner som delvis håndterer de risikoene som kan oppstå ved lading.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "ac70f92c-1f0c-4fc0-9862-fa5c8c2818fb", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Mode 2" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "989bb5af-8a31-41a1-99a8-6f80f5f39810", + "title": "Mode 3 - Normallading med fastmontert ladestasjon", + "description": "", + "needId": "925545a4-c671-4495-9146-79ed1ea21518", + "type": "requirement", + "variants": [ + { + "id": "f577cf63-18f1-41a2-9a55-9ebfce611aac", + "requirementText": "Bilen skal leveres med støtte for Mode 3 type 1 ladesystem. Kabel skal følge med.", + "instruction": "Støtte for sakte og hurtigere lading med kontakt utviklet for det amerikanse markedet. Brukes kun når du vet at dette er standard hos deg.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "3ff49758-b753-42f8-9cfd-142c0c429add", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Mode 3 type 1" + }, + { + "id": "fe6c95c4-b8c4-4ab2-aa64-dc8837fb57b1", + "requirementText": "Bilen skal leveres med støtte for Mode 3 type 2 ladesystem. Kabel skal følge med.", + "instruction": "Støtte for sakte og hurtigere lading med kontakt utviklet for det europeiske markedet. Som hovedregel benyttes dette kravet i Norge.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "8cfc31f3-fd2c-4503-bb84-4891335d99ca", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Mode 3 type 2" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "2460ce7a-107f-46e5-af81-d04246beb174", + "title": "Mode 4 - Hurtiglading", + "description": "", + "needId": "925545a4-c671-4495-9146-79ed1ea21518", + "type": "requirement", + "variants": [ + { + "id": "9f6910a1-baac-478b-a7e9-fac96c91d000", + "requirementText": "Bilen skal leveres med støtte for Mode 4 type CCS ladesystem. Kabel skal følge med.", + "instruction": "Støtte for hurtiglading med kontakt som brukes eller fases inn i Norge.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "b3252be2-8ead-401c-85e3-5e47e96e8ffa", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Mode 4 type CCS" + }, + { + "id": "92589666-8f73-40d4-8792-0387db74461e", + "requirementText": "Bilen skal leveres med støtte for Mode 4 type CHAdeMO ladesystem. Kabel skal følge med.", + "instruction": "Støtte for hurtiglading med kontakt som er under utfasing i Norge. Brukes kun i tilfeller hvor eksisterende anlegg benytter CHAdeMO og ikke er planlagt byttet ut på kort sikt.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "7c14d886-d56f-4e60-a1fe-3699d0f9429a", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Mode 4 type CHAdeMO" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "e25eed11-f6a9-4b68-bd88-0e60e72fbf5b", + "title": "Interiør", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "9d94e11d-4096-4cee-a2f3-bea56974cc30", + "title": "Sitteplasser", + "description": "", + "requirements": [ + { + "id": "5c9bacc1-5963-406a-a3b1-27481a783098", + "title": "Sitteplasser foran", + "description": "", + "needId": "9d94e11d-4096-4cee-a2f3-bea56974cc30", + "type": "requirement", + "variants": [ + { + "id": "649ffae0-aca5-43b9-ae6c-977fdea49495", + "requirementText": "Bilen skal ha to sitteplasser foran.", + "instruction": "Velges dersom man ønsker å motta tilbud utelukkende med to sitteplasser foran.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e" + ], + "questions": [ + { + "id": "148d5858-3f8e-480f-aafd-a8738e9592e8", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "To sitteplasser" + }, + { + "id": "e259ff55-18ad-46fb-91f7-d3e221ffb839", + "requirementText": "Oppgi antall sitteplasser foran:", + "instruction": "Brukes i hovedsak når man ønsker 1 eller 3 sitterplasser foran, eller aksepterer eksempelvis 2-3 sitteplasser foran.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "1b3f45dc-d876-42f5-a219-831f09994625", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 3, + "step": 1, + "unit": "sitteplasser", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": 1 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Angitt antall sitteplasser" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "a0242b93-22af-4d4f-a687-0910083e401b", + "title": "Sitteplasser bak", + "description": "", + "needId": "9d94e11d-4096-4cee-a2f3-bea56974cc30", + "type": "requirement", + "variants": [ + { + "id": "5942e0aa-eeaa-49c5-b2cc-99df72dc44b2", + "requirementText": "Bilen skal ikke ha sitteplasser utover sitteplassene foran.", + "instruction": "Brukes dersom man ønsker at bilen ikke skal ha sitteplasser bak.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82" + ], + "questions": [], + "type": "requirement", + "description": "Ingen sitteplasser" + }, + { + "id": "5e5c4dc1-4c7a-4b20-a8ab-1b828162a4f8", + "requirementText": "Bilen skal ha tre sitteplasser bak.", + "instruction": "Velges dersom man ønsker å motta tilbud utelukkende med tre sitteplasser bak.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82" + ], + "questions": [], + "type": "requirement", + "description": "Tre sitteplasser" + }, + { + "id": "fcff32ad-faa7-4d69-b1f1-adc85d144847", + "requirementText": "Oppgi antall sitteplasser bak:", + "instruction": "Brukes i hovedsak når man ønsker et annet antall enn tre sitterplasser bak, eller aksepterer eksempelvis 1-5 sitteplasser bak.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82" + ], + "questions": [ + { + "id": "e20ed2dd-44e6-4fc8-b054-17edd226fed5", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 5, + "step": 1, + "unit": "sitteplasser", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": "1" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Angitt antall sitteplasser" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "e25eed11-f6a9-4b68-bd88-0e60e72fbf5b", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "6bd6fb37-2399-4734-b08e-41673568b6dc", + "title": "Bagasjerom/lasteplass", + "description": "", + "requirements": [ + { + "id": "474b9072-8ed7-41dc-9a6c-52f8469539f5", + "title": "Bagasjerom foran", + "description": "", + "needId": "6bd6fb37-2399-4734-b08e-41673568b6dc", + "type": "requirement", + "variants": [ + { + "id": "084ba585-2ecd-4a67-bbda-a1ee2f7f9e84", + "requirementText": "Det skal være eget bagasjerom foran i bilen.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82" + ], + "questions": [ + { + "id": "bb642602-8889-4502-9d8b-b95f78c5104c", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Bagasjerom foran" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "630dadb4-2b23-4eda-a867-4c1553e36021", + "title": "Dører", + "description": "", + "requirements": [ + { + "id": "08e73686-a56c-49ad-8559-837ea869208b", + "title": "Dører foran", + "description": "", + "needId": "630dadb4-2b23-4eda-a867-4c1553e36021", + "type": "requirement", + "variants": [ + { + "id": "7f01c12b-91df-41ff-82dd-1d22ddfdca75", + "requirementText": "Bilen skal leveres med to dører foran.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6", + "b662684a-3f6b-4599-8452-ab699b0c83be" + ], + "questions": [ + { + "id": "563f0486-aa24-4581-95e8-eb0783ff817a", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "2 dører" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "c4cfb797-1eb6-415f-8a5c-b149e460a18f", + "title": "Dører bak", + "description": "", + "needId": "630dadb4-2b23-4eda-a867-4c1553e36021", + "type": "requirement", + "variants": [ + { + "id": "8812c047-0c10-4460-b79d-4cd7d1243834", + "requirementText": "Bilen skal leveres med 2 dører bak.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82" + ], + "questions": [ + { + "id": "07f949c6-d0d5-4108-b96f-b7bd23d1ff22", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "2 dører" + }, + { + "id": "86b3d0b3-9dc1-4d3e-9aa2-46540e4021bb", + "requirementText": "Bilen skal leveres uten dører bak.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "6eec190e-9643-4955-8c95-010c67b552da", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "5f3c13d3-9dd4-4250-bae2-bfffad7aca6b", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Ingen dører bak" + }, + { + "id": "f565c4f7-7d06-4c0e-8856-ddfe613195ea", + "requirementText": "Bilen leveres med skyvedør på høyre side.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6", + "57706570-7442-485a-9c67-083a7a3e73ef" + ], + "questions": [ + { + "id": "8b54daa6-a98a-47e1-891f-b885ae00346c", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Skyvedør på høyre side" + }, + { + "id": "04892c71-5a68-42e8-b326-9077284187ce", + "requirementText": "Bilen leveres med skyvedør på begge sider.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "2b1f27e4-3872-4bb1-a17c-5e7b24a0e293", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Skyvedør på begge sider" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "0b97ca3a-6080-42bb-b248-ee2a2c3ee27f", + "title": "Dør til bagasjerom/lasterom", + "description": "", + "needId": "630dadb4-2b23-4eda-a867-4c1553e36021", + "type": "requirement", + "variants": [ + { + "id": "6433d404-ff43-4fb2-8f3f-453e2aad65cf", + "requirementText": "Bilen leveres med topphengslet dør til bagasjerom/lasterom.", + "instruction": "Dette er det vanligste alternativet.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "25c771a5-5b01-4169-837e-5ae986ed5139", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Topphengslet" + }, + { + "id": "4130f371-85c6-445e-b553-88a5ff9a642b", + "requirementText": "Bilen leveres med sidehengslet dør, montert på høyre side, til bagasjerom/lasterom.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "57706570-7442-485a-9c67-083a7a3e73ef", + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "c3a19e16-0350-483c-b29a-1af2b11fa377", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Sidehengslet (høyre)" + }, + { + "id": "5e0caf1f-341c-4bcc-a875-af06fe57a274", + "requirementText": "Bilen leveres med sidehengslet dør, montert på venstre side, til bagasjerom/lasterom.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "57706570-7442-485a-9c67-083a7a3e73ef", + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae" + ], + "questions": [ + { + "id": "86c4747a-28c4-4019-8906-0f6cdb500d70", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Sidehengslet (venstre)" + }, + { + "id": "0f362237-228e-4170-9948-7f923d8b954c", + "requirementText": "Bilen leveres med sidehengslede dører, montert på begge sider, til bagasjerom/lasterom.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "57706570-7442-485a-9c67-083a7a3e73ef", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "46f77661-afef-414c-92e3-61c9fb4b92eb", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Sidehengslet (begge sider)" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "dbac2fb8-c0a4-4b66-abfb-910e03bd4e70", + "title": "Dekk", + "description": "", + "requirements": [ + { + "id": "3b77d08d-adcb-43f7-98c5-b56ab8826d7b", + "title": "Skodd for årstid", + "description": "", + "needId": "dbac2fb8-c0a4-4b66-abfb-910e03bd4e70", + "type": "requirement", + "variants": [ + { + "id": "09321b5b-5985-4a22-9ee5-594c527c5db8", + "requirementText": "Bilen(e) skal leveres skodd for årstiden for leveranse.", + "instruction": "Brukes i tilfeller hvor bilen(e) skal leveres med dekk for to årstider.", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "1c7d2c6c-04a5-4c36-bf17-93e42affd7dc", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Gjeldende årstid" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "f9bf9ae0-bb94-43c5-86a9-ddb9e21ec23f", + "title": "Sommerdekk", + "description": "", + "needId": "dbac2fb8-c0a4-4b66-abfb-910e03bd4e70", + "type": "requirement", + "variants": [ + { + "id": "4200a375-0c03-422b-b98f-fb039a8f1bd7", + "requirementText": "Bilen skal leveres med ett sett sommerdekk.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "0b52d716-f3a9-4bb4-8ffd-ab2651c95a68", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Sommerdekk" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "c284e29d-334a-435e-86da-48931f57a616", + "title": "Vinterdekk", + "description": "", + "needId": "dbac2fb8-c0a4-4b66-abfb-910e03bd4e70", + "type": "requirement", + "variants": [ + { + "id": "a6ab39b5-e59a-42a8-895e-15ab90e3e74d", + "requirementText": "Bilen leveres med ett sett vinterdekk med pigg.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "476e1654-dbbb-40b4-ae6c-9f3356048709", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Piggdekk" + }, + { + "id": "bc4141c2-69b3-4224-ab68-daadc02125dc", + "requirementText": "Bilen leveres med ett sett vinterdekk uten pigg.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "b071e7f5-a580-4307-a708-18612016f2cd", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Piggfritt" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "8e991d1d-cf7d-4195-86db-76d73370c49e", + "title": "Service", + "description": "", + "requirements": [ + { + "id": "32d39821-6f64-49b0-926f-62750b3a6258", + "title": "Hente- og bringetjeneste", + "description": "", + "needId": "8e991d1d-cf7d-4195-86db-76d73370c49e", + "type": "requirement", + "variants": [ + { + "id": "6d1e3c77-7cf5-4525-b905-1f797f42e956", + "requirementText": "Leverandør må kunne tilby hente- og bringetjeneste ved periodisk service, vedlikehold og annet ved behov.", + "instruction": "Brukes som hovedregel dersom man ikke har nok kapasitet i egen bilflåte til å understøtte dette på egenhånd.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "4b35389b-1c72-492a-9aa1-af71b4674206", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tilbud om tjeneste" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "349e9811-1091-44df-bd75-6e1bdb70dd1a", + "title": "Erstatningsbil ved verkstedsbesøk", + "description": "", + "needId": "8e991d1d-cf7d-4195-86db-76d73370c49e", + "type": "requirement", + "variants": [ + { + "id": "83171f7f-a627-4dc5-93cb-0c770aeba676", + "requirementText": "Leverandøren skal kunne tilby tilsvarende erstatningsbil ved periodisk service og andre verkstedsbesøk.", + "instruction": "Brukes som hovedregel.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "57706570-7442-485a-9c67-083a7a3e73ef", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "7613bca5-0aa2-4e00-8bb3-6234cbf93e2e", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tilbud om tjeneste" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "b0345e40-77f3-41ca-9b61-f8a900622a8c", + "title": "Utseende", + "description": "", + "requirements": [ + { + "id": "27ff4fdc-5c3f-45bf-adaa-936254d521ec", + "title": "Farge", + "description": "", + "needId": "b0345e40-77f3-41ca-9b61-f8a900622a8c", + "type": "requirement", + "variants": [ + { + "id": "82a0de46-76fb-4cf2-9e14-f7da021e0f6e", + "requirementText": "Bilen skal leveres i nøytral lys farge, for eksempel grå, sølvgrå eller hvit.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "84848a60-9645-4d62-a34b-c3847537f864", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Nøytral lys farge" + }, + { + "id": "371f67fc-0a88-4252-9970-29c525dda450", + "requirementText": "Bilen skal leveres i nøytral mørge farge, for eksempel mørk grå, sort eller mørk blå.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "35901179-56aa-403b-893f-0d0072ba437f", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Nøytral mørk farge" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "title": "Utstyr", + "description": "", + "requirements": [ + { + "id": "7e17aa2f-e51c-4970-b941-e9a091aef692", + "title": "Hengerfeste", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "7625f820-882a-4f53-a5d1-d08fdad87de8", + "requirementText": "Bilen leveres med godkjent hengerfeste med modeltilpasset ledningsnett.", + "instruction": "Brukes dersom man ønsker at bilen leveres med hengerfeste.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "a3194e08-8271-4155-98a9-860a8c453269", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Leveres med hengerfest" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "a0247f6d-92be-4a72-aaea-6be678e2141a", + "title": "Lasteromsmatte", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "aea24fda-7b31-45cb-b15b-5afb669209fa", + "requirementText": "Bilen skal leveres med lasteromsmatte/-beskyttelse.", + "instruction": "Brukes dersom bruken av bilen tilsier at slik matte/beskyttelse vil forlenge bilens levetid.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "66ae0d3d-e090-4b53-95c8-bacf10e8f259", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Levert med lasteromsmatte" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "1de14d20-4d47-401d-9957-e121caad7a9b", + "title": "Handsfree", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "77bf3652-f369-4bf6-8810-9e13cff44a26", + "requirementText": "Bilen skal være utstyrt med handsfreeløsning over Bluetooth.", + "instruction": "Anbefalt brukt ved de fleste anskaffelser av bil.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "6eec190e-9643-4955-8c95-010c67b552da", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "55845b56-f335-46bc-a214-01089d7c6a0e", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Montert handsfree" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "1212cc2e-313d-4811-8001-50963bdcf28c", + "title": "Radio", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "69e8efaf-6262-4f41-a16b-7647c30f5bc8", + "requirementText": "Bilen skal være utstyrt med radio med støtte for DAB+.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "5f5c02a9-75bf-4307-9f93-ce28b0d3b662", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "DAB+-radio" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "a68e7be5-b945-4b11-ba1f-609214046962", + "title": "Ryggevarsel", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "510f30c6-69f6-4a99-b43d-92486caf1f38", + "requirementText": "Bilen skal leveres med ferdig montert ryggevarsel.", + "instruction": "Brukes på biler man ønsker skal pipe når den rygger.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "57706570-7442-485a-9c67-083a7a3e73ef", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6", + "b662684a-3f6b-4599-8452-ab699b0c83be" + ], + "questions": [ + { + "id": "fcc49d08-aba8-440c-a71c-9f8be45c6c1a", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Ferdig montert" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "9be41d0f-479b-4e39-9793-c15f6f3df119", + "title": "Ryggekamera", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "c65b477a-fb35-41e4-b440-a531eb39b3d1", + "requirementText": "Bilen skal være utstyrt med ryggekamera.", + "instruction": "Brukes dersom bilen skal ha skjerm som støtter sjåfør ved rygging.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "4b7b7be9-cc1b-4b49-ae91-ce8867d509e3", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Ferdig montert" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "d87525ab-08fe-46f6-9539-c491adbd0583", + "title": "Parkeringssensor", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "6e914bd8-2fbd-463e-a76c-def9446c859d", + "requirementText": "Bilen leveres med to parkeringssensorer bak, en på hver side, som gir lydsignal i bilen når man nærmer seg gjenstander/folk/fe som registreres av sensor(ene).", + "instruction": "Brukes dersom man har behov for parkeringssensorer bak.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "57e5e445-d621-4c48-9445-622366a531bf", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "To sensorer bak" + }, + { + "id": "7c6aebea-9f64-42ea-a196-7f4dae307db9", + "requirementText": "Bilen leveres med to parkeringssensorer bak, en på hver side, og to parkeringssenorer foran, en på hver side, som gir lydsignal i bilen når man nærmer seg gjenstander/folk/fe som registreres av sensor(ene).", + "instruction": "Brukes som hovedregel.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "3ba09985-023c-4ef2-9813-6e0a6c4cfdc1", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "To senorer bak og to sensorer foran" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "d8e25db7-888b-437d-bfce-181ecab15778", + "title": "Setevarme", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "3603e6c1-218a-4a2b-a756-de3f92585e99", + "requirementText": "Bilen leveres med setevarme på sitteplassene foran.", + "instruction": "Brukes som hovedregel.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "af6782f0-e653-42df-80e7-6d5debbae561", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Setevarme foran" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "3450166c-0022-4b87-ad11-ded2c9d111d5", + "title": "Klimaanlegg (Air condition)", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "a23872e0-bacc-4f02-a473-e14e65ed2df6", + "requirementText": "Bilen skal være utstyrt med klimaanlegg.", + "instruction": "Brukes som hovedregel.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "04c830d3-9a75-4b12-8961-f6133c364ec2", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Ferdig montert" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "2df3ab16-45a5-43b2-94a9-07abb91216cc", + "title": "Påbudt sikkerhetsutstyr", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "5199d927-2c6b-4b06-b84b-edc29586be92", + "requirementText": "Bilen skal leveres med godkjent varseltrekant og refleksvest som skal oppbevares ihht. regelverk.", + "instruction": "Brukes alltid.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "68f62c54-c46c-478e-ae17-12bad5288f8d", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Varseltrekant og refleksvest" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "2717cb6c-72f9-4e0c-8081-1479ddbd5173", + "title": "Førstehjelpsutstyr", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "6cfbeb90-3a1f-4529-9e81-6eb87ad9238e", + "requirementText": "Bilen skal leveres med pute med førstehjelpsutstyr.", + "instruction": "Bør ansees som minimum.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "487411be-f144-418a-b90c-1d381d4925e5", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Pute med førstehjelpsutstyr" + }, + { + "id": "0e45f2da-cd3f-4650-9b60-6a8e527d9921", + "requirementText": "Bilen skal leveres med fastmontert skrin med førstehjelpsutstyr.", + "instruction": "Anbefales brukt i arbeidsbiler.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "6eec190e-9643-4955-8c95-010c67b552da", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "b41de238-759f-4c6e-a77f-87051f2cc0fd", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Skrin med førstehjelpsutstyr" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "43866b18-9cad-4405-9d88-7f5891320f20", + "title": "Lys", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "cebe39ce-25a9-498b-ba4c-684cef6513ff", + "title": "Sikkerhet", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "43a0b886-3cd2-45b9-b0c8-ff7daf7a1035", + "title": "LCC", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "7527ba6a-12ea-4b9e-9ba0-c48ac22c1827", + "title": "Miljø", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "codelist": [], + "products": [ + { + "id": "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "title": "El-bil", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "fab4ddba-c6c7-493f-a24b-70bf3b4c6443", + "title": "Kassebil", + "description": "", + "type": "product", + "parent": "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null, + "deletedDate": "2022-10-24T14:37:41.698Z", + "unit": "stk" + }, + { + "id": "57706570-7442-485a-9c67-083a7a3e73ef", + "title": "Personbil", + "description": "", + "type": "product", + "parent": "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "title": "Kombi", + "description": "", + "type": "product", + "parent": "57706570-7442-485a-9c67-083a7a3e73ef", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "6eec190e-9643-4955-8c95-010c67b552da", + "title": "Mikrobil", + "description": "", + "type": "product", + "parent": "57706570-7442-485a-9c67-083a7a3e73ef", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "title": "Sedan", + "description": "", + "type": "product", + "parent": "57706570-7442-485a-9c67-083a7a3e73ef", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "8b12d26e-4772-4a33-b709-6447706f8b82", + "title": "Stasjonsvogn", + "description": "", + "type": "product", + "parent": "57706570-7442-485a-9c67-083a7a3e73ef", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "b662684a-3f6b-4599-8452-ab699b0c83be", + "title": "Pick-up", + "description": "", + "type": "product", + "parent": "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "cca9fdd8-5024-46a7-9d22-93c1f293e4d6", + "title": "Varebil", + "description": "", + "type": "product", + "parent": "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + } + ], + "publications": [], + "tags": [], + "version": 1, + "publishedDate": "2022-10-24T16:43:01.005Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "deletedDate": null + }, + { + "id": "4ec817b3-f8e1-4fbe-ac15-194ea409e3e3", + "title": "Demoprosjektet", + "description": "Dette er prosjekt det", + "needs": [ + { + "id": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "title": "Dette er et behov", + "description": "", + "requirements": [ + { + "id": "ae1d3e71-590d-4822-84d3-fa9c8bc41d2b", + "title": "Krav", + "description": "", + "needId": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "tags": [], + "variants": [ + { + "id": "02059f10-ae36-4412-a10f-852b4dc408f6", + "requirementText": "test kjør", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "d3f71f71-569c-490f-ac55-64e7efe9344e" + ], + "questions": [ + { + "id": "41fc2071-dc09-4669-94d9-f28d0aa3ad52", + "type": "Q_TEXT", + "config": { + "max": 1000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "653a3f21-1fb7-4bdb-85b4-c5f91bb73505", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "f5322452-6425-4cc0-a0b9-357919d46289", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "11112888-57fb-4d31-ab4c-acfd04be0c02", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Hello" + }, + { + "id": "29f4872a-28b4-44f5-8db7-39625243dda9", + "requirementText": "", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "54fea996-0deb-4247-af32-1d92f5e0d840", + "563cb3b6-04bf-4fb0-8d9d-0ba396cc6fd2", + "07cbd177-b3a7-4c62-8c64-b1b5f24c0652" + ], + "questions": [ + { + "id": "e94f4a4e-3fc9-41ad-82a0-a750b2b17555", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "341af8a4-aa08-4bb0-8c95-dca601a85f70", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "142b03cc-a943-464e-b95d-8ab374f6ca41", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "56b15670-e31e-415c-9bf1-43e376e8d5bc", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Dette er en variant" + }, + { + "id": "41b8b68c-209b-479f-bab9-c2a0d73b54cc", + "requirementText": "", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "5b00650a-0531-404c-901d-9dd96da2440c", + "7f7218ba-c13b-4d5b-8cf9-dcbe8f487b4d", + "fb8293e2-8f0e-411f-9d0d-5192085156b1" + ], + "questions": [ + { + "id": "4ab05b39-ead9-47f5-aaed-e5bcb3034eb0", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": false + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "InfoVariant" + } + ], + "type": "requirement", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "231e5480-f2e7-4872-9284-3e51cd33163f", + "title": "nytt krav", + "description": "", + "needId": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "type": "requirement", + "variants": [ + { + "id": "3fd8ca34-ff40-4f45-b075-28f5a8149058", + "requirementText": "Test", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "5b00650a-0531-404c-901d-9dd96da2440c", + "563cb3b6-04bf-4fb0-8d9d-0ba396cc6fd2", + "07cbd177-b3a7-4c62-8c64-b1b5f24c0652" + ], + "questions": [ + { + "id": "d3da0d0d-aeae-48f4-b261-1eb82c36f7db", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": false + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "da9c2627-3315-4cb5-a46b-a09a8cdc41c0", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "6ed38a24-faf7-4b77-a859-b7c60ba2c2ce", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Test" + }, + { + "id": "3ea9ae98-3ef5-464d-beff-b18fc51e317c", + "requirementText": "", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "f55fa241-e53f-495f-8723-a4e10c396c5b" + ], + "questions": [ + { + "id": "b922c385-db9b-467a-b84a-3cd63458f16c", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 5, + "step": 1, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Heicxcx" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "e66a91c6-5bd5-4638-a000-e236ba92010d", + "title": "Nytt krav", + "description": "", + "needId": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "type": "requirement", + "variants": [ + { + "id": "87b95368-2a97-4045-811a-9f072793e091", + "requirementText": "test", + "instruction": "tst", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "16d94d8d-4a1d-4f24-a6eb-c68aff295cb4", + "2c63b1f9-e3af-4018-a187-10abba2cc377", + "b4d1db8e-8d33-4d7d-a0c8-6ac7f1974453", + "8851aefa-59cf-408d-abbf-44addbdce842" + ], + "questions": [ + { + "id": "62beb746-3fbc-4af1-81c1-c27a1731d460", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "cded5691-1ce0-48c3-b3c2-821f2fd0fbbb", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "6ed38a24-faf7-4b77-a859-b7c60ba2c2ce", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "TEst" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "dbbf3e8a-8aec-4907-8c1f-8d8274fc22c0", + "title": "Nytt behov", + "description": "", + "requirements": [ + { + "id": "79bc4472-90a8-460f-a947-39e0796e58b4", + "title": "Testooo", + "description": "", + "needId": "dbbf3e8a-8aec-4907-8c1f-8d8274fc22c0", + "type": "requirement", + "variants": [ + { + "id": "5c51cdb1-447f-47cd-81a4-2b31f28eba52", + "requirementText": "Kjlrda", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "5b00650a-0531-404c-901d-9dd96da2440c", + "07cbd177-b3a7-4c62-8c64-b1b5f24c0652" + ], + "questions": [], + "type": "requirement", + "description": "Hva skkjer" + }, + { + "id": "bbaa8b6a-47e0-4463-9e40-27591532d16b", + "requirementText": "tull", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "Hei du" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "65527ccb-5e00-490a-98bd-36d6b25fcaa3", + "title": "Hvor mange nivåer kan vi ha", + "description": "", + "requirements": [], + "type": "need", + "parent": "dbbf3e8a-8aec-4907-8c1f-8d8274fc22c0", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "33924ab6-5ee7-4c15-99ad-75af33774c54", + "title": "Enda behov", + "description": "", + "requirements": [ + { + "id": "9cb9e1eb-7cd0-4e10-bc71-1e8e0a2bd981", + "title": "Dustekrav", + "description": "", + "needId": "33924ab6-5ee7-4c15-99ad-75af33774c54", + "type": "requirement", + "variants": [ + { + "id": "73788544-a109-493e-b2f4-3bb4ab46ee59", + "requirementText": "Dustevariant", + "instruction": "Heia", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "e6a73228-66e6-4288-b75b-aa3e7176b182", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "11112888-57fb-4d31-ab4c-acfd04be0c02", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Kjlørr" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "07dd8e16-919e-44f1-aab6-45b9ca63c961", + "title": "Mange behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "33924ab6-5ee7-4c15-99ad-75af33774c54", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "89b190d5-97b6-49a2-a20d-239b02866af7", + "title": "1000 behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "07dd8e16-919e-44f1-aab6-45b9ca63c961", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "01aedf91-967b-4f84-98fd-0ddf4ea43ef5", + "title": "Dette er en veldig veldig langt tekst for et behov som ikke skal gjøre noe som helst", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "6642fda4-96e0-4e5e-856a-b4a452f2d847", + "title": "Lag et nytt behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "a3b2ed96-f07f-4e9e-b3a3-3322a0c77778", + "title": "Superbehov", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "01d633c1-c349-4a9c-a16f-1e1c5b6c165e", + "title": "Behovet", + "description": "", + "requirements": [ + { + "id": "6663c59d-8187-4e07-bb8e-561598ab5633", + "title": "Nytt krav", + "description": "", + "needId": "01d633c1-c349-4a9c-a16f-1e1c5b6c165e", + "type": "requirement", + "variants": [ + { + "id": "f0889677-c55e-4fb3-a72d-af59c6f1bcd4", + "requirementText": "Ny variant", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "info", + "description": "TEst" + }, + { + "id": "1403418f-e0bd-4b1c-90fc-208c2490552c", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "info", + "description": "Test 2" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "2a0240f1-bea9-4208-a2d9-2f04393171bf", + "title": "Behov med alle questions", + "description": "Spennende", + "requirements": [ + { + "id": "3b303931-20c1-48f5-acd9-b3bd5aa9e5de", + "title": "Dette er et krav", + "description": "", + "needId": "2a0240f1-bea9-4208-a2d9-2f04393171bf", + "type": "requirement", + "variants": [ + { + "id": "1636f2e9-2c41-4d0a-ad51-5e0a2f17c27e", + "requirementText": "Kravteksten er som så", + "instruction": "Veiledning hei på deg", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "d3f71f71-569c-490f-ac55-64e7efe9344e" + ], + "questions": [ + { + "id": "d205901b-1f39-499a-a009-be56e07351ee", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "f30b6cfd-d4a4-4bef-8552-7d555d72fad6", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "6ed38a24-faf7-4b77-a859-b7c60ba2c2ce", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "7152bbcd-6a58-4538-be14-9303dd57ebc1", + "type": "Q_FILEUPLOAD", + "config": { + "template": null, + "uploadInSpec": false, + "allowMultipleFiles": false, + "fileEndings": [], + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "files": [ + "" + ] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "68fbd9ea-8d0a-4731-a225-674114f92d23", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "8c34887b-b560-4694-9cf4-6a653dae1695", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "c20b05b9-24db-41d4-a476-c7869faed15f", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10, + "step": 1, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "485caac2-8907-436e-9f97-2be22fdd618d", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Variant #1" + }, + { + "id": "804a71a5-6e64-467a-8bda-22dcd5668e0b", + "requirementText": "kraaavtekst", + "instruction": "veeeeiledning", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "d3f71f71-569c-490f-ac55-64e7efe9344e" + ], + "questions": [ + { + "id": "935244d0-ec5e-402d-b68d-ccd8f8482d42", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "7671f13e-77c6-4a6a-93c7-1b0a5bfcb06e", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "11112888-57fb-4d31-ab4c-acfd04be0c02", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "04809e97-bae7-4510-a3d8-a665a3536c13", + "type": "Q_FILEUPLOAD", + "config": { + "template": null, + "uploadInSpec": false, + "allowMultipleFiles": false, + "fileEndings": [], + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "files": [ + "" + ] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "3c56a234-1744-4c67-a255-6932b14fa1f3", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "6e7eece5-7c6a-4814-ba8d-d2cb864740a3", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "9ca3883b-5090-4fa6-a0ea-bdc57c13ec2d", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10, + "step": 1, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "3139b29f-d5fd-4f6a-a957-3db6babc1491", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Variant #2" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "78a470ce-527a-4dda-8051-284e1f0ab899", + "title": "Ekstra krav", + "description": "", + "needId": "2a0240f1-bea9-4208-a2d9-2f04393171bf", + "type": "requirement", + "variants": [ + { + "id": "c18387b3-ddd6-40ed-a36d-867ad8bde2e5", + "requirementText": "kravt", + "instruction": "veild", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "d3f71f71-569c-490f-ac55-64e7efe9344e" + ], + "questions": [ + { + "id": "bd8a7658-93a0-4e8d-a958-a7eb0e322b97", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": false + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "0ad13210-48ae-44d4-a902-b416b6bf55d8", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "142b03cc-a943-464e-b95d-8ab374f6ca41", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "147d8a82-cb6e-4939-9a04-cca1ff48c68b", + "type": "Q_FILEUPLOAD", + "config": { + "template": null, + "uploadInSpec": false, + "allowMultipleFiles": false, + "fileEndings": [], + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "files": [ + "" + ] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "bef68280-6297-44ac-84c3-6bde7c012ce1", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "60a2fcf7-794c-4286-9bb0-c7c994ccd9cb", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "5d253775-0cc7-4a21-a94f-91c07ad996ae", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10, + "step": 1, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "3b793d42-4440-46f1-94bf-5cc1cd7dd420", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Bare en variant her" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "6b686680-5b70-4360-b212-acde1a7550ef", + "title": "Vi kan ha mange veldig lange behover for det er det vi behøver. Dette er et skikkelig langt behov som forhpoentligvis skal strekke seg over flere 1000 linjer. Mest for test purposes, men kanskje også det er et relevant behov som vi får bruk for i eventuelle annskaffelser. Det blir spennede å se ", + "description": "Den har også beskrivelse", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "2da47190-74e5-458b-8f5d-06d5f0d53f51", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "requirements": [ + { + "id": "e66fa86a-829c-4acf-a6db-4da62b37b9fd", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "", + "needId": "2da47190-74e5-458b-8f5d-06d5f0d53f51", + "type": "requirement", + "variants": [ + { + "id": "fc42da6c-dc5d-4161-a86d-c9aab2d80f14", + "requirementText": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "instruction": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "6c7d9a09-f358-4b40-b9c7-c8ef721beb85", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "0fa0ed1a-69ae-47c6-821b-403820537bca", + "title": "Dette skal bli så langt at vi må legge på scroll", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "c6c71c0b-831d-43a3-88a4-4bc32fdb2782", + "title": "Vi kan lage mange behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "82c1de09-a100-472b-af97-bbd5f793a764", + "title": "1 behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "8120236a-3bc5-4ff6-94a2-27e4a4db364e", + "title": "2 behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "719ad9b0-d207-49d8-b6f8-3d07b8bf6c6d", + "title": "behov med liten bokstav", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "3ead6a9a-f8e7-4953-834e-f74eb6678f06", + "title": "3 behov", + "description": "", + "requirements": [ + { + "id": "ca01dfdc-fbb4-4574-b037-d85a61cad2d3", + "title": "test", + "description": "", + "needId": "3ead6a9a-f8e7-4953-834e-f74eb6678f06", + "type": "requirement", + "variants": [ + { + "id": "08bd560c-8b67-4917-8632-9811ab777574", + "requirementText": "123", + "instruction": "VEILLEEEDDDNING", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "47b657ca-a854-4cbc-a8ff-f4beb92f3400" + ], + "questions": [ + { + "id": "a6176fd0-bebf-41b3-990e-5215eb04a651", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "99611fbd-a546-472a-8a3a-5ae78aba6a98", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Den har beskrivelse" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "b3a01630-2c25-4141-9b1d-799c457b5c9d", + "title": "5 behov", + "description": "", + "requirements": [ + { + "id": "13b07d56-e333-486d-a4cc-94c078d5327a", + "title": "5 krav", + "description": "", + "needId": "b3a01630-2c25-4141-9b1d-799c457b5c9d", + "type": "requirement", + "variants": [ + { + "id": "768baaac-7757-4c9d-a4b6-1f68ad7cf248", + "requirementText": "", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b4d1db8e-8d33-4d7d-a0c8-6ac7f1974453" + ], + "questions": [ + { + "id": "42d5333c-dee1-41c0-819e-07136d870721", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10, + "step": 1, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Testvariant" + }, + { + "id": "97b1604a-f7d9-4ad2-8c68-b83122978566", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "gosse" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "089674ad-d770-46fd-aa8a-9b8a57d0b1fe", + "title": "test", + "description": "", + "needId": "b3a01630-2c25-4141-9b1d-799c457b5c9d", + "type": "requirement", + "variants": [], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "31b69528-0019-47b7-9d47-318aca88ea3e", + "title": "4 behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "6ed38a24-faf7-4b77-a859-b7c60ba2c2ce", + "title": "Koder", + "description": "", + "codes": [ + { + "id": "6e0ffc15-a4c6-4eea-82e9-818b788e5536", + "title": "kode", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "9168c90f-af0f-425f-9ff8-7f3afa522afc", + "title": "Dette her blir en eldig lang tekst, hvordan skal dette gå hve kan vite det, hjelp hjelp hjelp", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "11112888-57fb-4d31-ab4c-acfd04be0c02", + "title": "Supertest", + "description": "", + "codes": [ + { + "id": "733867a7-f820-44a5-a026-03e52736649b", + "title": "Ny kode", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "8f7e7313-5aa3-4825-b13c-9b98a2a79e16", + "title": "Flere koder", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "b2c819f7-5ce5-41d4-9b2f-4decb445e9c5", + "title": "Jeg kan lage mange", + "description": "Testoo", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "854a3d1a-025f-4ae5-990d-d345e353fb20", + "title": "Tusen koder", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "fbe956e5-915c-4b59-aad1-d4d88fc8c192", + "title": "En mill koder?", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "1263f0f0-4f5e-4545-9788-d26db7a23273", + "title": "Ikke så mange", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "df0afa39-04c0-4eaf-af34-64e04cddb37e", + "title": "stopp nå", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "142b03cc-a943-464e-b95d-8ab374f6ca41", + "title": "Ny kodeliste", + "description": "", + "codes": [ + { + "id": "2eb31785-0473-4ce4-805b-9a491dde78c3", + "title": "Den har 1 kode", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "21b8f9dc-278a-40ce-9bf4-744fe9587840", + "title": "Mange kodeliste", + "description": "", + "codes": [], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "1c5bbe31-b4a2-4c6b-a13e-e1464278b985", + "title": "Kjempekodeliste", + "description": "", + "codes": [], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "c07f08b7-10e3-4258-8cb0-ad153951e03a", + "title": "Million kodelister", + "description": "", + "codes": [], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "99611fbd-a546-472a-8a3a-5ae78aba6a98", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "codes": [ + { + "id": "e82d8b64-6207-4c07-aca2-f5dd70d0d7de", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "d98685b4-03a0-445d-8780-3f5695a58bdf", + "title": "Dette er en dum test", + "description": "Men beskrivelse er på", + "codes": [], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "products": [ + { + "id": "5b00650a-0531-404c-901d-9dd96da2440c", + "title": "Produkt", + "description": "Kjør", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "62e9b3c5-dd36-4ed9-b6dc-391656b51be6", + "title": "1", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "16d94d8d-4a1d-4f24-a6eb-c68aff295cb4", + "title": "Produkt 2", + "description": "Test 2", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "54fea996-0deb-4247-af32-1d92f5e0d840", + "title": "OK kjør", + "description": "test", + "type": "product", + "parent": "16d94d8d-4a1d-4f24-a6eb-c68aff295cb4", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "07cbd177-b3a7-4c62-8c64-b1b5f24c0652", + "title": "Produkt 3", + "description": "fszf", + "type": "product", + "parent": "54fea996-0deb-4247-af32-1d92f5e0d840", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "511ca0ee-4cf4-40f3-a94f-9a37fba87661", + "title": "Et produkt om dagen", + "description": "", + "type": "product", + "parent": "07cbd177-b3a7-4c62-8c64-b1b5f24c0652", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "24c1fffd-aa71-459b-b70f-e231911485d0", + "title": "8", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "5762b917-2f99-4395-9b41-dfd1e2805f78", + "title": "werrewew", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "publications": [], + "tags": [ + { + "id": "5a80809d-d621-4772-a1d0-ec2a42cae470", + "title": "Merkelapp", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "0d1237f7-e6c7-495e-b9d0-cd854aad723b", + "title": "Merkelapp 2", + "description": "", + "type": "tag", + "parent": "5a80809d-d621-4772-a1d0-ec2a42cae470", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "51334e8d-2b09-4585-8b93-347560ccc31e", + "title": "MANGEN MERKELAPPA", + "description": "heihei", + "type": "tag", + "parent": "0d1237f7-e6c7-495e-b9d0-cd854aad723b", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "83e892c4-523e-4234-ab68-c1eecf77bdc3", + "title": "Gal", + "description": "", + "type": "tag", + "parent": "51334e8d-2b09-4585-8b93-347560ccc31e", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "c829f865-cf1a-411c-8221-2d15c2abefb0", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "type": "tag", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "version": 11, + "publishedDate": "2022-05-16T07:04:02.082Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "0c76bf8e-3b54-493d-beb3-c59daf0c233a" + }, + { + "id": "208008ac-e66f-4e3d-8c2d-90181a0dd9ad", + "title": "Demoprosjektet", + "description": "Dette er prosjekt det", + "needs": [ + { + "id": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "title": "Dette er et behov", + "description": "", + "requirements": [ + { + "id": "ae1d3e71-590d-4822-84d3-fa9c8bc41d2b", + "title": "Krav", + "description": "", + "needId": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "tags": [], + "variants": [ + { + "id": "02059f10-ae36-4412-a10f-852b4dc408f6", + "requirementText": "test kjør", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "d3f71f71-569c-490f-ac55-64e7efe9344e" + ], + "questions": [ + { + "id": "41fc2071-dc09-4669-94d9-f28d0aa3ad52", + "type": "Q_TEXT", + "config": { + "max": 1000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "653a3f21-1fb7-4bdb-85b4-c5f91bb73505", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "f5322452-6425-4cc0-a0b9-357919d46289", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "11112888-57fb-4d31-ab4c-acfd04be0c02", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Hello" + }, + { + "id": "29f4872a-28b4-44f5-8db7-39625243dda9", + "requirementText": "", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "54fea996-0deb-4247-af32-1d92f5e0d840", + "563cb3b6-04bf-4fb0-8d9d-0ba396cc6fd2", + "07cbd177-b3a7-4c62-8c64-b1b5f24c0652" + ], + "questions": [ + { + "id": "e94f4a4e-3fc9-41ad-82a0-a750b2b17555", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "341af8a4-aa08-4bb0-8c95-dca601a85f70", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "142b03cc-a943-464e-b95d-8ab374f6ca41", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "56b15670-e31e-415c-9bf1-43e376e8d5bc", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Dette er en variant" + }, + { + "id": "41b8b68c-209b-479f-bab9-c2a0d73b54cc", + "requirementText": "", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "5b00650a-0531-404c-901d-9dd96da2440c", + "7f7218ba-c13b-4d5b-8cf9-dcbe8f487b4d", + "fb8293e2-8f0e-411f-9d0d-5192085156b1" + ], + "questions": [ + { + "id": "4ab05b39-ead9-47f5-aaed-e5bcb3034eb0", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": false + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "InfoVariant" + } + ], + "type": "requirement", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "231e5480-f2e7-4872-9284-3e51cd33163f", + "title": "nytt krav", + "description": "", + "needId": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "type": "requirement", + "variants": [ + { + "id": "3fd8ca34-ff40-4f45-b075-28f5a8149058", + "requirementText": "Test", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "5b00650a-0531-404c-901d-9dd96da2440c", + "563cb3b6-04bf-4fb0-8d9d-0ba396cc6fd2", + "07cbd177-b3a7-4c62-8c64-b1b5f24c0652" + ], + "questions": [ + { + "id": "d3da0d0d-aeae-48f4-b261-1eb82c36f7db", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": false + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "da9c2627-3315-4cb5-a46b-a09a8cdc41c0", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "6ed38a24-faf7-4b77-a859-b7c60ba2c2ce", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Test" + }, + { + "id": "3ea9ae98-3ef5-464d-beff-b18fc51e317c", + "requirementText": "", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "f55fa241-e53f-495f-8723-a4e10c396c5b" + ], + "questions": [ + { + "id": "b922c385-db9b-467a-b84a-3cd63458f16c", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 5, + "step": 1, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Heicxcx" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "e66a91c6-5bd5-4638-a000-e236ba92010d", + "title": "Nytt krav", + "description": "", + "needId": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "type": "requirement", + "variants": [ + { + "id": "87b95368-2a97-4045-811a-9f072793e091", + "requirementText": "test", + "instruction": "tst", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "16d94d8d-4a1d-4f24-a6eb-c68aff295cb4", + "2c63b1f9-e3af-4018-a187-10abba2cc377", + "b4d1db8e-8d33-4d7d-a0c8-6ac7f1974453", + "8851aefa-59cf-408d-abbf-44addbdce842" + ], + "questions": [ + { + "id": "62beb746-3fbc-4af1-81c1-c27a1731d460", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "cded5691-1ce0-48c3-b3c2-821f2fd0fbbb", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "6ed38a24-faf7-4b77-a859-b7c60ba2c2ce", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "TEst" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "dbbf3e8a-8aec-4907-8c1f-8d8274fc22c0", + "title": "Nytt behov", + "description": "", + "requirements": [ + { + "id": "79bc4472-90a8-460f-a947-39e0796e58b4", + "title": "Testooo", + "description": "", + "needId": "dbbf3e8a-8aec-4907-8c1f-8d8274fc22c0", + "type": "requirement", + "variants": [ + { + "id": "5c51cdb1-447f-47cd-81a4-2b31f28eba52", + "requirementText": "Kjlrda", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "5b00650a-0531-404c-901d-9dd96da2440c", + "07cbd177-b3a7-4c62-8c64-b1b5f24c0652" + ], + "questions": [], + "type": "requirement", + "description": "Hva skkjer" + }, + { + "id": "bbaa8b6a-47e0-4463-9e40-27591532d16b", + "requirementText": "tull", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "Hei du" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "65527ccb-5e00-490a-98bd-36d6b25fcaa3", + "title": "Hvor mange nivåer kan vi ha", + "description": "", + "requirements": [], + "type": "need", + "parent": "dbbf3e8a-8aec-4907-8c1f-8d8274fc22c0", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "33924ab6-5ee7-4c15-99ad-75af33774c54", + "title": "Enda behov", + "description": "", + "requirements": [ + { + "id": "9cb9e1eb-7cd0-4e10-bc71-1e8e0a2bd981", + "title": "Dustekrav", + "description": "", + "needId": "33924ab6-5ee7-4c15-99ad-75af33774c54", + "type": "requirement", + "variants": [ + { + "id": "73788544-a109-493e-b2f4-3bb4ab46ee59", + "requirementText": "Dustevariant", + "instruction": "Heia", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "e6a73228-66e6-4288-b75b-aa3e7176b182", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "11112888-57fb-4d31-ab4c-acfd04be0c02", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Kjlørr" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "dbbf3e8a-8aec-4907-8c1f-8d8274fc22c0", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "07dd8e16-919e-44f1-aab6-45b9ca63c961", + "title": "Mange behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "33924ab6-5ee7-4c15-99ad-75af33774c54", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "89b190d5-97b6-49a2-a20d-239b02866af7", + "title": "1000 behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "07dd8e16-919e-44f1-aab6-45b9ca63c961", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "01aedf91-967b-4f84-98fd-0ddf4ea43ef5", + "title": "Dette er en veldig veldig langt tekst for et behov som ikke skal gjøre noe som helst", + "description": "", + "requirements": [], + "type": "need", + "parent": "89b190d5-97b6-49a2-a20d-239b02866af7", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "6642fda4-96e0-4e5e-856a-b4a452f2d847", + "title": "Lag et nytt behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "01aedf91-967b-4f84-98fd-0ddf4ea43ef5", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "a3b2ed96-f07f-4e9e-b3a3-3322a0c77778", + "title": "Superbehov", + "description": "", + "requirements": [], + "type": "need", + "parent": "6642fda4-96e0-4e5e-856a-b4a452f2d847", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "01d633c1-c349-4a9c-a16f-1e1c5b6c165e", + "title": "Behovet", + "description": "", + "requirements": [ + { + "id": "6663c59d-8187-4e07-bb8e-561598ab5633", + "title": "Nytt krav", + "description": "", + "needId": "01d633c1-c349-4a9c-a16f-1e1c5b6c165e", + "type": "requirement", + "variants": [ + { + "id": "f0889677-c55e-4fb3-a72d-af59c6f1bcd4", + "requirementText": "Ny variant", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "info", + "description": "TEst" + }, + { + "id": "1403418f-e0bd-4b1c-90fc-208c2490552c", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "info", + "description": "Test 2" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "2a0240f1-bea9-4208-a2d9-2f04393171bf", + "title": "Behov med alle questions", + "description": "Spennende", + "requirements": [ + { + "id": "3b303931-20c1-48f5-acd9-b3bd5aa9e5de", + "title": "Dette er et krav", + "description": "", + "needId": "2a0240f1-bea9-4208-a2d9-2f04393171bf", + "type": "requirement", + "variants": [ + { + "id": "1636f2e9-2c41-4d0a-ad51-5e0a2f17c27e", + "requirementText": "Kravteksten er som så", + "instruction": "Veiledning hei på deg", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "d3f71f71-569c-490f-ac55-64e7efe9344e" + ], + "questions": [ + { + "id": "d205901b-1f39-499a-a009-be56e07351ee", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "f30b6cfd-d4a4-4bef-8552-7d555d72fad6", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "6ed38a24-faf7-4b77-a859-b7c60ba2c2ce", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "7152bbcd-6a58-4538-be14-9303dd57ebc1", + "type": "Q_FILEUPLOAD", + "config": { + "template": null, + "uploadInSpec": false, + "allowMultipleFiles": false, + "fileEndings": [], + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "files": [ + "" + ] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "68fbd9ea-8d0a-4731-a225-674114f92d23", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "8c34887b-b560-4694-9cf4-6a653dae1695", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "c20b05b9-24db-41d4-a476-c7869faed15f", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10, + "step": 1, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "485caac2-8907-436e-9f97-2be22fdd618d", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Variant #1" + }, + { + "id": "804a71a5-6e64-467a-8bda-22dcd5668e0b", + "requirementText": "kraaavtekst", + "instruction": "veeeeiledning", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "d3f71f71-569c-490f-ac55-64e7efe9344e" + ], + "questions": [ + { + "id": "935244d0-ec5e-402d-b68d-ccd8f8482d42", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "7671f13e-77c6-4a6a-93c7-1b0a5bfcb06e", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "11112888-57fb-4d31-ab4c-acfd04be0c02", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "04809e97-bae7-4510-a3d8-a665a3536c13", + "type": "Q_FILEUPLOAD", + "config": { + "template": null, + "uploadInSpec": false, + "allowMultipleFiles": false, + "fileEndings": [], + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "files": [ + "" + ] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "3c56a234-1744-4c67-a255-6932b14fa1f3", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "6e7eece5-7c6a-4814-ba8d-d2cb864740a3", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "9ca3883b-5090-4fa6-a0ea-bdc57c13ec2d", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10, + "step": 1, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "3139b29f-d5fd-4f6a-a957-3db6babc1491", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Variant #2" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "78a470ce-527a-4dda-8051-284e1f0ab899", + "title": "Ekstra krav", + "description": "", + "needId": "2a0240f1-bea9-4208-a2d9-2f04393171bf", + "type": "requirement", + "variants": [ + { + "id": "c18387b3-ddd6-40ed-a36d-867ad8bde2e5", + "requirementText": "kravt", + "instruction": "veild", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "d3f71f71-569c-490f-ac55-64e7efe9344e" + ], + "questions": [ + { + "id": "bd8a7658-93a0-4e8d-a958-a7eb0e322b97", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": false + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "0ad13210-48ae-44d4-a902-b416b6bf55d8", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "142b03cc-a943-464e-b95d-8ab374f6ca41", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "147d8a82-cb6e-4939-9a04-cca1ff48c68b", + "type": "Q_FILEUPLOAD", + "config": { + "template": null, + "uploadInSpec": false, + "allowMultipleFiles": false, + "fileEndings": [], + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "files": [ + "" + ] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "bef68280-6297-44ac-84c3-6bde7c012ce1", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "60a2fcf7-794c-4286-9bb0-c7c994ccd9cb", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "5d253775-0cc7-4a21-a94f-91c07ad996ae", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10, + "step": 1, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "3b793d42-4440-46f1-94bf-5cc1cd7dd420", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Bare en variant her" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "6b686680-5b70-4360-b212-acde1a7550ef", + "title": "Vi kan ha mange veldig lange behover for det er det vi behøver. Dette er et skikkelig langt behov som forhpoentligvis skal strekke seg over flere 1000 linjer. Mest for test purposes, men kanskje også det er et relevant behov som vi får bruk for i eventuelle annskaffelser. Det blir spennede å se ", + "description": "Den har også beskrivelse", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "2da47190-74e5-458b-8f5d-06d5f0d53f51", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "requirements": [ + { + "id": "e66fa86a-829c-4acf-a6db-4da62b37b9fd", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "", + "needId": "2da47190-74e5-458b-8f5d-06d5f0d53f51", + "type": "requirement", + "variants": [ + { + "id": "fc42da6c-dc5d-4161-a86d-c9aab2d80f14", + "requirementText": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "instruction": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "6c7d9a09-f358-4b40-b9c7-c8ef721beb85", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "6b686680-5b70-4360-b212-acde1a7550ef", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "0fa0ed1a-69ae-47c6-821b-403820537bca", + "title": "Dette skal bli så langt at vi må legge på scroll", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "c6c71c0b-831d-43a3-88a4-4bc32fdb2782", + "title": "Vi kan lage mange behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "82c1de09-a100-472b-af97-bbd5f793a764", + "title": "1 behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "c6c71c0b-831d-43a3-88a4-4bc32fdb2782", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "8120236a-3bc5-4ff6-94a2-27e4a4db364e", + "title": "2 behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "c6c71c0b-831d-43a3-88a4-4bc32fdb2782", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "719ad9b0-d207-49d8-b6f8-3d07b8bf6c6d", + "title": "behov med liten bokstav", + "description": "", + "requirements": [], + "type": "need", + "parent": "c6c71c0b-831d-43a3-88a4-4bc32fdb2782", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "3ead6a9a-f8e7-4953-834e-f74eb6678f06", + "title": "3 behov", + "description": "", + "requirements": [ + { + "id": "ca01dfdc-fbb4-4574-b037-d85a61cad2d3", + "title": "test", + "description": "", + "needId": "3ead6a9a-f8e7-4953-834e-f74eb6678f06", + "type": "requirement", + "variants": [ + { + "id": "08bd560c-8b67-4917-8632-9811ab777574", + "requirementText": "123", + "instruction": "VEILLEEEDDDNING", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "47b657ca-a854-4cbc-a8ff-f4beb92f3400" + ], + "questions": [ + { + "id": "a6176fd0-bebf-41b3-990e-5215eb04a651", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "99611fbd-a546-472a-8a3a-5ae78aba6a98", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Den har beskrivelse" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "c6c71c0b-831d-43a3-88a4-4bc32fdb2782", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "b3a01630-2c25-4141-9b1d-799c457b5c9d", + "title": "5 behov", + "description": "", + "requirements": [ + { + "id": "13b07d56-e333-486d-a4cc-94c078d5327a", + "title": "5 krav", + "description": "", + "needId": "b3a01630-2c25-4141-9b1d-799c457b5c9d", + "type": "requirement", + "variants": [ + { + "id": "768baaac-7757-4c9d-a4b6-1f68ad7cf248", + "requirementText": "", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b4d1db8e-8d33-4d7d-a0c8-6ac7f1974453" + ], + "questions": [ + { + "id": "42d5333c-dee1-41c0-819e-07136d870721", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10, + "step": 1, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Testvariant" + }, + { + "id": "97b1604a-f7d9-4ad2-8c68-b83122978566", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "gosse" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "089674ad-d770-46fd-aa8a-9b8a57d0b1fe", + "title": "test", + "description": "", + "needId": "b3a01630-2c25-4141-9b1d-799c457b5c9d", + "type": "requirement", + "variants": [], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "3ead6a9a-f8e7-4953-834e-f74eb6678f06", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "31b69528-0019-47b7-9d47-318aca88ea3e", + "title": "4 behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "c6c71c0b-831d-43a3-88a4-4bc32fdb2782", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "6ed38a24-faf7-4b77-a859-b7c60ba2c2ce", + "title": "Koder", + "description": "", + "codes": [ + { + "id": "6e0ffc15-a4c6-4eea-82e9-818b788e5536", + "title": "kode", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "9168c90f-af0f-425f-9ff8-7f3afa522afc", + "title": "Dette her blir en eldig lang tekst, hvordan skal dette gå hve kan vite det, hjelp hjelp hjelp", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "11112888-57fb-4d31-ab4c-acfd04be0c02", + "title": "Supertest", + "description": "", + "codes": [ + { + "id": "733867a7-f820-44a5-a026-03e52736649b", + "title": "Ny kode", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "8f7e7313-5aa3-4825-b13c-9b98a2a79e16", + "title": "Flere koder", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "b2c819f7-5ce5-41d4-9b2f-4decb445e9c5", + "title": "Jeg kan lage mange", + "description": "Testoo", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "854a3d1a-025f-4ae5-990d-d345e353fb20", + "title": "Tusen koder", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "fbe956e5-915c-4b59-aad1-d4d88fc8c192", + "title": "En mill koder?", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "1263f0f0-4f5e-4545-9788-d26db7a23273", + "title": "Ikke så mange", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "df0afa39-04c0-4eaf-af34-64e04cddb37e", + "title": "stopp nå", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "142b03cc-a943-464e-b95d-8ab374f6ca41", + "title": "Ny kodeliste", + "description": "", + "codes": [ + { + "id": "2eb31785-0473-4ce4-805b-9a491dde78c3", + "title": "Den har 1 kode", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "21b8f9dc-278a-40ce-9bf4-744fe9587840", + "title": "Mange kodeliste", + "description": "", + "codes": [], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "1c5bbe31-b4a2-4c6b-a13e-e1464278b985", + "title": "Kjempekodeliste", + "description": "", + "codes": [], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "c07f08b7-10e3-4258-8cb0-ad153951e03a", + "title": "Million kodelister", + "description": "", + "codes": [], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "99611fbd-a546-472a-8a3a-5ae78aba6a98", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "codes": [ + { + "id": "e82d8b64-6207-4c07-aca2-f5dd70d0d7de", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "d98685b4-03a0-445d-8780-3f5695a58bdf", + "title": "Dette er en dum test", + "description": "Men beskrivelse er på", + "codes": [], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "products": [ + { + "id": "5b00650a-0531-404c-901d-9dd96da2440c", + "title": "Produkt", + "description": "Kjør", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "7f7218ba-c13b-4d5b-8cf9-dcbe8f487b4d", + "title": "Dette produkter har", + "description": "Beskrivelse", + "type": "product", + "parent": "5b00650a-0531-404c-901d-9dd96da2440c", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "16d94d8d-4a1d-4f24-a6eb-c68aff295cb4", + "title": "Produkt 2", + "description": "Test 2", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "d3f71f71-569c-490f-ac55-64e7efe9344e", + "title": "Produkt med alle Questions", + "description": "Spennende hvordan dette blir", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "07cbd177-b3a7-4c62-8c64-b1b5f24c0652", + "title": "Produkt 3", + "description": "fszf", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "563cb3b6-04bf-4fb0-8d9d-0ba396cc6fd2", + "title": "Dette er en test", + "description": "Virk plis", + "type": "product", + "parent": "07cbd177-b3a7-4c62-8c64-b1b5f24c0652", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "54fea996-0deb-4247-af32-1d92f5e0d840", + "title": "OK kjør", + "description": "test", + "type": "product", + "parent": "563cb3b6-04bf-4fb0-8d9d-0ba396cc6fd2", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "72cf8fcb-307d-480e-960a-41a573c094d9", + "title": "Her er det mange produkter", + "description": "kjør", + "type": "product", + "parent": "54fea996-0deb-4247-af32-1d92f5e0d840", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "8e011fea-eb43-47fe-9a60-0f34d72ad2d0", + "title": "Dette er et merkelig produkt", + "description": "Med beskrivelse", + "type": "product", + "parent": "72cf8fcb-307d-480e-960a-41a573c094d9", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "fb8293e2-8f0e-411f-9d0d-5192085156b1", + "title": "Nå lager jeg et relativt langt produkt navn, men det er ikke helt usannsynlig at dette skal finnes", + "description": "Når jeg tenker over det er det vel egentlig ganske usannsynlig, men likevel så burde det jo gå ann å lagre så jeg vet ikke akkurat jeg", + "type": "product", + "parent": "8e011fea-eb43-47fe-9a60-0f34d72ad2d0", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "7a9303de-96cd-4e6e-ba7a-fe6cbeda630d", + "title": "Tusenvis av produkter", + "description": "hei", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "47b657ca-a854-4cbc-a8ff-f4beb92f3400", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "type": "product", + "parent": "7a9303de-96cd-4e6e-ba7a-fe6cbeda630d", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "511ca0ee-4cf4-40f3-a94f-9a37fba87661", + "title": "Et produkt om dagen", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "f1cb04be-663e-4872-996a-541d73e6c057", + "title": "0", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "deletedDate": "2022-04-28T14:37:06.922Z" + }, + { + "id": "62e9b3c5-dd36-4ed9-b6dc-391656b51be6", + "title": "1", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "f55fa241-e53f-495f-8723-a4e10c396c5b", + "title": "2", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "deletedDate": "2022-04-28T14:40:47.889Z" + }, + { + "id": "2c63b1f9-e3af-4018-a187-10abba2cc377", + "title": "3", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "deletedDate": "2022-04-28T14:02:06.964Z" + }, + { + "id": "b4d1db8e-8d33-4d7d-a0c8-6ac7f1974453", + "title": "4", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "deletedDate": "2022-04-28T14:00:07.807Z" + }, + { + "id": "8851aefa-59cf-408d-abbf-44addbdce842", + "title": "5", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "deletedDate": "2022-04-28T13:58:28.721Z" + }, + { + "id": "2846ed0f-1f4f-4156-93d3-c7180737961f", + "title": "6", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "deletedDate": "2022-04-28T14:37:13.830Z" + }, + { + "id": "19c23782-ca7b-4412-bdfc-3561d20f47d3", + "title": "7", + "description": "Kaffe", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "deletedDate": "2022-04-28T14:42:08.785Z" + }, + { + "id": "68fd6aec-68d7-4a49-b9c9-ad8fd49ee113", + "title": "zx", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "deletedDate": "2022-04-28T14:02:10.425Z" + }, + { + "id": "24c1fffd-aa71-459b-b70f-e231911485d0", + "title": "8", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "5762b917-2f99-4395-9b41-dfd1e2805f78", + "title": "werrewew", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "publications": [], + "tags": [ + { + "id": "5a80809d-d621-4772-a1d0-ec2a42cae470", + "title": "Merkelapp", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "0d1237f7-e6c7-495e-b9d0-cd854aad723b", + "title": "Merkelapp 2", + "description": "", + "type": "tag", + "parent": "5a80809d-d621-4772-a1d0-ec2a42cae470", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "51334e8d-2b09-4585-8b93-347560ccc31e", + "title": "MANGEN MERKELAPPA", + "description": "heihei", + "type": "tag", + "parent": "0d1237f7-e6c7-495e-b9d0-cd854aad723b", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "83e892c4-523e-4234-ab68-c1eecf77bdc3", + "title": "Gal", + "description": "", + "type": "tag", + "parent": "51334e8d-2b09-4585-8b93-347560ccc31e", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "c829f865-cf1a-411c-8221-2d15c2abefb0", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "type": "tag", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "version": 10, + "publishedDate": "2022-05-11T07:49:34.438Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "0c76bf8e-3b54-493d-beb3-c59daf0c233a" + }, + { + "id": "1106626d-4899-477f-bcae-e18ac9701039", + "title": "Demoprosjektet", + "description": "Dette er prosjekt det", + "needs": [ + { + "id": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "title": "Dette er et behov", + "description": "", + "requirements": [ + { + "id": "ae1d3e71-590d-4822-84d3-fa9c8bc41d2b", + "title": "Krav", + "description": "", + "needId": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "tags": [], + "variants": [ + { + "id": "02059f10-ae36-4412-a10f-852b4dc408f6", + "requirementText": "test kjør", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "41fc2071-dc09-4669-94d9-f28d0aa3ad52", + "type": "Q_TEXT", + "config": { + "max": 1000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "653a3f21-1fb7-4bdb-85b4-c5f91bb73505", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "f5322452-6425-4cc0-a0b9-357919d46289", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "11112888-57fb-4d31-ab4c-acfd04be0c02", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Hello" + }, + { + "id": "29f4872a-28b4-44f5-8db7-39625243dda9", + "requirementText": "", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "54fea996-0deb-4247-af32-1d92f5e0d840", + "563cb3b6-04bf-4fb0-8d9d-0ba396cc6fd2", + "07cbd177-b3a7-4c62-8c64-b1b5f24c0652" + ], + "questions": [ + { + "id": "e94f4a4e-3fc9-41ad-82a0-a750b2b17555", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "341af8a4-aa08-4bb0-8c95-dca601a85f70", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "142b03cc-a943-464e-b95d-8ab374f6ca41", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "56b15670-e31e-415c-9bf1-43e376e8d5bc", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Dette er en varian" + } + ], + "type": "requirement", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "231e5480-f2e7-4872-9284-3e51cd33163f", + "title": "nytt krav", + "description": "", + "needId": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "type": "requirement", + "variants": [ + { + "id": "3fd8ca34-ff40-4f45-b075-28f5a8149058", + "requirementText": "Test", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "5b00650a-0531-404c-901d-9dd96da2440c", + "563cb3b6-04bf-4fb0-8d9d-0ba396cc6fd2", + "07cbd177-b3a7-4c62-8c64-b1b5f24c0652" + ], + "questions": [ + { + "id": "d3da0d0d-aeae-48f4-b261-1eb82c36f7db", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": false + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "da9c2627-3315-4cb5-a46b-a09a8cdc41c0", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "6ed38a24-faf7-4b77-a859-b7c60ba2c2ce", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Test" + }, + { + "id": "3ea9ae98-3ef5-464d-beff-b18fc51e317c", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "b922c385-db9b-467a-b84a-3cd63458f16c", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 5, + "step": 1, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Hei" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "e66a91c6-5bd5-4638-a000-e236ba92010d", + "title": "Nytt krav", + "description": "", + "needId": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "type": "requirement", + "variants": [ + { + "id": "87b95368-2a97-4045-811a-9f072793e091", + "requirementText": "test", + "instruction": "tst", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "16d94d8d-4a1d-4f24-a6eb-c68aff295cb4" + ], + "questions": [ + { + "id": "62beb746-3fbc-4af1-81c1-c27a1731d460", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "cded5691-1ce0-48c3-b3c2-821f2fd0fbbb", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "6ed38a24-faf7-4b77-a859-b7c60ba2c2ce", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "TEst" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "dbbf3e8a-8aec-4907-8c1f-8d8274fc22c0", + "title": "Nytt behov", + "description": "", + "requirements": [ + { + "id": "79bc4472-90a8-460f-a947-39e0796e58b4", + "title": "Testooo", + "description": "", + "needId": "dbbf3e8a-8aec-4907-8c1f-8d8274fc22c0", + "type": "requirement", + "variants": [ + { + "id": "5c51cdb1-447f-47cd-81a4-2b31f28eba52", + "requirementText": "Kjlrda", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "5b00650a-0531-404c-901d-9dd96da2440c", + "07cbd177-b3a7-4c62-8c64-b1b5f24c0652" + ], + "questions": [], + "type": "requirement", + "description": "Hva skkjer" + }, + { + "id": "bbaa8b6a-47e0-4463-9e40-27591532d16b", + "requirementText": "tull", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "Hei du" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "65527ccb-5e00-490a-98bd-36d6b25fcaa3", + "title": "Hvor mange nivåer kan vi ha", + "description": "", + "requirements": [], + "type": "need", + "parent": "dbbf3e8a-8aec-4907-8c1f-8d8274fc22c0", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "33924ab6-5ee7-4c15-99ad-75af33774c54", + "title": "Enda behov", + "description": "", + "requirements": [ + { + "id": "9cb9e1eb-7cd0-4e10-bc71-1e8e0a2bd981", + "title": "Dustekrav", + "description": "", + "needId": "33924ab6-5ee7-4c15-99ad-75af33774c54", + "type": "requirement", + "variants": [ + { + "id": "73788544-a109-493e-b2f4-3bb4ab46ee59", + "requirementText": "Dustevariant", + "instruction": "Heia", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "e6a73228-66e6-4288-b75b-aa3e7176b182", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "11112888-57fb-4d31-ab4c-acfd04be0c02", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Kjlørr" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "dbbf3e8a-8aec-4907-8c1f-8d8274fc22c0", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "07dd8e16-919e-44f1-aab6-45b9ca63c961", + "title": "Mange behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "33924ab6-5ee7-4c15-99ad-75af33774c54", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "89b190d5-97b6-49a2-a20d-239b02866af7", + "title": "1000 behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "07dd8e16-919e-44f1-aab6-45b9ca63c961", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "01aedf91-967b-4f84-98fd-0ddf4ea43ef5", + "title": "Dette er en veldig veldig langt tekst for et behov som ikke skal gjøre noe som helst", + "description": "", + "requirements": [], + "type": "need", + "parent": "89b190d5-97b6-49a2-a20d-239b02866af7", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "6642fda4-96e0-4e5e-856a-b4a452f2d847", + "title": "Lag et nytt behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "01aedf91-967b-4f84-98fd-0ddf4ea43ef5", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "8dea6771-44b5-4657-99de-793b61900f26", + "title": "Superbehov", + "description": "", + "requirements": [], + "type": "need", + "parent": "6642fda4-96e0-4e5e-856a-b4a452f2d847", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "01d633c1-c349-4a9c-a16f-1e1c5b6c165e", + "title": "Behovet", + "description": "", + "requirements": [ + { + "id": "6663c59d-8187-4e07-bb8e-561598ab5633", + "title": "Nytt krav", + "description": "", + "needId": "01d633c1-c349-4a9c-a16f-1e1c5b6c165e", + "type": "requirement", + "variants": [ + { + "id": "f0889677-c55e-4fb3-a72d-af59c6f1bcd4", + "requirementText": "Ny variant", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "info", + "description": "TEst" + }, + { + "id": "1403418f-e0bd-4b1c-90fc-208c2490552c", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "info", + "description": "Test 2" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "2a0240f1-bea9-4208-a2d9-2f04393171bf", + "title": "Behov med alle questions", + "description": "Spennende", + "requirements": [ + { + "id": "3b303931-20c1-48f5-acd9-b3bd5aa9e5de", + "title": "Dette er et krav", + "description": "", + "needId": "2a0240f1-bea9-4208-a2d9-2f04393171bf", + "type": "requirement", + "variants": [ + { + "id": "1636f2e9-2c41-4d0a-ad51-5e0a2f17c27e", + "requirementText": "Kravteksten er som så", + "instruction": "Veiledning hei på deg", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "d3f71f71-569c-490f-ac55-64e7efe9344e" + ], + "questions": [ + { + "id": "d205901b-1f39-499a-a009-be56e07351ee", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "f30b6cfd-d4a4-4bef-8552-7d555d72fad6", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "6ed38a24-faf7-4b77-a859-b7c60ba2c2ce", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "7152bbcd-6a58-4538-be14-9303dd57ebc1", + "type": "Q_FILEUPLOAD", + "config": { + "template": null, + "uploadInSpec": false, + "allowMultipleFiles": false, + "fileEndings": [], + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "files": [ + "" + ] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "68fbd9ea-8d0a-4731-a225-674114f92d23", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "8c34887b-b560-4694-9cf4-6a653dae1695", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "c20b05b9-24db-41d4-a476-c7869faed15f", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10, + "step": 1, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "485caac2-8907-436e-9f97-2be22fdd618d", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Variant #1" + }, + { + "id": "804a71a5-6e64-467a-8bda-22dcd5668e0b", + "requirementText": "kraaavtekst", + "instruction": "veeeeiledning", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "d3f71f71-569c-490f-ac55-64e7efe9344e" + ], + "questions": [ + { + "id": "935244d0-ec5e-402d-b68d-ccd8f8482d42", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "7671f13e-77c6-4a6a-93c7-1b0a5bfcb06e", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "11112888-57fb-4d31-ab4c-acfd04be0c02", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "04809e97-bae7-4510-a3d8-a665a3536c13", + "type": "Q_FILEUPLOAD", + "config": { + "template": null, + "uploadInSpec": false, + "allowMultipleFiles": false, + "fileEndings": [], + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "files": [ + "" + ] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "3c56a234-1744-4c67-a255-6932b14fa1f3", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "6e7eece5-7c6a-4814-ba8d-d2cb864740a3", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "9ca3883b-5090-4fa6-a0ea-bdc57c13ec2d", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10, + "step": 1, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "3139b29f-d5fd-4f6a-a957-3db6babc1491", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Variant #2" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "78a470ce-527a-4dda-8051-284e1f0ab899", + "title": "Ekstra krav", + "description": "", + "needId": "2a0240f1-bea9-4208-a2d9-2f04393171bf", + "type": "requirement", + "variants": [ + { + "id": "c18387b3-ddd6-40ed-a36d-867ad8bde2e5", + "requirementText": "kravt", + "instruction": "veild", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "d3f71f71-569c-490f-ac55-64e7efe9344e" + ], + "questions": [ + { + "id": "bd8a7658-93a0-4e8d-a958-a7eb0e322b97", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "0ad13210-48ae-44d4-a902-b416b6bf55d8", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "142b03cc-a943-464e-b95d-8ab374f6ca41", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "147d8a82-cb6e-4939-9a04-cca1ff48c68b", + "type": "Q_FILEUPLOAD", + "config": { + "template": null, + "uploadInSpec": false, + "allowMultipleFiles": false, + "fileEndings": [], + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "files": [ + "" + ] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "bef68280-6297-44ac-84c3-6bde7c012ce1", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "60a2fcf7-794c-4286-9bb0-c7c994ccd9cb", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "5d253775-0cc7-4a21-a94f-91c07ad996ae", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10, + "step": 1, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "3b793d42-4440-46f1-94bf-5cc1cd7dd420", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Bare en variant her" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "6b686680-5b70-4360-b212-acde1a7550ef", + "title": "Vi kan ha mange veldig lange behover for det er det vi behøver. Dette er et skikkelig langt behov som forhpoentligvis skal strekke seg over flere 1000 linjer. Mest for test purposes, men kanskje også det er et relevant behov som vi får bruk for i eventuelle annskaffelser. Det blir spennede å se ", + "description": "Den har også beskrivelse", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "2da47190-74e5-458b-8f5d-06d5f0d53f51", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "requirements": [ + { + "id": "e66fa86a-829c-4acf-a6db-4da62b37b9fd", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "", + "needId": "2da47190-74e5-458b-8f5d-06d5f0d53f51", + "type": "requirement", + "variants": [ + { + "id": "fc42da6c-dc5d-4161-a86d-c9aab2d80f14", + "requirementText": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "instruction": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "6c7d9a09-f358-4b40-b9c7-c8ef721beb85", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "6b686680-5b70-4360-b212-acde1a7550ef", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "0fa0ed1a-69ae-47c6-821b-403820537bca", + "title": "Dette skal bli så langt at vi må legge på scroll", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "c6c71c0b-831d-43a3-88a4-4bc32fdb2782", + "title": "Vi kan lage mange behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "82c1de09-a100-472b-af97-bbd5f793a764", + "title": "1 behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "c6c71c0b-831d-43a3-88a4-4bc32fdb2782", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "8120236a-3bc5-4ff6-94a2-27e4a4db364e", + "title": "2 behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "c6c71c0b-831d-43a3-88a4-4bc32fdb2782", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "719ad9b0-d207-49d8-b6f8-3d07b8bf6c6d", + "title": "behov med liten bokstav", + "description": "", + "requirements": [], + "type": "need", + "parent": "c6c71c0b-831d-43a3-88a4-4bc32fdb2782", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "3ead6a9a-f8e7-4953-834e-f74eb6678f06", + "title": "3 behov", + "description": "", + "requirements": [ + { + "id": "ca01dfdc-fbb4-4574-b037-d85a61cad2d3", + "title": "test", + "description": "", + "needId": "3ead6a9a-f8e7-4953-834e-f74eb6678f06", + "type": "requirement", + "variants": [ + { + "id": "08bd560c-8b67-4917-8632-9811ab777574", + "requirementText": "123", + "instruction": "VEILLEEEDDDNING", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "47b657ca-a854-4cbc-a8ff-f4beb92f3400" + ], + "questions": [ + { + "id": "a6176fd0-bebf-41b3-990e-5215eb04a651", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "99611fbd-a546-472a-8a3a-5ae78aba6a98", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Den har beskrivelse" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "c6c71c0b-831d-43a3-88a4-4bc32fdb2782", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "b3a01630-2c25-4141-9b1d-799c457b5c9d", + "title": "5 behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "3ead6a9a-f8e7-4953-834e-f74eb6678f06", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "31b69528-0019-47b7-9d47-318aca88ea3e", + "title": "4 behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "c6c71c0b-831d-43a3-88a4-4bc32fdb2782", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "6ed38a24-faf7-4b77-a859-b7c60ba2c2ce", + "title": "Koder", + "description": "", + "codes": [ + { + "id": "6e0ffc15-a4c6-4eea-82e9-818b788e5536", + "title": "kode", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "9168c90f-af0f-425f-9ff8-7f3afa522afc", + "title": "Dette her blir en eldig lang tekst, hvordan skal dette gå hve kan vite det, hjelp hjelp hjelp", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "11112888-57fb-4d31-ab4c-acfd04be0c02", + "title": "Supertest", + "description": "", + "codes": [ + { + "id": "733867a7-f820-44a5-a026-03e52736649b", + "title": "Ny kode", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "8f7e7313-5aa3-4825-b13c-9b98a2a79e16", + "title": "Flere koder", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "b2c819f7-5ce5-41d4-9b2f-4decb445e9c5", + "title": "Jeg kan lage mange", + "description": "Testoo", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "854a3d1a-025f-4ae5-990d-d345e353fb20", + "title": "Tusen koder", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "fbe956e5-915c-4b59-aad1-d4d88fc8c192", + "title": "En mill koder?", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "1263f0f0-4f5e-4545-9788-d26db7a23273", + "title": "Ikke så mange", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "df0afa39-04c0-4eaf-af34-64e04cddb37e", + "title": "stopp nå", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "142b03cc-a943-464e-b95d-8ab374f6ca41", + "title": "Ny kodeliste", + "description": "", + "codes": [ + { + "id": "2eb31785-0473-4ce4-805b-9a491dde78c3", + "title": "Den har 1 kode", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "21b8f9dc-278a-40ce-9bf4-744fe9587840", + "title": "Mange kodeliste", + "description": "", + "codes": [], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "1c5bbe31-b4a2-4c6b-a13e-e1464278b985", + "title": "Kjempekodeliste", + "description": "", + "codes": [], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "c07f08b7-10e3-4258-8cb0-ad153951e03a", + "title": "Million kodelister", + "description": "", + "codes": [], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "99611fbd-a546-472a-8a3a-5ae78aba6a98", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "codes": [ + { + "id": "e82d8b64-6207-4c07-aca2-f5dd70d0d7de", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "d98685b4-03a0-445d-8780-3f5695a58bdf", + "title": "Dette er en dum test", + "description": "Men beskrivelse er på", + "codes": [], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "products": [ + { + "id": "5b00650a-0531-404c-901d-9dd96da2440c", + "title": "Produkt", + "description": "Kjør", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "7f7218ba-c13b-4d5b-8cf9-dcbe8f487b4d", + "title": "Dette produkter har", + "description": "Beskrivelse", + "type": "product", + "parent": "5b00650a-0531-404c-901d-9dd96da2440c", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "16d94d8d-4a1d-4f24-a6eb-c68aff295cb4", + "title": "Produkt 2", + "description": "Test 2", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "d3f71f71-569c-490f-ac55-64e7efe9344e", + "title": "Produkt med alle Questions", + "description": "Spennende hvordan dette blir", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "07cbd177-b3a7-4c62-8c64-b1b5f24c0652", + "title": "Produkt 3", + "description": "fszf", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "563cb3b6-04bf-4fb0-8d9d-0ba396cc6fd2", + "title": "Dette er en test", + "description": "Virk plis", + "type": "product", + "parent": "07cbd177-b3a7-4c62-8c64-b1b5f24c0652", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "54fea996-0deb-4247-af32-1d92f5e0d840", + "title": "OK kjør", + "description": "test", + "type": "product", + "parent": "563cb3b6-04bf-4fb0-8d9d-0ba396cc6fd2", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "72cf8fcb-307d-480e-960a-41a573c094d9", + "title": "Her er det mange produkter", + "description": "kjør", + "type": "product", + "parent": "54fea996-0deb-4247-af32-1d92f5e0d840", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "8e011fea-eb43-47fe-9a60-0f34d72ad2d0", + "title": "Dette er et merkelig produkt", + "description": "Med beskrivelse", + "type": "product", + "parent": "72cf8fcb-307d-480e-960a-41a573c094d9", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "fb8293e2-8f0e-411f-9d0d-5192085156b1", + "title": "Nå lager jeg et relativt langt produkt navn, men det er ikke helt usannsynlig at dette skal finnes", + "description": "Når jeg tenker over det er det vel egentlig ganske usannsynlig, men likevel så burde det jo gå ann å lagre så jeg vet ikke akkurat jeg", + "type": "product", + "parent": "8e011fea-eb43-47fe-9a60-0f34d72ad2d0", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "7a9303de-96cd-4e6e-ba7a-fe6cbeda630d", + "title": "Tusenvis av produkter", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "47b657ca-a854-4cbc-a8ff-f4beb92f3400", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "type": "product", + "parent": "7a9303de-96cd-4e6e-ba7a-fe6cbeda630d", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "159bf7c6-4835-476f-9faa-6f873cd8af09", + "title": "Mange produkter", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "511ca0ee-4cf4-40f3-a94f-9a37fba87661", + "title": "Et produkt om dagen", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "publications": [], + "tags": [ + { + "id": "5a80809d-d621-4772-a1d0-ec2a42cae470", + "title": "Merkelapp", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "0d1237f7-e6c7-495e-b9d0-cd854aad723b", + "title": "Merkelapp 2", + "description": "", + "type": "tag", + "parent": "5a80809d-d621-4772-a1d0-ec2a42cae470", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "51334e8d-2b09-4585-8b93-347560ccc31e", + "title": "MANGEN MERKELAPPA", + "description": "heihei", + "type": "tag", + "parent": "0d1237f7-e6c7-495e-b9d0-cd854aad723b", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "83e892c4-523e-4234-ab68-c1eecf77bdc3", + "title": "Gal", + "description": "", + "type": "tag", + "parent": "51334e8d-2b09-4585-8b93-347560ccc31e", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "c829f865-cf1a-411c-8221-2d15c2abefb0", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "type": "tag", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "version": 9, + "publishedDate": "2022-04-26T13:39:04.274Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "0c76bf8e-3b54-493d-beb3-c59daf0c233a" + }, + { + "id": "9154daf8-ca6e-4b47-bfca-058b61f39acb", + "title": "Demoprosjektet", + "description": "Dette er prosjekt det", + "needs": [ + { + "id": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "title": "Dette er et behov", + "description": "", + "requirements": [ + { + "id": "ae1d3e71-590d-4822-84d3-fa9c8bc41d2b", + "title": "Krav", + "description": "", + "needId": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "tags": [], + "variants": [ + { + "id": "02059f10-ae36-4412-a10f-852b4dc408f6", + "requirementText": "test kjør", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "41fc2071-dc09-4669-94d9-f28d0aa3ad52", + "type": "Q_TEXT", + "config": { + "max": 1000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "653a3f21-1fb7-4bdb-85b4-c5f91bb73505", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "f5322452-6425-4cc0-a0b9-357919d46289", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "11112888-57fb-4d31-ab4c-acfd04be0c02", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Hello" + }, + { + "id": "29f4872a-28b4-44f5-8db7-39625243dda9", + "requirementText": "", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "54fea996-0deb-4247-af32-1d92f5e0d840", + "563cb3b6-04bf-4fb0-8d9d-0ba396cc6fd2", + "07cbd177-b3a7-4c62-8c64-b1b5f24c0652" + ], + "questions": [ + { + "id": "e94f4a4e-3fc9-41ad-82a0-a750b2b17555", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "341af8a4-aa08-4bb0-8c95-dca601a85f70", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "142b03cc-a943-464e-b95d-8ab374f6ca41", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "56b15670-e31e-415c-9bf1-43e376e8d5bc", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Dette er en varian" + } + ], + "type": "requirement", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "231e5480-f2e7-4872-9284-3e51cd33163f", + "title": "nytt krav", + "description": "", + "needId": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "type": "requirement", + "variants": [ + { + "id": "3fd8ca34-ff40-4f45-b075-28f5a8149058", + "requirementText": "Test", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "5b00650a-0531-404c-901d-9dd96da2440c", + "563cb3b6-04bf-4fb0-8d9d-0ba396cc6fd2", + "07cbd177-b3a7-4c62-8c64-b1b5f24c0652" + ], + "questions": [ + { + "id": "d3da0d0d-aeae-48f4-b261-1eb82c36f7db", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": false + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "da9c2627-3315-4cb5-a46b-a09a8cdc41c0", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "6ed38a24-faf7-4b77-a859-b7c60ba2c2ce", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Test" + }, + { + "id": "3ea9ae98-3ef5-464d-beff-b18fc51e317c", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "b922c385-db9b-467a-b84a-3cd63458f16c", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 5, + "specMin": 0, + "specMax": 5, + "step": 1, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Hei" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "e66a91c6-5bd5-4638-a000-e236ba92010d", + "title": "Nytt krav", + "description": "", + "needId": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "type": "requirement", + "variants": [ + { + "id": "87b95368-2a97-4045-811a-9f072793e091", + "requirementText": "test", + "instruction": "tst", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "16d94d8d-4a1d-4f24-a6eb-c68aff295cb4" + ], + "questions": [ + { + "id": "62beb746-3fbc-4af1-81c1-c27a1731d460", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "cded5691-1ce0-48c3-b3c2-821f2fd0fbbb", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "6ed38a24-faf7-4b77-a859-b7c60ba2c2ce", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "TEst" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "dbbf3e8a-8aec-4907-8c1f-8d8274fc22c0", + "title": "Nytt behov", + "description": "", + "requirements": [ + { + "id": "79bc4472-90a8-460f-a947-39e0796e58b4", + "title": "Testooo", + "description": "", + "needId": "dbbf3e8a-8aec-4907-8c1f-8d8274fc22c0", + "type": "requirement", + "variants": [ + { + "id": "5c51cdb1-447f-47cd-81a4-2b31f28eba52", + "requirementText": "Kjlrda", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "5b00650a-0531-404c-901d-9dd96da2440c", + "07cbd177-b3a7-4c62-8c64-b1b5f24c0652" + ], + "questions": [], + "type": "requirement", + "description": "Hva skkjer" + }, + { + "id": "bbaa8b6a-47e0-4463-9e40-27591532d16b", + "requirementText": "tull", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "Hei du" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "65527ccb-5e00-490a-98bd-36d6b25fcaa3", + "title": "Hvor mange nivåer kan vi ha", + "description": "", + "requirements": [], + "type": "need", + "parent": "dbbf3e8a-8aec-4907-8c1f-8d8274fc22c0", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "33924ab6-5ee7-4c15-99ad-75af33774c54", + "title": "Enda behov", + "description": "", + "requirements": [ + { + "id": "9cb9e1eb-7cd0-4e10-bc71-1e8e0a2bd981", + "title": "Dustekrav", + "description": "", + "needId": "33924ab6-5ee7-4c15-99ad-75af33774c54", + "type": "requirement", + "variants": [ + { + "id": "73788544-a109-493e-b2f4-3bb4ab46ee59", + "requirementText": "Dustevariant", + "instruction": "Heia", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "e6a73228-66e6-4288-b75b-aa3e7176b182", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "11112888-57fb-4d31-ab4c-acfd04be0c02", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Kjlørr" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "dbbf3e8a-8aec-4907-8c1f-8d8274fc22c0", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "07dd8e16-919e-44f1-aab6-45b9ca63c961", + "title": "Mange behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "33924ab6-5ee7-4c15-99ad-75af33774c54", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "89b190d5-97b6-49a2-a20d-239b02866af7", + "title": "1000 behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "07dd8e16-919e-44f1-aab6-45b9ca63c961", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "01aedf91-967b-4f84-98fd-0ddf4ea43ef5", + "title": "Dette er en veldig veldig langt tekst for et behov som ikke skal gjøre noe som helst", + "description": "", + "requirements": [], + "type": "need", + "parent": "89b190d5-97b6-49a2-a20d-239b02866af7", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "6642fda4-96e0-4e5e-856a-b4a452f2d847", + "title": "Lag et nytt behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "01aedf91-967b-4f84-98fd-0ddf4ea43ef5", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "8dea6771-44b5-4657-99de-793b61900f26", + "title": "Superbehov", + "description": "", + "requirements": [], + "type": "need", + "parent": "6642fda4-96e0-4e5e-856a-b4a452f2d847", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "01d633c1-c349-4a9c-a16f-1e1c5b6c165e", + "title": "Behovet", + "description": "", + "requirements": [ + { + "id": "6663c59d-8187-4e07-bb8e-561598ab5633", + "title": "Nytt krav", + "description": "", + "needId": "01d633c1-c349-4a9c-a16f-1e1c5b6c165e", + "type": "requirement", + "variants": [ + { + "id": "f0889677-c55e-4fb3-a72d-af59c6f1bcd4", + "requirementText": "Ny variant", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "info", + "description": "TEst" + }, + { + "id": "1403418f-e0bd-4b1c-90fc-208c2490552c", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "info", + "description": "Test 2" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "2a0240f1-bea9-4208-a2d9-2f04393171bf", + "title": "Behov med alle questions", + "description": "Spennende", + "requirements": [ + { + "id": "3b303931-20c1-48f5-acd9-b3bd5aa9e5de", + "title": "Dette er et krav", + "description": "", + "needId": "2a0240f1-bea9-4208-a2d9-2f04393171bf", + "type": "requirement", + "variants": [ + { + "id": "1636f2e9-2c41-4d0a-ad51-5e0a2f17c27e", + "requirementText": "Kravteksten er som så", + "instruction": "Veiledning hei på deg", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "d3f71f71-569c-490f-ac55-64e7efe9344e" + ], + "questions": [ + { + "id": "d205901b-1f39-499a-a009-be56e07351ee", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "f30b6cfd-d4a4-4bef-8552-7d555d72fad6", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "6ed38a24-faf7-4b77-a859-b7c60ba2c2ce", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "7152bbcd-6a58-4538-be14-9303dd57ebc1", + "type": "Q_FILEUPLOAD", + "config": { + "template": null, + "uploadInSpec": false, + "allowMultipleFiles": false, + "fileEndings": [], + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "files": [ + "" + ] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "68fbd9ea-8d0a-4731-a225-674114f92d23", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "8c34887b-b560-4694-9cf4-6a653dae1695", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "c20b05b9-24db-41d4-a476-c7869faed15f", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10, + "step": 1, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ], + "specMin": 0, + "specMax": 10 + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "485caac2-8907-436e-9f97-2be22fdd618d", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Variant #1" + }, + { + "id": "804a71a5-6e64-467a-8bda-22dcd5668e0b", + "requirementText": "kraaavtekst", + "instruction": "veeeeiledning", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "d3f71f71-569c-490f-ac55-64e7efe9344e" + ], + "questions": [ + { + "id": "935244d0-ec5e-402d-b68d-ccd8f8482d42", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "7671f13e-77c6-4a6a-93c7-1b0a5bfcb06e", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "11112888-57fb-4d31-ab4c-acfd04be0c02", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "04809e97-bae7-4510-a3d8-a665a3536c13", + "type": "Q_FILEUPLOAD", + "config": { + "template": null, + "uploadInSpec": false, + "allowMultipleFiles": false, + "fileEndings": [], + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "files": [ + "" + ] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "3c56a234-1744-4c67-a255-6932b14fa1f3", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "6e7eece5-7c6a-4814-ba8d-d2cb864740a3", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "9ca3883b-5090-4fa6-a0ea-bdc57c13ec2d", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10, + "specMin": 0, + "specMax": 10, + "step": 1, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "3139b29f-d5fd-4f6a-a957-3db6babc1491", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Variant #2" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "78a470ce-527a-4dda-8051-284e1f0ab899", + "title": "Ekstra krav", + "description": "", + "needId": "2a0240f1-bea9-4208-a2d9-2f04393171bf", + "type": "requirement", + "variants": [ + { + "id": "c18387b3-ddd6-40ed-a36d-867ad8bde2e5", + "requirementText": "kravt", + "instruction": "veild", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "d3f71f71-569c-490f-ac55-64e7efe9344e" + ], + "questions": [ + { + "id": "bd8a7658-93a0-4e8d-a958-a7eb0e322b97", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "0ad13210-48ae-44d4-a902-b416b6bf55d8", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "142b03cc-a943-464e-b95d-8ab374f6ca41", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "147d8a82-cb6e-4939-9a04-cca1ff48c68b", + "type": "Q_FILEUPLOAD", + "config": { + "template": null, + "uploadInSpec": false, + "allowMultipleFiles": false, + "fileEndings": [], + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "files": [ + "" + ] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "bef68280-6297-44ac-84c3-6bde7c012ce1", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "60a2fcf7-794c-4286-9bb0-c7c994ccd9cb", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "5d253775-0cc7-4a21-a94f-91c07ad996ae", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10, + "specMin": 0, + "specMax": 10, + "step": 1, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "3b793d42-4440-46f1-94bf-5cc1cd7dd420", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Bare en variant her" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "6b686680-5b70-4360-b212-acde1a7550ef", + "title": "Vi kan ha mange veldig lange behover for det er det vi behøver. Dette er et skikkelig langt behov som forhpoentligvis skal strekke seg over flere 1000 linjer. Mest for test purposes, men kanskje også det er et relevant behov som vi får bruk for i eventuelle annskaffelser. Det blir spennede å se ", + "description": "Den har også beskrivelse", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "2da47190-74e5-458b-8f5d-06d5f0d53f51", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "requirements": [ + { + "id": "e66fa86a-829c-4acf-a6db-4da62b37b9fd", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "", + "needId": "2da47190-74e5-458b-8f5d-06d5f0d53f51", + "type": "requirement", + "variants": [ + { + "id": "fc42da6c-dc5d-4161-a86d-c9aab2d80f14", + "requirementText": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "instruction": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "6c7d9a09-f358-4b40-b9c7-c8ef721beb85", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "6b686680-5b70-4360-b212-acde1a7550ef", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "0fa0ed1a-69ae-47c6-821b-403820537bca", + "title": "Dette skal bli så langt at vi må legge på scroll", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "c6c71c0b-831d-43a3-88a4-4bc32fdb2782", + "title": "Vi kan lage mange behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "82c1de09-a100-472b-af97-bbd5f793a764", + "title": "1 behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "c6c71c0b-831d-43a3-88a4-4bc32fdb2782", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "8120236a-3bc5-4ff6-94a2-27e4a4db364e", + "title": "2 behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "c6c71c0b-831d-43a3-88a4-4bc32fdb2782", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "719ad9b0-d207-49d8-b6f8-3d07b8bf6c6d", + "title": "behov med liten bokstav", + "description": "", + "requirements": [], + "type": "need", + "parent": "c6c71c0b-831d-43a3-88a4-4bc32fdb2782", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "3ead6a9a-f8e7-4953-834e-f74eb6678f06", + "title": "3 behov", + "description": "", + "requirements": [ + { + "id": "ca01dfdc-fbb4-4574-b037-d85a61cad2d3", + "title": "test", + "description": "", + "needId": "3ead6a9a-f8e7-4953-834e-f74eb6678f06", + "type": "requirement", + "variants": [ + { + "id": "08bd560c-8b67-4917-8632-9811ab777574", + "requirementText": "123", + "instruction": "VEILLEEEDDDNING", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "47b657ca-a854-4cbc-a8ff-f4beb92f3400" + ], + "questions": [ + { + "id": "a6176fd0-bebf-41b3-990e-5215eb04a651", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "99611fbd-a546-472a-8a3a-5ae78aba6a98", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Den har beskrivelse" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "c6c71c0b-831d-43a3-88a4-4bc32fdb2782", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "b3a01630-2c25-4141-9b1d-799c457b5c9d", + "title": "5 behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "3ead6a9a-f8e7-4953-834e-f74eb6678f06", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "31b69528-0019-47b7-9d47-318aca88ea3e", + "title": "4 behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "c6c71c0b-831d-43a3-88a4-4bc32fdb2782", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "6ed38a24-faf7-4b77-a859-b7c60ba2c2ce", + "title": "Koder", + "description": "", + "codes": [ + { + "id": "6e0ffc15-a4c6-4eea-82e9-818b788e5536", + "title": "kode", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "9168c90f-af0f-425f-9ff8-7f3afa522afc", + "title": "Dette her blir en eldig lang tekst, hvordan skal dette gå hve kan vite det, hjelp hjelp hjelp", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "11112888-57fb-4d31-ab4c-acfd04be0c02", + "title": "Supertest", + "description": "", + "codes": [ + { + "id": "733867a7-f820-44a5-a026-03e52736649b", + "title": "Ny kode", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "8f7e7313-5aa3-4825-b13c-9b98a2a79e16", + "title": "Flere koder", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "b2c819f7-5ce5-41d4-9b2f-4decb445e9c5", + "title": "Jeg kan lage mange", + "description": "Testoo", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "854a3d1a-025f-4ae5-990d-d345e353fb20", + "title": "Tusen koder", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "fbe956e5-915c-4b59-aad1-d4d88fc8c192", + "title": "En mill koder?", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "1263f0f0-4f5e-4545-9788-d26db7a23273", + "title": "Ikke så mange", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "df0afa39-04c0-4eaf-af34-64e04cddb37e", + "title": "stopp nå", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "142b03cc-a943-464e-b95d-8ab374f6ca41", + "title": "Ny kodeliste", + "description": "", + "codes": [ + { + "id": "2eb31785-0473-4ce4-805b-9a491dde78c3", + "title": "Den har 1 kode", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "21b8f9dc-278a-40ce-9bf4-744fe9587840", + "title": "Mange kodeliste", + "description": "", + "codes": [], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "1c5bbe31-b4a2-4c6b-a13e-e1464278b985", + "title": "Kjempekodeliste", + "description": "", + "codes": [], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "c07f08b7-10e3-4258-8cb0-ad153951e03a", + "title": "Million kodelister", + "description": "", + "codes": [], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "99611fbd-a546-472a-8a3a-5ae78aba6a98", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "codes": [ + { + "id": "e82d8b64-6207-4c07-aca2-f5dd70d0d7de", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "d98685b4-03a0-445d-8780-3f5695a58bdf", + "title": "Dette er en dum test", + "description": "Men beskrivelse er på", + "codes": [], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "products": [ + { + "id": "5b00650a-0531-404c-901d-9dd96da2440c", + "title": "Produkt", + "description": "Kjør", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "7f7218ba-c13b-4d5b-8cf9-dcbe8f487b4d", + "title": "Dette produkter har", + "description": "Beskrivelse", + "type": "product", + "parent": "5b00650a-0531-404c-901d-9dd96da2440c", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "16d94d8d-4a1d-4f24-a6eb-c68aff295cb4", + "title": "Produkt 2", + "description": "Test 2", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "d3f71f71-569c-490f-ac55-64e7efe9344e", + "title": "Produkt med alle Questions", + "description": "Spennende hvordan dette blir", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "07cbd177-b3a7-4c62-8c64-b1b5f24c0652", + "title": "Produkt 3", + "description": "fszf", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "563cb3b6-04bf-4fb0-8d9d-0ba396cc6fd2", + "title": "Dette er en test", + "description": "Virk plis", + "type": "product", + "parent": "07cbd177-b3a7-4c62-8c64-b1b5f24c0652", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "54fea996-0deb-4247-af32-1d92f5e0d840", + "title": "OK kjør", + "description": "test", + "type": "product", + "parent": "563cb3b6-04bf-4fb0-8d9d-0ba396cc6fd2", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "72cf8fcb-307d-480e-960a-41a573c094d9", + "title": "Her er det mange produkter", + "description": "kjør", + "type": "product", + "parent": "54fea996-0deb-4247-af32-1d92f5e0d840", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "8e011fea-eb43-47fe-9a60-0f34d72ad2d0", + "title": "Dette er et merkelig produkt", + "description": "Med beskrivelse", + "type": "product", + "parent": "72cf8fcb-307d-480e-960a-41a573c094d9", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "fb8293e2-8f0e-411f-9d0d-5192085156b1", + "title": "Nå lager jeg et relativt langt produkt navn, men det er ikke helt usannsynlig at dette skal finnes", + "description": "Når jeg tenker over det er det vel egentlig ganske usannsynlig, men likevel så burde det jo gå ann å lagre så jeg vet ikke akkurat jeg", + "type": "product", + "parent": "8e011fea-eb43-47fe-9a60-0f34d72ad2d0", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "7a9303de-96cd-4e6e-ba7a-fe6cbeda630d", + "title": "Tusenvis av produkter", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "47b657ca-a854-4cbc-a8ff-f4beb92f3400", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "type": "product", + "parent": "7a9303de-96cd-4e6e-ba7a-fe6cbeda630d", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "159bf7c6-4835-476f-9faa-6f873cd8af09", + "title": "Mange produkter", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "511ca0ee-4cf4-40f3-a94f-9a37fba87661", + "title": "Et produkt om dagen", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "publications": [], + "tags": [ + { + "id": "5a80809d-d621-4772-a1d0-ec2a42cae470", + "title": "Merkelapp", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "0d1237f7-e6c7-495e-b9d0-cd854aad723b", + "title": "Merkelapp 2", + "description": "", + "type": "tag", + "parent": "5a80809d-d621-4772-a1d0-ec2a42cae470", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "51334e8d-2b09-4585-8b93-347560ccc31e", + "title": "MANGEN MERKELAPPA", + "description": "heihei", + "type": "tag", + "parent": "5a80809d-d621-4772-a1d0-ec2a42cae470", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "83e892c4-523e-4234-ab68-c1eecf77bdc3", + "title": "Gal", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "c829f865-cf1a-411c-8221-2d15c2abefb0", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "type": "tag", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "version": 8, + "publishedDate": "2022-04-25T12:39:24.788Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "0c76bf8e-3b54-493d-beb3-c59daf0c233a" + }, + { + "id": "4d74d107-c1c6-46fd-aca3-d410da7f47b7", + "title": "Demoprosjektet", + "description": "Dette er prosjekt det", + "needs": [ + { + "id": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "title": "Dette er et behov", + "description": "", + "requirements": [ + { + "id": "ae1d3e71-590d-4822-84d3-fa9c8bc41d2b", + "title": "Krav", + "description": "", + "needId": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "tags": [], + "variants": [ + { + "id": "02059f10-ae36-4412-a10f-852b4dc408f6", + "requirementText": "test kjør", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "41fc2071-dc09-4669-94d9-f28d0aa3ad52", + "type": "Q_TEXT", + "config": { + "max": 1000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "653a3f21-1fb7-4bdb-85b4-c5f91bb73505", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "f5322452-6425-4cc0-a0b9-357919d46289", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "11112888-57fb-4d31-ab4c-acfd04be0c02", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Hello" + }, + { + "id": "29f4872a-28b4-44f5-8db7-39625243dda9", + "requirementText": "", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "54fea996-0deb-4247-af32-1d92f5e0d840", + "563cb3b6-04bf-4fb0-8d9d-0ba396cc6fd2", + "07cbd177-b3a7-4c62-8c64-b1b5f24c0652" + ], + "questions": [ + { + "id": "e94f4a4e-3fc9-41ad-82a0-a750b2b17555", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "341af8a4-aa08-4bb0-8c95-dca601a85f70", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "142b03cc-a943-464e-b95d-8ab374f6ca41", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "56b15670-e31e-415c-9bf1-43e376e8d5bc", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Dette er en varian" + } + ], + "type": "requirement", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "231e5480-f2e7-4872-9284-3e51cd33163f", + "title": "nytt krav", + "description": "", + "needId": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "type": "requirement", + "variants": [ + { + "id": "3fd8ca34-ff40-4f45-b075-28f5a8149058", + "requirementText": "Test", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "5b00650a-0531-404c-901d-9dd96da2440c", + "563cb3b6-04bf-4fb0-8d9d-0ba396cc6fd2", + "07cbd177-b3a7-4c62-8c64-b1b5f24c0652" + ], + "questions": [ + { + "id": "d3da0d0d-aeae-48f4-b261-1eb82c36f7db", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": false + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "da9c2627-3315-4cb5-a46b-a09a8cdc41c0", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "6ed38a24-faf7-4b77-a859-b7c60ba2c2ce", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Test" + }, + { + "id": "3ea9ae98-3ef5-464d-beff-b18fc51e317c", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "b922c385-db9b-467a-b84a-3cd63458f16c", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 5, + "specMin": 0, + "specMax": 5, + "step": 1, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Hei" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "e66a91c6-5bd5-4638-a000-e236ba92010d", + "title": "Nytt krav", + "description": "", + "needId": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "type": "requirement", + "variants": [ + { + "id": "87b95368-2a97-4045-811a-9f072793e091", + "requirementText": "test", + "instruction": "tst", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "16d94d8d-4a1d-4f24-a6eb-c68aff295cb4" + ], + "questions": [ + { + "id": "62beb746-3fbc-4af1-81c1-c27a1731d460", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "cded5691-1ce0-48c3-b3c2-821f2fd0fbbb", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "6ed38a24-faf7-4b77-a859-b7c60ba2c2ce", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "TEst" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "dbbf3e8a-8aec-4907-8c1f-8d8274fc22c0", + "title": "Nytt behov", + "description": "", + "requirements": [ + { + "id": "79bc4472-90a8-460f-a947-39e0796e58b4", + "title": "Testooo", + "description": "", + "needId": "dbbf3e8a-8aec-4907-8c1f-8d8274fc22c0", + "type": "requirement", + "variants": [ + { + "id": "5c51cdb1-447f-47cd-81a4-2b31f28eba52", + "requirementText": "Kjlrda", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "5b00650a-0531-404c-901d-9dd96da2440c", + "07cbd177-b3a7-4c62-8c64-b1b5f24c0652" + ], + "questions": [], + "type": "requirement", + "description": "Hva skkjer" + }, + { + "id": "bbaa8b6a-47e0-4463-9e40-27591532d16b", + "requirementText": "tull", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "Hei du" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "65527ccb-5e00-490a-98bd-36d6b25fcaa3", + "title": "Hvor mange nivåer kan vi ha", + "description": "", + "requirements": [], + "type": "need", + "parent": "dbbf3e8a-8aec-4907-8c1f-8d8274fc22c0", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "33924ab6-5ee7-4c15-99ad-75af33774c54", + "title": "Enda behov", + "description": "", + "requirements": [ + { + "id": "9cb9e1eb-7cd0-4e10-bc71-1e8e0a2bd981", + "title": "Dustekrav", + "description": "", + "needId": "33924ab6-5ee7-4c15-99ad-75af33774c54", + "type": "requirement", + "variants": [ + { + "id": "73788544-a109-493e-b2f4-3bb4ab46ee59", + "requirementText": "Dustevariant", + "instruction": "Heia", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "e6a73228-66e6-4288-b75b-aa3e7176b182", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "11112888-57fb-4d31-ab4c-acfd04be0c02", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Kjlørr" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "dbbf3e8a-8aec-4907-8c1f-8d8274fc22c0", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "07dd8e16-919e-44f1-aab6-45b9ca63c961", + "title": "Mange behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "33924ab6-5ee7-4c15-99ad-75af33774c54", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "89b190d5-97b6-49a2-a20d-239b02866af7", + "title": "1000 behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "07dd8e16-919e-44f1-aab6-45b9ca63c961", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "01aedf91-967b-4f84-98fd-0ddf4ea43ef5", + "title": "Dette er en veldig veldig langt tekst for et behov som ikke skal gjøre noe som helst", + "description": "", + "requirements": [], + "type": "need", + "parent": "89b190d5-97b6-49a2-a20d-239b02866af7", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "6642fda4-96e0-4e5e-856a-b4a452f2d847", + "title": "Lag et nytt behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "01aedf91-967b-4f84-98fd-0ddf4ea43ef5", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "8dea6771-44b5-4657-99de-793b61900f26", + "title": "Superbehov", + "description": "", + "requirements": [], + "type": "need", + "parent": "6642fda4-96e0-4e5e-856a-b4a452f2d847", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "01d633c1-c349-4a9c-a16f-1e1c5b6c165e", + "title": "Behovet", + "description": "", + "requirements": [ + { + "id": "6663c59d-8187-4e07-bb8e-561598ab5633", + "title": "Nytt krav", + "description": "", + "needId": "01d633c1-c349-4a9c-a16f-1e1c5b6c165e", + "type": "requirement", + "variants": [ + { + "id": "f0889677-c55e-4fb3-a72d-af59c6f1bcd4", + "requirementText": "Ny variant", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "info", + "description": "TEst" + }, + { + "id": "1403418f-e0bd-4b1c-90fc-208c2490552c", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "info", + "description": "Test 2" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "2a0240f1-bea9-4208-a2d9-2f04393171bf", + "title": "Behov med alle questions", + "description": "Spennende", + "requirements": [ + { + "id": "3b303931-20c1-48f5-acd9-b3bd5aa9e5de", + "title": "Dette er et krav", + "description": "", + "needId": "2a0240f1-bea9-4208-a2d9-2f04393171bf", + "type": "requirement", + "variants": [ + { + "id": "1636f2e9-2c41-4d0a-ad51-5e0a2f17c27e", + "requirementText": "Kravteksten er som så", + "instruction": "Veiledning hei på deg", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "d3f71f71-569c-490f-ac55-64e7efe9344e" + ], + "questions": [ + { + "id": "d205901b-1f39-499a-a009-be56e07351ee", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "f30b6cfd-d4a4-4bef-8552-7d555d72fad6", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "6ed38a24-faf7-4b77-a859-b7c60ba2c2ce", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "7152bbcd-6a58-4538-be14-9303dd57ebc1", + "type": "Q_FILEUPLOAD", + "config": { + "template": null, + "uploadInSpec": false, + "allowMultipleFiles": false, + "fileEndings": [], + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "files": [ + "" + ] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "68fbd9ea-8d0a-4731-a225-674114f92d23", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "8c34887b-b560-4694-9cf4-6a653dae1695", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "c20b05b9-24db-41d4-a476-c7869faed15f", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10, + "step": 1, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ], + "specMin": 0, + "specMax": 10 + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "485caac2-8907-436e-9f97-2be22fdd618d", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Variant #1" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "6b686680-5b70-4360-b212-acde1a7550ef", + "title": "Vi kan ha mange veldig lange behover for det er det vi behøver. Dette er et skikkelig langt behov som forhpoentligvis skal strekke seg over flere 1000 linjer. Mest for test purposes, men kanskje også det er et relevant behov som vi får bruk for i eventuelle annskaffelser. Det blir spennede å se ", + "description": "Den har også beskrivelse", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "2da47190-74e5-458b-8f5d-06d5f0d53f51", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "requirements": [ + { + "id": "e66fa86a-829c-4acf-a6db-4da62b37b9fd", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "", + "needId": "2da47190-74e5-458b-8f5d-06d5f0d53f51", + "type": "requirement", + "variants": [ + { + "id": "fc42da6c-dc5d-4161-a86d-c9aab2d80f14", + "requirementText": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "instruction": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "6c7d9a09-f358-4b40-b9c7-c8ef721beb85", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "6b686680-5b70-4360-b212-acde1a7550ef", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "0fa0ed1a-69ae-47c6-821b-403820537bca", + "title": "Dette skal bli så langt at vi må legge på scroll", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "c6c71c0b-831d-43a3-88a4-4bc32fdb2782", + "title": "Vi kan lage mange behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "82c1de09-a100-472b-af97-bbd5f793a764", + "title": "1 behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "c6c71c0b-831d-43a3-88a4-4bc32fdb2782", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "8120236a-3bc5-4ff6-94a2-27e4a4db364e", + "title": "2 behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "c6c71c0b-831d-43a3-88a4-4bc32fdb2782", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "719ad9b0-d207-49d8-b6f8-3d07b8bf6c6d", + "title": "behov med liten bokstav", + "description": "", + "requirements": [], + "type": "need", + "parent": "c6c71c0b-831d-43a3-88a4-4bc32fdb2782", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "3ead6a9a-f8e7-4953-834e-f74eb6678f06", + "title": "3 behov", + "description": "", + "requirements": [ + { + "id": "ca01dfdc-fbb4-4574-b037-d85a61cad2d3", + "title": "test", + "description": "", + "needId": "3ead6a9a-f8e7-4953-834e-f74eb6678f06", + "type": "requirement", + "variants": [ + { + "id": "08bd560c-8b67-4917-8632-9811ab777574", + "requirementText": "123", + "instruction": "VEILLEEEDDDNING", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "47b657ca-a854-4cbc-a8ff-f4beb92f3400" + ], + "questions": [ + { + "id": "a6176fd0-bebf-41b3-990e-5215eb04a651", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "99611fbd-a546-472a-8a3a-5ae78aba6a98", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Den har beskrivelse" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "c6c71c0b-831d-43a3-88a4-4bc32fdb2782", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "b3a01630-2c25-4141-9b1d-799c457b5c9d", + "title": "5 behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "3ead6a9a-f8e7-4953-834e-f74eb6678f06", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "31b69528-0019-47b7-9d47-318aca88ea3e", + "title": "4 behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "c6c71c0b-831d-43a3-88a4-4bc32fdb2782", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "6ed38a24-faf7-4b77-a859-b7c60ba2c2ce", + "title": "Koder", + "description": "", + "codes": [ + { + "id": "6e0ffc15-a4c6-4eea-82e9-818b788e5536", + "title": "kode", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "9168c90f-af0f-425f-9ff8-7f3afa522afc", + "title": "Dette her blir en eldig lang tekst, hvordan skal dette gå hve kan vite det, hjelp hjelp hjelp", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "11112888-57fb-4d31-ab4c-acfd04be0c02", + "title": "Supertest", + "description": "", + "codes": [ + { + "id": "733867a7-f820-44a5-a026-03e52736649b", + "title": "Ny kode", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "8f7e7313-5aa3-4825-b13c-9b98a2a79e16", + "title": "Flere koder", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "b2c819f7-5ce5-41d4-9b2f-4decb445e9c5", + "title": "Jeg kan lage mange", + "description": "Testoo", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "854a3d1a-025f-4ae5-990d-d345e353fb20", + "title": "Tusen koder", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "fbe956e5-915c-4b59-aad1-d4d88fc8c192", + "title": "En mill koder?", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "1263f0f0-4f5e-4545-9788-d26db7a23273", + "title": "Ikke så mange", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "df0afa39-04c0-4eaf-af34-64e04cddb37e", + "title": "stopp nå", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "142b03cc-a943-464e-b95d-8ab374f6ca41", + "title": "Ny kodeliste", + "description": "", + "codes": [ + { + "id": "2eb31785-0473-4ce4-805b-9a491dde78c3", + "title": "Den har 1 kode", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "21b8f9dc-278a-40ce-9bf4-744fe9587840", + "title": "Mange kodeliste", + "description": "", + "codes": [], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "1c5bbe31-b4a2-4c6b-a13e-e1464278b985", + "title": "Kjempekodeliste", + "description": "", + "codes": [], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "c07f08b7-10e3-4258-8cb0-ad153951e03a", + "title": "Million kodelister", + "description": "", + "codes": [], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "99611fbd-a546-472a-8a3a-5ae78aba6a98", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "codes": [ + { + "id": "e82d8b64-6207-4c07-aca2-f5dd70d0d7de", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "d98685b4-03a0-445d-8780-3f5695a58bdf", + "title": "Dette er en dum test", + "description": "Men beskrivelse er på", + "codes": [], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "products": [ + { + "id": "5b00650a-0531-404c-901d-9dd96da2440c", + "title": "Produkt", + "description": "Kjør", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "7f7218ba-c13b-4d5b-8cf9-dcbe8f487b4d", + "title": "Dette produkter har", + "description": "Beskrivelse", + "type": "product", + "parent": "5b00650a-0531-404c-901d-9dd96da2440c", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "16d94d8d-4a1d-4f24-a6eb-c68aff295cb4", + "title": "Produkt 2", + "description": "Test 2", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "d3f71f71-569c-490f-ac55-64e7efe9344e", + "title": "Produkt med alle Questions", + "description": "Spennende hvordan dette blir", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "07cbd177-b3a7-4c62-8c64-b1b5f24c0652", + "title": "Produkt 3", + "description": "fszf", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "563cb3b6-04bf-4fb0-8d9d-0ba396cc6fd2", + "title": "Dette er en test", + "description": "Virk plis", + "type": "product", + "parent": "07cbd177-b3a7-4c62-8c64-b1b5f24c0652", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "54fea996-0deb-4247-af32-1d92f5e0d840", + "title": "OK kjør", + "description": "test", + "type": "product", + "parent": "563cb3b6-04bf-4fb0-8d9d-0ba396cc6fd2", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "72cf8fcb-307d-480e-960a-41a573c094d9", + "title": "Her er det mange produkter", + "description": "kjør", + "type": "product", + "parent": "54fea996-0deb-4247-af32-1d92f5e0d840", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "8e011fea-eb43-47fe-9a60-0f34d72ad2d0", + "title": "Dette er et merkelig produkt", + "description": "Med beskrivelse", + "type": "product", + "parent": "72cf8fcb-307d-480e-960a-41a573c094d9", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "fb8293e2-8f0e-411f-9d0d-5192085156b1", + "title": "Nå lager jeg et relativt langt produkt navn, men det er ikke helt usannsynlig at dette skal finnes", + "description": "Når jeg tenker over det er det vel egentlig ganske usannsynlig, men likevel så burde det jo gå ann å lagre så jeg vet ikke akkurat jeg", + "type": "product", + "parent": "8e011fea-eb43-47fe-9a60-0f34d72ad2d0", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "7a9303de-96cd-4e6e-ba7a-fe6cbeda630d", + "title": "Tusenvis av produkter", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "47b657ca-a854-4cbc-a8ff-f4beb92f3400", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "type": "product", + "parent": "7a9303de-96cd-4e6e-ba7a-fe6cbeda630d", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "159bf7c6-4835-476f-9faa-6f873cd8af09", + "title": "Mange produkter", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "511ca0ee-4cf4-40f3-a94f-9a37fba87661", + "title": "Et produkt om dagen", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "publications": [], + "tags": [ + { + "id": "5a80809d-d621-4772-a1d0-ec2a42cae470", + "title": "Merkelapp", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "0d1237f7-e6c7-495e-b9d0-cd854aad723b", + "title": "Merkelapp 2", + "description": "", + "type": "tag", + "parent": "5a80809d-d621-4772-a1d0-ec2a42cae470", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "51334e8d-2b09-4585-8b93-347560ccc31e", + "title": "MANGEN MERKELAPPA", + "description": "heihei", + "type": "tag", + "parent": "5a80809d-d621-4772-a1d0-ec2a42cae470", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "83e892c4-523e-4234-ab68-c1eecf77bdc3", + "title": "Gal", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "c829f865-cf1a-411c-8221-2d15c2abefb0", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "type": "tag", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "version": 7, + "publishedDate": "2022-04-25T09:11:14.732Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "0c76bf8e-3b54-493d-beb3-c59daf0c233a" + }, + { + "id": "8a043eed-d596-4072-a501-5e21e421ce9d", + "title": "Demoprosjektet", + "description": "Dette er prosjekt det", + "needs": [ + { + "id": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "title": "Dette er et behov", + "description": "", + "requirements": [ + { + "id": "ae1d3e71-590d-4822-84d3-fa9c8bc41d2b", + "title": "Krav", + "description": "", + "needId": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "tags": [], + "variants": [ + { + "id": "02059f10-ae36-4412-a10f-852b4dc408f6", + "requirementText": "test kjør", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "41fc2071-dc09-4669-94d9-f28d0aa3ad52", + "type": "Q_TEXT", + "config": { + "max": 1000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "653a3f21-1fb7-4bdb-85b4-c5f91bb73505", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "f5322452-6425-4cc0-a0b9-357919d46289", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "11112888-57fb-4d31-ab4c-acfd04be0c02", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Hello" + }, + { + "id": "29f4872a-28b4-44f5-8db7-39625243dda9", + "requirementText": "", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "54fea996-0deb-4247-af32-1d92f5e0d840", + "563cb3b6-04bf-4fb0-8d9d-0ba396cc6fd2", + "07cbd177-b3a7-4c62-8c64-b1b5f24c0652" + ], + "questions": [ + { + "id": "e94f4a4e-3fc9-41ad-82a0-a750b2b17555", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "341af8a4-aa08-4bb0-8c95-dca601a85f70", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "142b03cc-a943-464e-b95d-8ab374f6ca41", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "56b15670-e31e-415c-9bf1-43e376e8d5bc", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Dette er en varian" + } + ], + "type": "requirement", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "231e5480-f2e7-4872-9284-3e51cd33163f", + "title": "nytt krav", + "description": "", + "needId": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "type": "requirement", + "variants": [ + { + "id": "3fd8ca34-ff40-4f45-b075-28f5a8149058", + "requirementText": "Test", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "5b00650a-0531-404c-901d-9dd96da2440c", + "563cb3b6-04bf-4fb0-8d9d-0ba396cc6fd2", + "07cbd177-b3a7-4c62-8c64-b1b5f24c0652" + ], + "questions": [ + { + "id": "d3da0d0d-aeae-48f4-b261-1eb82c36f7db", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": false + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "da9c2627-3315-4cb5-a46b-a09a8cdc41c0", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "6ed38a24-faf7-4b77-a859-b7c60ba2c2ce", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Test" + }, + { + "id": "3ea9ae98-3ef5-464d-beff-b18fc51e317c", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "Hei" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "e66a91c6-5bd5-4638-a000-e236ba92010d", + "title": "Nytt krav", + "description": "", + "needId": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "type": "requirement", + "variants": [ + { + "id": "87b95368-2a97-4045-811a-9f072793e091", + "requirementText": "test", + "instruction": "tst", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "16d94d8d-4a1d-4f24-a6eb-c68aff295cb4" + ], + "questions": [ + { + "id": "62beb746-3fbc-4af1-81c1-c27a1731d460", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "cded5691-1ce0-48c3-b3c2-821f2fd0fbbb", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "6ed38a24-faf7-4b77-a859-b7c60ba2c2ce", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "TEst" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "dbbf3e8a-8aec-4907-8c1f-8d8274fc22c0", + "title": "Nytt behov", + "description": "", + "requirements": [ + { + "id": "79bc4472-90a8-460f-a947-39e0796e58b4", + "title": "Testooo", + "description": "", + "needId": "dbbf3e8a-8aec-4907-8c1f-8d8274fc22c0", + "type": "requirement", + "variants": [ + { + "id": "5c51cdb1-447f-47cd-81a4-2b31f28eba52", + "requirementText": "Kjlrda", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "5b00650a-0531-404c-901d-9dd96da2440c", + "07cbd177-b3a7-4c62-8c64-b1b5f24c0652" + ], + "questions": [], + "type": "requirement", + "description": "Hva skkjer" + }, + { + "id": "bbaa8b6a-47e0-4463-9e40-27591532d16b", + "requirementText": "tull", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "Hei du" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "65527ccb-5e00-490a-98bd-36d6b25fcaa3", + "title": "Hvor mange nivåer kan vi ha", + "description": "", + "requirements": [], + "type": "need", + "parent": "dbbf3e8a-8aec-4907-8c1f-8d8274fc22c0", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "33924ab6-5ee7-4c15-99ad-75af33774c54", + "title": "Enda behov", + "description": "", + "requirements": [ + { + "id": "9cb9e1eb-7cd0-4e10-bc71-1e8e0a2bd981", + "title": "Dustekrav", + "description": "", + "needId": "33924ab6-5ee7-4c15-99ad-75af33774c54", + "type": "requirement", + "variants": [ + { + "id": "73788544-a109-493e-b2f4-3bb4ab46ee59", + "requirementText": "Dustevariant", + "instruction": "Heia", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "e6a73228-66e6-4288-b75b-aa3e7176b182", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "11112888-57fb-4d31-ab4c-acfd04be0c02", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Kjlørr" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "dbbf3e8a-8aec-4907-8c1f-8d8274fc22c0", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "07dd8e16-919e-44f1-aab6-45b9ca63c961", + "title": "Mange behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "33924ab6-5ee7-4c15-99ad-75af33774c54", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "89b190d5-97b6-49a2-a20d-239b02866af7", + "title": "1000 behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "07dd8e16-919e-44f1-aab6-45b9ca63c961", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "01aedf91-967b-4f84-98fd-0ddf4ea43ef5", + "title": "Dette er en veldig veldig langt tekst for et behov som ikke skal gjøre noe som helst", + "description": "", + "requirements": [], + "type": "need", + "parent": "89b190d5-97b6-49a2-a20d-239b02866af7", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "6642fda4-96e0-4e5e-856a-b4a452f2d847", + "title": "Lag et nytt behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "01aedf91-967b-4f84-98fd-0ddf4ea43ef5", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "8dea6771-44b5-4657-99de-793b61900f26", + "title": "Superbehov", + "description": "", + "requirements": [], + "type": "need", + "parent": "6642fda4-96e0-4e5e-856a-b4a452f2d847", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "01d633c1-c349-4a9c-a16f-1e1c5b6c165e", + "title": "Behovet", + "description": "", + "requirements": [ + { + "id": "6663c59d-8187-4e07-bb8e-561598ab5633", + "title": "Nytt krav", + "description": "", + "needId": "01d633c1-c349-4a9c-a16f-1e1c5b6c165e", + "type": "requirement", + "variants": [ + { + "id": "f0889677-c55e-4fb3-a72d-af59c6f1bcd4", + "requirementText": "Ny variant", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "info", + "description": "TEst" + }, + { + "id": "1403418f-e0bd-4b1c-90fc-208c2490552c", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "info", + "description": "Test 2" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "2a0240f1-bea9-4208-a2d9-2f04393171bf", + "title": "Behov med alle questions", + "description": "Spennende", + "requirements": [ + { + "id": "3b303931-20c1-48f5-acd9-b3bd5aa9e5de", + "title": "Dette er et krav", + "description": "", + "needId": "2a0240f1-bea9-4208-a2d9-2f04393171bf", + "type": "requirement", + "variants": [ + { + "id": "1636f2e9-2c41-4d0a-ad51-5e0a2f17c27e", + "requirementText": "Kravteksten er som så", + "instruction": "Veiledning hei på deg", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "d3f71f71-569c-490f-ac55-64e7efe9344e" + ], + "questions": [ + { + "id": "d205901b-1f39-499a-a009-be56e07351ee", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "f30b6cfd-d4a4-4bef-8552-7d555d72fad6", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "6ed38a24-faf7-4b77-a859-b7c60ba2c2ce", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "7152bbcd-6a58-4538-be14-9303dd57ebc1", + "type": "Q_FILEUPLOAD", + "config": { + "template": null, + "uploadInSpec": false, + "allowMultipleFiles": false, + "fileEndings": [], + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "files": [ + "" + ] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "68fbd9ea-8d0a-4731-a225-674114f92d23", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "8c34887b-b560-4694-9cf4-6a653dae1695", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "c20b05b9-24db-41d4-a476-c7869faed15f", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10, + "step": 1, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "485caac2-8907-436e-9f97-2be22fdd618d", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Variant #1" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "6b686680-5b70-4360-b212-acde1a7550ef", + "title": "Vi kan ha mange veldig lange behover for det er det vi behøver. Dette er et skikkelig langt behov som forhpoentligvis skal strekke seg over flere 1000 linjer. Mest for test purposes, men kanskje også det er et relevant behov som vi får bruk for i eventuelle annskaffelser. Det blir spennede å se ", + "description": "Den har også beskrivelse", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "2da47190-74e5-458b-8f5d-06d5f0d53f51", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "requirements": [ + { + "id": "e66fa86a-829c-4acf-a6db-4da62b37b9fd", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "", + "needId": "2da47190-74e5-458b-8f5d-06d5f0d53f51", + "type": "requirement", + "variants": [ + { + "id": "fc42da6c-dc5d-4161-a86d-c9aab2d80f14", + "requirementText": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "instruction": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "6c7d9a09-f358-4b40-b9c7-c8ef721beb85", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "6b686680-5b70-4360-b212-acde1a7550ef", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "0fa0ed1a-69ae-47c6-821b-403820537bca", + "title": "Dette skal bli så langt at vi må legge på scroll", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "c6c71c0b-831d-43a3-88a4-4bc32fdb2782", + "title": "Vi kan lage mange behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "82c1de09-a100-472b-af97-bbd5f793a764", + "title": "1 behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "c6c71c0b-831d-43a3-88a4-4bc32fdb2782", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "8120236a-3bc5-4ff6-94a2-27e4a4db364e", + "title": "2 behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "c6c71c0b-831d-43a3-88a4-4bc32fdb2782", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "719ad9b0-d207-49d8-b6f8-3d07b8bf6c6d", + "title": "behov med liten bokstav", + "description": "", + "requirements": [], + "type": "need", + "parent": "c6c71c0b-831d-43a3-88a4-4bc32fdb2782", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "3ead6a9a-f8e7-4953-834e-f74eb6678f06", + "title": "3 behov", + "description": "", + "requirements": [ + { + "id": "ca01dfdc-fbb4-4574-b037-d85a61cad2d3", + "title": "test", + "description": "", + "needId": "3ead6a9a-f8e7-4953-834e-f74eb6678f06", + "type": "requirement", + "variants": [ + { + "id": "08bd560c-8b67-4917-8632-9811ab777574", + "requirementText": "123", + "instruction": "VEILLEEEDDDNING", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "47b657ca-a854-4cbc-a8ff-f4beb92f3400" + ], + "questions": [ + { + "id": "a6176fd0-bebf-41b3-990e-5215eb04a651", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "99611fbd-a546-472a-8a3a-5ae78aba6a98", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Den har beskrivelse" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "c6c71c0b-831d-43a3-88a4-4bc32fdb2782", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "b3a01630-2c25-4141-9b1d-799c457b5c9d", + "title": "5 behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "3ead6a9a-f8e7-4953-834e-f74eb6678f06", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "31b69528-0019-47b7-9d47-318aca88ea3e", + "title": "4 behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "c6c71c0b-831d-43a3-88a4-4bc32fdb2782", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "6ed38a24-faf7-4b77-a859-b7c60ba2c2ce", + "title": "Koder", + "description": "", + "codes": [ + { + "id": "6e0ffc15-a4c6-4eea-82e9-818b788e5536", + "title": "kode", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "9168c90f-af0f-425f-9ff8-7f3afa522afc", + "title": "Dette her blir en eldig lang tekst, hvordan skal dette gå hve kan vite det, hjelp hjelp hjelp", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "11112888-57fb-4d31-ab4c-acfd04be0c02", + "title": "Supertest", + "description": "", + "codes": [ + { + "id": "733867a7-f820-44a5-a026-03e52736649b", + "title": "Ny kode", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "8f7e7313-5aa3-4825-b13c-9b98a2a79e16", + "title": "Flere koder", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "b2c819f7-5ce5-41d4-9b2f-4decb445e9c5", + "title": "Jeg kan lage mange", + "description": "Testoo", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "854a3d1a-025f-4ae5-990d-d345e353fb20", + "title": "Tusen koder", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "fbe956e5-915c-4b59-aad1-d4d88fc8c192", + "title": "En mill koder?", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "1263f0f0-4f5e-4545-9788-d26db7a23273", + "title": "Ikke så mange", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "df0afa39-04c0-4eaf-af34-64e04cddb37e", + "title": "stopp nå", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "142b03cc-a943-464e-b95d-8ab374f6ca41", + "title": "Ny kodeliste", + "description": "", + "codes": [ + { + "id": "2eb31785-0473-4ce4-805b-9a491dde78c3", + "title": "Den har 1 kode", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "21b8f9dc-278a-40ce-9bf4-744fe9587840", + "title": "Mange kodeliste", + "description": "", + "codes": [], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "1c5bbe31-b4a2-4c6b-a13e-e1464278b985", + "title": "Kjempekodeliste", + "description": "", + "codes": [], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "c07f08b7-10e3-4258-8cb0-ad153951e03a", + "title": "Million kodelister", + "description": "", + "codes": [], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "99611fbd-a546-472a-8a3a-5ae78aba6a98", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "codes": [ + { + "id": "e82d8b64-6207-4c07-aca2-f5dd70d0d7de", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "d98685b4-03a0-445d-8780-3f5695a58bdf", + "title": "Dette er en dum test", + "description": "Men beskrivelse er på", + "codes": [], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "products": [ + { + "id": "5b00650a-0531-404c-901d-9dd96da2440c", + "title": "Produkt", + "description": "Kjør", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "7f7218ba-c13b-4d5b-8cf9-dcbe8f487b4d", + "title": "Dette produkter har", + "description": "Beskrivelse", + "type": "product", + "parent": "5b00650a-0531-404c-901d-9dd96da2440c", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "16d94d8d-4a1d-4f24-a6eb-c68aff295cb4", + "title": "Produkt 2", + "description": "Test 2", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "d3f71f71-569c-490f-ac55-64e7efe9344e", + "title": "Produkt med alle Questions", + "description": "Spennende hvordan dette blir", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "07cbd177-b3a7-4c62-8c64-b1b5f24c0652", + "title": "Produkt 3", + "description": "fszf", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "563cb3b6-04bf-4fb0-8d9d-0ba396cc6fd2", + "title": "Dette er en test", + "description": "Virk plis", + "type": "product", + "parent": "07cbd177-b3a7-4c62-8c64-b1b5f24c0652", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "54fea996-0deb-4247-af32-1d92f5e0d840", + "title": "OK kjør", + "description": "test", + "type": "product", + "parent": "563cb3b6-04bf-4fb0-8d9d-0ba396cc6fd2", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "72cf8fcb-307d-480e-960a-41a573c094d9", + "title": "Her er det mange produkter", + "description": "kjør", + "type": "product", + "parent": "54fea996-0deb-4247-af32-1d92f5e0d840", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "8e011fea-eb43-47fe-9a60-0f34d72ad2d0", + "title": "Dette er et merkelig produkt", + "description": "Med beskrivelse", + "type": "product", + "parent": "72cf8fcb-307d-480e-960a-41a573c094d9", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "fb8293e2-8f0e-411f-9d0d-5192085156b1", + "title": "Nå lager jeg et relativt langt produkt navn, men det er ikke helt usannsynlig at dette skal finnes", + "description": "Når jeg tenker over det er det vel egentlig ganske usannsynlig, men likevel så burde det jo gå ann å lagre så jeg vet ikke akkurat jeg", + "type": "product", + "parent": "8e011fea-eb43-47fe-9a60-0f34d72ad2d0", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "7a9303de-96cd-4e6e-ba7a-fe6cbeda630d", + "title": "Tusenvis av produkter", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "47b657ca-a854-4cbc-a8ff-f4beb92f3400", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "type": "product", + "parent": "7a9303de-96cd-4e6e-ba7a-fe6cbeda630d", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "159bf7c6-4835-476f-9faa-6f873cd8af09", + "title": "Mange produkter", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "511ca0ee-4cf4-40f3-a94f-9a37fba87661", + "title": "Et produkt om dagen", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "publications": [], + "tags": [ + { + "id": "5a80809d-d621-4772-a1d0-ec2a42cae470", + "title": "Merkelapp", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "0d1237f7-e6c7-495e-b9d0-cd854aad723b", + "title": "Merkelapp 2", + "description": "", + "type": "tag", + "parent": "5a80809d-d621-4772-a1d0-ec2a42cae470", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "51334e8d-2b09-4585-8b93-347560ccc31e", + "title": "MANGEN MERKELAPPA", + "description": "heihei", + "type": "tag", + "parent": "5a80809d-d621-4772-a1d0-ec2a42cae470", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "83e892c4-523e-4234-ab68-c1eecf77bdc3", + "title": "Gal", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "c829f865-cf1a-411c-8221-2d15c2abefb0", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "type": "tag", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "version": 6, + "publishedDate": "2022-04-19T11:58:03.067Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "0c76bf8e-3b54-493d-beb3-c59daf0c233a" + }, + { + "id": "25f97ef6-9a02-462f-a7ad-c4c7904b2103", + "title": "Demoprosjektet", + "description": "Dette er prosjekt det", + "needs": [ + { + "id": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "title": "Dette er et behov", + "description": "", + "requirements": [ + { + "id": "ae1d3e71-590d-4822-84d3-fa9c8bc41d2b", + "title": "Krav", + "description": "", + "needId": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "tags": [], + "variants": [ + { + "id": "02059f10-ae36-4412-a10f-852b4dc408f6", + "requirementText": "test kjør", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "41fc2071-dc09-4669-94d9-f28d0aa3ad52", + "type": "Q_TEXT", + "config": { + "max": 1000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "653a3f21-1fb7-4bdb-85b4-c5f91bb73505", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "f5322452-6425-4cc0-a0b9-357919d46289", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "11112888-57fb-4d31-ab4c-acfd04be0c02", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Hello" + }, + { + "id": "29f4872a-28b4-44f5-8db7-39625243dda9", + "requirementText": "", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "54fea996-0deb-4247-af32-1d92f5e0d840", + "563cb3b6-04bf-4fb0-8d9d-0ba396cc6fd2" + ], + "questions": [ + { + "id": "e94f4a4e-3fc9-41ad-82a0-a750b2b17555", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "341af8a4-aa08-4bb0-8c95-dca601a85f70", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "142b03cc-a943-464e-b95d-8ab374f6ca41", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "56b15670-e31e-415c-9bf1-43e376e8d5bc", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Dette er en variant" + } + ], + "type": "requirement", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "231e5480-f2e7-4872-9284-3e51cd33163f", + "title": "nytt krav", + "description": "", + "needId": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "type": "requirement", + "variants": [ + { + "id": "3fd8ca34-ff40-4f45-b075-28f5a8149058", + "requirementText": "Test", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "5b00650a-0531-404c-901d-9dd96da2440c", + "563cb3b6-04bf-4fb0-8d9d-0ba396cc6fd2", + "07cbd177-b3a7-4c62-8c64-b1b5f24c0652" + ], + "questions": [ + { + "id": "d3da0d0d-aeae-48f4-b261-1eb82c36f7db", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": false + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "da9c2627-3315-4cb5-a46b-a09a8cdc41c0", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "6ed38a24-faf7-4b77-a859-b7c60ba2c2ce", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Test" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "e66a91c6-5bd5-4638-a000-e236ba92010d", + "title": "Nytt krav", + "description": "", + "needId": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "type": "requirement", + "variants": [], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "dbbf3e8a-8aec-4907-8c1f-8d8274fc22c0", + "title": "Nytt behov", + "description": "", + "requirements": [ + { + "id": "79bc4472-90a8-460f-a947-39e0796e58b4", + "title": "Testooo", + "description": "", + "needId": "dbbf3e8a-8aec-4907-8c1f-8d8274fc22c0", + "type": "requirement", + "variants": [ + { + "id": "5c51cdb1-447f-47cd-81a4-2b31f28eba52", + "requirementText": "Kjlrda", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "5b00650a-0531-404c-901d-9dd96da2440c", + "07cbd177-b3a7-4c62-8c64-b1b5f24c0652" + ], + "questions": [], + "type": "requirement", + "description": "Hva skkjer" + }, + { + "id": "bbaa8b6a-47e0-4463-9e40-27591532d16b", + "requirementText": "tull", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "Hei du" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "65527ccb-5e00-490a-98bd-36d6b25fcaa3", + "title": "Hvor mange nivåer kan vi ha", + "description": "", + "requirements": [], + "type": "need", + "parent": "dbbf3e8a-8aec-4907-8c1f-8d8274fc22c0", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "33924ab6-5ee7-4c15-99ad-75af33774c54", + "title": "Enda behov", + "description": "", + "requirements": [ + { + "id": "9cb9e1eb-7cd0-4e10-bc71-1e8e0a2bd981", + "title": "Dustekrav", + "description": "", + "needId": "33924ab6-5ee7-4c15-99ad-75af33774c54", + "type": "requirement", + "variants": [ + { + "id": "73788544-a109-493e-b2f4-3bb4ab46ee59", + "requirementText": "Dustevariant", + "instruction": "Heia", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "e6a73228-66e6-4288-b75b-aa3e7176b182", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "11112888-57fb-4d31-ab4c-acfd04be0c02", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Kjlørr" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "dbbf3e8a-8aec-4907-8c1f-8d8274fc22c0", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "07dd8e16-919e-44f1-aab6-45b9ca63c961", + "title": "Mange behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "33924ab6-5ee7-4c15-99ad-75af33774c54", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "89b190d5-97b6-49a2-a20d-239b02866af7", + "title": "1000 behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "07dd8e16-919e-44f1-aab6-45b9ca63c961", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "01aedf91-967b-4f84-98fd-0ddf4ea43ef5", + "title": "Dette er en veldig veldig langt tekst for et behov som ikke skal gjøre noe som helst", + "description": "", + "requirements": [], + "type": "need", + "parent": "89b190d5-97b6-49a2-a20d-239b02866af7", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "6642fda4-96e0-4e5e-856a-b4a452f2d847", + "title": "Lag et nytt behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "01aedf91-967b-4f84-98fd-0ddf4ea43ef5", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "8dea6771-44b5-4657-99de-793b61900f26", + "title": "Superbehov", + "description": "", + "requirements": [], + "type": "need", + "parent": "6642fda4-96e0-4e5e-856a-b4a452f2d847", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "01d633c1-c349-4a9c-a16f-1e1c5b6c165e", + "title": "Behovet", + "description": "", + "requirements": [ + { + "id": "6663c59d-8187-4e07-bb8e-561598ab5633", + "title": "Nytt krav", + "description": "", + "needId": "01d633c1-c349-4a9c-a16f-1e1c5b6c165e", + "type": "requirement", + "variants": [ + { + "id": "f0889677-c55e-4fb3-a72d-af59c6f1bcd4", + "requirementText": "Ny variant", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "info", + "description": "TEst" + }, + { + "id": "1403418f-e0bd-4b1c-90fc-208c2490552c", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "info", + "description": "Test 2" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "6b686680-5b70-4360-b212-acde1a7550ef", + "title": "Vi kan ha mange veldig lange behover for det er det vi behøver. Dette er et skikkelig langt behov som forhpoentligvis skal strekke seg over flere 1000 linjer. Mest for test purposes, men kanskje også det er et relevant behov som vi får bruk for i eventuelle annskaffelser. Det blir spennede å se ", + "description": "Den har også beskrivelse", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "2da47190-74e5-458b-8f5d-06d5f0d53f51", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "requirements": [ + { + "id": "e66fa86a-829c-4acf-a6db-4da62b37b9fd", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "", + "needId": "2da47190-74e5-458b-8f5d-06d5f0d53f51", + "type": "requirement", + "variants": [ + { + "id": "fc42da6c-dc5d-4161-a86d-c9aab2d80f14", + "requirementText": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "instruction": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "6c7d9a09-f358-4b40-b9c7-c8ef721beb85", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "6b686680-5b70-4360-b212-acde1a7550ef", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "c6c71c0b-831d-43a3-88a4-4bc32fdb2782", + "title": "Vi kan lage mange behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "0fa0ed1a-69ae-47c6-821b-403820537bca", + "title": "Dette skal bli så langt at vi må legge på scroll", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "82c1de09-a100-472b-af97-bbd5f793a764", + "title": "1 behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "8120236a-3bc5-4ff6-94a2-27e4a4db364e", + "title": "2 behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "3ead6a9a-f8e7-4953-834e-f74eb6678f06", + "title": "3 behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "31b69528-0019-47b7-9d47-318aca88ea3e", + "title": "4 behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "b3a01630-2c25-4141-9b1d-799c457b5c9d", + "title": "5 behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "719ad9b0-d207-49d8-b6f8-3d07b8bf6c6d", + "title": "behov med liten bokstav", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "6ed38a24-faf7-4b77-a859-b7c60ba2c2ce", + "title": "Koder", + "description": "", + "codes": [ + { + "id": "6e0ffc15-a4c6-4eea-82e9-818b788e5536", + "title": "kode", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "9168c90f-af0f-425f-9ff8-7f3afa522afc", + "title": "Dette her blir en eldig lang tekst, hvordan skal dette gå hve kan vite det, hjelp hjelp hjelp", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "11112888-57fb-4d31-ab4c-acfd04be0c02", + "title": "Supertest", + "description": "", + "codes": [ + { + "id": "733867a7-f820-44a5-a026-03e52736649b", + "title": "Ny kode", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "8f7e7313-5aa3-4825-b13c-9b98a2a79e16", + "title": "Flere koder", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "b2c819f7-5ce5-41d4-9b2f-4decb445e9c5", + "title": "Jeg kan lage mange", + "description": "Testoo", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "854a3d1a-025f-4ae5-990d-d345e353fb20", + "title": "Tusen koder", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "fbe956e5-915c-4b59-aad1-d4d88fc8c192", + "title": "En mill koder?", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "1263f0f0-4f5e-4545-9788-d26db7a23273", + "title": "Ikke så mange", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "df0afa39-04c0-4eaf-af34-64e04cddb37e", + "title": "stopp nå", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "142b03cc-a943-464e-b95d-8ab374f6ca41", + "title": "Ny kodeliste", + "description": "", + "codes": [ + { + "id": "2eb31785-0473-4ce4-805b-9a491dde78c3", + "title": "Den har 1 kode", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "21b8f9dc-278a-40ce-9bf4-744fe9587840", + "title": "Mange kodeliste", + "description": "", + "codes": [], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "1c5bbe31-b4a2-4c6b-a13e-e1464278b985", + "title": "Kjempekodeliste", + "description": "", + "codes": [], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "c07f08b7-10e3-4258-8cb0-ad153951e03a", + "title": "Million kodelister", + "description": "", + "codes": [], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "99611fbd-a546-472a-8a3a-5ae78aba6a98", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "codes": [ + { + "id": "e82d8b64-6207-4c07-aca2-f5dd70d0d7de", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "d98685b4-03a0-445d-8780-3f5695a58bdf", + "title": "Dette er en dum test", + "description": "Men beskrivelse er på", + "codes": [], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "products": [ + { + "id": "5b00650a-0531-404c-901d-9dd96da2440c", + "title": "Produkt", + "description": "Kjør", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "7f7218ba-c13b-4d5b-8cf9-dcbe8f487b4d", + "title": "Dette produkter har", + "description": "Beskrivelse", + "type": "product", + "parent": "5b00650a-0531-404c-901d-9dd96da2440c", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "16d94d8d-4a1d-4f24-a6eb-c68aff295cb4", + "title": "Produkt 2", + "description": "Test 2", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "07cbd177-b3a7-4c62-8c64-b1b5f24c0652", + "title": "Produkt 3", + "description": "fszf", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "563cb3b6-04bf-4fb0-8d9d-0ba396cc6fd2", + "title": "Dette er en test", + "description": "Virk plis", + "type": "product", + "parent": "07cbd177-b3a7-4c62-8c64-b1b5f24c0652", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "54fea996-0deb-4247-af32-1d92f5e0d840", + "title": "OK kjør", + "description": "test", + "type": "product", + "parent": "563cb3b6-04bf-4fb0-8d9d-0ba396cc6fd2", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "72cf8fcb-307d-480e-960a-41a573c094d9", + "title": "Her er det mange produkter", + "description": "kjør", + "type": "product", + "parent": "54fea996-0deb-4247-af32-1d92f5e0d840", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "8e011fea-eb43-47fe-9a60-0f34d72ad2d0", + "title": "Dette er et merkelig produkt", + "description": "Med beskrivelse", + "type": "product", + "parent": "72cf8fcb-307d-480e-960a-41a573c094d9", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "fb8293e2-8f0e-411f-9d0d-5192085156b1", + "title": "Nå lager jeg et relativt langt produkt navn, men det er ikke helt usannsynlig at dette skal finnes", + "description": "Når jeg tenker over det er det vel egentlig ganske usannsynlig, men likevel så burde det jo gå ann å lagre så jeg vet ikke akkurat jeg", + "type": "product", + "parent": "8e011fea-eb43-47fe-9a60-0f34d72ad2d0", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "7a9303de-96cd-4e6e-ba7a-fe6cbeda630d", + "title": "Tusenvis av produkter", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "47b657ca-a854-4cbc-a8ff-f4beb92f3400", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "type": "product", + "parent": "7a9303de-96cd-4e6e-ba7a-fe6cbeda630d", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "publications": [], + "tags": [ + { + "id": "5a80809d-d621-4772-a1d0-ec2a42cae470", + "title": "Merkelapp", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "0d1237f7-e6c7-495e-b9d0-cd854aad723b", + "title": "Merkelapp 2", + "description": "", + "type": "tag", + "parent": "5a80809d-d621-4772-a1d0-ec2a42cae470", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "51334e8d-2b09-4585-8b93-347560ccc31e", + "title": "MANGEN MERKELAPPA", + "description": "heihei", + "type": "tag", + "parent": "5a80809d-d621-4772-a1d0-ec2a42cae470", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "83e892c4-523e-4234-ab68-c1eecf77bdc3", + "title": "Gal", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "c829f865-cf1a-411c-8221-2d15c2abefb0", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "type": "tag", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "version": 5, + "publishedDate": "2022-04-08T15:05:47.355Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "0c76bf8e-3b54-493d-beb3-c59daf0c233a" + }, + { + "id": "87a86531-91f7-4978-bdc7-8021454730c7", + "title": "Demoprosjektet", + "description": "Dette er prosjekt det", + "needs": [ + { + "id": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "title": "Dette er et behov", + "description": "", + "requirements": [ + { + "id": "ae1d3e71-590d-4822-84d3-fa9c8bc41d2b", + "title": "Krav", + "description": "", + "needId": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "tags": [], + "variants": [ + { + "id": "02059f10-ae36-4412-a10f-852b4dc408f6", + "requirementText": "test kjør", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "5b00650a-0531-404c-901d-9dd96da2440c" + ], + "questions": [ + { + "id": "41fc2071-dc09-4669-94d9-f28d0aa3ad52", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "" + } + ], + "type": "requirement", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "231e5480-f2e7-4872-9284-3e51cd33163f", + "title": "nytt krav", + "description": "", + "needId": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "type": "requirement", + "variants": [ + { + "id": "3fd8ca34-ff40-4f45-b075-28f5a8149058", + "requirementText": "Test", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "5b00650a-0531-404c-901d-9dd96da2440c", + "16d94d8d-4a1d-4f24-a6eb-c68aff295cb4" + ], + "questions": [ + { + "id": "d3da0d0d-aeae-48f4-b261-1eb82c36f7db", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "" + }, + { + "id": "c67440d4-fec2-48ce-8cdd-5a96dc3a1c38", + "requirementText": "test", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "5b00650a-0531-404c-901d-9dd96da2440c", + "16d94d8d-4a1d-4f24-a6eb-c68aff295cb4" + ], + "questions": [], + "type": "requirement", + "description": "" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "cde4978e-0872-47d1-92b0-2ac491635573", + "title": "Masse krav", + "description": "", + "needId": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "type": "requirement", + "variants": [], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "dbbf3e8a-8aec-4907-8c1f-8d8274fc22c0", + "title": "Nytt behov", + "description": "", + "requirements": [ + { + "id": "79bc4472-90a8-460f-a947-39e0796e58b4", + "title": "Testooo", + "description": "", + "needId": "dbbf3e8a-8aec-4907-8c1f-8d8274fc22c0", + "type": "requirement", + "variants": [ + { + "id": "5c51cdb1-447f-47cd-81a4-2b31f28eba52", + "requirementText": "Kjlrda", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "5b00650a-0531-404c-901d-9dd96da2440c", + "07cbd177-b3a7-4c62-8c64-b1b5f24c0652" + ], + "questions": [], + "type": "requirement", + "description": "" + }, + { + "id": "bbaa8b6a-47e0-4463-9e40-27591532d16b", + "requirementText": "tull", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "33924ab6-5ee7-4c15-99ad-75af33774c54", + "title": "Enda behov", + "description": "", + "requirements": [ + { + "id": "9cb9e1eb-7cd0-4e10-bc71-1e8e0a2bd981", + "title": "Dustekrav", + "description": "", + "needId": "33924ab6-5ee7-4c15-99ad-75af33774c54", + "type": "requirement", + "variants": [ + { + "id": "73788544-a109-493e-b2f4-3bb4ab46ee59", + "requirementText": "Dustevariant", + "instruction": "Heia", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "e6a73228-66e6-4288-b75b-aa3e7176b182", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Kjlørr" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "dbbf3e8a-8aec-4907-8c1f-8d8274fc22c0", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "01d633c1-c349-4a9c-a16f-1e1c5b6c165e", + "title": "Behovet", + "description": "", + "requirements": [ + { + "id": "6663c59d-8187-4e07-bb8e-561598ab5633", + "title": "Nytt krav", + "description": "", + "needId": "01d633c1-c349-4a9c-a16f-1e1c5b6c165e", + "type": "requirement", + "variants": [ + { + "id": "f0889677-c55e-4fb3-a72d-af59c6f1bcd4", + "requirementText": "Ny variant", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "6ed38a24-faf7-4b77-a859-b7c60ba2c2ce", + "title": "Koder", + "description": "", + "codes": [ + { + "id": "6e0ffc15-a4c6-4eea-82e9-818b788e5536", + "title": "kode", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "9168c90f-af0f-425f-9ff8-7f3afa522afc", + "title": "Dette her blir en eldig lang tekst, hvordan skal dette gå hve kan vite det, hjelp hjelp hjelp", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "products": [ + { + "id": "5b00650a-0531-404c-901d-9dd96da2440c", + "title": "Produkt", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "16d94d8d-4a1d-4f24-a6eb-c68aff295cb4", + "title": "Produkt 2", + "description": "Test", + "type": "product", + "parent": "5b00650a-0531-404c-901d-9dd96da2440c", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "07cbd177-b3a7-4c62-8c64-b1b5f24c0652", + "title": "Produkt 3", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "publications": [], + "tags": [ + { + "id": "5a80809d-d621-4772-a1d0-ec2a42cae470", + "title": "Merkelapp", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "0d1237f7-e6c7-495e-b9d0-cd854aad723b", + "title": "Merkelapp 2", + "description": "", + "type": "tag", + "parent": "5a80809d-d621-4772-a1d0-ec2a42cae470", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "version": 4, + "publishedDate": "2022-03-29T11:56:48.405Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "0c76bf8e-3b54-493d-beb3-c59daf0c233a" + }, + { + "id": "eb57cf85-2315-46e4-b807-c06ace9aaa11", + "title": "Demoprosjektet", + "description": "Dette er prosjekt det", + "needs": [ + { + "id": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "title": "Dette er et behov", + "description": "", + "requirements": [ + { + "id": "ae1d3e71-590d-4822-84d3-fa9c8bc41d2b", + "title": "Krav", + "description": "", + "needId": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "tags": [], + "variants": [ + { + "id": "02059f10-ae36-4412-a10f-852b4dc408f6", + "requirementText": "test kjør", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "5b00650a-0531-404c-901d-9dd96da2440c" + ], + "questions": [ + { + "id": "41fc2071-dc09-4669-94d9-f28d0aa3ad52", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "" + } + ], + "type": "requirement", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "231e5480-f2e7-4872-9284-3e51cd33163f", + "title": "nytt krav", + "description": "", + "needId": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "type": "requirement", + "variants": [ + { + "id": "3fd8ca34-ff40-4f45-b075-28f5a8149058", + "requirementText": "Test", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "5b00650a-0531-404c-901d-9dd96da2440c", + "16d94d8d-4a1d-4f24-a6eb-c68aff295cb4" + ], + "questions": [ + { + "id": "d3da0d0d-aeae-48f4-b261-1eb82c36f7db", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "" + }, + { + "id": "c67440d4-fec2-48ce-8cdd-5a96dc3a1c38", + "requirementText": "test", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "5b00650a-0531-404c-901d-9dd96da2440c", + "16d94d8d-4a1d-4f24-a6eb-c68aff295cb4" + ], + "questions": [], + "type": "requirement", + "description": "" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "cde4978e-0872-47d1-92b0-2ac491635573", + "title": "Masse krav", + "description": "", + "needId": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "type": "requirement", + "variants": [], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "dbbf3e8a-8aec-4907-8c1f-8d8274fc22c0", + "title": "Nytt behov", + "description": "", + "requirements": [ + { + "id": "79bc4472-90a8-460f-a947-39e0796e58b4", + "title": "Testooo", + "description": "", + "needId": "dbbf3e8a-8aec-4907-8c1f-8d8274fc22c0", + "type": "requirement", + "variants": [ + { + "id": "5c51cdb1-447f-47cd-81a4-2b31f28eba52", + "requirementText": "Kjlrda", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "5b00650a-0531-404c-901d-9dd96da2440c", + "07cbd177-b3a7-4c62-8c64-b1b5f24c0652" + ], + "questions": [], + "type": "requirement", + "description": "" + }, + { + "id": "bbaa8b6a-47e0-4463-9e40-27591532d16b", + "requirementText": "tull", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "33924ab6-5ee7-4c15-99ad-75af33774c54", + "title": "Enda behov", + "description": "", + "requirements": [ + { + "id": "9cb9e1eb-7cd0-4e10-bc71-1e8e0a2bd981", + "title": "Dustekrav", + "description": "", + "needId": "33924ab6-5ee7-4c15-99ad-75af33774c54", + "type": "requirement", + "variants": [ + { + "id": "73788544-a109-493e-b2f4-3bb4ab46ee59", + "requirementText": "Dustevariant", + "instruction": "Heia", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "e6a73228-66e6-4288-b75b-aa3e7176b182", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Kjlørr" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "dbbf3e8a-8aec-4907-8c1f-8d8274fc22c0", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "01d633c1-c349-4a9c-a16f-1e1c5b6c165e", + "title": "Behovet", + "description": "", + "requirements": [ + { + "id": "6663c59d-8187-4e07-bb8e-561598ab5633", + "title": "Nytt krav", + "description": "", + "needId": "01d633c1-c349-4a9c-a16f-1e1c5b6c165e", + "type": "requirement", + "variants": [ + { + "id": "f0889677-c55e-4fb3-a72d-af59c6f1bcd4", + "requirementText": "Ny variant", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "6ed38a24-faf7-4b77-a859-b7c60ba2c2ce", + "title": "Koder", + "description": "", + "codes": [ + { + "id": "6e0ffc15-a4c6-4eea-82e9-818b788e5536", + "title": "kode", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "9168c90f-af0f-425f-9ff8-7f3afa522afc", + "title": "Dette her blir en eldig lang tekst, hvordan skal dette gå hve kan vite det, hjelp hjelp hjelp", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "products": [ + { + "id": "5b00650a-0531-404c-901d-9dd96da2440c", + "title": "Produkt", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "16d94d8d-4a1d-4f24-a6eb-c68aff295cb4", + "title": "Produkt 2", + "description": "Test", + "type": "product", + "parent": "5b00650a-0531-404c-901d-9dd96da2440c", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "07cbd177-b3a7-4c62-8c64-b1b5f24c0652", + "title": "Produkt 3", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "publications": [], + "tags": [ + { + "id": "5a80809d-d621-4772-a1d0-ec2a42cae470", + "title": "Merkelapp", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "0d1237f7-e6c7-495e-b9d0-cd854aad723b", + "title": "Merkelapp 2", + "description": "", + "type": "tag", + "parent": "5a80809d-d621-4772-a1d0-ec2a42cae470", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "version": 3, + "publishedDate": "2022-03-29T11:28:26.932Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "0c76bf8e-3b54-493d-beb3-c59daf0c233a" + }, + { + "id": "43678058-18c7-4c18-bce2-7bc218a8c019", + "title": "Demoprosjektet", + "description": "Dette er prosjekt det", + "needs": [ + { + "id": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "title": "Dette er et behov", + "description": "", + "requirements": [ + { + "id": "ae1d3e71-590d-4822-84d3-fa9c8bc41d2b", + "title": "Krav", + "description": "", + "needId": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "tags": [], + "variants": [ + { + "id": "02059f10-ae36-4412-a10f-852b4dc408f6", + "requirementText": "test kjør", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "5b00650a-0531-404c-901d-9dd96da2440c" + ], + "questions": [ + { + "id": "41fc2071-dc09-4669-94d9-f28d0aa3ad52", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "" + } + ], + "type": "requirement", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "231e5480-f2e7-4872-9284-3e51cd33163f", + "title": "nytt krav", + "description": "", + "needId": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "type": "requirement", + "variants": [ + { + "id": "3fd8ca34-ff40-4f45-b075-28f5a8149058", + "requirementText": "Test", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "5b00650a-0531-404c-901d-9dd96da2440c", + "16d94d8d-4a1d-4f24-a6eb-c68aff295cb4" + ], + "questions": [ + { + "id": "d3da0d0d-aeae-48f4-b261-1eb82c36f7db", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "" + }, + { + "id": "c67440d4-fec2-48ce-8cdd-5a96dc3a1c38", + "requirementText": "test", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "5b00650a-0531-404c-901d-9dd96da2440c", + "16d94d8d-4a1d-4f24-a6eb-c68aff295cb4" + ], + "questions": [], + "type": "requirement", + "description": "" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "cde4978e-0872-47d1-92b0-2ac491635573", + "title": "Masse krav", + "description": "", + "needId": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "type": "requirement", + "variants": [], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "dbbf3e8a-8aec-4907-8c1f-8d8274fc22c0", + "title": "Nytt behov", + "description": "", + "requirements": [ + { + "id": "79bc4472-90a8-460f-a947-39e0796e58b4", + "title": "Testooo", + "description": "", + "needId": "dbbf3e8a-8aec-4907-8c1f-8d8274fc22c0", + "type": "requirement", + "variants": [ + { + "id": "5c51cdb1-447f-47cd-81a4-2b31f28eba52", + "requirementText": "Kjlrda", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "5b00650a-0531-404c-901d-9dd96da2440c", + "07cbd177-b3a7-4c62-8c64-b1b5f24c0652" + ], + "questions": [], + "type": "requirement", + "description": "" + }, + { + "id": "bbaa8b6a-47e0-4463-9e40-27591532d16b", + "requirementText": "tull", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "33924ab6-5ee7-4c15-99ad-75af33774c54", + "title": "Enda behov", + "description": "", + "requirements": [ + { + "id": "9cb9e1eb-7cd0-4e10-bc71-1e8e0a2bd981", + "title": "Dustekrav", + "description": "", + "needId": "33924ab6-5ee7-4c15-99ad-75af33774c54", + "type": "requirement", + "variants": [ + { + "id": "73788544-a109-493e-b2f4-3bb4ab46ee59", + "requirementText": "Dustevariant", + "instruction": "Heia", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "e6a73228-66e6-4288-b75b-aa3e7176b182", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Kjlørr" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "dbbf3e8a-8aec-4907-8c1f-8d8274fc22c0", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "01d633c1-c349-4a9c-a16f-1e1c5b6c165e", + "title": "Behovet", + "description": "", + "requirements": [ + { + "id": "6663c59d-8187-4e07-bb8e-561598ab5633", + "title": "Nytt krav", + "description": "", + "needId": "01d633c1-c349-4a9c-a16f-1e1c5b6c165e", + "type": "requirement", + "variants": [ + { + "id": "f0889677-c55e-4fb3-a72d-af59c6f1bcd4", + "requirementText": "Ny variant", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "6ed38a24-faf7-4b77-a859-b7c60ba2c2ce", + "title": "Koder", + "description": "", + "codes": [ + { + "id": "6e0ffc15-a4c6-4eea-82e9-818b788e5536", + "title": "kode", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "9168c90f-af0f-425f-9ff8-7f3afa522afc", + "title": "Dette her blir en eldig lang tekst, hvordan skal dette gå hve kan vite det, hjelp hjelp hjelp", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "products": [ + { + "id": "5b00650a-0531-404c-901d-9dd96da2440c", + "title": "Produkt", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "16d94d8d-4a1d-4f24-a6eb-c68aff295cb4", + "title": "Produkt 2", + "description": "Test", + "type": "product", + "parent": "5b00650a-0531-404c-901d-9dd96da2440c", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "07cbd177-b3a7-4c62-8c64-b1b5f24c0652", + "title": "Produkt 3", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "publications": [], + "tags": [ + { + "id": "5a80809d-d621-4772-a1d0-ec2a42cae470", + "title": "Merkelapp", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "0d1237f7-e6c7-495e-b9d0-cd854aad723b", + "title": "Merkelapp 2", + "description": "", + "type": "tag", + "parent": "5a80809d-d621-4772-a1d0-ec2a42cae470", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "version": 2, + "publishedDate": "2022-03-29T11:27:55.421Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "0c76bf8e-3b54-493d-beb3-c59daf0c233a" + }, + { + "id": "cd971bd9-26c1-4747-9723-108a766b4c72", + "title": "Demoprosjektet", + "description": "Dette er prosjekt det", + "needs": [ + { + "id": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "title": "Dette er et behov", + "description": "", + "requirements": [ + { + "id": "ae1d3e71-590d-4822-84d3-fa9c8bc41d2b", + "title": "Krav", + "description": "", + "needId": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "tags": [], + "variants": [ + { + "id": "76ee29de-cf32-436b-900d-1f3f87319926", + "requirementText": "requirementText", + "instruction": "instruction", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "619c0ba9-b5f0-4824-9b97-c82c22603ad6", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "" + } + ], + "type": "requirement", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "6ed38a24-faf7-4b77-a859-b7c60ba2c2ce", + "title": "Koder", + "description": "", + "codes": [ + { + "id": "6e0ffc15-a4c6-4eea-82e9-818b788e5536", + "title": "kode", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "products": [ + { + "id": "5b00650a-0531-404c-901d-9dd96da2440c", + "title": "Produkt", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "publications": [], + "tags": [ + { + "id": "5a80809d-d621-4772-a1d0-ec2a42cae470", + "title": "Merkelapp", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "version": 1, + "publishedDate": "2022-03-25T11:37:02.811Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "0c76bf8e-3b54-493d-beb3-c59daf0c233a" + }, + { + "id": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "title": "Demoprosjektet", + "description": "Dette er prosjekt det", + "needs": [ + { + "id": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "title": "tittel", + "description": "sss", + "requirements": [ + { + "id": "ae1d3e71-590d-4822-84d3-fa9c8bc41d2b", + "title": "Kravet", + "description": "", + "needId": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "tags": [], + "variants": [ + { + "id": "02059f10-ae36-4412-a10f-852b4dc408f6", + "requirementText": "test kjør", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "d3f71f71-569c-490f-ac55-64e7efe9344e" + ], + "questions": [ + { + "id": "41fc2071-dc09-4669-94d9-f28d0aa3ad52", + "type": "Q_TEXT", + "config": { + "max": 1000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "653a3f21-1fb7-4bdb-85b4-c5f91bb73505", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "f5322452-6425-4cc0-a0b9-357919d46289", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "11112888-57fb-4d31-ab4c-acfd04be0c02", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "15047fa0-842c-4d4c-9da9-d571a8273328", + "type": "Q_FILEUPLOAD", + "config": { + "template": null, + "uploadInSpec": false, + "allowMultipleFiles": false, + "fileEndings": [], + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "files": [ + "" + ] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "738b9b7b-8b25-44dd-91d9-913e5281f520", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10, + "step": 1, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "c6ebf356-4337-481c-b9f0-074e1bdb31c2", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Helloen" + }, + { + "id": "29f4872a-28b4-44f5-8db7-39625243dda9", + "requirementText": "", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "54fea996-0deb-4247-af32-1d92f5e0d840", + "563cb3b6-04bf-4fb0-8d9d-0ba396cc6fd2", + "07cbd177-b3a7-4c62-8c64-b1b5f24c0652", + "b4d36be5-1502-441f-8de5-29d91d0eab3a" + ], + "questions": [ + { + "id": "e94f4a4e-3fc9-41ad-82a0-a750b2b17555", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "341af8a4-aa08-4bb0-8c95-dca601a85f70", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "142b03cc-a943-464e-b95d-8ab374f6ca41", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "56b15670-e31e-415c-9bf1-43e376e8d5bc", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Dette er en variant" + }, + { + "id": "41b8b68c-209b-479f-bab9-c2a0d73b54cc", + "requirementText": "", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "5b00650a-0531-404c-901d-9dd96da2440c", + "7f7218ba-c13b-4d5b-8cf9-dcbe8f487b4d", + "fb8293e2-8f0e-411f-9d0d-5192085156b1" + ], + "questions": [ + { + "id": "4ab05b39-ead9-47f5-aaed-e5bcb3034eb0", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": false + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "InfoVariant" + } + ], + "type": "requirement", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "231e5480-f2e7-4872-9284-3e51cd33163f", + "title": "nytt krav", + "description": "", + "needId": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "type": "requirement", + "variants": [ + { + "id": "3fd8ca34-ff40-4f45-b075-28f5a8149058", + "requirementText": "Test", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "5b00650a-0531-404c-901d-9dd96da2440c", + "563cb3b6-04bf-4fb0-8d9d-0ba396cc6fd2", + "07cbd177-b3a7-4c62-8c64-b1b5f24c0652" + ], + "questions": [ + { + "id": "d3da0d0d-aeae-48f4-b261-1eb82c36f7db", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": false + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "da9c2627-3315-4cb5-a46b-a09a8cdc41c0", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "6ed38a24-faf7-4b77-a859-b7c60ba2c2ce", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Test" + }, + { + "id": "3ea9ae98-3ef5-464d-beff-b18fc51e317c", + "requirementText": "", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "f55fa241-e53f-495f-8723-a4e10c396c5b" + ], + "questions": [ + { + "id": "b922c385-db9b-467a-b84a-3cd63458f16c", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 5, + "step": 1, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Heicxcx" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "e66a91c6-5bd5-4638-a000-e236ba92010d", + "title": "Nytt krav", + "description": "", + "needId": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "type": "requirement", + "variants": [ + { + "id": "87b95368-2a97-4045-811a-9f072793e091", + "requirementText": "", + "instruction": "tst", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "16d94d8d-4a1d-4f24-a6eb-c68aff295cb4", + "2c63b1f9-e3af-4018-a187-10abba2cc377", + "b4d1db8e-8d33-4d7d-a0c8-6ac7f1974453", + "8851aefa-59cf-408d-abbf-44addbdce842" + ], + "questions": [ + { + "id": "39cb084d-0322-4a5b-887b-4f462cf9d80d", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "8743d5c9-cfc3-4c20-a688-7493f40b16e6", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "6ed38a24-faf7-4b77-a859-b7c60ba2c2ce", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Fest" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "dbbf3e8a-8aec-4907-8c1f-8d8274fc22c0", + "title": "Nytt behov", + "description": "", + "requirements": [ + { + "id": "79bc4472-90a8-460f-a947-39e0796e58b4", + "title": "Testooo", + "description": "", + "needId": "dbbf3e8a-8aec-4907-8c1f-8d8274fc22c0", + "type": "requirement", + "variants": [ + { + "id": "5c51cdb1-447f-47cd-81a4-2b31f28eba52", + "requirementText": "Kjlrda", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "5b00650a-0531-404c-901d-9dd96da2440c", + "07cbd177-b3a7-4c62-8c64-b1b5f24c0652" + ], + "questions": [], + "type": "requirement", + "description": "Hva skkjer" + }, + { + "id": "bbaa8b6a-47e0-4463-9e40-27591532d16b", + "requirementText": "tull", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "Hei du" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "65527ccb-5e00-490a-98bd-36d6b25fcaa3", + "title": "Hvor mange nivåer kan vi ha", + "description": "", + "requirements": [], + "type": "need", + "parent": "dbbf3e8a-8aec-4907-8c1f-8d8274fc22c0", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "33924ab6-5ee7-4c15-99ad-75af33774c54", + "title": "Enda behov", + "description": "", + "requirements": [ + { + "id": "9cb9e1eb-7cd0-4e10-bc71-1e8e0a2bd981", + "title": "Dustekrav", + "description": "", + "needId": "33924ab6-5ee7-4c15-99ad-75af33774c54", + "type": "requirement", + "variants": [ + { + "id": "73788544-a109-493e-b2f4-3bb4ab46ee59", + "requirementText": "Dustevariant", + "instruction": "Heia", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "e6a73228-66e6-4288-b75b-aa3e7176b182", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "11112888-57fb-4d31-ab4c-acfd04be0c02", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Kjlørr" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "89b190d5-97b6-49a2-a20d-239b02866af7", + "title": "1000 behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "33924ab6-5ee7-4c15-99ad-75af33774c54", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "07dd8e16-919e-44f1-aab6-45b9ca63c961", + "title": "Mange behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "89b190d5-97b6-49a2-a20d-239b02866af7", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "01d633c1-c349-4a9c-a16f-1e1c5b6c165e", + "title": "Behovet red", + "description": "", + "requirements": [ + { + "id": "6663c59d-8187-4e07-bb8e-561598ab5633", + "title": "Nytt krav", + "description": "", + "needId": "01d633c1-c349-4a9c-a16f-1e1c5b6c165e", + "type": "requirement", + "variants": [ + { + "id": "f0889677-c55e-4fb3-a72d-af59c6f1bcd4", + "requirementText": "Ny variant", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "info", + "description": "TEst" + }, + { + "id": "1403418f-e0bd-4b1c-90fc-208c2490552c", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "info", + "description": "Test 2" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "01aedf91-967b-4f84-98fd-0ddf4ea43ef5", + "title": "Dette er en veldig veldig langt tekst for et behov som ikke skal gjøre noe som helst", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "2a0240f1-bea9-4208-a2d9-2f04393171bf", + "title": "Behov med alle questions", + "description": "Spennende", + "requirements": [ + { + "id": "3b303931-20c1-48f5-acd9-b3bd5aa9e5de", + "title": "Dette er et krav", + "description": "", + "needId": "2a0240f1-bea9-4208-a2d9-2f04393171bf", + "type": "requirement", + "variants": [ + { + "id": "1636f2e9-2c41-4d0a-ad51-5e0a2f17c27e", + "requirementText": "Kravteksten er som så", + "instruction": "Veiledning hei på deg", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "d3f71f71-569c-490f-ac55-64e7efe9344e" + ], + "questions": [ + { + "id": "d205901b-1f39-499a-a009-be56e07351ee", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "f30b6cfd-d4a4-4bef-8552-7d555d72fad6", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "6ed38a24-faf7-4b77-a859-b7c60ba2c2ce", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "7152bbcd-6a58-4538-be14-9303dd57ebc1", + "type": "Q_FILEUPLOAD", + "config": { + "template": null, + "uploadInSpec": false, + "allowMultipleFiles": false, + "fileEndings": [], + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "files": [ + "" + ] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "68fbd9ea-8d0a-4731-a225-674114f92d23", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "8c34887b-b560-4694-9cf4-6a653dae1695", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "c20b05b9-24db-41d4-a476-c7869faed15f", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10, + "step": 1, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "485caac2-8907-436e-9f97-2be22fdd618d", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Variant #1" + }, + { + "id": "804a71a5-6e64-467a-8bda-22dcd5668e0b", + "requirementText": "kraaavtekst", + "instruction": "veeeeiledning", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "d3f71f71-569c-490f-ac55-64e7efe9344e" + ], + "questions": [ + { + "id": "935244d0-ec5e-402d-b68d-ccd8f8482d42", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "7671f13e-77c6-4a6a-93c7-1b0a5bfcb06e", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "11112888-57fb-4d31-ab4c-acfd04be0c02", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "04809e97-bae7-4510-a3d8-a665a3536c13", + "type": "Q_FILEUPLOAD", + "config": { + "template": null, + "uploadInSpec": false, + "allowMultipleFiles": false, + "fileEndings": [], + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "files": [ + "" + ] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "3c56a234-1744-4c67-a255-6932b14fa1f3", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "6e7eece5-7c6a-4814-ba8d-d2cb864740a3", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "9ca3883b-5090-4fa6-a0ea-bdc57c13ec2d", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10, + "step": 1, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "3139b29f-d5fd-4f6a-a957-3db6babc1491", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Variant #2" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "78a470ce-527a-4dda-8051-284e1f0ab899", + "title": "Ekstra krav", + "description": "", + "needId": "2a0240f1-bea9-4208-a2d9-2f04393171bf", + "type": "requirement", + "variants": [ + { + "id": "c18387b3-ddd6-40ed-a36d-867ad8bde2e5", + "requirementText": "kravt", + "instruction": "veild", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "d3f71f71-569c-490f-ac55-64e7efe9344e" + ], + "questions": [ + { + "id": "bd8a7658-93a0-4e8d-a958-a7eb0e322b97", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": false + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "0ad13210-48ae-44d4-a902-b416b6bf55d8", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "142b03cc-a943-464e-b95d-8ab374f6ca41", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "147d8a82-cb6e-4939-9a04-cca1ff48c68b", + "type": "Q_FILEUPLOAD", + "config": { + "template": null, + "uploadInSpec": false, + "allowMultipleFiles": false, + "fileEndings": [], + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "files": [ + "" + ] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "bef68280-6297-44ac-84c3-6bde7c012ce1", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "60a2fcf7-794c-4286-9bb0-c7c994ccd9cb", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "5d253775-0cc7-4a21-a94f-91c07ad996ae", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10, + "step": 1, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "3b793d42-4440-46f1-94bf-5cc1cd7dd420", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Bare en variant her" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "2da47190-74e5-458b-8f5d-06d5f0d53f51", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "requirements": [ + { + "id": "e66fa86a-829c-4acf-a6db-4da62b37b9fd", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "", + "needId": "2da47190-74e5-458b-8f5d-06d5f0d53f51", + "type": "requirement", + "variants": [ + { + "id": "fc42da6c-dc5d-4161-a86d-c9aab2d80f14", + "requirementText": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "instruction": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "6c7d9a09-f358-4b40-b9c7-c8ef721beb85", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "6b686680-5b70-4360-b212-acde1a7550ef", + "title": "Vi kan ha mange veldig lange behover for det er det vi behøver. Dette er et skikkelig langt behov som forhpoentligvis skal strekke seg over flere 1000 linjer. Mest for test purposes, men kanskje også det er et relevant behov som vi får bruk for i eventuelle annskaffelser. Det blir spennede å se ", + "description": "Den har også beskrivelse", + "requirements": [ + { + "id": "a8353ecc-3e97-4266-8100-1f7cc22f57b7", + "title": "Er det virkelig behov for så lange titler?", + "description": "", + "needId": "6b686680-5b70-4360-b212-acde1a7550ef", + "type": "requirement", + "variants": [ + { + "id": "13f05538-44d2-4ce3-ae77-c4a195b19f79", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [], + "type": "info", + "description": "Bare lurer" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "0fa0ed1a-69ae-47c6-821b-403820537bca", + "title": "Dette skal bli så langt at vi må legge på scroll", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "c6c71c0b-831d-43a3-88a4-4bc32fdb2782", + "title": "Vi kan lage mange behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "8120236a-3bc5-4ff6-94a2-27e4a4db364e", + "title": "2 behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "719ad9b0-d207-49d8-b6f8-3d07b8bf6c6d", + "title": "behov med liten bokstav", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "3ead6a9a-f8e7-4953-834e-f74eb6678f06", + "title": "3 behov", + "description": "", + "requirements": [ + { + "id": "ca01dfdc-fbb4-4574-b037-d85a61cad2d3", + "title": "test", + "description": "", + "needId": "3ead6a9a-f8e7-4953-834e-f74eb6678f06", + "type": "requirement", + "variants": [ + { + "id": "08bd560c-8b67-4917-8632-9811ab777574", + "requirementText": "123", + "instruction": "VEILLEEEDDDNING", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "47b657ca-a854-4cbc-a8ff-f4beb92f3400" + ], + "questions": [ + { + "id": "a6176fd0-bebf-41b3-990e-5215eb04a651", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "99611fbd-a546-472a-8a3a-5ae78aba6a98", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Den har beskrivelse" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "b3a01630-2c25-4141-9b1d-799c457b5c9d", + "title": "5 behov", + "description": "", + "requirements": [ + { + "id": "13b07d56-e333-486d-a4cc-94c078d5327a", + "title": "5 krav", + "description": "", + "needId": "b3a01630-2c25-4141-9b1d-799c457b5c9d", + "type": "requirement", + "variants": [ + { + "id": "768baaac-7757-4c9d-a4b6-1f68ad7cf248", + "requirementText": "", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b4d1db8e-8d33-4d7d-a0c8-6ac7f1974453" + ], + "questions": [ + { + "id": "42d5333c-dee1-41c0-819e-07136d870721", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10, + "step": 1, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Testvariant" + }, + { + "id": "97b1604a-f7d9-4ad2-8c68-b83122978566", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "gosse" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "089674ad-d770-46fd-aa8a-9b8a57d0b1fe", + "title": "test", + "description": "", + "needId": "b3a01630-2c25-4141-9b1d-799c457b5c9d", + "type": "requirement", + "variants": [], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "31b69528-0019-47b7-9d47-318aca88ea3e", + "title": "4 behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "6ed38a24-faf7-4b77-a859-b7c60ba2c2ce", + "title": "Koder", + "description": "", + "codes": [ + { + "id": "6e0ffc15-a4c6-4eea-82e9-818b788e5536", + "title": "kode", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "9168c90f-af0f-425f-9ff8-7f3afa522afc", + "title": "Dette her blir en eldig lang tekst, hvordan skal dette gå hve kan vite det, hjelp hjelp hjelp", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "11112888-57fb-4d31-ab4c-acfd04be0c02", + "title": "Supertest", + "description": "", + "codes": [ + { + "id": "733867a7-f820-44a5-a026-03e52736649b", + "title": "Ny kode", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "8f7e7313-5aa3-4825-b13c-9b98a2a79e16", + "title": "Flere koder", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "b2c819f7-5ce5-41d4-9b2f-4decb445e9c5", + "title": "Jeg kan lage mange", + "description": "Testoo", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "854a3d1a-025f-4ae5-990d-d345e353fb20", + "title": "Tusen koder", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "fbe956e5-915c-4b59-aad1-d4d88fc8c192", + "title": "En mill koder?", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "1263f0f0-4f5e-4545-9788-d26db7a23273", + "title": "Ikke så mange", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "df0afa39-04c0-4eaf-af34-64e04cddb37e", + "title": "stopp nå", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "142b03cc-a943-464e-b95d-8ab374f6ca41", + "title": "Ny kodeliste", + "description": "", + "codes": [ + { + "id": "2eb31785-0473-4ce4-805b-9a491dde78c3", + "title": "Den har 1 kode", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "21b8f9dc-278a-40ce-9bf4-744fe9587840", + "title": "Mange kodeliste", + "description": "", + "codes": [], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "1c5bbe31-b4a2-4c6b-a13e-e1464278b985", + "title": "Kjempekodeliste", + "description": "", + "codes": [], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "c07f08b7-10e3-4258-8cb0-ad153951e03a", + "title": "Million kodelister", + "description": "", + "codes": [], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "99611fbd-a546-472a-8a3a-5ae78aba6a98", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "codes": [ + { + "id": "e82d8b64-6207-4c07-aca2-f5dd70d0d7de", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "d98685b4-03a0-445d-8780-3f5695a58bdf", + "title": "Dette er en dum test", + "description": "Men beskrivelse er på", + "codes": [], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "products": [ + { + "id": "5b00650a-0531-404c-901d-9dd96da2440c", + "title": "Produkt", + "description": "Kjør", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "62e9b3c5-dd36-4ed9-b6dc-391656b51be6", + "title": "1", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "16d94d8d-4a1d-4f24-a6eb-c68aff295cb4", + "title": "Produkt 2", + "description": "Test 2", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "54fea996-0deb-4247-af32-1d92f5e0d840", + "title": "OK kjør", + "description": "test", + "type": "product", + "parent": "16d94d8d-4a1d-4f24-a6eb-c68aff295cb4", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "07cbd177-b3a7-4c62-8c64-b1b5f24c0652", + "title": "Produkt 3", + "description": "fszf", + "type": "product", + "parent": "54fea996-0deb-4247-af32-1d92f5e0d840", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "511ca0ee-4cf4-40f3-a94f-9a37fba87661", + "title": "Et produkt om dagen", + "description": "", + "type": "product", + "parent": "07cbd177-b3a7-4c62-8c64-b1b5f24c0652", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "24c1fffd-aa71-459b-b70f-e231911485d0", + "title": "8", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "5762b917-2f99-4395-9b41-dfd1e2805f78", + "title": "werrewew", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "1e6917dc-7c8d-4b86-bd00-a300632c32e4", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "b4d36be5-1502-441f-8de5-29d91d0eab3a", + "title": "Skal slettes", + "description": "asdads", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "deletedDate": "2022-06-14T11:10:03.230Z" + }, + { + "id": "1821ed63-a727-458c-a4b4-9b79b0b0907b", + "title": "Underprodukt som skal slettes", + "description": "", + "type": "product", + "parent": "b4d36be5-1502-441f-8de5-29d91d0eab3a", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "deletedDate": "2022-06-14T11:08:38.177Z" + } + ], + "publications": [ + { + "id": "cd971bd9-26c1-4747-9723-108a766b4c72", + "bankId": "cd971bd9-26c1-4747-9723-108a766b4c72", + "comment": "Publisering", + "date": "2022-03-25T11:37:02.811Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "43678058-18c7-4c18-bce2-7bc218a8c019", + "bankId": "43678058-18c7-4c18-bce2-7bc218a8c019", + "comment": "Test", + "date": "2022-03-29T11:27:55.421Z", + "type": "publication", + "version": 2, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "eb57cf85-2315-46e4-b807-c06ace9aaa11", + "bankId": "eb57cf85-2315-46e4-b807-c06ace9aaa11", + "comment": "Kjør", + "date": "2022-03-29T11:28:26.932Z", + "type": "publication", + "version": 3, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "87a86531-91f7-4978-bdc7-8021454730c7", + "bankId": "87a86531-91f7-4978-bdc7-8021454730c7", + "comment": "Ny pub", + "date": "2022-03-29T11:56:48.405Z", + "type": "publication", + "version": 4, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "25f97ef6-9a02-462f-a7ad-c4c7904b2103", + "bankId": "25f97ef6-9a02-462f-a7ad-c4c7904b2103", + "comment": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "date": "2022-04-08T15:05:47.355Z", + "type": "publication", + "version": 5, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "8a043eed-d596-4072-a501-5e21e421ce9d", + "bankId": "8a043eed-d596-4072-a501-5e21e421ce9d", + "comment": "Siste publisering", + "date": "2022-04-19T11:58:03.067Z", + "type": "publication", + "version": 6, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "4d74d107-c1c6-46fd-aca3-d410da7f47b7", + "bankId": "4d74d107-c1c6-46fd-aca3-d410da7f47b7", + "comment": "Test av nye specMin/max", + "date": "2022-04-25T09:11:14.732Z", + "type": "publication", + "version": 7, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "9154daf8-ca6e-4b47-bfca-058b61f39acb", + "bankId": "9154daf8-ca6e-4b47-bfca-058b61f39acb", + "comment": "Flere krav", + "date": "2022-04-25T12:39:24.788Z", + "type": "publication", + "version": 8, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "1106626d-4899-477f-bcae-e18ac9701039", + "bankId": "1106626d-4899-477f-bcae-e18ac9701039", + "comment": "Tatt vekk specmin/max", + "date": "2022-04-26T13:39:04.274Z", + "type": "publication", + "version": 9, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "208008ac-e66f-4e3d-8c2d-90181a0dd9ad", + "bankId": "208008ac-e66f-4e3d-8c2d-90181a0dd9ad", + "comment": "Checkbox Queastion test", + "date": "2022-05-11T07:49:34.438Z", + "type": "publication", + "version": 10, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "4ec817b3-f8e1-4fbe-ac15-194ea409e3e3", + "bankId": "4ec817b3-f8e1-4fbe-ac15-194ea409e3e3", + "comment": "Test", + "date": "2022-05-16T07:04:02.082Z", + "type": "publication", + "version": 11, + "sourceOriginal": null, + "sourceRel": null + } + ], + "tags": [ + { + "id": "5a80809d-d621-4772-a1d0-ec2a42cae470", + "title": "Merkelapp", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "0d1237f7-e6c7-495e-b9d0-cd854aad723b", + "title": "Merkelapp 2", + "description": "", + "type": "tag", + "parent": "5a80809d-d621-4772-a1d0-ec2a42cae470", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "51334e8d-2b09-4585-8b93-347560ccc31e", + "title": "MANGEN MERKELAPPA", + "description": "heihei", + "type": "tag", + "parent": "0d1237f7-e6c7-495e-b9d0-cd854aad723b", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "83e892c4-523e-4234-ab68-c1eecf77bdc3", + "title": "Gal", + "description": "", + "type": "tag", + "parent": "51334e8d-2b09-4585-8b93-347560ccc31e", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "c829f865-cf1a-411c-8221-2d15c2abefb0", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "type": "tag", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null + }, + { + "id": "c7fb81f9-c8c4-4c41-9cdf-d5355b44aaf6", + "title": "Demohotellet", + "description": "Enkelt demoprosjekt for visning av ny funksjonalitet", + "needs": [ + { + "id": "1b1db7cf-7df9-4138-8bae-286e07986b18", + "title": "Frokost", + "description": "Dagens viktigste måltid", + "requirements": [ + { + "id": "a83845f6-c8a3-459f-a24e-98be9151f657", + "title": "Frokost åpningstid", + "description": "", + "needId": "1b1db7cf-7df9-4138-8bae-286e07986b18", + "type": "requirement", + "variants": [ + { + "id": "650e9fd2-2ac4-4aa0-83eb-c92589579fa3", + "requirementText": "Når er det tidligste frokosten deres starter?", + "instruction": "Besvar dette kravet med åpningstiden til frokost på hotellet", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "58bfb7bd-d84b-4c73-abab-b84fd427018f", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [ + { + "time": null, + "score": 0 + }, + { + "time": null, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Frokost må være tidlig nok slik at våre ansatte rekker sine daglige gjøremål under oppholdet" + } + ], + "tags": [], + "sourceOriginal": "8429ee6f-41ee-44b5-90d0-73806a228ea8", + "sourceRel": null + }, + { + "id": "82483564-ae15-486c-b80d-35e8317c5218", + "title": "Kaffe til frokostbufféen", + "description": "", + "needId": "1b1db7cf-7df9-4138-8bae-286e07986b18", + "type": "requirement", + "variants": [ + { + "id": "eba0cb25-287f-4b39-8de9-a45fd791fa31", + "requirementText": "Serverer dere varm kaffe under frokosten?", + "instruction": "Ja / Nei på om kaffen blir servert varm", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "a2c6decf-81e0-4f91-aa25-21ed8c81f409", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Det må være kaffe til våre ansatte og den må være varm" + } + ], + "tags": [], + "sourceOriginal": "8429ee6f-41ee-44b5-90d0-73806a228ea8", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "8429ee6f-41ee-44b5-90d0-73806a228ea8", + "sourceRel": null + }, + { + "id": "0449d8b7-22ba-438d-a11a-413f88bca730", + "title": "Senger", + "description": "Spesifikke behov når det kommer til senger", + "requirements": [ + { + "id": "e22ad8ee-07d0-4c13-95df-1d70d67f7e7b", + "title": "Sengenes størrelse", + "description": "", + "needId": "0449d8b7-22ba-438d-a11a-413f88bca730", + "type": "requirement", + "variants": [ + { + "id": "3cdc6882-6a64-4cae-ba3f-e04035506d10", + "requirementText": "Hva slags type dobbelseng er installert på rommet.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "85b60a75-c0dc-471f-b2e9-78301702b3ba", + "b3539c1f-60c2-4a7d-a355-6f1720e7ceb8", + "2805dc56-06a5-4d58-9baa-3ed5e99e5587" + ], + "questions": [ + { + "id": "32f0f936-f7e8-4fec-bdc6-4fc6c7b3bad7", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "9ffeacb4-6400-4da6-a2ab-950b382f7071", + "codes": [], + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Hva slags type dobbelseng" + } + ], + "tags": [], + "sourceOriginal": "8429ee6f-41ee-44b5-90d0-73806a228ea8", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "8429ee6f-41ee-44b5-90d0-73806a228ea8", + "sourceRel": null + }, + { + "id": "5a6b8e8c-ee36-4d26-b5fc-b318ae7ada01", + "title": "Etasje", + "description": "Hvordan er etasjestrukturen", + "requirements": [ + { + "id": "4af7b5d7-532f-4e36-a135-facce63db010", + "title": "I hvilken etasje ligger rommet", + "description": "", + "needId": "5a6b8e8c-ee36-4d26-b5fc-b318ae7ada01", + "type": "requirement", + "variants": [ + { + "id": "08da7124-7136-4c1e-b5a9-1390b2f654ab", + "requirementText": "Hvilken etasje ligger rommet?", + "instruction": "Her må du spesifisere hvilke etasje som passer ditt behov best", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "abcf8023-7bf2-4d36-bcc5-343282609b8f", + "85b60a75-c0dc-471f-b2e9-78301702b3ba", + "b3539c1f-60c2-4a7d-a355-6f1720e7ceb8", + "2805dc56-06a5-4d58-9baa-3ed5e99e5587" + ], + "questions": [ + { + "id": "2240768c-bff1-4093-a975-13138f2ad8af", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 30, + "step": 1, + "unit": "etasje", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 0, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Etasje for rommet" + } + ], + "tags": [], + "sourceOriginal": "8429ee6f-41ee-44b5-90d0-73806a228ea8", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "8429ee6f-41ee-44b5-90d0-73806a228ea8", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "9ffeacb4-6400-4da6-a2ab-950b382f7071", + "title": "Sengetype", + "description": "Sengetyper for dobbelseng", + "codes": [ + { + "id": "59a6af69-3107-488e-a661-5c52a271c019", + "title": "King size", + "description": "183 x 203 cm", + "type": "code", + "sourceOriginal": "8429ee6f-41ee-44b5-90d0-73806a228ea8", + "sourceRel": null, + "parent": "" + }, + { + "id": "4bfcc7bf-61fe-4e27-9714-87c7d86c1b8b", + "title": "Queen size", + "description": "153 x 203 cm", + "type": "code", + "sourceOriginal": "8429ee6f-41ee-44b5-90d0-73806a228ea8", + "sourceRel": null, + "parent": "" + }, + { + "id": "2c5de6aa-26f4-4235-b7a2-5a7843abe041", + "title": "Vanlig dobbelseng", + "description": "138 x 188 cm", + "type": "code", + "sourceOriginal": "8429ee6f-41ee-44b5-90d0-73806a228ea8", + "sourceRel": null, + "parent": "" + }, + { + "id": "08e6ca81-85fa-4011-a629-113780a0161e", + "title": "Sovesofa", + "description": "Forskjellige størrelser", + "type": "code", + "sourceOriginal": "8429ee6f-41ee-44b5-90d0-73806a228ea8", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "8429ee6f-41ee-44b5-90d0-73806a228ea8", + "sourceRel": null + } + ], + "products": [ + { + "id": "abcf8023-7bf2-4d36-bcc5-343282609b8f", + "title": "Enkeltrom", + "description": "Rom for 1 person", + "type": "product", + "parent": "", + "sourceOriginal": "8429ee6f-41ee-44b5-90d0-73806a228ea8", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "85b60a75-c0dc-471f-b2e9-78301702b3ba", + "title": "Dobbeltrom", + "description": "Rom med plass til 2 personer", + "type": "product", + "parent": "", + "sourceOriginal": "8429ee6f-41ee-44b5-90d0-73806a228ea8", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "b3539c1f-60c2-4a7d-a355-6f1720e7ceb8", + "title": "Familierom", + "description": "Dobbeltrom med ekstra seng", + "type": "product", + "parent": "", + "sourceOriginal": "8429ee6f-41ee-44b5-90d0-73806a228ea8", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "2805dc56-06a5-4d58-9baa-3ed5e99e5587", + "title": "Suite", + "description": "Lukseriøst dobbeltrom", + "type": "product", + "parent": "", + "sourceOriginal": "8429ee6f-41ee-44b5-90d0-73806a228ea8", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [], + "tags": [], + "version": 1, + "publishedDate": "2022-08-26T06:40:49.500Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "8429ee6f-41ee-44b5-90d0-73806a228ea8", + "deletedDate": null + }, + { + "id": "8429ee6f-41ee-44b5-90d0-73806a228ea8", + "title": "Demohotellet", + "description": "Enkelt demoprosjekt for visning av ny funksjonalitet", + "needs": [ + { + "id": "1b1db7cf-7df9-4138-8bae-286e07986b18", + "title": "Frokost", + "description": "Dagens viktigste måltid", + "requirements": [ + { + "id": "a83845f6-c8a3-459f-a24e-98be9151f657", + "title": "Frokost åpningstid", + "description": "", + "needId": "1b1db7cf-7df9-4138-8bae-286e07986b18", + "type": "requirement", + "variants": [ + { + "id": "650e9fd2-2ac4-4aa0-83eb-c92589579fa3", + "requirementText": "Når er det tidligste frokosten deres starter?", + "instruction": "Besvar dette kravet med åpningstiden til frokost på hotellet", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "58bfb7bd-d84b-4c73-abab-b84fd427018f", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [ + { + "time": null, + "score": 0 + }, + { + "time": null, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Frokost må være tidlig nok slik at våre ansatte rekker sine daglige gjøremål under oppholdet" + }, + { + "id": "9289cc20-28c6-403c-95ea-929246a9c582", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "ny variant" + } + ], + "tags": [], + "sourceOriginal": "8429ee6f-41ee-44b5-90d0-73806a228ea8", + "sourceRel": null + }, + { + "id": "82483564-ae15-486c-b80d-35e8317c5218", + "title": "Kaffe til frokostbufféen", + "description": "", + "needId": "1b1db7cf-7df9-4138-8bae-286e07986b18", + "type": "requirement", + "variants": [ + { + "id": "eba0cb25-287f-4b39-8de9-a45fd791fa31", + "requirementText": "Serverer dere varm kaffe under frokosten?", + "instruction": "Ja / Nei på om kaffen blir servert varm", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "a2c6decf-81e0-4f91-aa25-21ed8c81f409", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Det må være kaffe til våre ansatte og den må være varm" + } + ], + "tags": [], + "sourceOriginal": "8429ee6f-41ee-44b5-90d0-73806a228ea8", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "8429ee6f-41ee-44b5-90d0-73806a228ea8", + "sourceRel": null + }, + { + "id": "0449d8b7-22ba-438d-a11a-413f88bca730", + "title": "Senger", + "description": "Spesifikke behov når det kommer til senger", + "requirements": [ + { + "id": "e22ad8ee-07d0-4c13-95df-1d70d67f7e7b", + "title": "Sengenes størrelse", + "description": "", + "needId": "0449d8b7-22ba-438d-a11a-413f88bca730", + "type": "requirement", + "variants": [ + { + "id": "3cdc6882-6a64-4cae-ba3f-e04035506d10", + "requirementText": "Hva slags type dobbelseng er installert på rommet.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "85b60a75-c0dc-471f-b2e9-78301702b3ba", + "b3539c1f-60c2-4a7d-a355-6f1720e7ceb8", + "2805dc56-06a5-4d58-9baa-3ed5e99e5587" + ], + "questions": [ + { + "id": "32f0f936-f7e8-4fec-bdc6-4fc6c7b3bad7", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "9ffeacb4-6400-4da6-a2ab-950b382f7071", + "codes": [], + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Hva slags type dobbelseng" + } + ], + "tags": [], + "sourceOriginal": "8429ee6f-41ee-44b5-90d0-73806a228ea8", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "8429ee6f-41ee-44b5-90d0-73806a228ea8", + "sourceRel": null + }, + { + "id": "5a6b8e8c-ee36-4d26-b5fc-b318ae7ada01", + "title": "Etasje", + "description": "Hvordan er etasjestrukturen", + "requirements": [ + { + "id": "4af7b5d7-532f-4e36-a135-facce63db010", + "title": "I hvilken etasje ligger rommet", + "description": "", + "needId": "5a6b8e8c-ee36-4d26-b5fc-b318ae7ada01", + "type": "requirement", + "variants": [ + { + "id": "08da7124-7136-4c1e-b5a9-1390b2f654ab", + "requirementText": "Hvilken etasje ligger rommet?", + "instruction": "Her må du spesifisere hvilke etasje som passer ditt behov best", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "abcf8023-7bf2-4d36-bcc5-343282609b8f", + "85b60a75-c0dc-471f-b2e9-78301702b3ba", + "b3539c1f-60c2-4a7d-a355-6f1720e7ceb8", + "2805dc56-06a5-4d58-9baa-3ed5e99e5587" + ], + "questions": [ + { + "id": "2240768c-bff1-4093-a975-13138f2ad8af", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 30, + "step": 1, + "unit": "etasje", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 0, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Etasje for rommet" + } + ], + "tags": [], + "sourceOriginal": "8429ee6f-41ee-44b5-90d0-73806a228ea8", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "8429ee6f-41ee-44b5-90d0-73806a228ea8", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "9ffeacb4-6400-4da6-a2ab-950b382f7071", + "title": "Sengetype", + "description": "Sengetyper for dobbelseng", + "codes": [ + { + "id": "59a6af69-3107-488e-a661-5c52a271c019", + "title": "King size", + "description": "183 x 203 cm", + "type": "code", + "sourceOriginal": "8429ee6f-41ee-44b5-90d0-73806a228ea8", + "sourceRel": null, + "parent": "" + }, + { + "id": "4bfcc7bf-61fe-4e27-9714-87c7d86c1b8b", + "title": "Queen size", + "description": "153 x 203 cm", + "type": "code", + "sourceOriginal": "8429ee6f-41ee-44b5-90d0-73806a228ea8", + "sourceRel": null, + "parent": "" + }, + { + "id": "2c5de6aa-26f4-4235-b7a2-5a7843abe041", + "title": "Vanlig dobbelseng", + "description": "138 x 188 cm", + "type": "code", + "sourceOriginal": "8429ee6f-41ee-44b5-90d0-73806a228ea8", + "sourceRel": null, + "parent": "" + }, + { + "id": "08e6ca81-85fa-4011-a629-113780a0161e", + "title": "Sovesofa", + "description": "Forskjellige størrelser", + "type": "code", + "sourceOriginal": "8429ee6f-41ee-44b5-90d0-73806a228ea8", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "8429ee6f-41ee-44b5-90d0-73806a228ea8", + "sourceRel": null + } + ], + "products": [ + { + "id": "abcf8023-7bf2-4d36-bcc5-343282609b8f", + "title": "Enkeltrom", + "description": "Rom for 1 person", + "type": "product", + "parent": "", + "sourceOriginal": "8429ee6f-41ee-44b5-90d0-73806a228ea8", + "sourceRel": null, + "deletedDate": "2022-09-05T08:59:41.745Z" + }, + { + "id": "85b60a75-c0dc-471f-b2e9-78301702b3ba", + "title": "Dobbeltrom", + "description": "Rom med plass til 2 personer", + "type": "product", + "parent": "", + "sourceOriginal": "8429ee6f-41ee-44b5-90d0-73806a228ea8", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "b3539c1f-60c2-4a7d-a355-6f1720e7ceb8", + "title": "Familierom", + "description": "Dobbeltrom med ekstra seng", + "type": "product", + "parent": "", + "sourceOriginal": "8429ee6f-41ee-44b5-90d0-73806a228ea8", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "2805dc56-06a5-4d58-9baa-3ed5e99e5587", + "title": "Suite", + "description": "Lukseriøst dobbeltrom", + "type": "product", + "parent": "", + "sourceOriginal": "8429ee6f-41ee-44b5-90d0-73806a228ea8", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [ + { + "id": "c7fb81f9-c8c4-4c41-9cdf-d5355b44aaf6", + "bankId": "c7fb81f9-c8c4-4c41-9cdf-d5355b44aaf6", + "comment": "Første utkast til Demohotellet", + "date": "2022-08-26T06:40:49.500Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null + } + ], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "09a919d5-03bf-4daa-91f1-7bae0153aef4", + "title": "Demo", + "description": "13 juni", + "needs": [ + { + "id": "0abe8a17-3099-4b02-9966-6a0622f03506", + "title": "Et behov", + "description": "", + "requirements": [ + { + "id": "ae06dded-9c94-4af8-9e02-2446b0518f54", + "title": "Et krav", + "description": "", + "needId": "0abe8a17-3099-4b02-9966-6a0622f03506", + "type": "requirement", + "variants": [ + { + "id": "c9b88893-db32-4800-8294-c3a3f8886bea", + "requirementText": "Tekst", + "instruction": "Tekst", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "535a8cef-0d64-4eb6-8a77-4bfda304b26f" + ], + "questions": [ + { + "id": "eb86d075-826e-4d35-bb2b-84a2f3f439c1", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "6d4ab500-d523-4997-8abd-b4e902e5a2f4", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "8f8d4fa5-86c5-4bb2-835e-bda80c6df541", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "de6257da-8f85-43fc-901c-cdc1f2269876", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [ + { + "date": null, + "score": 0 + }, + { + "date": null, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "5a718988-8ab8-4015-aa4c-4b811e766e51", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "d16ee27d-b633-4afa-8d5c-8602dea14ca4", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10, + "step": 1, + "unit": "m", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 0, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "3300031b-c900-469f-b9c1-b9838d034146", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [ + { + "time": null, + "score": 0 + }, + { + "time": null, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Dette er et krav" + }, + { + "id": "e119d098-1675-4c99-b77d-b7e0f7628e25", + "requirementText": "Tekst", + "instruction": "Tekst", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "535a8cef-0d64-4eb6-8a77-4bfda304b26f" + ], + "questions": [ + { + "id": "3c4d00d0-6f52-4ee2-9972-b661a6088fb3", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Dette er et infokrav" + } + ], + "tags": [], + "sourceOriginal": "a2c0a932-2271-4ef1-9acb-dedaf886c32f", + "sourceRel": null + }, + { + "id": "98718209-4b6e-4ea9-ae34-af2fba3f7711", + "title": "Nytt krav", + "description": "", + "needId": "0abe8a17-3099-4b02-9966-6a0622f03506", + "type": "requirement", + "variants": [ + { + "id": "5656d21c-6743-4a5e-861d-5cf2f8859b4f", + "requirementText": "Kravteksten", + "instruction": "Veiledning", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "535a8cef-0d64-4eb6-8a77-4bfda304b26f" + ], + "questions": [ + { + "id": "09ff66d6-4886-4540-be63-19b129b85f8a", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 40, + "step": 1, + "unit": "m/s", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Et til infokrav" + }, + { + "id": "58c4248a-e662-4cbf-a794-7057a6727ec7", + "requirementText": "Kravtekst", + "instruction": "Veiledning", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "535a8cef-0d64-4eb6-8a77-4bfda304b26f" + ], + "questions": [ + { + "id": "21c159d9-73d5-4af1-bedf-750d7d239af6", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "8f8d4fa5-86c5-4bb2-835e-bda80c6df541", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Enda et info krav" + } + ], + "tags": [], + "sourceOriginal": "a2c0a932-2271-4ef1-9acb-dedaf886c32f", + "sourceRel": null + }, + { + "id": "e3d72adc-5a4e-45ce-bd82-9519109e9b94", + "title": "Et siste infokrav", + "description": "", + "needId": "0abe8a17-3099-4b02-9966-6a0622f03506", + "type": "requirement", + "variants": [ + { + "id": "4b57767b-ec84-490a-8632-76cae9e7e7d0", + "requirementText": "Her kommer kravteksten", + "instruction": "Og veiledningen", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "535a8cef-0d64-4eb6-8a77-4bfda304b26f" + ], + "questions": [ + { + "id": "a4d2b134-b045-43a9-bc72-f640b2dbc779", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Infokravet" + } + ], + "tags": [], + "sourceOriginal": "a2c0a932-2271-4ef1-9acb-dedaf886c32f", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "a2c0a932-2271-4ef1-9acb-dedaf886c32f", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "8f8d4fa5-86c5-4bb2-835e-bda80c6df541", + "title": "En kodeliste", + "description": "", + "codes": [ + { + "id": "a7800cbf-06aa-4c46-9f73-3af1f2a67a42", + "title": "En kode", + "description": "", + "type": "code", + "sourceOriginal": "a2c0a932-2271-4ef1-9acb-dedaf886c32f", + "sourceRel": null, + "parent": "" + }, + { + "id": "a8c7f9e4-05e0-4494-8239-3a824ea694a7", + "title": "En annen kode", + "description": "", + "type": "code", + "sourceOriginal": "a2c0a932-2271-4ef1-9acb-dedaf886c32f", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "a2c0a932-2271-4ef1-9acb-dedaf886c32f", + "sourceRel": null + } + ], + "products": [ + { + "id": "535a8cef-0d64-4eb6-8a77-4bfda304b26f", + "title": "Et produkt", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "a2c0a932-2271-4ef1-9acb-dedaf886c32f", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [], + "tags": [], + "version": 4, + "publishedDate": "2022-06-24T07:00:44.637Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "a2c0a932-2271-4ef1-9acb-dedaf886c32f", + "deletedDate": null + }, + { + "id": "d1c328cb-f2bf-4f48-a177-f43da69f5dfb", + "title": "Demo", + "description": "13 juni", + "needs": [ + { + "id": "0abe8a17-3099-4b02-9966-6a0622f03506", + "title": "Et behov", + "description": "", + "requirements": [ + { + "id": "ae06dded-9c94-4af8-9e02-2446b0518f54", + "title": "Et krav", + "description": "", + "needId": "0abe8a17-3099-4b02-9966-6a0622f03506", + "type": "requirement", + "variants": [ + { + "id": "c9b88893-db32-4800-8294-c3a3f8886bea", + "requirementText": "Tekst", + "instruction": "Tekst", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "535a8cef-0d64-4eb6-8a77-4bfda304b26f" + ], + "questions": [ + { + "id": "eb86d075-826e-4d35-bb2b-84a2f3f439c1", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "6d4ab500-d523-4997-8abd-b4e902e5a2f4", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "8f8d4fa5-86c5-4bb2-835e-bda80c6df541", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "de6257da-8f85-43fc-901c-cdc1f2269876", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [ + { + "date": null, + "score": 0 + }, + { + "date": null, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "5a718988-8ab8-4015-aa4c-4b811e766e51", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "d16ee27d-b633-4afa-8d5c-8602dea14ca4", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10, + "step": 1, + "unit": "m", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 0, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "3300031b-c900-469f-b9c1-b9838d034146", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [ + { + "time": null, + "score": 0 + }, + { + "time": null, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Dette er et krav" + }, + { + "id": "e119d098-1675-4c99-b77d-b7e0f7628e25", + "requirementText": "Tekst", + "instruction": "Tekst", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "535a8cef-0d64-4eb6-8a77-4bfda304b26f" + ], + "questions": [ + { + "id": "3c4d00d0-6f52-4ee2-9972-b661a6088fb3", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Dette er et infokrav" + } + ], + "tags": [], + "sourceOriginal": "a2c0a932-2271-4ef1-9acb-dedaf886c32f", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "a2c0a932-2271-4ef1-9acb-dedaf886c32f", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "8f8d4fa5-86c5-4bb2-835e-bda80c6df541", + "title": "En kodeliste", + "description": "", + "codes": [ + { + "id": "a7800cbf-06aa-4c46-9f73-3af1f2a67a42", + "title": "En kode", + "description": "", + "type": "code", + "sourceOriginal": "a2c0a932-2271-4ef1-9acb-dedaf886c32f", + "sourceRel": null, + "parent": "" + }, + { + "id": "a8c7f9e4-05e0-4494-8239-3a824ea694a7", + "title": "En annen kode", + "description": "", + "type": "code", + "sourceOriginal": "a2c0a932-2271-4ef1-9acb-dedaf886c32f", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "a2c0a932-2271-4ef1-9acb-dedaf886c32f", + "sourceRel": null + } + ], + "products": [ + { + "id": "535a8cef-0d64-4eb6-8a77-4bfda304b26f", + "title": "Et produkt", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "a2c0a932-2271-4ef1-9acb-dedaf886c32f", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [], + "tags": [], + "version": 3, + "publishedDate": "2022-06-23T12:46:13.829Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "a2c0a932-2271-4ef1-9acb-dedaf886c32f", + "deletedDate": null + }, + { + "id": "cd270163-9fa9-4e17-98fe-eb1f493af2f2", + "title": "Demo", + "description": "13 juni", + "needs": [ + { + "id": "0abe8a17-3099-4b02-9966-6a0622f03506", + "title": "Et behov", + "description": "", + "requirements": [ + { + "id": "ae06dded-9c94-4af8-9e02-2446b0518f54", + "title": "Et krav", + "description": "", + "needId": "0abe8a17-3099-4b02-9966-6a0622f03506", + "type": "requirement", + "variants": [ + { + "id": "c9b88893-db32-4800-8294-c3a3f8886bea", + "requirementText": "Tekst", + "instruction": "Tekst", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "535a8cef-0d64-4eb6-8a77-4bfda304b26f" + ], + "questions": [ + { + "id": "eb86d075-826e-4d35-bb2b-84a2f3f439c1", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Dette er et krav" + }, + { + "id": "e119d098-1675-4c99-b77d-b7e0f7628e25", + "requirementText": "Tekst", + "instruction": "Tekst", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "535a8cef-0d64-4eb6-8a77-4bfda304b26f" + ], + "questions": [ + { + "id": "3c4d00d0-6f52-4ee2-9972-b661a6088fb3", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Dette er et infokrav" + }, + { + "id": "bac31a52-2b65-4d6f-9c85-e468f2414b28", + "requirementText": "test", + "instruction": "test", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "62fb408c-50d7-478d-802a-7f0fad0d3715", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10, + "step": 1, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "test" + } + ], + "tags": [], + "sourceOriginal": "a2c0a932-2271-4ef1-9acb-dedaf886c32f", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "a2c0a932-2271-4ef1-9acb-dedaf886c32f", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "8f8d4fa5-86c5-4bb2-835e-bda80c6df541", + "title": "En kodeliste", + "description": "", + "codes": [ + { + "id": "a7800cbf-06aa-4c46-9f73-3af1f2a67a42", + "title": "En kode", + "description": "", + "type": "code", + "sourceOriginal": "a2c0a932-2271-4ef1-9acb-dedaf886c32f", + "sourceRel": null, + "parent": "" + }, + { + "id": "a8c7f9e4-05e0-4494-8239-3a824ea694a7", + "title": "En annen kode", + "description": "", + "type": "code", + "sourceOriginal": "a2c0a932-2271-4ef1-9acb-dedaf886c32f", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "a2c0a932-2271-4ef1-9acb-dedaf886c32f", + "sourceRel": null + } + ], + "products": [ + { + "id": "535a8cef-0d64-4eb6-8a77-4bfda304b26f", + "title": "Et produkt", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "a2c0a932-2271-4ef1-9acb-dedaf886c32f", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [], + "tags": [], + "version": 2, + "publishedDate": "2022-06-13T10:08:05.191Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "a2c0a932-2271-4ef1-9acb-dedaf886c32f", + "deletedDate": null + }, + { + "id": "27e854ae-fe47-44dd-8460-f80de6659724", + "title": "Demo", + "description": "13 juni", + "needs": [ + { + "id": "0abe8a17-3099-4b02-9966-6a0622f03506", + "title": "Et behov", + "description": "", + "requirements": [ + { + "id": "ae06dded-9c94-4af8-9e02-2446b0518f54", + "title": "Et krav", + "description": "", + "needId": "0abe8a17-3099-4b02-9966-6a0622f03506", + "type": "requirement", + "variants": [ + { + "id": "c9b88893-db32-4800-8294-c3a3f8886bea", + "requirementText": "Tekst", + "instruction": "Tekst", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "535a8cef-0d64-4eb6-8a77-4bfda304b26f" + ], + "questions": [ + { + "id": "eb86d075-826e-4d35-bb2b-84a2f3f439c1", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Dette er et krav" + }, + { + "id": "e119d098-1675-4c99-b77d-b7e0f7628e25", + "requirementText": "Tekst", + "instruction": "Tekst", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "535a8cef-0d64-4eb6-8a77-4bfda304b26f" + ], + "questions": [ + { + "id": "3c4d00d0-6f52-4ee2-9972-b661a6088fb3", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Dette er et infokrav" + } + ], + "tags": [], + "sourceOriginal": "a2c0a932-2271-4ef1-9acb-dedaf886c32f", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "a2c0a932-2271-4ef1-9acb-dedaf886c32f", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "8f8d4fa5-86c5-4bb2-835e-bda80c6df541", + "title": "En kodeliste", + "description": "", + "codes": [ + { + "id": "a7800cbf-06aa-4c46-9f73-3af1f2a67a42", + "title": "En kode", + "description": "", + "type": "code", + "sourceOriginal": "a2c0a932-2271-4ef1-9acb-dedaf886c32f", + "sourceRel": null, + "parent": "" + }, + { + "id": "a8c7f9e4-05e0-4494-8239-3a824ea694a7", + "title": "En annen kode", + "description": "", + "type": "code", + "sourceOriginal": "a2c0a932-2271-4ef1-9acb-dedaf886c32f", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "a2c0a932-2271-4ef1-9acb-dedaf886c32f", + "sourceRel": null + } + ], + "products": [ + { + "id": "535a8cef-0d64-4eb6-8a77-4bfda304b26f", + "title": "Et produkt", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "a2c0a932-2271-4ef1-9acb-dedaf886c32f", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [], + "tags": [], + "version": 1, + "publishedDate": "2022-06-13T08:05:45.285Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "a2c0a932-2271-4ef1-9acb-dedaf886c32f", + "deletedDate": null + }, + { + "id": "a2c0a932-2271-4ef1-9acb-dedaf886c32f", + "title": "Demo", + "description": "13 juni", + "needs": [ + { + "id": "0abe8a17-3099-4b02-9966-6a0622f03506", + "title": "Et behov", + "description": "", + "requirements": [ + { + "id": "ae06dded-9c94-4af8-9e02-2446b0518f54", + "title": "Et krav", + "description": "", + "needId": "0abe8a17-3099-4b02-9966-6a0622f03506", + "type": "requirement", + "variants": [ + { + "id": "c9b88893-db32-4800-8294-c3a3f8886bea", + "requirementText": "Tekst", + "instruction": "Tekst", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "535a8cef-0d64-4eb6-8a77-4bfda304b26f" + ], + "questions": [ + { + "id": "eb86d075-826e-4d35-bb2b-84a2f3f439c1", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "6d4ab500-d523-4997-8abd-b4e902e5a2f4", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "8f8d4fa5-86c5-4bb2-835e-bda80c6df541", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "de6257da-8f85-43fc-901c-cdc1f2269876", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [ + { + "date": null, + "score": 0 + }, + { + "date": null, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "5a718988-8ab8-4015-aa4c-4b811e766e51", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "d16ee27d-b633-4afa-8d5c-8602dea14ca4", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10, + "step": 1, + "unit": "m", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 0, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "3300031b-c900-469f-b9c1-b9838d034146", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [ + { + "time": null, + "score": 0 + }, + { + "time": null, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Dette er et krav" + }, + { + "id": "e119d098-1675-4c99-b77d-b7e0f7628e25", + "requirementText": "Tekst", + "instruction": "Tekst", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "535a8cef-0d64-4eb6-8a77-4bfda304b26f" + ], + "questions": [ + { + "id": "3c4d00d0-6f52-4ee2-9972-b661a6088fb3", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Dette er et infokrav" + } + ], + "tags": [], + "sourceOriginal": "a2c0a932-2271-4ef1-9acb-dedaf886c32f", + "sourceRel": null + }, + { + "id": "98718209-4b6e-4ea9-ae34-af2fba3f7711", + "title": "Nytt krav", + "description": "", + "needId": "0abe8a17-3099-4b02-9966-6a0622f03506", + "type": "requirement", + "variants": [ + { + "id": "5656d21c-6743-4a5e-861d-5cf2f8859b4f", + "requirementText": "Kravteksten", + "instruction": "Veiledning", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "535a8cef-0d64-4eb6-8a77-4bfda304b26f" + ], + "questions": [ + { + "id": "09ff66d6-4886-4540-be63-19b129b85f8a", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 40, + "step": 1, + "unit": "m/s", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Et til infokrav" + }, + { + "id": "58c4248a-e662-4cbf-a794-7057a6727ec7", + "requirementText": "Kravtekst", + "instruction": "Veiledning", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "535a8cef-0d64-4eb6-8a77-4bfda304b26f" + ], + "questions": [ + { + "id": "21c159d9-73d5-4af1-bedf-750d7d239af6", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "8f8d4fa5-86c5-4bb2-835e-bda80c6df541", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Enda et info krav" + } + ], + "tags": [], + "sourceOriginal": "a2c0a932-2271-4ef1-9acb-dedaf886c32f", + "sourceRel": null + }, + { + "id": "e3d72adc-5a4e-45ce-bd82-9519109e9b94", + "title": "Et siste infokrav", + "description": "", + "needId": "0abe8a17-3099-4b02-9966-6a0622f03506", + "type": "requirement", + "variants": [ + { + "id": "4b57767b-ec84-490a-8632-76cae9e7e7d0", + "requirementText": "Her kommer kravteksten", + "instruction": "Og veiledningen", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "535a8cef-0d64-4eb6-8a77-4bfda304b26f" + ], + "questions": [ + { + "id": "a4d2b134-b045-43a9-bc72-f640b2dbc779", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Infokravet" + } + ], + "tags": [], + "sourceOriginal": "a2c0a932-2271-4ef1-9acb-dedaf886c32f", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "a2c0a932-2271-4ef1-9acb-dedaf886c32f", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "8f8d4fa5-86c5-4bb2-835e-bda80c6df541", + "title": "En kodeliste", + "description": "", + "codes": [ + { + "id": "a7800cbf-06aa-4c46-9f73-3af1f2a67a42", + "title": "En kode", + "description": "", + "type": "code", + "sourceOriginal": "a2c0a932-2271-4ef1-9acb-dedaf886c32f", + "sourceRel": null, + "parent": "" + }, + { + "id": "a8c7f9e4-05e0-4494-8239-3a824ea694a7", + "title": "En annen kode", + "description": "", + "type": "code", + "sourceOriginal": "a2c0a932-2271-4ef1-9acb-dedaf886c32f", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "a2c0a932-2271-4ef1-9acb-dedaf886c32f", + "sourceRel": null + } + ], + "products": [ + { + "id": "535a8cef-0d64-4eb6-8a77-4bfda304b26f", + "title": "Et produkt", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "a2c0a932-2271-4ef1-9acb-dedaf886c32f", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [ + { + "id": "27e854ae-fe47-44dd-8460-f80de6659724", + "bankId": "27e854ae-fe47-44dd-8460-f80de6659724", + "comment": "Publikasjon", + "date": "2022-06-13T08:05:45.285Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "cd270163-9fa9-4e17-98fe-eb1f493af2f2", + "bankId": "cd270163-9fa9-4e17-98fe-eb1f493af2f2", + "comment": "Publikasjon", + "date": "2022-06-13T10:08:05.191Z", + "type": "publication", + "version": 2, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "d1c328cb-f2bf-4f48-a177-f43da69f5dfb", + "bankId": "d1c328cb-f2bf-4f48-a177-f43da69f5dfb", + "comment": "Alle spørsmålstyper på et krav", + "date": "2022-06-23T12:46:13.829Z", + "type": "publication", + "version": 3, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "09a919d5-03bf-4daa-91f1-7bae0153aef4", + "bankId": "09a919d5-03bf-4daa-91f1-7bae0153aef4", + "comment": "demo 24 juni", + "date": "2022-06-24T07:00:44.637Z", + "type": "publication", + "version": 4, + "sourceOriginal": null, + "sourceRel": null + } + ], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "7ee4b3d7-8338-44a6-a16e-c20af1143fd1", + "title": "Demo", + "description": "Fredag den 13. mai", + "needs": [ + { + "id": "0f039b00-3ec2-47cf-b908-3b5129ddc7c3", + "title": "Balders behov", + "description": "Viktig behov for Balder", + "requirements": [ + { + "id": "72b8b518-d3cd-463f-a488-fdd16711821e", + "title": "Balders krav", + "description": "", + "needId": "0f039b00-3ec2-47cf-b908-3b5129ddc7c3", + "type": "requirement", + "variants": [ + { + "id": "521cde77-591a-40ff-88ac-b95ad23e8b3d", + "requirementText": "Den har en kravtekst", + "instruction": "Og en veiledning", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "86da98f1-f47a-421d-bd43-e5e4c5cc5900" + ], + "questions": [ + { + "id": "303c4783-2e9c-42d3-ba57-0961167e51e9", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "5b499c76-35b7-4f9b-9aed-d5f5ee7d1b51", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "22ce0a3d-7e95-48b5-a121-ba01ae5e7ee0", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Balders variant" + }, + { + "id": "9b74b752-4d64-4f2d-9361-cb5ee338f077", + "requirementText": "Bare info denne", + "instruction": "Kun info", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "86da98f1-f47a-421d-bd43-e5e4c5cc5900", + "9f23d70c-d7f8-4972-a94e-f957cb979ae9" + ], + "questions": [ + { + "id": "b53db655-97a1-44fe-b316-e1b5a7c1ab07", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Balders andre variant" + } + ], + "tags": [], + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null + }, + { + "id": "59f75cb3-25bc-4c56-bce6-943f9bfb79a0", + "title": "Balders andre krav", + "description": "", + "needId": "0f039b00-3ec2-47cf-b908-3b5129ddc7c3", + "type": "requirement", + "variants": [ + { + "id": "e2542173-28c0-424e-949b-5a012601bcda", + "requirementText": "", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "86da98f1-f47a-421d-bd43-e5e4c5cc5900", + "9f23d70c-d7f8-4972-a94e-f957cb979ae9" + ], + "questions": [ + { + "id": "d30b5ffd-fdb0-4e19-8822-64bc3cd65b6f", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10, + "step": 1, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Eneste varianten her" + } + ], + "tags": [], + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "22ce0a3d-7e95-48b5-a121-ba01ae5e7ee0", + "title": "En tilfeldig kodeliste", + "description": "Her finnes det koder", + "codes": [ + { + "id": "238db097-9ca1-4f92-ad44-6b4cdfd8009c", + "title": "Kode 1", + "description": "", + "type": "code", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null, + "parent": "" + }, + { + "id": "00a0e0fb-0b83-4291-a634-86946acb044e", + "title": "Kode 2", + "description": "", + "type": "code", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null, + "parent": "" + }, + { + "id": "9462c708-f5d5-46b9-8114-0f9aca5e06d2", + "title": "Kode rød", + "description": "", + "type": "code", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null, + "parent": "" + }, + { + "id": "863ab61c-61c8-44e6-a698-c20b83892a93", + "title": "Kode blå", + "description": "", + "type": "code", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null, + "parent": "" + }, + { + "id": "115582dd-5b3c-431d-9894-fc81eb756222", + "title": "Kode 5", + "description": "", + "type": "code", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null + }, + { + "id": "9ff0d2c4-a9b5-4029-9ae3-952bca4b1715", + "title": "En annen kodeliste", + "description": "", + "codes": [], + "type": "codelist", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null + } + ], + "products": [ + { + "id": "86da98f1-f47a-421d-bd43-e5e4c5cc5900", + "title": "Balders første produkt", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "9f23d70c-d7f8-4972-a94e-f957cb979ae9", + "title": "Balders andre produkt", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "29d5f322-14ee-40aa-bd5d-bd4a2342017c", + "title": "Balders første underprodukt", + "description": "Skal ligge under andre produkt", + "type": "product", + "parent": "9f23d70c-d7f8-4972-a94e-f957cb979ae9", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "d3222dc9-a8f3-4e89-b11e-a90ac9e84c1e", + "title": "Balders andre underprodukt", + "description": "Også under andre produkt", + "type": "product", + "parent": "9f23d70c-d7f8-4972-a94e-f957cb979ae9", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [], + "tags": [ + { + "id": "592e9321-9cf9-45a3-8ef9-38e2d0d79bcf", + "title": "Finnes en merkelapp her og", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null + }, + { + "id": "41c49ac6-1e7a-4f5c-ba11-da5407593291", + "title": "Og en til merkelapp", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null + } + ], + "version": 2, + "publishedDate": "2022-05-13T07:11:46.032Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "deletedDate": null + }, + { + "id": "76961413-b7d7-4228-a485-41c10e84eae6", + "title": "Demo", + "description": "Fredag den 13. mai", + "needs": [ + { + "id": "0f039b00-3ec2-47cf-b908-3b5129ddc7c3", + "title": "Balders behov", + "description": "Viktig behov for Balder", + "requirements": [ + { + "id": "72b8b518-d3cd-463f-a488-fdd16711821e", + "title": "Balders krav", + "description": "", + "needId": "0f039b00-3ec2-47cf-b908-3b5129ddc7c3", + "type": "requirement", + "variants": [ + { + "id": "521cde77-591a-40ff-88ac-b95ad23e8b3d", + "requirementText": "Den har en kravtekst", + "instruction": "Og en veiledning", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "86da98f1-f47a-421d-bd43-e5e4c5cc5900" + ], + "questions": [ + { + "id": "303c4783-2e9c-42d3-ba57-0961167e51e9", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "5b499c76-35b7-4f9b-9aed-d5f5ee7d1b51", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "22ce0a3d-7e95-48b5-a121-ba01ae5e7ee0", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Balders variant" + }, + { + "id": "9b74b752-4d64-4f2d-9361-cb5ee338f077", + "requirementText": "Bare info denne", + "instruction": "Kun info", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "86da98f1-f47a-421d-bd43-e5e4c5cc5900", + "9f23d70c-d7f8-4972-a94e-f957cb979ae9" + ], + "questions": [ + { + "id": "b53db655-97a1-44fe-b316-e1b5a7c1ab07", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Balders andre variant" + } + ], + "tags": [], + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "22ce0a3d-7e95-48b5-a121-ba01ae5e7ee0", + "title": "En tilfeldig kodeliste", + "description": "Her finnes det koder", + "codes": [ + { + "id": "238db097-9ca1-4f92-ad44-6b4cdfd8009c", + "title": "Kode 1", + "description": "", + "type": "code", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null, + "parent": "" + }, + { + "id": "00a0e0fb-0b83-4291-a634-86946acb044e", + "title": "Kode 2", + "description": "", + "type": "code", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null, + "parent": "" + }, + { + "id": "9462c708-f5d5-46b9-8114-0f9aca5e06d2", + "title": "Kode rød", + "description": "", + "type": "code", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null, + "parent": "" + }, + { + "id": "863ab61c-61c8-44e6-a698-c20b83892a93", + "title": "Kode blå", + "description": "", + "type": "code", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null, + "parent": "" + }, + { + "id": "115582dd-5b3c-431d-9894-fc81eb756222", + "title": "Kode 5", + "description": "", + "type": "code", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null + }, + { + "id": "9ff0d2c4-a9b5-4029-9ae3-952bca4b1715", + "title": "En annen kodeliste", + "description": "", + "codes": [], + "type": "codelist", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null + } + ], + "products": [ + { + "id": "86da98f1-f47a-421d-bd43-e5e4c5cc5900", + "title": "Balders første produkt", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "9f23d70c-d7f8-4972-a94e-f957cb979ae9", + "title": "Balders andre produkt", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "29d5f322-14ee-40aa-bd5d-bd4a2342017c", + "title": "Balders første underprodukt", + "description": "Skal ligge under andre produkt", + "type": "product", + "parent": "9f23d70c-d7f8-4972-a94e-f957cb979ae9", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "d3222dc9-a8f3-4e89-b11e-a90ac9e84c1e", + "title": "Balders andre underprodukt", + "description": "Også under andre produkt", + "type": "product", + "parent": "9f23d70c-d7f8-4972-a94e-f957cb979ae9", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [], + "tags": [ + { + "id": "592e9321-9cf9-45a3-8ef9-38e2d0d79bcf", + "title": "Finnes en merkelapp her og", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null + }, + { + "id": "41c49ac6-1e7a-4f5c-ba11-da5407593291", + "title": "Og en til merkelapp", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null + } + ], + "version": 1, + "publishedDate": "2022-05-13T07:03:11.465Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "deletedDate": null + }, + { + "id": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "title": "Demo", + "description": "Fredag den 13. mai ", + "needs": [ + { + "id": "0f039b00-3ec2-47cf-b908-3b5129ddc7c3", + "title": "Balders behov", + "description": "Viktig behov for Balder", + "requirements": [ + { + "id": "72b8b518-d3cd-463f-a488-fdd16711821e", + "title": "Balders krav", + "description": "", + "needId": "0f039b00-3ec2-47cf-b908-3b5129ddc7c3", + "type": "requirement", + "variants": [ + { + "id": "521cde77-591a-40ff-88ac-b95ad23e8b3d", + "requirementText": "Den har en kravtekst", + "instruction": "Og en veiledning", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "86da98f1-f47a-421d-bd43-e5e4c5cc5900" + ], + "questions": [ + { + "id": "303c4783-2e9c-42d3-ba57-0961167e51e9", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "5b499c76-35b7-4f9b-9aed-d5f5ee7d1b51", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "22ce0a3d-7e95-48b5-a121-ba01ae5e7ee0", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Balders variant" + }, + { + "id": "9b74b752-4d64-4f2d-9361-cb5ee338f077", + "requirementText": "Bare info denne", + "instruction": "Kun info", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "86da98f1-f47a-421d-bd43-e5e4c5cc5900", + "9f23d70c-d7f8-4972-a94e-f957cb979ae9" + ], + "questions": [ + { + "id": "b53db655-97a1-44fe-b316-e1b5a7c1ab07", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Balders andre variant" + }, + { + "id": "00c1c70f-1c4f-410c-880e-f9cfde021800", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "08e86379-c165-4431-b353-a56db3d7dcd3", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "22ce0a3d-7e95-48b5-a121-ba01ae5e7ee0", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Balders tredje variant" + } + ], + "tags": [], + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null + }, + { + "id": "59f75cb3-25bc-4c56-bce6-943f9bfb79a0", + "title": "Balders andre krav", + "description": "", + "needId": "0f039b00-3ec2-47cf-b908-3b5129ddc7c3", + "type": "requirement", + "variants": [ + { + "id": "e2542173-28c0-424e-949b-5a012601bcda", + "requirementText": "", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "86da98f1-f47a-421d-bd43-e5e4c5cc5900", + "9f23d70c-d7f8-4972-a94e-f957cb979ae9", + "29d5f322-14ee-40aa-bd5d-bd4a2342017c", + "d3222dc9-a8f3-4e89-b11e-a90ac9e84c1e" + ], + "questions": [ + { + "id": "d30b5ffd-fdb0-4e19-8822-64bc3cd65b6f", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10, + "step": 1, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Eneste varianten her" + } + ], + "tags": [], + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null + }, + { + "id": "49cde852-1212-4e00-a584-84832b0c3d01", + "title": "behov 2", + "description": "", + "requirements": [ + { + "id": "a235e160-3eac-4149-83cb-43999cf29f94", + "title": "test", + "description": "", + "needId": "49cde852-1212-4e00-a584-84832b0c3d01", + "type": "requirement", + "variants": [], + "tags": [], + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null + } + ], + "type": "need", + "parent": "0f039b00-3ec2-47cf-b908-3b5129ddc7c3", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "22ce0a3d-7e95-48b5-a121-ba01ae5e7ee0", + "title": "En tilfeldig kodeliste", + "description": "Her finnes det koder", + "codes": [ + { + "id": "238db097-9ca1-4f92-ad44-6b4cdfd8009c", + "title": "Kode 1", + "description": "", + "type": "code", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null, + "parent": "" + }, + { + "id": "00a0e0fb-0b83-4291-a634-86946acb044e", + "title": "Kode 2", + "description": "", + "type": "code", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null, + "parent": "" + }, + { + "id": "9462c708-f5d5-46b9-8114-0f9aca5e06d2", + "title": "Kode rød", + "description": "", + "type": "code", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null, + "parent": "" + }, + { + "id": "863ab61c-61c8-44e6-a698-c20b83892a93", + "title": "Kode blå", + "description": "", + "type": "code", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null, + "parent": "" + }, + { + "id": "115582dd-5b3c-431d-9894-fc81eb756222", + "title": "Kode 5", + "description": "", + "type": "code", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null, + "parent": "" + }, + { + "id": "bfcadbab-0d67-4388-a80c-c93179250ab1", + "title": "Kode med beskrivelse", + "description": "Big Taco", + "type": "code", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null + }, + { + "id": "9ff0d2c4-a9b5-4029-9ae3-952bca4b1715", + "title": "En annen kodeliste", + "description": "", + "codes": [], + "type": "codelist", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null + } + ], + "products": [ + { + "id": "86da98f1-f47a-421d-bd43-e5e4c5cc5900", + "title": "Balders første produkt", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "9f23d70c-d7f8-4972-a94e-f957cb979ae9", + "title": "Balders andre produkt", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "29d5f322-14ee-40aa-bd5d-bd4a2342017c", + "title": "Balders første underprodukt", + "description": "Skal ligge under andre produkt", + "type": "product", + "parent": "9f23d70c-d7f8-4972-a94e-f957cb979ae9", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "d3222dc9-a8f3-4e89-b11e-a90ac9e84c1e", + "title": "Balders andre underprodukt", + "description": "Også under andre produkt", + "type": "product", + "parent": "9f23d70c-d7f8-4972-a94e-f957cb979ae9", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [ + { + "id": "76961413-b7d7-4228-a485-41c10e84eae6", + "bankId": "76961413-b7d7-4228-a485-41c10e84eae6", + "comment": "Første publikasjon", + "date": "2022-05-13T07:03:11.465Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "7ee4b3d7-8338-44a6-a16e-c20af1143fd1", + "bankId": "7ee4b3d7-8338-44a6-a16e-c20af1143fd1", + "comment": "Andre publikasjon", + "date": "2022-05-13T07:11:46.032Z", + "type": "publication", + "version": 2, + "sourceOriginal": null, + "sourceRel": null + } + ], + "tags": [ + { + "id": "592e9321-9cf9-45a3-8ef9-38e2d0d79bcf", + "title": "Finnes en merkelapp her og", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null + }, + { + "id": "41c49ac6-1e7a-4f5c-ba11-da5407593291", + "title": "Og en til merkelapp", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null + } + ], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "442e6c17-53c7-4c12-b0d0-0ca9f493a675", + "title": "Balders Liverpool", + "description": "Balders testprosjekt som omhandler Liverpool FC", + "needs": [ + { + "id": "706969fd-085c-4130-bc7a-31e3db8a4146", + "title": "Spillerverdier", + "description": "Mål for spillerene", + "requirements": [ + { + "id": "22d2cd7d-d165-407c-a241-ae0f95080bde", + "title": "Hastighet", + "description": "", + "needId": "706969fd-085c-4130-bc7a-31e3db8a4146", + "type": "requirement", + "variants": [ + { + "id": "b5033b3c-2fa3-4f80-a819-8240aa78c24e", + "requirementText": "Toppfart er viktig for å se hvor rask en fotballspiller er", + "instruction": "Hva er topphastigheten til spilleren", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "b1768e29-6f8e-40cb-af88-4d3c637a8113", + "type": "Q_SLIDER", + "config": { + "min": 20, + "max": 44, + "step": 0.1, + "unit": "km/t", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 20, + "score": 0 + }, + { + "value": 44, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": "20" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Toppfart" + }, + { + "id": "2270b062-4234-4ee7-8a5d-c641ea861727", + "requirementText": "Hvor raskt løper spilleren 100 meter", + "instruction": "Finn ut tiden på 100 meter", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "4acb3773-bf7c-43ec-8798-903426a388b8", + "type": "Q_SLIDER", + "config": { + "min": 9, + "max": 15, + "step": 0.1, + "unit": "sekunder", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 9, + "score": 0 + }, + { + "value": 15, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": "9" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "100 meter fart" + }, + { + "id": "11cf19b6-72a1-4d9a-97ba-3ec14092c88c", + "requirementText": "Infofelt for fart.", + "instruction": "Svares i spesifikasjon", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "446bcefe-7020-4c7a-ae63-f8daa2b2e09c", + "type": "Q_SLIDER", + "config": { + "min": 20, + "max": 44, + "step": 2, + "unit": "km/t", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 20, + "score": 0 + }, + { + "value": 44, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": "20" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Fart info" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "b987fb6b-c061-4331-99ea-44de0955466c", + "title": "Erfaring", + "description": "", + "needId": "706969fd-085c-4130-bc7a-31e3db8a4146", + "type": "requirement", + "variants": [ + { + "id": "3528be95-4935-4e6f-a659-44514a6fb5c0", + "requirementText": "Har spilleren relevant erfaring", + "instruction": "Har spilleren en historie i en annen klubb i PL?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "4f4fb007-11c4-4350-98f2-f336cd37c4fd", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Erfaring fra tidligere Premier League klubber" + }, + { + "id": "ee0d4da1-becf-4c7a-aa01-ade83d932c48", + "requirementText": "Info-felt om Premier League erfaring", + "instruction": "Besvares i spesifikasjon", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "53d437a4-9d78-4958-8505-4b63eb08988a", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Premier League erfaring" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "42b43a87-6f2d-4ddb-bf69-5399c3d10c79", + "title": "Kontrakt", + "description": "", + "needId": "706969fd-085c-4130-bc7a-31e3db8a4146", + "type": "requirement", + "variants": [ + { + "id": "af70283f-7c2b-4924-b125-925969813fec", + "requirementText": "Går kontrakten ut snart?", + "instruction": "Viktig for å få en rimligere pris", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "a2d39977-5f69-47e7-bfa5-a2a4d67b1073" + ], + "questions": [ + { + "id": "c07372a4-3a89-45e0-8b98-d846962a07e9", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "9552c5e0-9964-4ce2-849f-243a8c1e06a0", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Når går kontrakten ut" + }, + { + "id": "f02d9bc5-7263-493b-a579-1f7a68ac5f41", + "requirementText": "Info-typen", + "instruction": "Se info", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "a2d39977-5f69-47e7-bfa5-a2a4d67b1073" + ], + "questions": [ + { + "id": "dfa941fe-187b-4911-8f8d-04ca6fe4453b", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Når går kontrakten ut" + }, + { + "id": "eb6da662-5068-4eef-a551-73a09fa4447a", + "requirementText": "Info type med periode", + "instruction": "det gir ikke mening, jeg vet", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "a2d39977-5f69-47e7-bfa5-a2a4d67b1073" + ], + "questions": [ + { + "id": "4aa0dbc9-c10a-4aa9-a932-9a6cb028daa1", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Når går kontrakten ut tidsperiode" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "e2e79960-934f-4145-a481-5c8315a1209c", + "title": "Spissverdier", + "description": "", + "requirements": [ + { + "id": "d3c8889a-03f0-4cdc-a8ad-8e781128ca08", + "title": "Hvilken posisjon kan spilleren bekle", + "description": "", + "needId": "e2e79960-934f-4145-a481-5c8315a1209c", + "type": "requirement", + "variants": [ + { + "id": "3450991d-2667-4160-9712-dc900b28407d", + "requirementText": "Det kan være alt fra ving til spiss", + "instruction": "Hvilken eller hvilke posisjoner passer best for spilleren", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "ef09dea3-2717-447d-aa47-24cc90c7406c", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "692db181-5adc-4053-9af2-1e8b3d39d786", + "codes": [], + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Hvilken posisjon trives angrepsspilleren i" + }, + { + "id": "0aa7e97c-d5b5-46d6-9a44-e53a0d411b2e", + "requirementText": "Info felt", + "instruction": "Med kodeliste", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28" + ], + "questions": [ + { + "id": "ac3b40f2-5762-4b6f-a772-02edefe70eee", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "692db181-5adc-4053-9af2-1e8b3d39d786", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Hvilken posisjon trives angrepsspilleren i" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "type": "need", + "parent": "706969fd-085c-4130-bc7a-31e3db8a4146", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "1a50d93d-e920-47f3-998d-130f7ca5b461", + "title": "Generelle verdier", + "description": "", + "requirements": [ + { + "id": "cbe772ec-ad1e-4d30-bbc4-13339951099d", + "title": "Relasjon med klubben", + "description": "", + "needId": "1a50d93d-e920-47f3-998d-130f7ca5b461", + "type": "requirement", + "variants": [ + { + "id": "2d767568-3040-4b84-b6ae-72216b260664", + "requirementText": "Hvordan er relasjonen med klubben", + "instruction": "Skriv om historien med klubben", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "7de0ff7e-d76c-4f56-bc20-c0558f14fdb2", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Har vi en god relasjon til klubben som henter spiller" + }, + { + "id": "771f52ee-1952-4ee6-a6ed-7ae21b1de81a", + "requirementText": "noe her", + "instruction": "noe her", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "69205b19-6379-450d-904c-bb8498e8f707", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Har vi en god relasjon med klubben vi henter fra" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "d5d6d99d-54d0-4482-b0f1-360ae39a75e2", + "title": "Opplastning av lisens", + "description": "", + "needId": "1a50d93d-e920-47f3-998d-130f7ca5b461", + "type": "requirement", + "variants": [ + { + "id": "f2e25768-a679-4ab0-9ce6-af2d72cdc283", + "requirementText": "Trengs en gyldig lisens for denne handlingen. Venligst last opp denne", + "instruction": "Last opp lisensen", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "0c2b8dc3-4d86-4d20-a9bd-a50734c9c154", + "type": "Q_FILEUPLOAD", + "config": { + "template": null, + "uploadInSpec": false, + "allowMultipleFiles": false, + "fileEndings": [], + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "files": [ + "" + ] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Trengs en gyldig lisens" + }, + { + "id": "26b14771-4805-4c7a-9ae8-9e6b47bc6606", + "requirementText": "Info info info", + "instruction": "Lisens lisens lisens", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "3d609947-2fc4-4b22-9c6d-18e2f45ecbe4", + "type": "Q_FILEUPLOAD", + "config": { + "template": null, + "uploadInSpec": false, + "allowMultipleFiles": false, + "fileEndings": [], + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "files": [ + "" + ] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Trengs en gyldig lisens" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "2820b1b1-eb02-4d14-aca5-7b1d4fcc9887", + "title": "Posisjonsverdier", + "description": "", + "requirements": [ + { + "id": "088032a3-89a2-4a84-8a12-f90b325eaa56", + "title": "Samspill med hverandre", + "description": "", + "needId": "2820b1b1-eb02-4d14-aca5-7b1d4fcc9887", + "type": "requirement", + "variants": [ + { + "id": "70dccd2a-dc14-4bda-972a-208dbd903971", + "requirementText": "Kan være viktig for de personlige relasjonene i et lag", + "instruction": "Hvor lenge har de spilt sammen i de forskjellige posisjonene", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "0ec3cd5c-b551-4063-b745-8abbc77eb162" + ], + "questions": [ + { + "id": "feb2cb3d-cab4-45e7-babf-e2c8d884c122", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "06f46860-5932-44c8-bbd6-610e777e1fd0", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Hvor lenge spillerene har spilt sammen / Når startet de å spille sammen" + }, + { + "id": "2636606d-ca72-4c2f-b865-0410e47c64ae", + "requirementText": "jaja", + "instruction": "noe her og", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "0ec3cd5c-b551-4063-b745-8abbc77eb162" + ], + "questions": [ + { + "id": "431dc573-5bac-48f7-a103-d3e30bdd9013", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Når startet de å spille sammen" + }, + { + "id": "50d1a03d-d785-4811-87f1-d19b551f553b", + "requirementText": "Her er en kravtekst", + "instruction": "Og dette er en veiledning", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "0ec3cd5c-b551-4063-b745-8abbc77eb162" + ], + "questions": [ + { + "id": "19b0439a-a45c-4072-b2c2-37dac036fdcf", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Hvor lenge har de spilt sammen" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "7bd5f637-67da-40fe-a81f-4bedae436401", + "title": "Bekreftelse på at dette er en speller", + "description": "", + "needId": "2820b1b1-eb02-4d14-aca5-7b1d4fcc9887", + "type": "requirement", + "variants": [ + { + "id": "83fda159-c72e-4446-b81e-809d39f64bcd", + "requirementText": "Speller er noe helt annet enn en vanlig spiller. Dette må bekreftes", + "instruction": "Her er det en bekreftelse", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "a2d39977-5f69-47e7-bfa5-a2a4d67b1073" + ], + "questions": [ + { + "id": "dbaeb588-96ea-49bc-b768-1c4a3491a8b4", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Er dette en speller?" + }, + { + "id": "5770a0e3-18fd-4d4b-a09b-596c7dbfdbf1", + "requirementText": "Vet ikke helt hva mening dette gir men", + "instruction": "Hei hå", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "a2d39977-5f69-47e7-bfa5-a2a4d67b1073" + ], + "questions": [ + { + "id": "e81ce611-aad6-4e0e-b422-be60e96e6997", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Bekreftelse" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "type": "need", + "parent": "1a50d93d-e920-47f3-998d-130f7ca5b461", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "692db181-5adc-4053-9af2-1e8b3d39d786", + "title": "Angrepsposisjon", + "description": "Posisjoner i angrep", + "codes": [ + { + "id": "21bbea1f-e425-4fd8-8ac4-7ffd7573e28c", + "title": "9er", + "description": "Klassisk spydspiss", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + }, + { + "id": "3a954f4e-28fd-4610-8a6e-3607b5c87f20", + "title": "Falsk 9er", + "description": "Litt dypere spiss som fungerer i det oppbyggende angrepsspillet", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + }, + { + "id": "c0681282-e5cb-4626-9b39-7f4b41c2a6f2", + "title": "Bred ving", + "description": "Ving som holder bredde og legger mye innlegg", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + }, + { + "id": "c9085640-7a65-4f11-8023-c61f965bb4a3", + "title": "Innovertrukket ving", + "description": "Ving som trekker inn i banen for avslutning", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "cd28300f-f5cd-4690-bb40-2610fe51a920", + "title": "Midtbaneposisjon", + "description": "Posisjoner på midtbanen", + "codes": [ + { + "id": "79ca4c69-bc9d-41ba-ab0a-bb95fa35a6d0", + "title": "Kantspiller", + "description": "Ute til siden, ikke å forveksle med ving", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + }, + { + "id": "601d0162-3436-482c-a325-9fcda3987ccf", + "title": "Indreløper", + "description": "Løper opp og ned i en treer", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + }, + { + "id": "75023f1e-de5c-43fb-8657-57e753cedac4", + "title": "Anker", + "description": "Dyptliggende, taklingssterk", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + }, + { + "id": "0055ab99-59e3-4561-a09d-160d49bc95a2", + "title": "Offensiv midtbanespiller", + "description": "Med fokus i angrep", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "products": [ + { + "id": "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "title": "Midtstoppere", + "description": "Samling av alle midtstoppere i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "b72f1784-2469-4b00-9afe-ab7335ec596c", + "title": "Joel Matip", + "description": "Høy og rask midtstopper fra Kamerun", + "type": "product", + "parent": "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "title": "Virgil Van Dijk", + "description": "Verdens beste midtstopper. Kommer fra Nederland", + "type": "product", + "parent": "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "title": "Ibrahima Konate", + "description": "Sterk og rask midtstopper fra Frankrike", + "type": "product", + "parent": "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "title": "Backer", + "description": "Samling av alle backene i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "71d643a0-39c2-4cbc-80b2-38374b746e95", + "title": "Trent Alexander-Arnold", + "description": "Verdens beste høyreback. Engelsk, og ekte Liverpoolgutt. Vokst opp et steinkast fra Anfield Road", + "type": "product", + "parent": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "7b75bdda-3c05-4c03-b311-110ec670892f", + "title": "Andrew Robertson", + "description": "Løpssterk venstreback fra Skottland!", + "type": "product", + "parent": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "606ee429-74c6-4696-a60b-3048246fc3f4", + "title": "Konstantinos Tsamikas", + "description": "Unge venstreback fra Hellas. Skåret avgjørende straffesparket i FA cup-finalen", + "type": "product", + "parent": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "title": "Joe Gomez", + "description": "Versatil forsvarsspiller fra england. Kan gjøre en god figur både på stopperplass og på backplass", + "type": "product", + "parent": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "title": "Keepere", + "description": "Samling av alle keeperene i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "c9689511-defd-4259-b5fa-67d127bc5f59", + "title": "Allison Becker", + "description": "Legendarisk keeper fra Brasil", + "type": "product", + "parent": "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "a8dc4069-290b-4577-972c-9faac368e3c6", + "title": "Adrian", + "description": "Reservekeeper fra Spania. Tidligere spilt for West Ham", + "type": "product", + "parent": "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "86fb309c-c0b8-4964-841c-69991cf4024b", + "title": "Caoimhin Kelleher", + "description": "Ung keeper fra Irland", + "type": "product", + "parent": "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "title": "Midtbanespillere", + "description": "Samling av alle midtbanespiller'e i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "title": "Fabinho", + "description": "Sterk og god defensiv midtbanespiller fra Brasil! Han er kommer du deg ikke forbi", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "f6dace96-ef1a-4596-86b0-555676ecd49e", + "title": "Thiago", + "description": "Teknisk vidunder fra Spania", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "title": "Jordan Henderson", + "description": "Klubbkaptein, og arbeidsjern på midten. Kommer fra England", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "title": "James Milner", + "description": "Verdens kjedeligste engelskmann. Men løper som en hest", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "title": "Harvey Elliot", + "description": "Ungt teknisk engelsk talent på midtbanen", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "title": "Curtis Jones", + "description": "Ung midtbanespiller fra England", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "title": "Naby Keita", + "description": "Teknisk driblesterk midtbanespiller fra Guinea", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "title": "Alex Oxlade-Chamberlain", + "description": "Meget rask midtbanespiller fra England. Tidligere vært Arsenals beste spiller", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "title": "Angrepsspillere", + "description": "Samling av alle angrepsspillere i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "title": "Mohammed Salah", + "description": "Egyptisk konge, og verdens beste fotballspiller", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "title": "Diego Jota", + "description": "Portugals klart beste fotballspiller gjennom tidene", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "title": "Luis Diaz", + "description": "Ving fra Colombia. Sjeldent kommet noe så bra teknisk vidunder fra vingposisjon fra det landet", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "title": "Divock Origi", + "description": "Legende fra Belgia", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "7e720208-ad36-46a2-b06d-c247feedb1de", + "title": "Takumi Minamino", + "description": "Beste offensive spiller produsert i Asia. Japans store sønn", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "title": "Roberto Firmino", + "description": "Arbeidsjern fra Brasil. Verdens beste i offensivt press", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "27428a1e-ebee-4e3c-9899-a7b6a418b852", + "title": "Manager", + "description": "Liverpool FC Manager", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "a2d39977-5f69-47e7-bfa5-a2a4d67b1073", + "title": "Jurgen Klopp", + "description": "Verdens beste manager. Kommer fra Tyskland", + "type": "product", + "parent": "27428a1e-ebee-4e3c-9899-a7b6a418b852", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [], + "tags": [ + { + "id": "7ad34422-7e1c-40b6-9a52-4376843b4129", + "title": "Test", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "version": 13, + "publishedDate": "2022-09-12T13:29:26.350Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "199fc365-aec1-4699-babf-abddd4f76fa5", + "deletedDate": null + }, + { + "id": "895864a4-40d7-4335-8068-6eb7b75a5b03", + "title": "Balders Liverpool", + "description": "Balders testprosjekt som omhandler Liverpool FC", + "needs": [ + { + "id": "706969fd-085c-4130-bc7a-31e3db8a4146", + "title": "Spillerverdier", + "description": "Mål for spillerene", + "requirements": [ + { + "id": "22d2cd7d-d165-407c-a241-ae0f95080bde", + "title": "Hastighet", + "description": "", + "needId": "706969fd-085c-4130-bc7a-31e3db8a4146", + "type": "requirement", + "variants": [ + { + "id": "b5033b3c-2fa3-4f80-a819-8240aa78c24e", + "requirementText": "Toppfart er viktig for å se hvor rask en fotballspiller er", + "instruction": "Hva er topphastigheten til spilleren", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "b1768e29-6f8e-40cb-af88-4d3c637a8113", + "type": "Q_SLIDER", + "config": { + "min": 20, + "max": 44, + "step": 0.1, + "unit": "km/t", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 20, + "score": 0 + }, + { + "value": 44, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": "20" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Toppfart" + }, + { + "id": "2270b062-4234-4ee7-8a5d-c641ea861727", + "requirementText": "Hvor raskt løper spilleren 100 meter", + "instruction": "Finn ut tiden på 100 meter", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "4acb3773-bf7c-43ec-8798-903426a388b8", + "type": "Q_SLIDER", + "config": { + "min": 9, + "max": 15, + "step": 0.1, + "unit": "sekunder", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 9, + "score": 0 + }, + { + "value": 15, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": "9" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "100 meter fart" + }, + { + "id": "11cf19b6-72a1-4d9a-97ba-3ec14092c88c", + "requirementText": "Infofelt for fart.", + "instruction": "Svares i spesifikasjon", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "446bcefe-7020-4c7a-ae63-f8daa2b2e09c", + "type": "Q_SLIDER", + "config": { + "min": 20, + "max": 44, + "step": 2, + "unit": "km/t", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 20, + "score": 0 + }, + { + "value": 44, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": "20" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Fart info" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "b987fb6b-c061-4331-99ea-44de0955466c", + "title": "Erfaring", + "description": "", + "needId": "706969fd-085c-4130-bc7a-31e3db8a4146", + "type": "requirement", + "variants": [ + { + "id": "3528be95-4935-4e6f-a659-44514a6fb5c0", + "requirementText": "Har spilleren relevant erfaring", + "instruction": "Har spilleren en historie i en annen klubb i PL?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "4f4fb007-11c4-4350-98f2-f336cd37c4fd", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Erfaring fra tidligere Premier League klubber" + }, + { + "id": "ee0d4da1-becf-4c7a-aa01-ade83d932c48", + "requirementText": "Info-felt om Premier League erfaring", + "instruction": "Besvares i spesifikasjon", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "53d437a4-9d78-4958-8505-4b63eb08988a", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Premier League erfaring" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "42b43a87-6f2d-4ddb-bf69-5399c3d10c79", + "title": "Kontrakt", + "description": "", + "needId": "706969fd-085c-4130-bc7a-31e3db8a4146", + "type": "requirement", + "variants": [ + { + "id": "af70283f-7c2b-4924-b125-925969813fec", + "requirementText": "Går kontrakten ut snart?", + "instruction": "Viktig for å få en rimligere pris", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "a2d39977-5f69-47e7-bfa5-a2a4d67b1073" + ], + "questions": [ + { + "id": "c07372a4-3a89-45e0-8b98-d846962a07e9", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "9552c5e0-9964-4ce2-849f-243a8c1e06a0", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Når går kontrakten ut" + }, + { + "id": "f02d9bc5-7263-493b-a579-1f7a68ac5f41", + "requirementText": "Info-typen", + "instruction": "Se info", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "a2d39977-5f69-47e7-bfa5-a2a4d67b1073" + ], + "questions": [ + { + "id": "dfa941fe-187b-4911-8f8d-04ca6fe4453b", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Når går kontrakten ut" + }, + { + "id": "eb6da662-5068-4eef-a551-73a09fa4447a", + "requirementText": "Info type med periode", + "instruction": "det gir ikke mening, jeg vet", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "a2d39977-5f69-47e7-bfa5-a2a4d67b1073" + ], + "questions": [ + { + "id": "4aa0dbc9-c10a-4aa9-a932-9a6cb028daa1", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Når går kontrakten ut tidsperiode" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "f41a4479-8330-4ccd-8333-2563ff0f9d46", + "title": "test", + "description": "", + "needId": "706969fd-085c-4130-bc7a-31e3db8a4146", + "type": "requirement", + "variants": [], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "e2e79960-934f-4145-a481-5c8315a1209c", + "title": "Spissverdier", + "description": "", + "requirements": [ + { + "id": "d3c8889a-03f0-4cdc-a8ad-8e781128ca08", + "title": "Hvilken posisjon kan spilleren bekle", + "description": "", + "needId": "e2e79960-934f-4145-a481-5c8315a1209c", + "type": "requirement", + "variants": [ + { + "id": "3450991d-2667-4160-9712-dc900b28407d", + "requirementText": "Det kan være alt fra ving til spiss", + "instruction": "Hvilken eller hvilke posisjoner passer best for spilleren", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "c46cfec2-f44a-4bd5-8f0a-43f5cab9885b", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "692db181-5adc-4053-9af2-1e8b3d39d786", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Hvilken posisjon trives angrepsspilleren i" + }, + { + "id": "0aa7e97c-d5b5-46d6-9a44-e53a0d411b2e", + "requirementText": "Info felt", + "instruction": "Med kodeliste", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28" + ], + "questions": [ + { + "id": "ac3b40f2-5762-4b6f-a772-02edefe70eee", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "692db181-5adc-4053-9af2-1e8b3d39d786", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Hvilken posisjon trives angrepsspilleren i" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "type": "need", + "parent": "706969fd-085c-4130-bc7a-31e3db8a4146", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "1a50d93d-e920-47f3-998d-130f7ca5b461", + "title": "Generelle verdier", + "description": "", + "requirements": [ + { + "id": "cbe772ec-ad1e-4d30-bbc4-13339951099d", + "title": "Relasjon med klubben", + "description": "", + "needId": "1a50d93d-e920-47f3-998d-130f7ca5b461", + "type": "requirement", + "variants": [ + { + "id": "2d767568-3040-4b84-b6ae-72216b260664", + "requirementText": "Hvordan er relasjonen med klubben", + "instruction": "Skriv om historien med klubben", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "7de0ff7e-d76c-4f56-bc20-c0558f14fdb2", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Har vi en god relasjon til klubben som henter spiller" + }, + { + "id": "771f52ee-1952-4ee6-a6ed-7ae21b1de81a", + "requirementText": "noe her", + "instruction": "noe her", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "69205b19-6379-450d-904c-bb8498e8f707", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Har vi en god relasjon med klubben vi henter fra" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "d5d6d99d-54d0-4482-b0f1-360ae39a75e2", + "title": "Opplastning av lisens", + "description": "", + "needId": "1a50d93d-e920-47f3-998d-130f7ca5b461", + "type": "requirement", + "variants": [ + { + "id": "f2e25768-a679-4ab0-9ce6-af2d72cdc283", + "requirementText": "Trengs en gyldig lisens for denne handlingen. Venligst last opp denne", + "instruction": "Last opp lisensen", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "0c2b8dc3-4d86-4d20-a9bd-a50734c9c154", + "type": "Q_FILEUPLOAD", + "config": { + "template": null, + "uploadInSpec": false, + "allowMultipleFiles": false, + "fileEndings": [], + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "files": [ + "" + ] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Trengs en gyldig lisens" + }, + { + "id": "26b14771-4805-4c7a-9ae8-9e6b47bc6606", + "requirementText": "Info info info", + "instruction": "Lisens lisens lisens", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "3d609947-2fc4-4b22-9c6d-18e2f45ecbe4", + "type": "Q_FILEUPLOAD", + "config": { + "template": null, + "uploadInSpec": false, + "allowMultipleFiles": false, + "fileEndings": [], + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "files": [ + "" + ] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Trengs en gyldig lisens" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "2820b1b1-eb02-4d14-aca5-7b1d4fcc9887", + "title": "Posisjonsverdier", + "description": "", + "requirements": [ + { + "id": "088032a3-89a2-4a84-8a12-f90b325eaa56", + "title": "Samspill med hverandre", + "description": "", + "needId": "2820b1b1-eb02-4d14-aca5-7b1d4fcc9887", + "type": "requirement", + "variants": [ + { + "id": "70dccd2a-dc14-4bda-972a-208dbd903971", + "requirementText": "Kan være viktig for de personlige relasjonene i et lag", + "instruction": "Hvor lenge har de spilt sammen i de forskjellige posisjonene", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "0ec3cd5c-b551-4063-b745-8abbc77eb162" + ], + "questions": [ + { + "id": "feb2cb3d-cab4-45e7-babf-e2c8d884c122", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "06f46860-5932-44c8-bbd6-610e777e1fd0", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Hvor lenge spillerene har spilt sammen / Når startet de å spille sammen" + }, + { + "id": "2636606d-ca72-4c2f-b865-0410e47c64ae", + "requirementText": "jaja", + "instruction": "noe her og", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "0ec3cd5c-b551-4063-b745-8abbc77eb162" + ], + "questions": [ + { + "id": "431dc573-5bac-48f7-a103-d3e30bdd9013", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Når startet de å spille sammen" + }, + { + "id": "50d1a03d-d785-4811-87f1-d19b551f553b", + "requirementText": "Her er en kravtekst", + "instruction": "Og dette er en veiledning", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "0ec3cd5c-b551-4063-b745-8abbc77eb162" + ], + "questions": [ + { + "id": "19b0439a-a45c-4072-b2c2-37dac036fdcf", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Hvor lenge har de spilt sammen" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "7bd5f637-67da-40fe-a81f-4bedae436401", + "title": "Bekreftelse på at dette er en speller", + "description": "", + "needId": "2820b1b1-eb02-4d14-aca5-7b1d4fcc9887", + "type": "requirement", + "variants": [ + { + "id": "83fda159-c72e-4446-b81e-809d39f64bcd", + "requirementText": "Speller er noe helt annet enn en vanlig spiller. Dette må bekreftes", + "instruction": "Her er det en bekreftelse", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "a2d39977-5f69-47e7-bfa5-a2a4d67b1073" + ], + "questions": [ + { + "id": "dbaeb588-96ea-49bc-b768-1c4a3491a8b4", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Er dette en speller?" + }, + { + "id": "5770a0e3-18fd-4d4b-a09b-596c7dbfdbf1", + "requirementText": "Vet ikke helt hva mening dette gir men", + "instruction": "Hei hå", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "a2d39977-5f69-47e7-bfa5-a2a4d67b1073" + ], + "questions": [ + { + "id": "e81ce611-aad6-4e0e-b422-be60e96e6997", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Bekreftelse" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "type": "need", + "parent": "1a50d93d-e920-47f3-998d-130f7ca5b461", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "692db181-5adc-4053-9af2-1e8b3d39d786", + "title": "Angrepsposisjon", + "description": "Posisjoner i angrep", + "codes": [ + { + "id": "21bbea1f-e425-4fd8-8ac4-7ffd7573e28c", + "title": "9er", + "description": "Klassisk spydspiss", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + }, + { + "id": "3a954f4e-28fd-4610-8a6e-3607b5c87f20", + "title": "Falsk 9er", + "description": "Litt dypere spiss som fungerer i det oppbyggende angrepsspillet", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + }, + { + "id": "c0681282-e5cb-4626-9b39-7f4b41c2a6f2", + "title": "Bred ving", + "description": "Ving som holder bredde og legger mye innlegg", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + }, + { + "id": "c9085640-7a65-4f11-8023-c61f965bb4a3", + "title": "Innovertrukket ving", + "description": "Ving som trekker inn i banen for avslutning", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "cd28300f-f5cd-4690-bb40-2610fe51a920", + "title": "Midtbaneposisjon", + "description": "Posisjoner på midtbanen", + "codes": [ + { + "id": "79ca4c69-bc9d-41ba-ab0a-bb95fa35a6d0", + "title": "Kantspiller", + "description": "Ute til siden, ikke å forveksle med ving", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + }, + { + "id": "601d0162-3436-482c-a325-9fcda3987ccf", + "title": "Indreløper", + "description": "Løper opp og ned i en treer", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + }, + { + "id": "75023f1e-de5c-43fb-8657-57e753cedac4", + "title": "Anker", + "description": "Dyptliggende, taklingssterk", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + }, + { + "id": "0055ab99-59e3-4561-a09d-160d49bc95a2", + "title": "Offensiv midtbanespiller", + "description": "Med fokus i angrep", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "products": [ + { + "id": "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "title": "Midtstoppere", + "description": "Samling av alle midtstoppere i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "b72f1784-2469-4b00-9afe-ab7335ec596c", + "title": "Joel Matip", + "description": "Høy og rask midtstopper fra Kamerun", + "type": "product", + "parent": "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "title": "Virgil Van Dijk", + "description": "Verdens beste midtstopper. Kommer fra Nederland", + "type": "product", + "parent": "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "title": "Ibrahima Konate", + "description": "Sterk og rask midtstopper fra Frankrike", + "type": "product", + "parent": "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "title": "Backer", + "description": "Samling av alle backene i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "71d643a0-39c2-4cbc-80b2-38374b746e95", + "title": "Trent Alexander-Arnold", + "description": "Verdens beste høyreback. Engelsk, og ekte Liverpoolgutt. Vokst opp et steinkast fra Anfield Road", + "type": "product", + "parent": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "7b75bdda-3c05-4c03-b311-110ec670892f", + "title": "Andrew Robertson", + "description": "Løpssterk venstreback fra Skottland!", + "type": "product", + "parent": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "606ee429-74c6-4696-a60b-3048246fc3f4", + "title": "Konstantinos Tsamikas", + "description": "Unge venstreback fra Hellas. Skåret avgjørende straffesparket i FA cup-finalen", + "type": "product", + "parent": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "title": "Joe Gomez", + "description": "Versatil forsvarsspiller fra england. Kan gjøre en god figur både på stopperplass og på backplass", + "type": "product", + "parent": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "title": "Keepere", + "description": "Samling av alle keeperene i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "c9689511-defd-4259-b5fa-67d127bc5f59", + "title": "Allison Becker", + "description": "Legendarisk keeper fra Brasil", + "type": "product", + "parent": "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "a8dc4069-290b-4577-972c-9faac368e3c6", + "title": "Adrian", + "description": "Reservekeeper fra Spania. Tidligere spilt for West Ham", + "type": "product", + "parent": "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "86fb309c-c0b8-4964-841c-69991cf4024b", + "title": "Caoimhin Kelleher", + "description": "Ung keeper fra Irland", + "type": "product", + "parent": "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "title": "Midtbanespillere", + "description": "Samling av alle midtbanespiller'e i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "title": "Fabinho", + "description": "Sterk og god defensiv midtbanespiller fra Brasil! Han er kommer du deg ikke forbi", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "f6dace96-ef1a-4596-86b0-555676ecd49e", + "title": "Thiago", + "description": "Teknisk vidunder fra Spania", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "title": "Jordan Henderson", + "description": "Klubbkaptein, og arbeidsjern på midten. Kommer fra England", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "title": "James Milner", + "description": "Verdens kjedeligste engelskmann. Men løper som en hest", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "title": "Harvey Elliot", + "description": "Ungt teknisk engelsk talent på midtbanen", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "title": "Curtis Jones", + "description": "Ung midtbanespiller fra England", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "title": "Naby Keita", + "description": "Teknisk driblesterk midtbanespiller fra Guinea", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "title": "Alex Oxlade-Chamberlain", + "description": "Meget rask midtbanespiller fra England. Tidligere vært Arsenals beste spiller", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "title": "Angrepsspillere", + "description": "Samling av alle angrepsspillere i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "title": "Mohammed Salah", + "description": "Egyptisk konge, og verdens beste fotballspiller", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "title": "Diego Jota", + "description": "Portugals klart beste fotballspiller gjennom tidene", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "title": "Luis Diaz", + "description": "Ving fra Colombia. Sjeldent kommet noe så bra teknisk vidunder fra vingposisjon fra det landet", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "title": "Divock Origi", + "description": "Legende fra Belgia", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "7e720208-ad36-46a2-b06d-c247feedb1de", + "title": "Takumi Minamino", + "description": "Beste offensive spiller produsert i Asia. Japans store sønn", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "title": "Roberto Firmino", + "description": "Arbeidsjern fra Brasil. Verdens beste i offensivt press", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "27428a1e-ebee-4e3c-9899-a7b6a418b852", + "title": "Manager", + "description": "Liverpool FC Manager", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "a2d39977-5f69-47e7-bfa5-a2a4d67b1073", + "title": "Jurgen Klopp", + "description": "Verdens beste manager. Kommer fra Tyskland", + "type": "product", + "parent": "27428a1e-ebee-4e3c-9899-a7b6a418b852", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [], + "tags": [ + { + "id": "7ad34422-7e1c-40b6-9a52-4376843b4129", + "title": "Test", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "version": 12, + "publishedDate": "2022-09-12T13:24:20.574Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "199fc365-aec1-4699-babf-abddd4f76fa5", + "deletedDate": null + }, + { + "id": "04f3e310-d048-4ba1-affd-c424cd31f230", + "title": "Balders Liverpool", + "description": "Balders testprosjekt som omhandler Liverpool FC", + "needs": [ + { + "id": "706969fd-085c-4130-bc7a-31e3db8a4146", + "title": "Spillerverdier", + "description": "Mål for spillerene", + "requirements": [ + { + "id": "22d2cd7d-d165-407c-a241-ae0f95080bde", + "title": "Hastighet", + "description": "", + "needId": "706969fd-085c-4130-bc7a-31e3db8a4146", + "type": "requirement", + "variants": [ + { + "id": "b5033b3c-2fa3-4f80-a819-8240aa78c24e", + "requirementText": "Toppfart er viktig for å se hvor rask en fotballspiller er", + "instruction": "Hva er topphastigheten til spilleren", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "9cf71563-2b76-4763-a701-80a49449abb2", + "type": "Q_SLIDER", + "config": { + "min": 20, + "max": 44, + "step": 0.1, + "unit": "km/t", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 20, + "score": 0 + }, + { + "value": 44, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Toppfart" + }, + { + "id": "2270b062-4234-4ee7-8a5d-c641ea861727", + "requirementText": "Hvor raskt løper spilleren 100 meter", + "instruction": "Finn ut tiden på 100 meter", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "4acb3773-bf7c-43ec-8798-903426a388b8", + "type": "Q_SLIDER", + "config": { + "min": 9, + "max": 15, + "step": 0.1, + "unit": "sekunder", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 9, + "score": 0 + }, + { + "value": 15, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "100 meter fart" + }, + { + "id": "11cf19b6-72a1-4d9a-97ba-3ec14092c88c", + "requirementText": "Infofelt for fart.", + "instruction": "Svares i spesifikasjon", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "446bcefe-7020-4c7a-ae63-f8daa2b2e09c", + "type": "Q_SLIDER", + "config": { + "min": 20, + "max": 44, + "step": 2, + "unit": "km/t", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 20, + "score": 0 + }, + { + "value": 44, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Fart info" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "b987fb6b-c061-4331-99ea-44de0955466c", + "title": "Erfaring", + "description": "", + "needId": "706969fd-085c-4130-bc7a-31e3db8a4146", + "type": "requirement", + "variants": [ + { + "id": "3528be95-4935-4e6f-a659-44514a6fb5c0", + "requirementText": "Har spilleren relevant erfaring", + "instruction": "Har spilleren en historie i en annen klubb i PL?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "4f4fb007-11c4-4350-98f2-f336cd37c4fd", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Erfaring fra tidligere Premier League klubber" + }, + { + "id": "ee0d4da1-becf-4c7a-aa01-ade83d932c48", + "requirementText": "Info-felt om Premier League erfaring", + "instruction": "Besvares i spesifikasjon", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "53d437a4-9d78-4958-8505-4b63eb08988a", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Premier League erfaring" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "42b43a87-6f2d-4ddb-bf69-5399c3d10c79", + "title": "Kontrakt", + "description": "", + "needId": "706969fd-085c-4130-bc7a-31e3db8a4146", + "type": "requirement", + "variants": [ + { + "id": "af70283f-7c2b-4924-b125-925969813fec", + "requirementText": "Går kontrakten ut snart?", + "instruction": "Viktig for å få en rimligere pris", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "a2d39977-5f69-47e7-bfa5-a2a4d67b1073" + ], + "questions": [ + { + "id": "c07372a4-3a89-45e0-8b98-d846962a07e9", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "9552c5e0-9964-4ce2-849f-243a8c1e06a0", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Når går kontrakten ut" + }, + { + "id": "f02d9bc5-7263-493b-a579-1f7a68ac5f41", + "requirementText": "Info-typen", + "instruction": "Se info", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "a2d39977-5f69-47e7-bfa5-a2a4d67b1073" + ], + "questions": [ + { + "id": "dfa941fe-187b-4911-8f8d-04ca6fe4453b", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Når går kontrakten ut" + }, + { + "id": "eb6da662-5068-4eef-a551-73a09fa4447a", + "requirementText": "Info type med periode", + "instruction": "det gir ikke mening, jeg vet", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "a2d39977-5f69-47e7-bfa5-a2a4d67b1073" + ], + "questions": [ + { + "id": "4aa0dbc9-c10a-4aa9-a932-9a6cb028daa1", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Når går kontrakten ut tidsperiode" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "e2e79960-934f-4145-a481-5c8315a1209c", + "title": "Spissverdier", + "description": "", + "requirements": [ + { + "id": "d3c8889a-03f0-4cdc-a8ad-8e781128ca08", + "title": "Hvilken posisjon kan spilleren bekle", + "description": "", + "needId": "e2e79960-934f-4145-a481-5c8315a1209c", + "type": "requirement", + "variants": [ + { + "id": "3450991d-2667-4160-9712-dc900b28407d", + "requirementText": "Det kan være alt fra ving til spiss", + "instruction": "Hvilken eller hvilke posisjoner passer best for spilleren", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "c46cfec2-f44a-4bd5-8f0a-43f5cab9885b", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "692db181-5adc-4053-9af2-1e8b3d39d786", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Hvilken posisjon trives angrepsspilleren i" + }, + { + "id": "0aa7e97c-d5b5-46d6-9a44-e53a0d411b2e", + "requirementText": "Info felt", + "instruction": "Med kodeliste", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28" + ], + "questions": [ + { + "id": "ac3b40f2-5762-4b6f-a772-02edefe70eee", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "692db181-5adc-4053-9af2-1e8b3d39d786", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Hvilken posisjon trives angrepsspilleren i" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "type": "need", + "parent": "706969fd-085c-4130-bc7a-31e3db8a4146", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "1a50d93d-e920-47f3-998d-130f7ca5b461", + "title": "Generelle verdier", + "description": "", + "requirements": [ + { + "id": "cbe772ec-ad1e-4d30-bbc4-13339951099d", + "title": "Relasjon med klubben", + "description": "", + "needId": "1a50d93d-e920-47f3-998d-130f7ca5b461", + "type": "requirement", + "variants": [ + { + "id": "2d767568-3040-4b84-b6ae-72216b260664", + "requirementText": "Hvordan er relasjonen med klubben", + "instruction": "Skriv om historien med klubben", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "7de0ff7e-d76c-4f56-bc20-c0558f14fdb2", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Har vi en god relasjon til klubben som henter spiller" + }, + { + "id": "771f52ee-1952-4ee6-a6ed-7ae21b1de81a", + "requirementText": "noe her", + "instruction": "noe her", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "69205b19-6379-450d-904c-bb8498e8f707", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Har vi en god relasjon med klubben vi henter fra" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "d5d6d99d-54d0-4482-b0f1-360ae39a75e2", + "title": "Opplastning av lisens", + "description": "", + "needId": "1a50d93d-e920-47f3-998d-130f7ca5b461", + "type": "requirement", + "variants": [ + { + "id": "f2e25768-a679-4ab0-9ce6-af2d72cdc283", + "requirementText": "Trengs en gyldig lisens for denne handlingen. Venligst last opp denne", + "instruction": "Last opp lisensen", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "0c2b8dc3-4d86-4d20-a9bd-a50734c9c154", + "type": "Q_FILEUPLOAD", + "config": { + "template": null, + "uploadInSpec": false, + "allowMultipleFiles": false, + "fileEndings": [], + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "files": [ + "" + ] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Trengs en gyldig lisens" + }, + { + "id": "26b14771-4805-4c7a-9ae8-9e6b47bc6606", + "requirementText": "Info info info", + "instruction": "Lisens lisens lisens", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "3d609947-2fc4-4b22-9c6d-18e2f45ecbe4", + "type": "Q_FILEUPLOAD", + "config": { + "template": null, + "uploadInSpec": false, + "allowMultipleFiles": false, + "fileEndings": [], + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "files": [ + "" + ] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Trengs en gyldig lisens" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "2820b1b1-eb02-4d14-aca5-7b1d4fcc9887", + "title": "Posisjonsverdier", + "description": "", + "requirements": [ + { + "id": "088032a3-89a2-4a84-8a12-f90b325eaa56", + "title": "Samspill med hverandre", + "description": "", + "needId": "2820b1b1-eb02-4d14-aca5-7b1d4fcc9887", + "type": "requirement", + "variants": [ + { + "id": "70dccd2a-dc14-4bda-972a-208dbd903971", + "requirementText": "Kan være viktig for de personlige relasjonene i et lag", + "instruction": "Hvor lenge har de spilt sammen i de forskjellige posisjonene", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "0ec3cd5c-b551-4063-b745-8abbc77eb162" + ], + "questions": [ + { + "id": "feb2cb3d-cab4-45e7-babf-e2c8d884c122", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "06f46860-5932-44c8-bbd6-610e777e1fd0", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Hvor lenge spillerene har spilt sammen / Når startet de å spille sammen" + }, + { + "id": "2636606d-ca72-4c2f-b865-0410e47c64ae", + "requirementText": "jaja", + "instruction": "noe her og", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "0ec3cd5c-b551-4063-b745-8abbc77eb162" + ], + "questions": [ + { + "id": "431dc573-5bac-48f7-a103-d3e30bdd9013", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Når startet de å spille sammen" + }, + { + "id": "50d1a03d-d785-4811-87f1-d19b551f553b", + "requirementText": "Her er en kravtekst", + "instruction": "Og dette er en veiledning", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "0ec3cd5c-b551-4063-b745-8abbc77eb162" + ], + "questions": [ + { + "id": "19b0439a-a45c-4072-b2c2-37dac036fdcf", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Hvor lenge har de spilt sammen" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "7bd5f637-67da-40fe-a81f-4bedae436401", + "title": "Bekreftelse på at dette er en speller", + "description": "", + "needId": "2820b1b1-eb02-4d14-aca5-7b1d4fcc9887", + "type": "requirement", + "variants": [ + { + "id": "83fda159-c72e-4446-b81e-809d39f64bcd", + "requirementText": "Speller er noe helt annet enn en vanlig spiller. Dette må bekreftes", + "instruction": "Her er det en bekreftelse", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "a2d39977-5f69-47e7-bfa5-a2a4d67b1073" + ], + "questions": [ + { + "id": "dbaeb588-96ea-49bc-b768-1c4a3491a8b4", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Er dette en speller?" + }, + { + "id": "5770a0e3-18fd-4d4b-a09b-596c7dbfdbf1", + "requirementText": "Vet ikke helt hva mening dette gir men", + "instruction": "Hei hå", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "a2d39977-5f69-47e7-bfa5-a2a4d67b1073" + ], + "questions": [ + { + "id": "e81ce611-aad6-4e0e-b422-be60e96e6997", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Bekreftelse" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "type": "need", + "parent": "1a50d93d-e920-47f3-998d-130f7ca5b461", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "692db181-5adc-4053-9af2-1e8b3d39d786", + "title": "Angrepsposisjon", + "description": "Posisjoner i angrep", + "codes": [ + { + "id": "21bbea1f-e425-4fd8-8ac4-7ffd7573e28c", + "title": "9er", + "description": "Klassisk spydspiss", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + }, + { + "id": "3a954f4e-28fd-4610-8a6e-3607b5c87f20", + "title": "Falsk 9er", + "description": "Litt dypere spiss som fungerer i det oppbyggende angrepsspillet", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + }, + { + "id": "c0681282-e5cb-4626-9b39-7f4b41c2a6f2", + "title": "Bred ving", + "description": "Ving som holder bredde og legger mye innlegg", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + }, + { + "id": "c9085640-7a65-4f11-8023-c61f965bb4a3", + "title": "Innovertrukket ving", + "description": "Ving som trekker inn i banen for avslutning", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "cd28300f-f5cd-4690-bb40-2610fe51a920", + "title": "Midtbaneposisjon", + "description": "Posisjoner på midtbanen", + "codes": [ + { + "id": "79ca4c69-bc9d-41ba-ab0a-bb95fa35a6d0", + "title": "Kantspiller", + "description": "Ute til siden, ikke å forveksle med ving", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + }, + { + "id": "601d0162-3436-482c-a325-9fcda3987ccf", + "title": "Indreløper", + "description": "Løper opp og ned i en treer", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + }, + { + "id": "75023f1e-de5c-43fb-8657-57e753cedac4", + "title": "Anker", + "description": "Dyptliggende, taklingssterk", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + }, + { + "id": "0055ab99-59e3-4561-a09d-160d49bc95a2", + "title": "Offensiv midtbanespiller", + "description": "Med fokus i angrep", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "products": [ + { + "id": "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "title": "Midtstoppere", + "description": "Samling av alle midtstoppere i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "b72f1784-2469-4b00-9afe-ab7335ec596c", + "title": "Joel Matip", + "description": "Høy og rask midtstopper fra Kamerun", + "type": "product", + "parent": "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "title": "Virgil Van Dijk", + "description": "Verdens beste midtstopper. Kommer fra Nederland", + "type": "product", + "parent": "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "title": "Ibrahima Konate", + "description": "Sterk og rask midtstopper fra Frankrike", + "type": "product", + "parent": "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "title": "Backer", + "description": "Samling av alle backene i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "71d643a0-39c2-4cbc-80b2-38374b746e95", + "title": "Trent Alexander-Arnold", + "description": "Verdens beste høyreback. Engelsk, og ekte Liverpoolgutt. Vokst opp et steinkast fra Anfield Road", + "type": "product", + "parent": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "7b75bdda-3c05-4c03-b311-110ec670892f", + "title": "Andrew Robertson", + "description": "Løpssterk venstreback fra Skottland!", + "type": "product", + "parent": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "606ee429-74c6-4696-a60b-3048246fc3f4", + "title": "Konstantinos Tsamikas", + "description": "Unge venstreback fra Hellas. Skåret avgjørende straffesparket i FA cup-finalen", + "type": "product", + "parent": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "title": "Joe Gomez", + "description": "Versatil forsvarsspiller fra england. Kan gjøre en god figur både på stopperplass og på backplass", + "type": "product", + "parent": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "title": "Keepere", + "description": "Samling av alle keeperene i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "c9689511-defd-4259-b5fa-67d127bc5f59", + "title": "Allison Becker", + "description": "Legendarisk keeper fra Brasil", + "type": "product", + "parent": "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "a8dc4069-290b-4577-972c-9faac368e3c6", + "title": "Adrian", + "description": "Reservekeeper fra Spania. Tidligere spilt for West Ham", + "type": "product", + "parent": "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "86fb309c-c0b8-4964-841c-69991cf4024b", + "title": "Caoimhin Kelleher", + "description": "Ung keeper fra Irland", + "type": "product", + "parent": "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "title": "Midtbanespillere", + "description": "Samling av alle midtbanespiller'e i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "title": "Fabinho", + "description": "Sterk og god defensiv midtbanespiller fra Brasil! Han er kommer du deg ikke forbi", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "f6dace96-ef1a-4596-86b0-555676ecd49e", + "title": "Thiago", + "description": "Teknisk vidunder fra Spania", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "title": "Jordan Henderson", + "description": "Klubbkaptein, og arbeidsjern på midten. Kommer fra England", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "title": "James Milner", + "description": "Verdens kjedeligste engelskmann. Men løper som en hest", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "title": "Harvey Elliot", + "description": "Ungt teknisk engelsk talent på midtbanen", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "title": "Curtis Jones", + "description": "Ung midtbanespiller fra England", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "title": "Naby Keita", + "description": "Teknisk driblesterk midtbanespiller fra Guinea", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "title": "Alex Oxlade-Chamberlain", + "description": "Meget rask midtbanespiller fra England. Tidligere vært Arsenals beste spiller", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "title": "Angrepsspillere", + "description": "Samling av alle angrepsspillere i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "title": "Sadio Mane", + "description": "Rask og livsfarlig ving fra Senegal", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": "2022-06-14T07:03:14.158Z" + }, + { + "id": "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "title": "Mohammed Salah", + "description": "Egyptisk konge, og verdens beste fotballspiller", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "title": "Diego Jota", + "description": "Portugals klart beste fotballspiller gjennom tidene", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "title": "Luis Diaz", + "description": "Ving fra Colombia. Sjeldent kommet noe så bra teknisk vidunder fra vingposisjon fra det landet", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "title": "Divock Origi", + "description": "Legende fra Belgia", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "7e720208-ad36-46a2-b06d-c247feedb1de", + "title": "Takumi Minamino", + "description": "Beste offensive spiller produsert i Asia. Japans store sønn", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "title": "Roberto Firmino", + "description": "Arbeidsjern fra Brasil. Verdens beste i offensivt press", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "27428a1e-ebee-4e3c-9899-a7b6a418b852", + "title": "Manager", + "description": "Liverpool FC Manager", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "a2d39977-5f69-47e7-bfa5-a2a4d67b1073", + "title": "Jurgen Klopp", + "description": "Verdens beste manager. Kommer fra Tyskland", + "type": "product", + "parent": "27428a1e-ebee-4e3c-9899-a7b6a418b852", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [], + "tags": [ + { + "id": "7ad34422-7e1c-40b6-9a52-4376843b4129", + "title": "Test", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "version": 9, + "publishedDate": "2022-08-30T12:28:21.378Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "199fc365-aec1-4699-babf-abddd4f76fa5", + "deletedDate": null + }, + { + "id": "ad558be2-120f-440a-84a0-62423da4cd01", + "title": "Balders Liverpool", + "description": "Balders testprosjekt som omhandler Liverpool FC", + "needs": [ + { + "id": "706969fd-085c-4130-bc7a-31e3db8a4146", + "title": "Spillerverdier", + "description": "Mål for spillerene", + "requirements": [ + { + "id": "22d2cd7d-d165-407c-a241-ae0f95080bde", + "title": "Hastighet", + "description": "", + "needId": "706969fd-085c-4130-bc7a-31e3db8a4146", + "type": "requirement", + "variants": [ + { + "id": "b5033b3c-2fa3-4f80-a819-8240aa78c24e", + "requirementText": "Toppfart er viktig for å se hvor rask en fotballspiller er", + "instruction": "Hva er topphastigheten til spilleren", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "9cf71563-2b76-4763-a701-80a49449abb2", + "type": "Q_SLIDER", + "config": { + "min": 20, + "max": 44, + "step": 0.1, + "unit": "km/t", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 20, + "score": 0 + }, + { + "value": 44, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Toppfart" + }, + { + "id": "2270b062-4234-4ee7-8a5d-c641ea861727", + "requirementText": "Hvor raskt løper spilleren 100 meter", + "instruction": "Finn ut tiden på 100 meter", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "4acb3773-bf7c-43ec-8798-903426a388b8", + "type": "Q_SLIDER", + "config": { + "min": 9, + "max": 15, + "step": 0.1, + "unit": "sekunder", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 9, + "score": 0 + }, + { + "value": 15, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "100 meter fart" + }, + { + "id": "11cf19b6-72a1-4d9a-97ba-3ec14092c88c", + "requirementText": "Infofelt for fart.", + "instruction": "Svares i spesifikasjon", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "446bcefe-7020-4c7a-ae63-f8daa2b2e09c", + "type": "Q_SLIDER", + "config": { + "min": 20, + "max": 44, + "step": 2, + "unit": "km/t", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 20, + "score": 0 + }, + { + "value": 44, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Fart info" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "b987fb6b-c061-4331-99ea-44de0955466c", + "title": "Erfaring", + "description": "", + "needId": "706969fd-085c-4130-bc7a-31e3db8a4146", + "type": "requirement", + "variants": [ + { + "id": "3528be95-4935-4e6f-a659-44514a6fb5c0", + "requirementText": "Har spilleren relevant erfaring", + "instruction": "Har spilleren en historie i en annen klubb i PL?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "4f4fb007-11c4-4350-98f2-f336cd37c4fd", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Erfaring fra tidligere Premier League klubber" + }, + { + "id": "ee0d4da1-becf-4c7a-aa01-ade83d932c48", + "requirementText": "Info-felt om Premier League erfaring", + "instruction": "Besvares i spesifikasjon", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "53d437a4-9d78-4958-8505-4b63eb08988a", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Premier League erfaring" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "42b43a87-6f2d-4ddb-bf69-5399c3d10c79", + "title": "Kontrakt", + "description": "", + "needId": "706969fd-085c-4130-bc7a-31e3db8a4146", + "type": "requirement", + "variants": [ + { + "id": "af70283f-7c2b-4924-b125-925969813fec", + "requirementText": "Går kontrakten ut snart?", + "instruction": "Viktig for å få en rimligere pris", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "a2d39977-5f69-47e7-bfa5-a2a4d67b1073" + ], + "questions": [ + { + "id": "c07372a4-3a89-45e0-8b98-d846962a07e9", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "9552c5e0-9964-4ce2-849f-243a8c1e06a0", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Når går kontrakten ut" + }, + { + "id": "f02d9bc5-7263-493b-a579-1f7a68ac5f41", + "requirementText": "Info-typen", + "instruction": "Se info", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "a2d39977-5f69-47e7-bfa5-a2a4d67b1073" + ], + "questions": [ + { + "id": "dfa941fe-187b-4911-8f8d-04ca6fe4453b", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Når går kontrakten ut" + }, + { + "id": "eb6da662-5068-4eef-a551-73a09fa4447a", + "requirementText": "Info type med periode", + "instruction": "det gir ikke mening, jeg vet", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "a2d39977-5f69-47e7-bfa5-a2a4d67b1073" + ], + "questions": [ + { + "id": "4aa0dbc9-c10a-4aa9-a932-9a6cb028daa1", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Når går kontrakten ut tidsperiode" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "e2e79960-934f-4145-a481-5c8315a1209c", + "title": "Spissverdier", + "description": "", + "requirements": [ + { + "id": "d3c8889a-03f0-4cdc-a8ad-8e781128ca08", + "title": "Hvilken posisjon kan spilleren bekle", + "description": "", + "needId": "e2e79960-934f-4145-a481-5c8315a1209c", + "type": "requirement", + "variants": [ + { + "id": "3450991d-2667-4160-9712-dc900b28407d", + "requirementText": "Det kan være alt fra ving til spiss", + "instruction": "Hvilken eller hvilke posisjoner passer best for spilleren", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "c46cfec2-f44a-4bd5-8f0a-43f5cab9885b", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "692db181-5adc-4053-9af2-1e8b3d39d786", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Hvilken posisjon trives angrepsspilleren i" + }, + { + "id": "0aa7e97c-d5b5-46d6-9a44-e53a0d411b2e", + "requirementText": "Info felt", + "instruction": "Med kodeliste", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28" + ], + "questions": [ + { + "id": "ac3b40f2-5762-4b6f-a772-02edefe70eee", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "692db181-5adc-4053-9af2-1e8b3d39d786", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Hvilken posisjon trives angrepsspilleren i" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "type": "need", + "parent": "706969fd-085c-4130-bc7a-31e3db8a4146", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "1a50d93d-e920-47f3-998d-130f7ca5b461", + "title": "Generelle verdier", + "description": "", + "requirements": [ + { + "id": "cbe772ec-ad1e-4d30-bbc4-13339951099d", + "title": "Relasjon med klubben", + "description": "", + "needId": "1a50d93d-e920-47f3-998d-130f7ca5b461", + "type": "requirement", + "variants": [ + { + "id": "2d767568-3040-4b84-b6ae-72216b260664", + "requirementText": "Hvordan er relasjonen med klubben", + "instruction": "Skriv om historien med klubben", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "7de0ff7e-d76c-4f56-bc20-c0558f14fdb2", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Har vi en god relasjon til klubben som henter spiller" + }, + { + "id": "771f52ee-1952-4ee6-a6ed-7ae21b1de81a", + "requirementText": "noe her", + "instruction": "noe her", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "69205b19-6379-450d-904c-bb8498e8f707", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Har vi en god relasjon med klubben vi henter fra" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "d5d6d99d-54d0-4482-b0f1-360ae39a75e2", + "title": "Opplastning av lisens", + "description": "", + "needId": "1a50d93d-e920-47f3-998d-130f7ca5b461", + "type": "requirement", + "variants": [ + { + "id": "f2e25768-a679-4ab0-9ce6-af2d72cdc283", + "requirementText": "Trengs en gyldig lisens for denne handlingen. Venligst last opp denne", + "instruction": "Last opp lisensen", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "0c2b8dc3-4d86-4d20-a9bd-a50734c9c154", + "type": "Q_FILEUPLOAD", + "config": { + "template": null, + "uploadInSpec": false, + "allowMultipleFiles": false, + "fileEndings": [], + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "files": [ + "" + ] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Trengs en gyldig lisens" + }, + { + "id": "26b14771-4805-4c7a-9ae8-9e6b47bc6606", + "requirementText": "Info info info", + "instruction": "Lisens lisens lisens", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "3d609947-2fc4-4b22-9c6d-18e2f45ecbe4", + "type": "Q_FILEUPLOAD", + "config": { + "template": null, + "uploadInSpec": false, + "allowMultipleFiles": false, + "fileEndings": [], + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "files": [ + "" + ] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Trengs en gyldig lisens" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "2820b1b1-eb02-4d14-aca5-7b1d4fcc9887", + "title": "Posisjonsverdier", + "description": "", + "requirements": [ + { + "id": "088032a3-89a2-4a84-8a12-f90b325eaa56", + "title": "Samspill med hverandre", + "description": "", + "needId": "2820b1b1-eb02-4d14-aca5-7b1d4fcc9887", + "type": "requirement", + "variants": [ + { + "id": "70dccd2a-dc14-4bda-972a-208dbd903971", + "requirementText": "Kan være viktig for de personlige relasjonene i et lag", + "instruction": "Hvor lenge har de spilt sammen i de forskjellige posisjonene", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "0ec3cd5c-b551-4063-b745-8abbc77eb162" + ], + "questions": [ + { + "id": "feb2cb3d-cab4-45e7-babf-e2c8d884c122", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "06f46860-5932-44c8-bbd6-610e777e1fd0", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Hvor lenge spillerene har spilt sammen / Når startet de å spille sammen" + }, + { + "id": "2636606d-ca72-4c2f-b865-0410e47c64ae", + "requirementText": "jaja", + "instruction": "noe her og", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "0ec3cd5c-b551-4063-b745-8abbc77eb162" + ], + "questions": [ + { + "id": "431dc573-5bac-48f7-a103-d3e30bdd9013", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Når startet de å spille sammen" + }, + { + "id": "50d1a03d-d785-4811-87f1-d19b551f553b", + "requirementText": "Her er en kravtekst", + "instruction": "Og dette er en veiledning", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "0ec3cd5c-b551-4063-b745-8abbc77eb162" + ], + "questions": [ + { + "id": "19b0439a-a45c-4072-b2c2-37dac036fdcf", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Hvor lenge har de spilt sammen" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "7bd5f637-67da-40fe-a81f-4bedae436401", + "title": "Bekreftelse på at dette er en speller", + "description": "", + "needId": "2820b1b1-eb02-4d14-aca5-7b1d4fcc9887", + "type": "requirement", + "variants": [ + { + "id": "83fda159-c72e-4446-b81e-809d39f64bcd", + "requirementText": "Speller er noe helt annet enn en vanlig spiller. Dette må bekreftes", + "instruction": "Her er det en bekreftelse", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "a2d39977-5f69-47e7-bfa5-a2a4d67b1073" + ], + "questions": [ + { + "id": "dbaeb588-96ea-49bc-b768-1c4a3491a8b4", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Er dette en speller?" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "type": "need", + "parent": "1a50d93d-e920-47f3-998d-130f7ca5b461", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "692db181-5adc-4053-9af2-1e8b3d39d786", + "title": "Angrepsposisjon", + "description": "Posisjoner i angrep", + "codes": [ + { + "id": "21bbea1f-e425-4fd8-8ac4-7ffd7573e28c", + "title": "9er", + "description": "Klassisk spydspiss", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + }, + { + "id": "3a954f4e-28fd-4610-8a6e-3607b5c87f20", + "title": "Falsk 9er", + "description": "Litt dypere spiss som fungerer i det oppbyggende angrepsspillet", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + }, + { + "id": "c0681282-e5cb-4626-9b39-7f4b41c2a6f2", + "title": "Bred ving", + "description": "Ving som holder bredde og legger mye innlegg", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + }, + { + "id": "c9085640-7a65-4f11-8023-c61f965bb4a3", + "title": "Innovertrukket ving", + "description": "Ving som trekker inn i banen for avslutning", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "cd28300f-f5cd-4690-bb40-2610fe51a920", + "title": "Midtbaneposisjon", + "description": "Posisjoner på midtbanen", + "codes": [ + { + "id": "79ca4c69-bc9d-41ba-ab0a-bb95fa35a6d0", + "title": "Kantspiller", + "description": "Ute til siden, ikke å forveksle med ving", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + }, + { + "id": "601d0162-3436-482c-a325-9fcda3987ccf", + "title": "Indreløper", + "description": "Løper opp og ned i en treer", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + }, + { + "id": "75023f1e-de5c-43fb-8657-57e753cedac4", + "title": "Anker", + "description": "Dyptliggende, taklingssterk", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + }, + { + "id": "0055ab99-59e3-4561-a09d-160d49bc95a2", + "title": "Offensiv midtbanespiller", + "description": "Med fokus i angrep", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "products": [ + { + "id": "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "title": "Midtstoppere", + "description": "Samling av alle midtstoppere i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "b72f1784-2469-4b00-9afe-ab7335ec596c", + "title": "Joel Matip", + "description": "Høy og rask midtstopper fra Kamerun", + "type": "product", + "parent": "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "title": "Virgil Van Dijk", + "description": "Verdens beste midtstopper. Kommer fra Nederland", + "type": "product", + "parent": "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "title": "Ibrahima Konate", + "description": "Sterk og rask midtstopper fra Frankrike", + "type": "product", + "parent": "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "title": "Backer", + "description": "Samling av alle backene i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "71d643a0-39c2-4cbc-80b2-38374b746e95", + "title": "Trent Alexander-Arnold", + "description": "Verdens beste høyreback. Engelsk, og ekte Liverpoolgutt. Vokst opp et steinkast fra Anfield Road", + "type": "product", + "parent": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "7b75bdda-3c05-4c03-b311-110ec670892f", + "title": "Andrew Robertson", + "description": "Løpssterk venstreback fra Skottland!", + "type": "product", + "parent": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "606ee429-74c6-4696-a60b-3048246fc3f4", + "title": "Konstantinos Tsamikas", + "description": "Unge venstreback fra Hellas. Skåret avgjørende straffesparket i FA cup-finalen", + "type": "product", + "parent": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "title": "Joe Gomez", + "description": "Versatil forsvarsspiller fra england. Kan gjøre en god figur både på stopperplass og på backplass", + "type": "product", + "parent": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "title": "Keepere", + "description": "Samling av alle keeperene i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "c9689511-defd-4259-b5fa-67d127bc5f59", + "title": "Allison Becker", + "description": "Legendarisk keeper fra Brasil", + "type": "product", + "parent": "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "a8dc4069-290b-4577-972c-9faac368e3c6", + "title": "Adrian", + "description": "Reservekeeper fra Spania. Tidligere spilt for West Ham", + "type": "product", + "parent": "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "86fb309c-c0b8-4964-841c-69991cf4024b", + "title": "Caoimhin Kelleher", + "description": "Ung keeper fra Irland", + "type": "product", + "parent": "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "title": "Midtbanespillere", + "description": "Samling av alle midtbanespiller'e i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "title": "Fabinho", + "description": "Sterk og god defensiv midtbanespiller fra Brasil! Han er kommer du deg ikke forbi", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "f6dace96-ef1a-4596-86b0-555676ecd49e", + "title": "Thiago", + "description": "Teknisk vidunder fra Spania", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "title": "Jordan Henderson", + "description": "Klubbkaptein, og arbeidsjern på midten. Kommer fra England", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "title": "James Milner", + "description": "Verdens kjedeligste engelskmann. Men løper som en hest", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "title": "Harvey Elliot", + "description": "Ungt teknisk engelsk talent på midtbanen", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "title": "Curtis Jones", + "description": "Ung midtbanespiller fra England", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "title": "Naby Keita", + "description": "Teknisk driblesterk midtbanespiller fra Guinea", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "title": "Alex Oxlade-Chamberlain", + "description": "Meget rask midtbanespiller fra England. Tidligere vært Arsenals beste spiller", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "title": "Angrepsspillere", + "description": "Samling av alle angrepsspillere i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "title": "Sadio Mane", + "description": "Rask og livsfarlig ving fra Senegal", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": "2022-06-14T07:03:14.158Z" + }, + { + "id": "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "title": "Mohammed Salah", + "description": "Egyptisk konge, og verdens beste fotballspiller", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "title": "Diego Jota", + "description": "Portugals klart beste fotballspiller gjennom tidene", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "title": "Luis Diaz", + "description": "Ving fra Colombia. Sjeldent kommet noe så bra teknisk vidunder fra vingposisjon fra det landet", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "title": "Divock Origi", + "description": "Legende fra Belgia", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "7e720208-ad36-46a2-b06d-c247feedb1de", + "title": "Takumi Minamino", + "description": "Beste offensive spiller produsert i Asia. Japans store sønn", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "title": "Roberto Firmino", + "description": "Arbeidsjern fra Brasil. Verdens beste i offensivt press", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "27428a1e-ebee-4e3c-9899-a7b6a418b852", + "title": "Manager", + "description": "Liverpool FC Manager", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "a2d39977-5f69-47e7-bfa5-a2a4d67b1073", + "title": "Jurgen Klopp", + "description": "Verdens beste manager. Kommer fra Tyskland", + "type": "product", + "parent": "27428a1e-ebee-4e3c-9899-a7b6a418b852", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [], + "tags": [ + { + "id": "7ad34422-7e1c-40b6-9a52-4376843b4129", + "title": "Test", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "version": 8, + "publishedDate": "2022-08-30T12:25:47.863Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "199fc365-aec1-4699-babf-abddd4f76fa5", + "deletedDate": null + }, + { + "id": "e3ed3670-d20c-43fa-a5ba-8c22586b6b84", + "title": "Balders Liverpool", + "description": "Balders testprosjekt som omhandler Liverpool FC", + "needs": [ + { + "id": "706969fd-085c-4130-bc7a-31e3db8a4146", + "title": "Spillerverdier", + "description": "Mål for spillerene", + "requirements": [ + { + "id": "22d2cd7d-d165-407c-a241-ae0f95080bde", + "title": "Hastighet", + "description": "", + "needId": "706969fd-085c-4130-bc7a-31e3db8a4146", + "type": "requirement", + "variants": [ + { + "id": "b5033b3c-2fa3-4f80-a819-8240aa78c24e", + "requirementText": "Toppfart er viktig for å se hvor rask en fotballspiller er", + "instruction": "Hva er topphastigheten til spilleren", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "9cf71563-2b76-4763-a701-80a49449abb2", + "type": "Q_SLIDER", + "config": { + "min": 20, + "max": 44, + "step": 0.1, + "unit": "km/t", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 20, + "score": 0 + }, + { + "value": 44, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Toppfart" + }, + { + "id": "2270b062-4234-4ee7-8a5d-c641ea861727", + "requirementText": "Hvor raskt løper spilleren 100 meter", + "instruction": "Finn ut tiden på 100 meter", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "4acb3773-bf7c-43ec-8798-903426a388b8", + "type": "Q_SLIDER", + "config": { + "min": 9, + "max": 15, + "step": 0.1, + "unit": "sekunder", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 9, + "score": 0 + }, + { + "value": 15, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "100 meter fart" + }, + { + "id": "11cf19b6-72a1-4d9a-97ba-3ec14092c88c", + "requirementText": "Infofelt for fart.", + "instruction": "Svares i spesifikasjon", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "446bcefe-7020-4c7a-ae63-f8daa2b2e09c", + "type": "Q_SLIDER", + "config": { + "min": 20, + "max": 44, + "step": 2, + "unit": "km/t", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 20, + "score": 0 + }, + { + "value": 44, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Fart info" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "b987fb6b-c061-4331-99ea-44de0955466c", + "title": "Erfaring", + "description": "", + "needId": "706969fd-085c-4130-bc7a-31e3db8a4146", + "type": "requirement", + "variants": [ + { + "id": "3528be95-4935-4e6f-a659-44514a6fb5c0", + "requirementText": "Har spilleren relevant erfaring", + "instruction": "Har spilleren en historie i en annen klubb i PL?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "4f4fb007-11c4-4350-98f2-f336cd37c4fd", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Erfaring fra tidligere Premier League klubber" + }, + { + "id": "ee0d4da1-becf-4c7a-aa01-ade83d932c48", + "requirementText": "Info-felt om Premier League erfaring", + "instruction": "Besvares i spesifikasjon", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "53d437a4-9d78-4958-8505-4b63eb08988a", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Premier League erfaring" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "42b43a87-6f2d-4ddb-bf69-5399c3d10c79", + "title": "Kontrakt", + "description": "", + "needId": "706969fd-085c-4130-bc7a-31e3db8a4146", + "type": "requirement", + "variants": [ + { + "id": "af70283f-7c2b-4924-b125-925969813fec", + "requirementText": "Går kontrakten ut snart?", + "instruction": "Viktig for å få en rimligere pris", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "a2d39977-5f69-47e7-bfa5-a2a4d67b1073" + ], + "questions": [ + { + "id": "c07372a4-3a89-45e0-8b98-d846962a07e9", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "9552c5e0-9964-4ce2-849f-243a8c1e06a0", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Når går kontrakten ut" + }, + { + "id": "f02d9bc5-7263-493b-a579-1f7a68ac5f41", + "requirementText": "Info-typen", + "instruction": "Se info", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "a2d39977-5f69-47e7-bfa5-a2a4d67b1073" + ], + "questions": [ + { + "id": "dfa941fe-187b-4911-8f8d-04ca6fe4453b", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Når går kontrakten ut" + }, + { + "id": "eb6da662-5068-4eef-a551-73a09fa4447a", + "requirementText": "Info type med periode", + "instruction": "det gir ikke mening, jeg vet", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "a2d39977-5f69-47e7-bfa5-a2a4d67b1073" + ], + "questions": [ + { + "id": "4aa0dbc9-c10a-4aa9-a932-9a6cb028daa1", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Når går kontrakten ut tidsperiode" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "e2e79960-934f-4145-a481-5c8315a1209c", + "title": "Spissverdier", + "description": "", + "requirements": [ + { + "id": "d3c8889a-03f0-4cdc-a8ad-8e781128ca08", + "title": "Hvilken posisjon kan spilleren bekle", + "description": "", + "needId": "e2e79960-934f-4145-a481-5c8315a1209c", + "type": "requirement", + "variants": [ + { + "id": "3450991d-2667-4160-9712-dc900b28407d", + "requirementText": "Det kan være alt fra ving til spiss", + "instruction": "Hvilken eller hvilke posisjoner passer best for spilleren", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "c46cfec2-f44a-4bd5-8f0a-43f5cab9885b", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "692db181-5adc-4053-9af2-1e8b3d39d786", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Hvilken posisjon trives angrepsspilleren i" + }, + { + "id": "0aa7e97c-d5b5-46d6-9a44-e53a0d411b2e", + "requirementText": "Info felt", + "instruction": "Med kodeliste", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28" + ], + "questions": [ + { + "id": "ac3b40f2-5762-4b6f-a772-02edefe70eee", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "692db181-5adc-4053-9af2-1e8b3d39d786", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Hvilken posisjon trives angrepsspilleren i" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "type": "need", + "parent": "706969fd-085c-4130-bc7a-31e3db8a4146", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "1a50d93d-e920-47f3-998d-130f7ca5b461", + "title": "Generelle verdier", + "description": "", + "requirements": [ + { + "id": "cbe772ec-ad1e-4d30-bbc4-13339951099d", + "title": "Relasjon med klubben", + "description": "", + "needId": "1a50d93d-e920-47f3-998d-130f7ca5b461", + "type": "requirement", + "variants": [ + { + "id": "2d767568-3040-4b84-b6ae-72216b260664", + "requirementText": "Hvordan er relasjonen med klubben", + "instruction": "Skriv om historien med klubben", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "7de0ff7e-d76c-4f56-bc20-c0558f14fdb2", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Har vi en god relasjon til klubben som henter spiller" + }, + { + "id": "771f52ee-1952-4ee6-a6ed-7ae21b1de81a", + "requirementText": "noe her", + "instruction": "noe her", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "69205b19-6379-450d-904c-bb8498e8f707", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Har vi en god relasjon med klubben vi henter fra" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "d5d6d99d-54d0-4482-b0f1-360ae39a75e2", + "title": "Opplastning av lisens", + "description": "", + "needId": "1a50d93d-e920-47f3-998d-130f7ca5b461", + "type": "requirement", + "variants": [ + { + "id": "f2e25768-a679-4ab0-9ce6-af2d72cdc283", + "requirementText": "Trengs en gyldig lisens for denne handlingen. Venligst last opp denne", + "instruction": "Last opp lisensen", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "0c2b8dc3-4d86-4d20-a9bd-a50734c9c154", + "type": "Q_FILEUPLOAD", + "config": { + "template": null, + "uploadInSpec": false, + "allowMultipleFiles": false, + "fileEndings": [], + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "files": [ + "" + ] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Trengs en gyldig lisens" + }, + { + "id": "26b14771-4805-4c7a-9ae8-9e6b47bc6606", + "requirementText": "Info info info", + "instruction": "Lisens lisens lisens", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "3d609947-2fc4-4b22-9c6d-18e2f45ecbe4", + "type": "Q_FILEUPLOAD", + "config": { + "template": null, + "uploadInSpec": false, + "allowMultipleFiles": false, + "fileEndings": [], + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "files": [ + "" + ] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Trengs en gyldig lisens" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "2820b1b1-eb02-4d14-aca5-7b1d4fcc9887", + "title": "Posisjonsverdier", + "description": "", + "requirements": [ + { + "id": "088032a3-89a2-4a84-8a12-f90b325eaa56", + "title": "Samspill med hverandre", + "description": "", + "needId": "2820b1b1-eb02-4d14-aca5-7b1d4fcc9887", + "type": "requirement", + "variants": [ + { + "id": "70dccd2a-dc14-4bda-972a-208dbd903971", + "requirementText": "Kan være viktig for de personlige relasjonene i et lag", + "instruction": "Hvor lenge har de spilt sammen i de forskjellige posisjonene", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "0ec3cd5c-b551-4063-b745-8abbc77eb162" + ], + "questions": [ + { + "id": "feb2cb3d-cab4-45e7-babf-e2c8d884c122", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "06f46860-5932-44c8-bbd6-610e777e1fd0", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Hvor lenge spillerene har spilt sammen / Når startet de å spille sammen" + }, + { + "id": "2636606d-ca72-4c2f-b865-0410e47c64ae", + "requirementText": "jaja", + "instruction": "noe her og", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "0ec3cd5c-b551-4063-b745-8abbc77eb162" + ], + "questions": [ + { + "id": "431dc573-5bac-48f7-a103-d3e30bdd9013", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Når startet de å spille sammen" + }, + { + "id": "50d1a03d-d785-4811-87f1-d19b551f553b", + "requirementText": "Her er en kravtekst", + "instruction": "Og dette er en veiledning", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "0ec3cd5c-b551-4063-b745-8abbc77eb162" + ], + "questions": [ + { + "id": "19b0439a-a45c-4072-b2c2-37dac036fdcf", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Hvor lenge har de spilt sammen" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "type": "need", + "parent": "1a50d93d-e920-47f3-998d-130f7ca5b461", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "692db181-5adc-4053-9af2-1e8b3d39d786", + "title": "Angrepsposisjon", + "description": "Posisjoner i angrep", + "codes": [ + { + "id": "21bbea1f-e425-4fd8-8ac4-7ffd7573e28c", + "title": "9er", + "description": "Klassisk spydspiss", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + }, + { + "id": "3a954f4e-28fd-4610-8a6e-3607b5c87f20", + "title": "Falsk 9er", + "description": "Litt dypere spiss som fungerer i det oppbyggende angrepsspillet", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + }, + { + "id": "c0681282-e5cb-4626-9b39-7f4b41c2a6f2", + "title": "Bred ving", + "description": "Ving som holder bredde og legger mye innlegg", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + }, + { + "id": "c9085640-7a65-4f11-8023-c61f965bb4a3", + "title": "Innovertrukket ving", + "description": "Ving som trekker inn i banen for avslutning", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "products": [ + { + "id": "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "title": "Midtstoppere", + "description": "Samling av alle midtstoppere i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "b72f1784-2469-4b00-9afe-ab7335ec596c", + "title": "Joel Matip", + "description": "Høy og rask midtstopper fra Kamerun", + "type": "product", + "parent": "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "title": "Virgil Van Dijk", + "description": "Verdens beste midtstopper. Kommer fra Nederland", + "type": "product", + "parent": "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "title": "Ibrahima Konate", + "description": "Sterk og rask midtstopper fra Frankrike", + "type": "product", + "parent": "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "title": "Backer", + "description": "Samling av alle backene i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "71d643a0-39c2-4cbc-80b2-38374b746e95", + "title": "Trent Alexander-Arnold", + "description": "Verdens beste høyreback. Engelsk, og ekte Liverpoolgutt. Vokst opp et steinkast fra Anfield Road", + "type": "product", + "parent": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "7b75bdda-3c05-4c03-b311-110ec670892f", + "title": "Andrew Robertson", + "description": "Løpssterk venstreback fra Skottland!", + "type": "product", + "parent": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "606ee429-74c6-4696-a60b-3048246fc3f4", + "title": "Konstantinos Tsamikas", + "description": "Unge venstreback fra Hellas. Skåret avgjørende straffesparket i FA cup-finalen", + "type": "product", + "parent": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "title": "Joe Gomez", + "description": "Versatil forsvarsspiller fra england. Kan gjøre en god figur både på stopperplass og på backplass", + "type": "product", + "parent": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "title": "Keepere", + "description": "Samling av alle keeperene i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "c9689511-defd-4259-b5fa-67d127bc5f59", + "title": "Allison Becker", + "description": "Legendarisk keeper fra Brasil", + "type": "product", + "parent": "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "a8dc4069-290b-4577-972c-9faac368e3c6", + "title": "Adrian", + "description": "Reservekeeper fra Spania. Tidligere spilt for West Ham", + "type": "product", + "parent": "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "86fb309c-c0b8-4964-841c-69991cf4024b", + "title": "Caoimhin Kelleher", + "description": "Ung keeper fra Irland", + "type": "product", + "parent": "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "title": "Midtbanespillere", + "description": "Samling av alle midtbanespiller'e i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "title": "Fabinho", + "description": "Sterk og god defensiv midtbanespiller fra Brasil! Han er kommer du deg ikke forbi", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "f6dace96-ef1a-4596-86b0-555676ecd49e", + "title": "Thiago", + "description": "Teknisk vidunder fra Spania", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "title": "Jordan Henderson", + "description": "Klubbkaptein, og arbeidsjern på midten. Kommer fra England", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "title": "James Milner", + "description": "Verdens kjedeligste engelskmann. Men løper som en hest", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "title": "Harvey Elliot", + "description": "Ungt teknisk engelsk talent på midtbanen", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "title": "Curtis Jones", + "description": "Ung midtbanespiller fra England", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "title": "Naby Keita", + "description": "Teknisk driblesterk midtbanespiller fra Guinea", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "title": "Alex Oxlade-Chamberlain", + "description": "Meget rask midtbanespiller fra England. Tidligere vært Arsenals beste spiller", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "title": "Angrepsspillere", + "description": "Samling av alle angrepsspillere i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "title": "Sadio Mane", + "description": "Rask og livsfarlig ving fra Senegal", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": "2022-06-14T07:03:14.158Z" + }, + { + "id": "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "title": "Mohammed Salah", + "description": "Egyptisk konge, og verdens beste fotballspiller", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "title": "Diego Jota", + "description": "Portugals klart beste fotballspiller gjennom tidene", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "title": "Luis Diaz", + "description": "Ving fra Colombia. Sjeldent kommet noe så bra teknisk vidunder fra vingposisjon fra det landet", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "title": "Divock Origi", + "description": "Legende fra Belgia", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "7e720208-ad36-46a2-b06d-c247feedb1de", + "title": "Takumi Minamino", + "description": "Beste offensive spiller produsert i Asia. Japans store sønn", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "title": "Roberto Firmino", + "description": "Arbeidsjern fra Brasil. Verdens beste i offensivt press", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "27428a1e-ebee-4e3c-9899-a7b6a418b852", + "title": "Manager", + "description": "Liverpool FC Manager", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "a2d39977-5f69-47e7-bfa5-a2a4d67b1073", + "title": "Jurgen Klopp", + "description": "Verdens beste manager. Kommer fra Tyskland", + "type": "product", + "parent": "27428a1e-ebee-4e3c-9899-a7b6a418b852", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [], + "tags": [], + "version": 7, + "publishedDate": "2022-08-18T13:53:59.676Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "199fc365-aec1-4699-babf-abddd4f76fa5", + "deletedDate": null + }, + { + "id": "78d91a42-7baf-4339-95e8-751342450463", + "title": "Balders Liverpool", + "description": "Balders testprosjekt som omhandler Liverpool FC", + "needs": [ + { + "id": "706969fd-085c-4130-bc7a-31e3db8a4146", + "title": "Spillerverdier", + "description": "Mål for spillerene", + "requirements": [ + { + "id": "22d2cd7d-d165-407c-a241-ae0f95080bde", + "title": "Hastighet", + "description": "", + "needId": "706969fd-085c-4130-bc7a-31e3db8a4146", + "type": "requirement", + "variants": [ + { + "id": "b5033b3c-2fa3-4f80-a819-8240aa78c24e", + "requirementText": "Toppfart er viktig for å se hvor rask en fotballspiller er", + "instruction": "Hva er topphastigheten til spilleren", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "9cf71563-2b76-4763-a701-80a49449abb2", + "type": "Q_SLIDER", + "config": { + "min": 20, + "max": 44, + "step": 0.1, + "unit": "km/t", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Toppfart" + }, + { + "id": "2270b062-4234-4ee7-8a5d-c641ea861727", + "requirementText": "Hvor raskt løper spilleren 100 meter", + "instruction": "Finn ut tiden på 100 meter", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "4acb3773-bf7c-43ec-8798-903426a388b8", + "type": "Q_SLIDER", + "config": { + "min": 9, + "max": 15, + "step": 0.1, + "unit": "sekunder", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "100 meter fart" + }, + { + "id": "11cf19b6-72a1-4d9a-97ba-3ec14092c88c", + "requirementText": "Infofelt for fart.", + "instruction": "Svares i spesifikasjon", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "446bcefe-7020-4c7a-ae63-f8daa2b2e09c", + "type": "Q_SLIDER", + "config": { + "min": 20, + "max": 44, + "step": 2, + "unit": "km/t", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Fart info" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "b987fb6b-c061-4331-99ea-44de0955466c", + "title": "Erfaring", + "description": "", + "needId": "706969fd-085c-4130-bc7a-31e3db8a4146", + "type": "requirement", + "variants": [ + { + "id": "3528be95-4935-4e6f-a659-44514a6fb5c0", + "requirementText": "Har spilleren relevant erfaring", + "instruction": "Har spilleren en historie i en annen klubb i PL?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "4f4fb007-11c4-4350-98f2-f336cd37c4fd", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Erfaring fra tidligere Premier League klubber" + }, + { + "id": "ee0d4da1-becf-4c7a-aa01-ade83d932c48", + "requirementText": "Info-felt om Premier League erfaring", + "instruction": "Besvares i spesifikasjon", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "53d437a4-9d78-4958-8505-4b63eb08988a", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Premier League erfaring" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "42b43a87-6f2d-4ddb-bf69-5399c3d10c79", + "title": "Kontrakt", + "description": "", + "needId": "706969fd-085c-4130-bc7a-31e3db8a4146", + "type": "requirement", + "variants": [ + { + "id": "af70283f-7c2b-4924-b125-925969813fec", + "requirementText": "Går kontrakten ut snart?", + "instruction": "Viktig for å få en rimligere pris", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "a2d39977-5f69-47e7-bfa5-a2a4d67b1073" + ], + "questions": [ + { + "id": "c07372a4-3a89-45e0-8b98-d846962a07e9", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "9552c5e0-9964-4ce2-849f-243a8c1e06a0", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Når går kontrakten ut" + }, + { + "id": "f02d9bc5-7263-493b-a579-1f7a68ac5f41", + "requirementText": "Info-typen", + "instruction": "Se info", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "a2d39977-5f69-47e7-bfa5-a2a4d67b1073" + ], + "questions": [ + { + "id": "dfa941fe-187b-4911-8f8d-04ca6fe4453b", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Når går kontrakten ut" + }, + { + "id": "eb6da662-5068-4eef-a551-73a09fa4447a", + "requirementText": "Info type med periode", + "instruction": "det gir ikke mening, jeg vet", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "a2d39977-5f69-47e7-bfa5-a2a4d67b1073" + ], + "questions": [ + { + "id": "4aa0dbc9-c10a-4aa9-a932-9a6cb028daa1", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Når går kontrakten ut tidsperiode" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "e2e79960-934f-4145-a481-5c8315a1209c", + "title": "Spissverdier", + "description": "", + "requirements": [ + { + "id": "d3c8889a-03f0-4cdc-a8ad-8e781128ca08", + "title": "Hvilken posisjon kan spilleren bekle", + "description": "", + "needId": "e2e79960-934f-4145-a481-5c8315a1209c", + "type": "requirement", + "variants": [ + { + "id": "3450991d-2667-4160-9712-dc900b28407d", + "requirementText": "Det kan være alt fra ving til spiss", + "instruction": "Hvilken eller hvilke posisjoner passer best for spilleren", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "c46cfec2-f44a-4bd5-8f0a-43f5cab9885b", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "692db181-5adc-4053-9af2-1e8b3d39d786", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Hvilken posisjon trives angrepsspilleren i" + }, + { + "id": "0aa7e97c-d5b5-46d6-9a44-e53a0d411b2e", + "requirementText": "Info felt", + "instruction": "Med kodeliste", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28" + ], + "questions": [ + { + "id": "ac3b40f2-5762-4b6f-a772-02edefe70eee", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "692db181-5adc-4053-9af2-1e8b3d39d786", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Hvilken posisjon trives angrepsspilleren i" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "type": "need", + "parent": "706969fd-085c-4130-bc7a-31e3db8a4146", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "1a50d93d-e920-47f3-998d-130f7ca5b461", + "title": "Generelle verdier", + "description": "", + "requirements": [ + { + "id": "cbe772ec-ad1e-4d30-bbc4-13339951099d", + "title": "Relasjon med klubben", + "description": "", + "needId": "1a50d93d-e920-47f3-998d-130f7ca5b461", + "type": "requirement", + "variants": [ + { + "id": "2d767568-3040-4b84-b6ae-72216b260664", + "requirementText": "Hvordan er relasjonen med klubben", + "instruction": "Skriv om historien med klubben", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "7de0ff7e-d76c-4f56-bc20-c0558f14fdb2", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Har vi en god relasjon til klubben som henter spiller" + }, + { + "id": "771f52ee-1952-4ee6-a6ed-7ae21b1de81a", + "requirementText": "noe her", + "instruction": "noe her", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "69205b19-6379-450d-904c-bb8498e8f707", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Har vi en god relasjon med klubben vi henter fra" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "d5d6d99d-54d0-4482-b0f1-360ae39a75e2", + "title": "Opplastning av lisens", + "description": "", + "needId": "1a50d93d-e920-47f3-998d-130f7ca5b461", + "type": "requirement", + "variants": [ + { + "id": "f2e25768-a679-4ab0-9ce6-af2d72cdc283", + "requirementText": "Trengs en gyldig lisens for denne handlingen. Venligst last opp denne", + "instruction": "Last opp lisensen", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "0c2b8dc3-4d86-4d20-a9bd-a50734c9c154", + "type": "Q_FILEUPLOAD", + "config": { + "template": null, + "uploadInSpec": false, + "allowMultipleFiles": false, + "fileEndings": [], + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "files": [ + "" + ] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Trengs en gyldig lisens" + }, + { + "id": "26b14771-4805-4c7a-9ae8-9e6b47bc6606", + "requirementText": "Info info info", + "instruction": "Lisens lisens lisens", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "3d609947-2fc4-4b22-9c6d-18e2f45ecbe4", + "type": "Q_FILEUPLOAD", + "config": { + "template": null, + "uploadInSpec": false, + "allowMultipleFiles": false, + "fileEndings": [], + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "files": [ + "" + ] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Trengs en gyldig lisens" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "2820b1b1-eb02-4d14-aca5-7b1d4fcc9887", + "title": "Posisjonsverdier", + "description": "", + "requirements": [ + { + "id": "088032a3-89a2-4a84-8a12-f90b325eaa56", + "title": "Samspill med hverandre", + "description": "", + "needId": "2820b1b1-eb02-4d14-aca5-7b1d4fcc9887", + "type": "requirement", + "variants": [ + { + "id": "70dccd2a-dc14-4bda-972a-208dbd903971", + "requirementText": "Kan være viktig for de personlige relasjonene i et lag", + "instruction": "Hvor lenge har de spilt sammen i de forskjellige posisjonene", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "0ec3cd5c-b551-4063-b745-8abbc77eb162" + ], + "questions": [ + { + "id": "feb2cb3d-cab4-45e7-babf-e2c8d884c122", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "06f46860-5932-44c8-bbd6-610e777e1fd0", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Hvor lenge spillerene har spilt sammen / Når startet de å spille sammen" + }, + { + "id": "2636606d-ca72-4c2f-b865-0410e47c64ae", + "requirementText": "jaja", + "instruction": "noe her og", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "0ec3cd5c-b551-4063-b745-8abbc77eb162" + ], + "questions": [ + { + "id": "431dc573-5bac-48f7-a103-d3e30bdd9013", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Når startet de å spille sammen" + }, + { + "id": "50d1a03d-d785-4811-87f1-d19b551f553b", + "requirementText": "Her er en kravtekst", + "instruction": "Og dette er en veiledning", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "0ec3cd5c-b551-4063-b745-8abbc77eb162" + ], + "questions": [ + { + "id": "19b0439a-a45c-4072-b2c2-37dac036fdcf", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Hvor lenge har de spilt sammen" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "type": "need", + "parent": "1a50d93d-e920-47f3-998d-130f7ca5b461", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "692db181-5adc-4053-9af2-1e8b3d39d786", + "title": "Angrepsposisjon", + "description": "Posisjoner i angrep", + "codes": [ + { + "id": "21bbea1f-e425-4fd8-8ac4-7ffd7573e28c", + "title": "9er", + "description": "Klassisk spydspiss", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + }, + { + "id": "3a954f4e-28fd-4610-8a6e-3607b5c87f20", + "title": "Falsk 9er", + "description": "Litt dypere spiss som fungerer i det oppbyggende angrepsspillet", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + }, + { + "id": "c0681282-e5cb-4626-9b39-7f4b41c2a6f2", + "title": "Bred ving", + "description": "Ving som holder bredde og legger mye innlegg", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + }, + { + "id": "c9085640-7a65-4f11-8023-c61f965bb4a3", + "title": "Innovertrukket ving", + "description": "Ving som trekker inn i banen for avslutning", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "products": [ + { + "id": "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "title": "Midtstoppere", + "description": "Samling av alle midtstoppere i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "b72f1784-2469-4b00-9afe-ab7335ec596c", + "title": "Joel Matip", + "description": "Høy og rask midtstopper fra Kamerun", + "type": "product", + "parent": "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "title": "Virgil Van Dijk", + "description": "Verdens beste midtstopper. Kommer fra Nederland", + "type": "product", + "parent": "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "title": "Ibrahima Konate", + "description": "Sterk og rask midtstopper fra Frankrike", + "type": "product", + "parent": "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "title": "Backer", + "description": "Samling av alle backene i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "71d643a0-39c2-4cbc-80b2-38374b746e95", + "title": "Trent Alexander-Arnold", + "description": "Verdens beste høyreback. Engelsk, og ekte Liverpoolgutt. Vokst opp et steinkast fra Anfield Road", + "type": "product", + "parent": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "7b75bdda-3c05-4c03-b311-110ec670892f", + "title": "Andrew Robertson", + "description": "Løpssterk venstreback fra Skottland!", + "type": "product", + "parent": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "606ee429-74c6-4696-a60b-3048246fc3f4", + "title": "Konstantinos Tsamikas", + "description": "Unge venstreback fra Hellas. Skåret avgjørende straffesparket i FA cup-finalen", + "type": "product", + "parent": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "title": "Joe Gomez", + "description": "Versatil forsvarsspiller fra england. Kan gjøre en god figur både på stopperplass og på backplass", + "type": "product", + "parent": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "title": "Keepere", + "description": "Samling av alle keeperene i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "c9689511-defd-4259-b5fa-67d127bc5f59", + "title": "Allison Becker", + "description": "Legendarisk keeper fra Brasil", + "type": "product", + "parent": "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "a8dc4069-290b-4577-972c-9faac368e3c6", + "title": "Adrian", + "description": "Reservekeeper fra Spania. Tidligere spilt for West Ham", + "type": "product", + "parent": "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "86fb309c-c0b8-4964-841c-69991cf4024b", + "title": "Caoimhin Kelleher", + "description": "Ung keeper fra Irland", + "type": "product", + "parent": "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "title": "Midtbanespillere", + "description": "Samling av alle midtbanespiller'e i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "title": "Fabinho", + "description": "Sterk og god defensiv midtbanespiller fra Brasil! Han er kommer du deg ikke forbi", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "f6dace96-ef1a-4596-86b0-555676ecd49e", + "title": "Thiago", + "description": "Teknisk vidunder fra Spania", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "title": "Jordan Henderson", + "description": "Klubbkaptein, og arbeidsjern på midten. Kommer fra England", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "title": "James Milner", + "description": "Verdens kjedeligste engelskmann. Men løper som en hest", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "title": "Harvey Elliot", + "description": "Ungt teknisk engelsk talent på midtbanen", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "title": "Curtis Jones", + "description": "Ung midtbanespiller fra England", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "title": "Naby Keita", + "description": "Teknisk driblesterk midtbanespiller fra Guinea", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "title": "Alex Oxlade-Chamberlain", + "description": "Meget rask midtbanespiller fra England. Tidligere vært Arsenals beste spiller", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "title": "Angrepsspillere", + "description": "Samling av alle angrepsspillere i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "title": "Sadio Mane", + "description": "Rask og livsfarlig ving fra Senegal", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": "2022-06-14T07:03:14.158Z" + }, + { + "id": "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "title": "Mohammed Salah", + "description": "Egyptisk konge, og verdens beste fotballspiller", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "title": "Diego Jota", + "description": "Portugals klart beste fotballspiller gjennom tidene", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "title": "Luis Diaz", + "description": "Ving fra Colombia. Sjeldent kommet noe så bra teknisk vidunder fra vingposisjon fra det landet", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "title": "Divock Origi", + "description": "Legende fra Belgia", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "7e720208-ad36-46a2-b06d-c247feedb1de", + "title": "Takumi Minamino", + "description": "Beste offensive spiller produsert i Asia. Japans store sønn", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "title": "Roberto Firmino", + "description": "Arbeidsjern fra Brasil. Verdens beste i offensivt press", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "27428a1e-ebee-4e3c-9899-a7b6a418b852", + "title": "Manager", + "description": "Liverpool FC Manager", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "a2d39977-5f69-47e7-bfa5-a2a4d67b1073", + "title": "Jurgen Klopp", + "description": "Verdens beste manager. Kommer fra Tyskland", + "type": "product", + "parent": "27428a1e-ebee-4e3c-9899-a7b6a418b852", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [], + "tags": [], + "version": 5, + "publishedDate": "2022-08-02T10:51:08.644Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "199fc365-aec1-4699-babf-abddd4f76fa5", + "deletedDate": null + }, + { + "id": "9e0eb924-f8ca-4ea1-82c3-c0c22d785b16", + "title": "Balders Liverpool", + "description": "Balders testprosjekt som omhandler Liverpool FC", + "needs": [ + { + "id": "706969fd-085c-4130-bc7a-31e3db8a4146", + "title": "Spillerverdier", + "description": "Mål for spillerene", + "requirements": [ + { + "id": "22d2cd7d-d165-407c-a241-ae0f95080bde", + "title": "Hastighet", + "description": "", + "needId": "706969fd-085c-4130-bc7a-31e3db8a4146", + "type": "requirement", + "variants": [ + { + "id": "b5033b3c-2fa3-4f80-a819-8240aa78c24e", + "requirementText": "Toppfart er viktig for å se hvor rask en fotballspiller er", + "instruction": "Hva er topphastigheten til spilleren", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "9cf71563-2b76-4763-a701-80a49449abb2", + "type": "Q_SLIDER", + "config": { + "min": 20, + "max": 44, + "step": 0.1, + "unit": "km/t", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Toppfart" + }, + { + "id": "2270b062-4234-4ee7-8a5d-c641ea861727", + "requirementText": "Hvor raskt løper spilleren 100 meter", + "instruction": "Finn ut tiden på 100 meter", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "4acb3773-bf7c-43ec-8798-903426a388b8", + "type": "Q_SLIDER", + "config": { + "min": 9, + "max": 15, + "step": 0.1, + "unit": "sekunder", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "100 meter fart" + }, + { + "id": "11cf19b6-72a1-4d9a-97ba-3ec14092c88c", + "requirementText": "Infofelt for fart.", + "instruction": "Svares i spesifikasjon", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "446bcefe-7020-4c7a-ae63-f8daa2b2e09c", + "type": "Q_SLIDER", + "config": { + "min": 20, + "max": 44, + "step": 2, + "unit": "km/t", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Fart info" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "b987fb6b-c061-4331-99ea-44de0955466c", + "title": "Erfaring", + "description": "", + "needId": "706969fd-085c-4130-bc7a-31e3db8a4146", + "type": "requirement", + "variants": [ + { + "id": "3528be95-4935-4e6f-a659-44514a6fb5c0", + "requirementText": "Har spilleren relevant erfaring", + "instruction": "Har spilleren en historie i en annen klubb i PL?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "4f4fb007-11c4-4350-98f2-f336cd37c4fd", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Erfaring fra tidligere Premier League klubber" + }, + { + "id": "ee0d4da1-becf-4c7a-aa01-ade83d932c48", + "requirementText": "Info-felt om Premier League erfaring", + "instruction": "Besvares i spesifikasjon", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "53d437a4-9d78-4958-8505-4b63eb08988a", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Premier League erfaring" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "42b43a87-6f2d-4ddb-bf69-5399c3d10c79", + "title": "Kontrakt", + "description": "", + "needId": "706969fd-085c-4130-bc7a-31e3db8a4146", + "type": "requirement", + "variants": [ + { + "id": "af70283f-7c2b-4924-b125-925969813fec", + "requirementText": "Går kontrakten ut snart?", + "instruction": "Viktig for å få en rimligere pris", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "a2d39977-5f69-47e7-bfa5-a2a4d67b1073" + ], + "questions": [ + { + "id": "c07372a4-3a89-45e0-8b98-d846962a07e9", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "9552c5e0-9964-4ce2-849f-243a8c1e06a0", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Når går kontrakten ut" + }, + { + "id": "f02d9bc5-7263-493b-a579-1f7a68ac5f41", + "requirementText": "Info-typen", + "instruction": "Se info", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "a2d39977-5f69-47e7-bfa5-a2a4d67b1073" + ], + "questions": [ + { + "id": "dfa941fe-187b-4911-8f8d-04ca6fe4453b", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Når går kontrakten ut" + }, + { + "id": "eb6da662-5068-4eef-a551-73a09fa4447a", + "requirementText": "Info type med periode", + "instruction": "det gir ikke mening, jeg vet", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "a2d39977-5f69-47e7-bfa5-a2a4d67b1073" + ], + "questions": [ + { + "id": "4aa0dbc9-c10a-4aa9-a932-9a6cb028daa1", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Når går kontrakten ut tidsperiode" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "e2e79960-934f-4145-a481-5c8315a1209c", + "title": "Spissverdier", + "description": "", + "requirements": [ + { + "id": "d3c8889a-03f0-4cdc-a8ad-8e781128ca08", + "title": "Hvilken posisjon kan spilleren bekle", + "description": "", + "needId": "e2e79960-934f-4145-a481-5c8315a1209c", + "type": "requirement", + "variants": [ + { + "id": "3450991d-2667-4160-9712-dc900b28407d", + "requirementText": "Det kan være alt fra ving til spiss", + "instruction": "Hvilken eller hvilke posisjoner passer best for spilleren", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "c46cfec2-f44a-4bd5-8f0a-43f5cab9885b", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "692db181-5adc-4053-9af2-1e8b3d39d786", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Hvilken posisjon trives angrepsspilleren i" + }, + { + "id": "0aa7e97c-d5b5-46d6-9a44-e53a0d411b2e", + "requirementText": "Info felt", + "instruction": "Med kodeliste", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28" + ], + "questions": [ + { + "id": "ac3b40f2-5762-4b6f-a772-02edefe70eee", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "692db181-5adc-4053-9af2-1e8b3d39d786", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Hvilken posisjon trives angrepsspilleren i" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "type": "need", + "parent": "706969fd-085c-4130-bc7a-31e3db8a4146", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "2820b1b1-eb02-4d14-aca5-7b1d4fcc9887", + "title": "Posisjonsverdier", + "description": "", + "requirements": [ + { + "id": "088032a3-89a2-4a84-8a12-f90b325eaa56", + "title": "Samspill med hverandre", + "description": "", + "needId": "2820b1b1-eb02-4d14-aca5-7b1d4fcc9887", + "type": "requirement", + "variants": [ + { + "id": "70dccd2a-dc14-4bda-972a-208dbd903971", + "requirementText": "Kan være viktig for de personlige relasjonene i et lag", + "instruction": "Hvor lenge har de spilt sammen i de forskjellige posisjonene", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "0ec3cd5c-b551-4063-b745-8abbc77eb162" + ], + "questions": [ + { + "id": "feb2cb3d-cab4-45e7-babf-e2c8d884c122", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "06f46860-5932-44c8-bbd6-610e777e1fd0", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Hvor lenge spillerene har spilt sammen / Når startet de å spille sammen" + }, + { + "id": "2636606d-ca72-4c2f-b865-0410e47c64ae", + "requirementText": "jaja", + "instruction": "noe her og", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "0ec3cd5c-b551-4063-b745-8abbc77eb162" + ], + "questions": [ + { + "id": "431dc573-5bac-48f7-a103-d3e30bdd9013", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Når startet de å spille sammen" + }, + { + "id": "50d1a03d-d785-4811-87f1-d19b551f553b", + "requirementText": "Her er en kravtekst", + "instruction": "Og dette er en veiledning", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "0ec3cd5c-b551-4063-b745-8abbc77eb162" + ], + "questions": [ + { + "id": "19b0439a-a45c-4072-b2c2-37dac036fdcf", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Hvor lenge har de spilt sammen" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "1a50d93d-e920-47f3-998d-130f7ca5b461", + "title": "Generelle verdier", + "description": "", + "requirements": [ + { + "id": "cbe772ec-ad1e-4d30-bbc4-13339951099d", + "title": "Relasjon med klubben", + "description": "", + "needId": "1a50d93d-e920-47f3-998d-130f7ca5b461", + "type": "requirement", + "variants": [ + { + "id": "2d767568-3040-4b84-b6ae-72216b260664", + "requirementText": "Hvordan er relasjonen med klubben", + "instruction": "Skriv om historien med klubben", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "7de0ff7e-d76c-4f56-bc20-c0558f14fdb2", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Har vi en god relasjon til klubben som henter spiller" + }, + { + "id": "771f52ee-1952-4ee6-a6ed-7ae21b1de81a", + "requirementText": "noe her", + "instruction": "noe her", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "69205b19-6379-450d-904c-bb8498e8f707", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Har vi en god relasjon med klubben vi henter fra" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "d5d6d99d-54d0-4482-b0f1-360ae39a75e2", + "title": "Opplastning av lisens", + "description": "", + "needId": "1a50d93d-e920-47f3-998d-130f7ca5b461", + "type": "requirement", + "variants": [ + { + "id": "f2e25768-a679-4ab0-9ce6-af2d72cdc283", + "requirementText": "Trengs en gyldig lisens for denne handlingen. Venligst last opp denne", + "instruction": "Last opp lisensen", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "0c2b8dc3-4d86-4d20-a9bd-a50734c9c154", + "type": "Q_FILEUPLOAD", + "config": { + "template": null, + "uploadInSpec": false, + "allowMultipleFiles": false, + "fileEndings": [], + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "files": [ + "" + ] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Trengs en gyldig lisens" + }, + { + "id": "26b14771-4805-4c7a-9ae8-9e6b47bc6606", + "requirementText": "Info info info", + "instruction": "Lisens lisens lisens", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "3d609947-2fc4-4b22-9c6d-18e2f45ecbe4", + "type": "Q_FILEUPLOAD", + "config": { + "template": null, + "uploadInSpec": false, + "allowMultipleFiles": false, + "fileEndings": [], + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "files": [ + "" + ] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Trengs en gyldig lisens" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "692db181-5adc-4053-9af2-1e8b3d39d786", + "title": "Angrepsposisjon", + "description": "Posisjoner i angrep", + "codes": [ + { + "id": "21bbea1f-e425-4fd8-8ac4-7ffd7573e28c", + "title": "9er", + "description": "Klassisk spydspiss", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + }, + { + "id": "3a954f4e-28fd-4610-8a6e-3607b5c87f20", + "title": "Falsk 9er", + "description": "Litt dypere spiss som fungerer i det oppbyggende angrepsspillet", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + }, + { + "id": "c0681282-e5cb-4626-9b39-7f4b41c2a6f2", + "title": "Bred ving", + "description": "Ving som holder bredde og legger mye innlegg", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + }, + { + "id": "c9085640-7a65-4f11-8023-c61f965bb4a3", + "title": "Innovertrukket ving", + "description": "Ving som trekker inn i banen for avslutning", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "products": [ + { + "id": "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "title": "Midtstoppere", + "description": "Samling av alle midtstoppere i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "b72f1784-2469-4b00-9afe-ab7335ec596c", + "title": "Joel Matip", + "description": "Høy og rask midtstopper fra Kamerun", + "type": "product", + "parent": "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "title": "Virgil Van Dijk", + "description": "Verdens beste midtstopper. Kommer fra Nederland", + "type": "product", + "parent": "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "title": "Ibrahima Konate", + "description": "Sterk og rask midtstopper fra Frankrike", + "type": "product", + "parent": "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "title": "Backer", + "description": "Samling av alle backene i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "71d643a0-39c2-4cbc-80b2-38374b746e95", + "title": "Trent Alexander-Arnold", + "description": "Verdens beste høyreback. Engelsk, og ekte Liverpoolgutt. Vokst opp et steinkast fra Anfield Road", + "type": "product", + "parent": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "7b75bdda-3c05-4c03-b311-110ec670892f", + "title": "Andrew Robertson", + "description": "Løpssterk venstreback fra Skottland!", + "type": "product", + "parent": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "606ee429-74c6-4696-a60b-3048246fc3f4", + "title": "Konstantinos Tsamikas", + "description": "Unge venstreback fra Hellas. Skåret avgjørende straffesparket i FA cup-finalen", + "type": "product", + "parent": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "title": "Joe Gomez", + "description": "Versatil forsvarsspiller fra england. Kan gjøre en god figur både på stopperplass og på backplass", + "type": "product", + "parent": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "title": "Keepere", + "description": "Samling av alle keeperene i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "c9689511-defd-4259-b5fa-67d127bc5f59", + "title": "Allison Becker", + "description": "Legendarisk keeper fra Brasil", + "type": "product", + "parent": "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "a8dc4069-290b-4577-972c-9faac368e3c6", + "title": "Adrian", + "description": "Reservekeeper fra Spania. Tidligere spilt for West Ham", + "type": "product", + "parent": "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "86fb309c-c0b8-4964-841c-69991cf4024b", + "title": "Caoimhin Kelleher", + "description": "Ung keeper fra Irland", + "type": "product", + "parent": "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "title": "Midtbanespillere", + "description": "Samling av alle midtbanespiller'e i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "title": "Fabinho", + "description": "Sterk og god defensiv midtbanespiller fra Brasil! Han er kommer du deg ikke forbi", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "f6dace96-ef1a-4596-86b0-555676ecd49e", + "title": "Thiago", + "description": "Teknisk vidunder fra Spania", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "title": "Jordan Henderson", + "description": "Klubbkaptein, og arbeidsjern på midten. Kommer fra England", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "title": "James Milner", + "description": "Verdens kjedeligste engelskmann. Men løper som en hest", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "title": "Harvey Elliot", + "description": "Ungt teknisk engelsk talent på midtbanen", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "title": "Curtis Jones", + "description": "Ung midtbanespiller fra England", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "title": "Naby Keita", + "description": "Teknisk driblesterk midtbanespiller fra Guinea", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "title": "Alex Oxlade-Chamberlain", + "description": "Meget rask midtbanespiller fra England. Tidligere vært Arsenals beste spiller", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "title": "Angrepsspillere", + "description": "Samling av alle angrepsspillere i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "title": "Sadio Mane", + "description": "Rask og livsfarlig ving fra Senegal", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": "2022-06-14T07:03:14.158Z" + }, + { + "id": "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "title": "Mohammed Salah", + "description": "Egyptisk konge, og verdens beste fotballspiller", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "title": "Diego Jota", + "description": "Portugals klart beste fotballspiller gjennom tidene", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "title": "Luis Diaz", + "description": "Ving fra Colombia. Sjeldent kommet noe så bra teknisk vidunder fra vingposisjon fra det landet", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "title": "Divock Origi", + "description": "Legende fra Belgia", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "7e720208-ad36-46a2-b06d-c247feedb1de", + "title": "Takumi Minamino", + "description": "Beste offensive spiller produsert i Asia. Japans store sønn", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "title": "Roberto Firmino", + "description": "Arbeidsjern fra Brasil. Verdens beste i offensivt press", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "27428a1e-ebee-4e3c-9899-a7b6a418b852", + "title": "Manager", + "description": "Liverpool FC Manager", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "a2d39977-5f69-47e7-bfa5-a2a4d67b1073", + "title": "Jurgen Klopp", + "description": "Verdens beste manager. Kommer fra Tyskland", + "type": "product", + "parent": "27428a1e-ebee-4e3c-9899-a7b6a418b852", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [], + "tags": [], + "version": 4, + "publishedDate": "2022-06-21T19:01:01.528Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "199fc365-aec1-4699-babf-abddd4f76fa5", + "deletedDate": null + }, + { + "id": "b45734ad-e125-4983-905c-81ad57878f3a", + "title": "Balders Liverpool", + "description": "Balders testprosjekt som omhandler Liverpool FC", + "needs": [ + { + "id": "706969fd-085c-4130-bc7a-31e3db8a4146", + "title": "Spillerverdier", + "description": "Mål for spillerene", + "requirements": [ + { + "id": "22d2cd7d-d165-407c-a241-ae0f95080bde", + "title": "Hastighet", + "description": "", + "needId": "706969fd-085c-4130-bc7a-31e3db8a4146", + "type": "requirement", + "variants": [ + { + "id": "b5033b3c-2fa3-4f80-a819-8240aa78c24e", + "requirementText": "Toppfart er viktig for å se hvor rask en fotballspiller er", + "instruction": "Hva er topphastigheten til spilleren", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "9cf71563-2b76-4763-a701-80a49449abb2", + "type": "Q_SLIDER", + "config": { + "min": 20, + "max": 44, + "step": 0.1, + "unit": "km/t", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Toppfart" + }, + { + "id": "2270b062-4234-4ee7-8a5d-c641ea861727", + "requirementText": "Hvor raskt løper spilleren 100 meter", + "instruction": "Finn ut tiden på 100 meter", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "4acb3773-bf7c-43ec-8798-903426a388b8", + "type": "Q_SLIDER", + "config": { + "min": 9, + "max": 15, + "step": 0.1, + "unit": "sekunder", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "100 meter fart" + }, + { + "id": "11cf19b6-72a1-4d9a-97ba-3ec14092c88c", + "requirementText": "Infofelt for fart.", + "instruction": "Svares i spesifikasjon", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "446bcefe-7020-4c7a-ae63-f8daa2b2e09c", + "type": "Q_SLIDER", + "config": { + "min": 20, + "max": 44, + "step": 2, + "unit": "km/t", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Fart info" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "b987fb6b-c061-4331-99ea-44de0955466c", + "title": "Erfaring", + "description": "", + "needId": "706969fd-085c-4130-bc7a-31e3db8a4146", + "type": "requirement", + "variants": [ + { + "id": "3528be95-4935-4e6f-a659-44514a6fb5c0", + "requirementText": "Har spilleren relevant erfaring", + "instruction": "Har spilleren en historie i en annen klubb i PL?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "4f4fb007-11c4-4350-98f2-f336cd37c4fd", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Erfaring fra tidligere Premier League klubber" + }, + { + "id": "ee0d4da1-becf-4c7a-aa01-ade83d932c48", + "requirementText": "Info-felt om Premier League erfaring", + "instruction": "Besvares i spesifikasjon", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "53d437a4-9d78-4958-8505-4b63eb08988a", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Premier League erfaring" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "42b43a87-6f2d-4ddb-bf69-5399c3d10c79", + "title": "Kontrakt", + "description": "", + "needId": "706969fd-085c-4130-bc7a-31e3db8a4146", + "type": "requirement", + "variants": [ + { + "id": "af70283f-7c2b-4924-b125-925969813fec", + "requirementText": "Går kontrakten ut snart?", + "instruction": "Viktig for å få en rimligere pris", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "a2d39977-5f69-47e7-bfa5-a2a4d67b1073" + ], + "questions": [ + { + "id": "c07372a4-3a89-45e0-8b98-d846962a07e9", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Når går kontrakten ut" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "e2e79960-934f-4145-a481-5c8315a1209c", + "title": "Spissverdier", + "description": "", + "requirements": [ + { + "id": "d3c8889a-03f0-4cdc-a8ad-8e781128ca08", + "title": "Hvilken posisjon kan spilleren bekle", + "description": "", + "needId": "e2e79960-934f-4145-a481-5c8315a1209c", + "type": "requirement", + "variants": [ + { + "id": "3450991d-2667-4160-9712-dc900b28407d", + "requirementText": "Det kan være alt fra ving til spiss", + "instruction": "Hvilken eller hvilke posisjoner passer best for spilleren", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "c46cfec2-f44a-4bd5-8f0a-43f5cab9885b", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "692db181-5adc-4053-9af2-1e8b3d39d786", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Hvilken posisjon trives angrepsspilleren i" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "type": "need", + "parent": "706969fd-085c-4130-bc7a-31e3db8a4146", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "2820b1b1-eb02-4d14-aca5-7b1d4fcc9887", + "title": "Posisjonsverdier", + "description": "", + "requirements": [ + { + "id": "088032a3-89a2-4a84-8a12-f90b325eaa56", + "title": "Samspill med hverandre", + "description": "", + "needId": "2820b1b1-eb02-4d14-aca5-7b1d4fcc9887", + "type": "requirement", + "variants": [ + { + "id": "70dccd2a-dc14-4bda-972a-208dbd903971", + "requirementText": "Kan være viktig for de personlige relasjonene i et lag", + "instruction": "Hvor lenge har de spilt sammen i de forskjellige posisjonene", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "0ec3cd5c-b551-4063-b745-8abbc77eb162" + ], + "questions": [ + { + "id": "feb2cb3d-cab4-45e7-babf-e2c8d884c122", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Hvor lenge spillerene har spilt sammen" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "1a50d93d-e920-47f3-998d-130f7ca5b461", + "title": "Generelle verdier", + "description": "", + "requirements": [ + { + "id": "cbe772ec-ad1e-4d30-bbc4-13339951099d", + "title": "Relasjon med klubben", + "description": "", + "needId": "1a50d93d-e920-47f3-998d-130f7ca5b461", + "type": "requirement", + "variants": [ + { + "id": "2d767568-3040-4b84-b6ae-72216b260664", + "requirementText": "Hvordan er relasjonen med klubben", + "instruction": "Skriv om historien med klubben", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "7de0ff7e-d76c-4f56-bc20-c0558f14fdb2", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Har vi en god relasjon til klubben som henter spiller" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "d5d6d99d-54d0-4482-b0f1-360ae39a75e2", + "title": "Opplastning av lisens", + "description": "", + "needId": "1a50d93d-e920-47f3-998d-130f7ca5b461", + "type": "requirement", + "variants": [ + { + "id": "f2e25768-a679-4ab0-9ce6-af2d72cdc283", + "requirementText": "Trengs en gyldig lisens for denne handlingen. Venligst last opp denne", + "instruction": "Last opp lisensen", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "0c2b8dc3-4d86-4d20-a9bd-a50734c9c154", + "type": "Q_FILEUPLOAD", + "config": { + "template": null, + "uploadInSpec": false, + "allowMultipleFiles": false, + "fileEndings": [], + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "files": [ + "" + ] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Trengs en gyldig lisens" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "692db181-5adc-4053-9af2-1e8b3d39d786", + "title": "Angrepsposisjon", + "description": "Posisjoner i angrep", + "codes": [ + { + "id": "21bbea1f-e425-4fd8-8ac4-7ffd7573e28c", + "title": "9er", + "description": "Klassisk spydspiss", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + }, + { + "id": "3a954f4e-28fd-4610-8a6e-3607b5c87f20", + "title": "Falsk 9er", + "description": "Litt dypere spiss som fungerer i det oppbyggende angrepsspillet", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + }, + { + "id": "c0681282-e5cb-4626-9b39-7f4b41c2a6f2", + "title": "Bred ving", + "description": "Ving som holder bredde og legger mye innlegg", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + }, + { + "id": "c9085640-7a65-4f11-8023-c61f965bb4a3", + "title": "Innovertrukket ving", + "description": "Ving som trekker inn i banen for avslutning", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "products": [ + { + "id": "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "title": "Midtstoppere", + "description": "Samling av alle midtstoppere i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "b72f1784-2469-4b00-9afe-ab7335ec596c", + "title": "Joel Matip", + "description": "Høy og rask midtstopper fra Kamerun", + "type": "product", + "parent": "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "title": "Virgil Van Dijk", + "description": "Verdens beste midtstopper. Kommer fra Nederland", + "type": "product", + "parent": "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "title": "Ibrahima Konate", + "description": "Sterk og rask midtstopper fra Frankrike", + "type": "product", + "parent": "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "title": "Backer", + "description": "Samling av alle backene i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "71d643a0-39c2-4cbc-80b2-38374b746e95", + "title": "Trent Alexander-Arnold", + "description": "Verdens beste høyreback. Engelsk, og ekte Liverpoolgutt. Vokst opp et steinkast fra Anfield Road", + "type": "product", + "parent": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "7b75bdda-3c05-4c03-b311-110ec670892f", + "title": "Andrew Robertson", + "description": "Løpssterk venstreback fra Skottland!", + "type": "product", + "parent": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "606ee429-74c6-4696-a60b-3048246fc3f4", + "title": "Konstantinos Tsamikas", + "description": "Unge venstreback fra Hellas. Skåret avgjørende straffesparket i FA cup-finalen", + "type": "product", + "parent": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "title": "Joe Gomez", + "description": "Versatil forsvarsspiller fra england. Kan gjøre en god figur både på stopperplass og på backplass", + "type": "product", + "parent": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "title": "Keepere", + "description": "Samling av alle keeperene i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "c9689511-defd-4259-b5fa-67d127bc5f59", + "title": "Allison Becker", + "description": "Legendarisk keeper fra Brasil", + "type": "product", + "parent": "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "a8dc4069-290b-4577-972c-9faac368e3c6", + "title": "Adrian", + "description": "Reservekeeper fra Spania. Tidligere spilt for West Ham", + "type": "product", + "parent": "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "86fb309c-c0b8-4964-841c-69991cf4024b", + "title": "Caoimhin Kelleher", + "description": "Ung keeper fra Irland", + "type": "product", + "parent": "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "title": "Midtbanespillere", + "description": "Samling av alle midtbanespiller'e i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "title": "Fabinho", + "description": "Sterk og god defensiv midtbanespiller fra Brasil! Han er kommer du deg ikke forbi", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "f6dace96-ef1a-4596-86b0-555676ecd49e", + "title": "Thiago", + "description": "Teknisk vidunder fra Spania", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "title": "Jordan Henderson", + "description": "Klubbkaptein, og arbeidsjern på midten. Kommer fra England", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "title": "James Milner", + "description": "Verdens kjedeligste engelskmann. Men løper som en hest", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "title": "Harvey Elliot", + "description": "Ungt teknisk engelsk talent på midtbanen", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "title": "Curtis Jones", + "description": "Ung midtbanespiller fra England", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "title": "Naby Keita", + "description": "Teknisk driblesterk midtbanespiller fra Guinea", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "title": "Alex Oxlade-Chamberlain", + "description": "Meget rask midtbanespiller fra England. Tidligere vært Arsenals beste spiller", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "title": "Angrepsspillere", + "description": "Samling av alle angrepsspillere i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "title": "Sadio Mane", + "description": "Rask og livsfarlig ving fra Senegal", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "title": "Mohammed Salah", + "description": "Egyptisk konge, og verdens beste fotballspiller", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "title": "Diego Jota", + "description": "Portugals klart beste fotballspiller gjennom tidene", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "title": "Luis Diaz", + "description": "Ving fra Colombia. Sjeldent kommet noe så bra teknisk vidunder fra vingposisjon fra det landet", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "title": "Divock Origi", + "description": "Legende fra Belgia", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "7e720208-ad36-46a2-b06d-c247feedb1de", + "title": "Takumi Minamino", + "description": "Beste offensive spiller produsert i Asia. Japans store sønn", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "title": "Roberto Firmino", + "description": "Arbeidsjern fra Brasil. Verdens beste i offensivt press", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "27428a1e-ebee-4e3c-9899-a7b6a418b852", + "title": "Manager", + "description": "Liverpool FC Manager", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "a2d39977-5f69-47e7-bfa5-a2a4d67b1073", + "title": "Jurgen Klopp", + "description": "Verdens beste manager. Kommer fra Tyskland", + "type": "product", + "parent": "27428a1e-ebee-4e3c-9899-a7b6a418b852", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [], + "tags": [], + "version": 3, + "publishedDate": "2022-06-08T06:15:14.315Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "199fc365-aec1-4699-babf-abddd4f76fa5", + "deletedDate": null + }, + { + "id": "a0b0b253-f32e-4169-9821-c0e3d22e56bf", + "title": "Balders Liverpool", + "description": "Balders testprosjekt som omhandler Liverpool FC", + "needs": [ + { + "id": "706969fd-085c-4130-bc7a-31e3db8a4146", + "title": "Spillerverdier", + "description": "Mål for spillerene", + "requirements": [ + { + "id": "22d2cd7d-d165-407c-a241-ae0f95080bde", + "title": "Hastighet", + "description": "", + "needId": "706969fd-085c-4130-bc7a-31e3db8a4146", + "type": "requirement", + "variants": [ + { + "id": "b5033b3c-2fa3-4f80-a819-8240aa78c24e", + "requirementText": "Toppfart er viktig for å se hvor rask en fotballspiller er", + "instruction": "Hva er topphastigheten til spilleren", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "9cf71563-2b76-4763-a701-80a49449abb2", + "type": "Q_SLIDER", + "config": { + "min": 20, + "max": 44, + "step": 0.1, + "unit": "km/t", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Toppfart" + }, + { + "id": "2270b062-4234-4ee7-8a5d-c641ea861727", + "requirementText": "Hvor raskt løper spilleren 100 meter", + "instruction": "Finn ut tiden på 100 meter", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "4acb3773-bf7c-43ec-8798-903426a388b8", + "type": "Q_SLIDER", + "config": { + "min": 9, + "max": 15, + "step": 0.1, + "unit": "sekunder", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "100 meter fart" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "b987fb6b-c061-4331-99ea-44de0955466c", + "title": "Erfaring", + "description": "", + "needId": "706969fd-085c-4130-bc7a-31e3db8a4146", + "type": "requirement", + "variants": [ + { + "id": "3528be95-4935-4e6f-a659-44514a6fb5c0", + "requirementText": "Har spilleren relevant erfaring", + "instruction": "Har spilleren en historie i en annen klubb i PL?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "4f4fb007-11c4-4350-98f2-f336cd37c4fd", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Erfaring fra tidligere Premier League klubber" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "42b43a87-6f2d-4ddb-bf69-5399c3d10c79", + "title": "Kontrakt", + "description": "", + "needId": "706969fd-085c-4130-bc7a-31e3db8a4146", + "type": "requirement", + "variants": [ + { + "id": "af70283f-7c2b-4924-b125-925969813fec", + "requirementText": "Går kontrakten ut snart?", + "instruction": "Viktig for å få en rimligere pris", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "a2d39977-5f69-47e7-bfa5-a2a4d67b1073" + ], + "questions": [ + { + "id": "c07372a4-3a89-45e0-8b98-d846962a07e9", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Når går kontrakten ut" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "e2e79960-934f-4145-a481-5c8315a1209c", + "title": "Spissverdier", + "description": "", + "requirements": [ + { + "id": "d3c8889a-03f0-4cdc-a8ad-8e781128ca08", + "title": "Hvilken posisjon kan spilleren bekle", + "description": "", + "needId": "e2e79960-934f-4145-a481-5c8315a1209c", + "type": "requirement", + "variants": [ + { + "id": "3450991d-2667-4160-9712-dc900b28407d", + "requirementText": "Det kan være alt fra ving til spiss", + "instruction": "Hvilken eller hvilke posisjoner passer best for spilleren", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "c46cfec2-f44a-4bd5-8f0a-43f5cab9885b", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "692db181-5adc-4053-9af2-1e8b3d39d786", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Hvilken posisjon trives angrepsspilleren i" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "type": "need", + "parent": "706969fd-085c-4130-bc7a-31e3db8a4146", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "2820b1b1-eb02-4d14-aca5-7b1d4fcc9887", + "title": "Posisjonsverdier", + "description": "", + "requirements": [ + { + "id": "088032a3-89a2-4a84-8a12-f90b325eaa56", + "title": "Samspill med hverandre", + "description": "", + "needId": "2820b1b1-eb02-4d14-aca5-7b1d4fcc9887", + "type": "requirement", + "variants": [ + { + "id": "70dccd2a-dc14-4bda-972a-208dbd903971", + "requirementText": "Kan være viktig for de personlige relasjonene i et lag", + "instruction": "Hvor lenge har de spilt sammen i de forskjellige posisjonene", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "0ec3cd5c-b551-4063-b745-8abbc77eb162" + ], + "questions": [ + { + "id": "feb2cb3d-cab4-45e7-babf-e2c8d884c122", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Hvor lenge spillerene har spilt sammen" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "1a50d93d-e920-47f3-998d-130f7ca5b461", + "title": "Generelle verdier", + "description": "", + "requirements": [ + { + "id": "cbe772ec-ad1e-4d30-bbc4-13339951099d", + "title": "Relasjon med klubben", + "description": "", + "needId": "1a50d93d-e920-47f3-998d-130f7ca5b461", + "type": "requirement", + "variants": [ + { + "id": "2d767568-3040-4b84-b6ae-72216b260664", + "requirementText": "Hvordan er relasjonen med klubben", + "instruction": "Skriv om historien med klubben", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "7de0ff7e-d76c-4f56-bc20-c0558f14fdb2", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Har vi en god relasjon til klubben som henter spiller" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "d5d6d99d-54d0-4482-b0f1-360ae39a75e2", + "title": "Opplastning av lisens", + "description": "", + "needId": "1a50d93d-e920-47f3-998d-130f7ca5b461", + "type": "requirement", + "variants": [ + { + "id": "f2e25768-a679-4ab0-9ce6-af2d72cdc283", + "requirementText": "Trengs en gyldig lisens for denne handlingen. Venligst last opp denne", + "instruction": "Last opp lisensen", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "0c2b8dc3-4d86-4d20-a9bd-a50734c9c154", + "type": "Q_FILEUPLOAD", + "config": { + "template": null, + "uploadInSpec": false, + "allowMultipleFiles": false, + "fileEndings": [], + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "files": [ + "" + ] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Trengs en gyldig lisens" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "692db181-5adc-4053-9af2-1e8b3d39d786", + "title": "Angrepsposisjon", + "description": "Posisjoner i angrep", + "codes": [ + { + "id": "21bbea1f-e425-4fd8-8ac4-7ffd7573e28c", + "title": "9er", + "description": "Klassisk spydspiss", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + }, + { + "id": "3a954f4e-28fd-4610-8a6e-3607b5c87f20", + "title": "Falsk 9er", + "description": "Litt dypere spiss som fungerer i det oppbyggende angrepsspillet", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + }, + { + "id": "c0681282-e5cb-4626-9b39-7f4b41c2a6f2", + "title": "Bred ving", + "description": "Ving som holder bredde og legger mye innlegg", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + }, + { + "id": "c9085640-7a65-4f11-8023-c61f965bb4a3", + "title": "Innovertrukket ving", + "description": "Ving som trekker inn i banen for avslutning", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "products": [ + { + "id": "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "title": "Midtstoppere", + "description": "Samling av alle midtstoppere i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "b72f1784-2469-4b00-9afe-ab7335ec596c", + "title": "Joel Matip", + "description": "Høy og rask midtstopper fra Kamerun", + "type": "product", + "parent": "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "title": "Virgil Van Dijk", + "description": "Verdens beste midtstopper. Kommer fra Nederland", + "type": "product", + "parent": "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "title": "Ibrahima Konate", + "description": "Sterk og rask midtstopper fra Frankrike", + "type": "product", + "parent": "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "title": "Backer", + "description": "Samling av alle backene i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "71d643a0-39c2-4cbc-80b2-38374b746e95", + "title": "Trent Alexander-Arnold", + "description": "Verdens beste høyreback. Engelsk, og ekte Liverpoolgutt. Vokst opp et steinkast fra Anfield Road", + "type": "product", + "parent": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "7b75bdda-3c05-4c03-b311-110ec670892f", + "title": "Andrew Robertson", + "description": "Løpssterk venstreback fra Skottland!", + "type": "product", + "parent": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "606ee429-74c6-4696-a60b-3048246fc3f4", + "title": "Konstantinos Tsamikas", + "description": "Unge venstreback fra Hellas. Skåret avgjørende straffesparket i FA cup-finalen", + "type": "product", + "parent": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "title": "Joe Gomez", + "description": "Versatil forsvarsspiller fra england. Kan gjøre en god figur både på stopperplass og på backplass", + "type": "product", + "parent": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "title": "Keepere", + "description": "Samling av alle keeperene i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "c9689511-defd-4259-b5fa-67d127bc5f59", + "title": "Allison Becker", + "description": "Legendarisk keeper fra Brasil", + "type": "product", + "parent": "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "a8dc4069-290b-4577-972c-9faac368e3c6", + "title": "Adrian", + "description": "Reservekeeper fra Spania. Tidligere spilt for West Ham", + "type": "product", + "parent": "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "86fb309c-c0b8-4964-841c-69991cf4024b", + "title": "Caoimhin Kelleher", + "description": "Ung keeper fra Irland", + "type": "product", + "parent": "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "title": "Midtbanespillere", + "description": "Samling av alle midtbanespiller'e i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "title": "Fabinho", + "description": "Sterk og god defensiv midtbanespiller fra Brasil! Han er kommer du deg ikke forbi", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "f6dace96-ef1a-4596-86b0-555676ecd49e", + "title": "Thiago", + "description": "Teknisk vidunder fra Spania", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "title": "Jordan Henderson", + "description": "Klubbkaptein, og arbeidsjern på midten. Kommer fra England", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "title": "James Milner", + "description": "Verdens kjedeligste engelskmann. Men løper som en hest", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "title": "Harvey Elliot", + "description": "Ungt teknisk engelsk talent på midtbanen", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "title": "Curtis Jones", + "description": "Ung midtbanespiller fra England", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "title": "Naby Keita", + "description": "Teknisk driblesterk midtbanespiller fra Guinea", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "title": "Alex Oxlade-Chamberlain", + "description": "Meget rask midtbanespiller fra England. Tidligere vært Arsenals beste spiller", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "title": "Angrepsspillere", + "description": "Samling av alle angrepsspillere i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "title": "Sadio Mane", + "description": "Rask og livsfarlig ving fra Senegal", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "title": "Mohammed Salah", + "description": "Egyptisk konge, og verdens beste fotballspiller", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "title": "Diego Jota", + "description": "Portugals klart beste fotballspiller gjennom tidene", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "title": "Luis Diaz", + "description": "Ving fra Portugal. Sjeldent kommet noe så bra teknisk vidunder fra vingposisjon fra det landet", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "title": "Divock Origi", + "description": "Legende fra Belgia", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "7e720208-ad36-46a2-b06d-c247feedb1de", + "title": "Takumi Minamino", + "description": "Beste offensive spiller produsert i Asia. Japans store sønn", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "title": "Roberto Firmino", + "description": "Arbeidsjern fra Brasil. Verdens beste i offensivt press", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "27428a1e-ebee-4e3c-9899-a7b6a418b852", + "title": "Manager", + "description": "Liverpool FC Manager", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "a2d39977-5f69-47e7-bfa5-a2a4d67b1073", + "title": "Jurgen Klopp", + "description": "Verdens beste manager. Kommer fra Tyskland", + "type": "product", + "parent": "27428a1e-ebee-4e3c-9899-a7b6a418b852", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [], + "tags": [], + "version": 2, + "publishedDate": "2022-05-27T12:15:14.979Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "199fc365-aec1-4699-babf-abddd4f76fa5", + "deletedDate": null + }, + { + "id": "199fc365-aec1-4699-babf-abddd4f76fa5", + "title": "Balders Liverpool", + "description": "Balders testprosjekt som omhandler Liverpool FC", + "needs": [ + { + "id": "706969fd-085c-4130-bc7a-31e3db8a4146", + "title": "Spillerverdier", + "description": "Mål for spillerene", + "requirements": [ + { + "id": "22d2cd7d-d165-407c-a241-ae0f95080bde", + "title": "Hastighet", + "description": "", + "needId": "706969fd-085c-4130-bc7a-31e3db8a4146", + "type": "requirement", + "variants": [ + { + "id": "b5033b3c-2fa3-4f80-a819-8240aa78c24e", + "requirementText": "Toppfart er viktig for å se hvor rask en fotballspiller er", + "instruction": "Hva er topphastigheten til spilleren", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "b1768e29-6f8e-40cb-af88-4d3c637a8113", + "type": "Q_SLIDER", + "config": { + "min": 20, + "max": 44, + "step": 0.1, + "unit": "km/t", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 20, + "score": 0 + }, + { + "value": 44, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": "20" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Toppfart" + }, + { + "id": "2270b062-4234-4ee7-8a5d-c641ea861727", + "requirementText": "Hvor raskt løper spilleren 100 meter", + "instruction": "Finn ut tiden på 100 meter", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "4acb3773-bf7c-43ec-8798-903426a388b8", + "type": "Q_SLIDER", + "config": { + "min": 9, + "max": 15, + "step": 0.1, + "unit": "sekunder", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 9, + "score": 0 + }, + { + "value": 15, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": "9" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "100 meter fart" + }, + { + "id": "11cf19b6-72a1-4d9a-97ba-3ec14092c88c", + "requirementText": "Infofelt for fart.", + "instruction": "Svares i spesifikasjon", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "446bcefe-7020-4c7a-ae63-f8daa2b2e09c", + "type": "Q_SLIDER", + "config": { + "min": 20, + "max": 44, + "step": 2, + "unit": "km/t", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 20, + "score": 0 + }, + { + "value": 44, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": "20" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Fart info" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "b987fb6b-c061-4331-99ea-44de0955466c", + "title": "Erfaring", + "description": "", + "needId": "706969fd-085c-4130-bc7a-31e3db8a4146", + "type": "requirement", + "variants": [ + { + "id": "3528be95-4935-4e6f-a659-44514a6fb5c0", + "requirementText": "Har spilleren relevant erfaring", + "instruction": "Har spilleren en historie i en annen klubb i PL?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "4f4fb007-11c4-4350-98f2-f336cd37c4fd", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Erfaring fra tidligere Premier League klubber" + }, + { + "id": "ee0d4da1-becf-4c7a-aa01-ade83d932c48", + "requirementText": "Info-felt om Premier League erfaring", + "instruction": "Besvares i spesifikasjon", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "53d437a4-9d78-4958-8505-4b63eb08988a", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Premier League erfaring" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "42b43a87-6f2d-4ddb-bf69-5399c3d10c79", + "title": "Kontrakt", + "description": "", + "needId": "706969fd-085c-4130-bc7a-31e3db8a4146", + "type": "requirement", + "variants": [ + { + "id": "af70283f-7c2b-4924-b125-925969813fec", + "requirementText": "Går kontrakten ut snart?", + "instruction": "Viktig for å få en rimligere pris", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "a2d39977-5f69-47e7-bfa5-a2a4d67b1073" + ], + "questions": [ + { + "id": "c07372a4-3a89-45e0-8b98-d846962a07e9", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "9552c5e0-9964-4ce2-849f-243a8c1e06a0", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Når går kontrakten ut" + }, + { + "id": "f02d9bc5-7263-493b-a579-1f7a68ac5f41", + "requirementText": "Info-typen", + "instruction": "Se info", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "a2d39977-5f69-47e7-bfa5-a2a4d67b1073" + ], + "questions": [ + { + "id": "dfa941fe-187b-4911-8f8d-04ca6fe4453b", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Når går kontrakten ut" + }, + { + "id": "eb6da662-5068-4eef-a551-73a09fa4447a", + "requirementText": "Info type med periode", + "instruction": "det gir ikke mening, jeg vet", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "a2d39977-5f69-47e7-bfa5-a2a4d67b1073" + ], + "questions": [ + { + "id": "4aa0dbc9-c10a-4aa9-a932-9a6cb028daa1", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Når går kontrakten ut tidsperiode" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "e2e79960-934f-4145-a481-5c8315a1209c", + "title": "Spissverdier", + "description": "", + "requirements": [ + { + "id": "d3c8889a-03f0-4cdc-a8ad-8e781128ca08", + "title": "Hvilken posisjon kan spilleren bekle", + "description": "", + "needId": "e2e79960-934f-4145-a481-5c8315a1209c", + "type": "requirement", + "variants": [ + { + "id": "3450991d-2667-4160-9712-dc900b28407d", + "requirementText": "Det kan være alt fra ving til spiss", + "instruction": "Hvilken eller hvilke posisjoner passer best for spilleren", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "ef09dea3-2717-447d-aa47-24cc90c7406c", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "692db181-5adc-4053-9af2-1e8b3d39d786", + "codes": [], + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Hvilken posisjon trives angrepsspilleren i" + }, + { + "id": "0aa7e97c-d5b5-46d6-9a44-e53a0d411b2e", + "requirementText": "Info felt", + "instruction": "Med kodeliste", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28" + ], + "questions": [ + { + "id": "ac3b40f2-5762-4b6f-a772-02edefe70eee", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "692db181-5adc-4053-9af2-1e8b3d39d786", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Hvilken posisjon trives angrepsspilleren i" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "type": "need", + "parent": "706969fd-085c-4130-bc7a-31e3db8a4146", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "1a50d93d-e920-47f3-998d-130f7ca5b461", + "title": "Generelle verdier", + "description": "", + "requirements": [ + { + "id": "cbe772ec-ad1e-4d30-bbc4-13339951099d", + "title": "Relasjon med klubben", + "description": "", + "needId": "1a50d93d-e920-47f3-998d-130f7ca5b461", + "type": "requirement", + "variants": [ + { + "id": "2d767568-3040-4b84-b6ae-72216b260664", + "requirementText": "Hvordan er relasjonen med klubben", + "instruction": "Skriv om historien med klubben", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "7de0ff7e-d76c-4f56-bc20-c0558f14fdb2", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Har vi en god relasjon til klubben som henter spiller" + }, + { + "id": "771f52ee-1952-4ee6-a6ed-7ae21b1de81a", + "requirementText": "noe her", + "instruction": "noe her", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "69205b19-6379-450d-904c-bb8498e8f707", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Har vi en god relasjon med klubben vi henter fra" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "d5d6d99d-54d0-4482-b0f1-360ae39a75e2", + "title": "Opplastning av lisens", + "description": "", + "needId": "1a50d93d-e920-47f3-998d-130f7ca5b461", + "type": "requirement", + "variants": [ + { + "id": "f2e25768-a679-4ab0-9ce6-af2d72cdc283", + "requirementText": "Trengs en gyldig lisens for denne handlingen. Venligst last opp denne", + "instruction": "Last opp lisensen", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "0c2b8dc3-4d86-4d20-a9bd-a50734c9c154", + "type": "Q_FILEUPLOAD", + "config": { + "template": null, + "uploadInSpec": false, + "allowMultipleFiles": false, + "fileEndings": [], + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "files": [ + "" + ] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Trengs en gyldig lisens" + }, + { + "id": "26b14771-4805-4c7a-9ae8-9e6b47bc6606", + "requirementText": "Info info info", + "instruction": "Lisens lisens lisens", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "3d609947-2fc4-4b22-9c6d-18e2f45ecbe4", + "type": "Q_FILEUPLOAD", + "config": { + "template": null, + "uploadInSpec": false, + "allowMultipleFiles": false, + "fileEndings": [], + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "files": [ + "" + ] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Trengs en gyldig lisens" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "2820b1b1-eb02-4d14-aca5-7b1d4fcc9887", + "title": "Posisjonsverdier", + "description": "", + "requirements": [ + { + "id": "088032a3-89a2-4a84-8a12-f90b325eaa56", + "title": "Samspill med hverandre", + "description": "", + "needId": "2820b1b1-eb02-4d14-aca5-7b1d4fcc9887", + "type": "requirement", + "variants": [ + { + "id": "70dccd2a-dc14-4bda-972a-208dbd903971", + "requirementText": "Kan være viktig for de personlige relasjonene i et lag", + "instruction": "Hvor lenge har de spilt sammen i de forskjellige posisjonene", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "0ec3cd5c-b551-4063-b745-8abbc77eb162" + ], + "questions": [ + { + "id": "feb2cb3d-cab4-45e7-babf-e2c8d884c122", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "06f46860-5932-44c8-bbd6-610e777e1fd0", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Hvor lenge spillerene har spilt sammen / Når startet de å spille sammen" + }, + { + "id": "2636606d-ca72-4c2f-b865-0410e47c64ae", + "requirementText": "jaja", + "instruction": "noe her og", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "0ec3cd5c-b551-4063-b745-8abbc77eb162" + ], + "questions": [ + { + "id": "431dc573-5bac-48f7-a103-d3e30bdd9013", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Når startet de å spille sammen" + }, + { + "id": "50d1a03d-d785-4811-87f1-d19b551f553b", + "requirementText": "Her er en kravtekst", + "instruction": "Og dette er en veiledning", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "0ec3cd5c-b551-4063-b745-8abbc77eb162" + ], + "questions": [ + { + "id": "19b0439a-a45c-4072-b2c2-37dac036fdcf", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Hvor lenge har de spilt sammen" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "7bd5f637-67da-40fe-a81f-4bedae436401", + "title": "Bekreftelse på at dette er en speller", + "description": "", + "needId": "2820b1b1-eb02-4d14-aca5-7b1d4fcc9887", + "type": "requirement", + "variants": [ + { + "id": "83fda159-c72e-4446-b81e-809d39f64bcd", + "requirementText": "Speller er noe helt annet enn en vanlig spiller. Dette må bekreftes", + "instruction": "Her er det en bekreftelse", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "a2d39977-5f69-47e7-bfa5-a2a4d67b1073" + ], + "questions": [ + { + "id": "dbaeb588-96ea-49bc-b768-1c4a3491a8b4", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Er dette en speller?" + }, + { + "id": "5770a0e3-18fd-4d4b-a09b-596c7dbfdbf1", + "requirementText": "Vet ikke helt hva mening dette gir men", + "instruction": "Hei hå", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "a2d39977-5f69-47e7-bfa5-a2a4d67b1073" + ], + "questions": [ + { + "id": "e81ce611-aad6-4e0e-b422-be60e96e6997", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Bekreftelse" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "type": "need", + "parent": "1a50d93d-e920-47f3-998d-130f7ca5b461", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "692db181-5adc-4053-9af2-1e8b3d39d786", + "title": "Angrepsposisjon", + "description": "Posisjoner i angrep", + "codes": [ + { + "id": "21bbea1f-e425-4fd8-8ac4-7ffd7573e28c", + "title": "9er", + "description": "Klassisk spydspiss", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + }, + { + "id": "3a954f4e-28fd-4610-8a6e-3607b5c87f20", + "title": "Falsk 9er", + "description": "Litt dypere spiss som fungerer i det oppbyggende angrepsspillet", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + }, + { + "id": "c0681282-e5cb-4626-9b39-7f4b41c2a6f2", + "title": "Bred ving", + "description": "Ving som holder bredde og legger mye innlegg", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + }, + { + "id": "c9085640-7a65-4f11-8023-c61f965bb4a3", + "title": "Innovertrukket ving", + "description": "Ving som trekker inn i banen for avslutning", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "cd28300f-f5cd-4690-bb40-2610fe51a920", + "title": "Midtbaneposisjon", + "description": "Posisjoner på midtbanen", + "codes": [ + { + "id": "79ca4c69-bc9d-41ba-ab0a-bb95fa35a6d0", + "title": "Kantspiller", + "description": "Ute til siden, ikke å forveksle med ving", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + }, + { + "id": "601d0162-3436-482c-a325-9fcda3987ccf", + "title": "Indreløper", + "description": "Løper opp og ned i en treer", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + }, + { + "id": "75023f1e-de5c-43fb-8657-57e753cedac4", + "title": "Anker", + "description": "Dyptliggende, taklingssterk", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + }, + { + "id": "0055ab99-59e3-4561-a09d-160d49bc95a2", + "title": "Offensiv midtbanespiller", + "description": "Med fokus i angrep", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "products": [ + { + "id": "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "title": "Midtstoppere", + "description": "Samling av alle midtstoppere i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "b72f1784-2469-4b00-9afe-ab7335ec596c", + "title": "Joel Matip", + "description": "Høy og rask midtstopper fra Kamerun", + "type": "product", + "parent": "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "title": "Virgil Van Dijk", + "description": "Verdens beste midtstopper. Kommer fra Nederland", + "type": "product", + "parent": "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "title": "Ibrahima Konate", + "description": "Sterk og rask midtstopper fra Frankrike", + "type": "product", + "parent": "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "title": "Backer", + "description": "Samling av alle backene i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "71d643a0-39c2-4cbc-80b2-38374b746e95", + "title": "Trent Alexander-Arnold", + "description": "Verdens beste høyreback. Engelsk, og ekte Liverpoolgutt. Vokst opp et steinkast fra Anfield Road", + "type": "product", + "parent": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "7b75bdda-3c05-4c03-b311-110ec670892f", + "title": "Andrew Robertson", + "description": "Løpssterk venstreback fra Skottland!", + "type": "product", + "parent": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "606ee429-74c6-4696-a60b-3048246fc3f4", + "title": "Konstantinos Tsamikas", + "description": "Unge venstreback fra Hellas. Skåret avgjørende straffesparket i FA cup-finalen", + "type": "product", + "parent": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "title": "Joe Gomez", + "description": "Versatil forsvarsspiller fra england. Kan gjøre en god figur både på stopperplass og på backplass", + "type": "product", + "parent": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "title": "Keepere", + "description": "Samling av alle keeperene i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "c9689511-defd-4259-b5fa-67d127bc5f59", + "title": "Allison Becker", + "description": "Legendarisk keeper fra Brasil", + "type": "product", + "parent": "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "a8dc4069-290b-4577-972c-9faac368e3c6", + "title": "Adrian", + "description": "Reservekeeper fra Spania. Tidligere spilt for West Ham", + "type": "product", + "parent": "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "86fb309c-c0b8-4964-841c-69991cf4024b", + "title": "Caoimhin Kelleher", + "description": "Ung keeper fra Irland", + "type": "product", + "parent": "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "title": "Midtbanespillere", + "description": "Samling av alle midtbanespiller'e i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "title": "Fabinho", + "description": "Sterk og god defensiv midtbanespiller fra Brasil! Han er kommer du deg ikke forbi", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "f6dace96-ef1a-4596-86b0-555676ecd49e", + "title": "Thiago", + "description": "Teknisk vidunder fra Spania", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "title": "Jordan Henderson", + "description": "Klubbkaptein, og arbeidsjern på midten. Kommer fra England", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "title": "James Milner", + "description": "Verdens kjedeligste engelskmann. Men løper som en hest", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "title": "Harvey Elliot", + "description": "Ungt teknisk engelsk talent på midtbanen", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "title": "Curtis Jones", + "description": "Ung midtbanespiller fra England", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "title": "Naby Keita", + "description": "Teknisk driblesterk midtbanespiller fra Guinea", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "title": "Alex Oxlade-Chamberlain", + "description": "Meget rask midtbanespiller fra England. Tidligere vært Arsenals beste spiller", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "title": "Angrepsspillere", + "description": "Samling av alle angrepsspillere i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "title": "Mohammed Salah", + "description": "Egyptisk konge, og verdens beste fotballspiller", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "title": "Diego Jota", + "description": "Portugals klart beste fotballspiller gjennom tidene", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "title": "Luis Diaz", + "description": "Ving fra Colombia. Sjeldent kommet noe så bra teknisk vidunder fra vingposisjon fra det landet", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "title": "Divock Origi", + "description": "Legende fra Belgia", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "7e720208-ad36-46a2-b06d-c247feedb1de", + "title": "Takumi Minamino", + "description": "Beste offensive spiller produsert i Asia. Japans store sønn", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "title": "Roberto Firmino", + "description": "Arbeidsjern fra Brasil. Verdens beste i offensivt press", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "27428a1e-ebee-4e3c-9899-a7b6a418b852", + "title": "Manager", + "description": "Liverpool FC Manager", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "a2d39977-5f69-47e7-bfa5-a2a4d67b1073", + "title": "Jurgen Klopp", + "description": "Verdens beste manager. Kommer fra Tyskland", + "type": "product", + "parent": "27428a1e-ebee-4e3c-9899-a7b6a418b852", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [ + { + "id": "de288fb9-2a8f-41e0-9211-bfc220d88103", + "bankId": "de288fb9-2a8f-41e0-9211-bfc220d88103", + "comment": "første utkast av en publisering", + "date": "2022-05-27T11:41:30.999Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-08-12T11:59:12.303Z" + }, + { + "id": "a0b0b253-f32e-4169-9821-c0e3d22e56bf", + "bankId": "a0b0b253-f32e-4169-9821-c0e3d22e56bf", + "comment": "Utkast med alle typer krav", + "date": "2022-05-27T12:15:14.979Z", + "type": "publication", + "version": 2, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + }, + { + "id": "b45734ad-e125-4983-905c-81ad57878f3a", + "bankId": "b45734ad-e125-4983-905c-81ad57878f3a", + "comment": "Lagt til infofelt for boolean og verdi", + "date": "2022-06-08T06:15:14.315Z", + "type": "publication", + "version": 3, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "9e0eb924-f8ca-4ea1-82c3-c0c22d785b16", + "bankId": "9e0eb924-f8ca-4ea1-82c3-c0c22d785b16", + "comment": "Infofelt for alle spørsmålstyper", + "date": "2022-06-21T19:01:01.528Z", + "type": "publication", + "version": 4, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "78d91a42-7baf-4339-95e8-751342450463", + "bankId": "78d91a42-7baf-4339-95e8-751342450463", + "comment": "yrdy", + "date": "2022-08-02T10:51:08.644Z", + "type": "publication", + "version": 5, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "1a21f64d-6e70-42b2-a39c-a8fb37bbade4", + "bankId": "1a21f64d-6e70-42b2-a39c-a8fb37bbade4", + "comment": "Test", + "date": "2022-08-09T08:02:07.186Z", + "type": "publication", + "version": 6, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "e3ed3670-d20c-43fa-a5ba-8c22586b6b84", + "bankId": "e3ed3670-d20c-43fa-a5ba-8c22586b6b84", + "comment": "Oppdaterte Verdier med ny JOI", + "date": "2022-08-18T13:53:59.676Z", + "type": "publication", + "version": 7, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + }, + { + "id": "ad558be2-120f-440a-84a0-62423da4cd01", + "bankId": "ad558be2-120f-440a-84a0-62423da4cd01", + "comment": "Publisering med bekreftelse", + "date": "2022-08-30T12:25:47.863Z", + "type": "publication", + "version": 8, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + }, + { + "id": "04f3e310-d048-4ba1-affd-c424cd31f230", + "bankId": "04f3e310-d048-4ba1-affd-c424cd31f230", + "comment": "Med info bekreftelse", + "date": "2022-08-30T12:28:21.378Z", + "type": "publication", + "version": 9, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + }, + { + "id": "9dae4007-00b8-40ce-8fd1-20666df2fd70", + "bankId": "9dae4007-00b8-40ce-8fd1-20666df2fd70", + "comment": "Publiserings test", + "date": "2022-09-01T12:18:53.012Z", + "type": "publication", + "version": 10, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-09-01T12:19:11.210Z" + }, + { + "id": "e46fdabc-d158-4039-9376-1091d92a6d45", + "bankId": "e46fdabc-d158-4039-9376-1091d92a6d45", + "comment": "test", + "date": "2022-09-01T12:20:03.566Z", + "type": "publication", + "version": 11, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-09-01T12:20:06.419Z" + }, + { + "id": "895864a4-40d7-4335-8068-6eb7b75a5b03", + "bankId": "895864a4-40d7-4335-8068-6eb7b75a5b03", + "comment": "verdi fix", + "date": "2022-09-12T13:24:20.574Z", + "type": "publication", + "version": 12, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + }, + { + "id": "442e6c17-53c7-4c12-b0d0-0ca9f493a675", + "bankId": "442e6c17-53c7-4c12-b0d0-0ca9f493a675", + "comment": "kodeliste fix", + "date": "2022-09-12T13:29:26.350Z", + "type": "publication", + "version": 13, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + } + ], + "tags": [ + { + "id": "7ad34422-7e1c-40b6-9a52-4376843b4129", + "title": "Test", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "6edb3e7e-f7a1-4320-a3d2-2a87d09bfd7f", + "title": "Alle svartyper", + "description": "Prosjekt for testing og verifikasjon av alle svartyper", + "needs": [ + { + "id": "77ed20aa-8d4d-4458-9a81-f3850b1a3e30", + "title": "Svartyper", + "description": "", + "requirements": [ + { + "id": "c83ad487-085f-4d9b-9fe1-5edc4e5d7dc8", + "title": "Bekreftelse", + "description": "", + "needId": "77ed20aa-8d4d-4458-9a81-f3850b1a3e30", + "type": "requirement", + "variants": [ + { + "id": "7ca6e453-73b6-424d-b249-d912442036ba", + "requirementText": "Kravbank skal ha støtte for flere måter å besvare krav.", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "d4701a64-0b1a-44f8-a81e-a776a365435c" + ], + "questions": [ + { + "id": "f25a1694-e92c-418d-b38a-381c4d5a1347", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Bekreftelse som krav" + }, + { + "id": "ad745084-88cc-4882-a13f-36e5060bb3d1", + "requirementText": "Oppdragsgiver har rammeavtale på dekk som benyttes i tilfeller hvor tilbudt dekk ikke dekker behovet.", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "d4701a64-0b1a-44f8-a81e-a776a365435c" + ], + "questions": [], + "type": "info", + "description": "Bekreftelse som informasjon" + } + ], + "tags": [], + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null + }, + { + "id": "7796a0fd-33f8-4186-bc7d-f60229eeb7bc", + "title": "Ja/Nei", + "description": "", + "needId": "77ed20aa-8d4d-4458-9a81-f3850b1a3e30", + "type": "requirement", + "variants": [ + { + "id": "248a09ae-2150-472e-b9fd-6390dc04bef7", + "requirementText": "Leveres bilen med ratt på førersiden?", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "ebfa8440-dfb2-44cc-94ed-b6ea4a7cc449" + ], + "questions": [ + { + "id": "9aa0bb35-efa7-41ab-9ab0-06a766387d20", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Ja/Nei som krav (Default: Ja)" + }, + { + "id": "a3f3ff22-544c-4323-955e-59e753586545", + "requirementText": "Leveres bilen med ratt på passasjersiden?", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "ebfa8440-dfb2-44cc-94ed-b6ea4a7cc449" + ], + "questions": [ + { + "id": "0b6c8bb6-0b67-4671-8da7-4b39c2d6ffe0", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": false + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Ja/Nei som krav (Default: Nei)" + }, + { + "id": "c6259b6a-ee2c-4e24-a47b-bbe2adb18cff", + "requirementText": "Skal bilen være nyvasket før levering?", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "ebfa8440-dfb2-44cc-94ed-b6ea4a7cc449" + ], + "questions": [ + { + "id": "ab951d1f-2c34-4aed-a777-324ce942a4aa", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Ja/Nei som informasjon (Default: Ja)" + }, + { + "id": "c2c9ec4d-03c8-4439-95a1-6b5cfe9d57eb", + "requirementText": "Kan oppdragsgiver akseptere erstatningsbil med færre seter når anskaffet bil er på service?", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "ebfa8440-dfb2-44cc-94ed-b6ea4a7cc449" + ], + "questions": [ + { + "id": "f57c1590-7d44-48d5-897e-f7cb556a52d0", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": false + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Ja/Nei som informasjon (Default: Nei)" + } + ], + "tags": [], + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null + }, + { + "id": "79e07b49-6676-422e-a1bd-d6aa7a2f6697", + "title": "Tekst", + "description": "", + "needId": "77ed20aa-8d4d-4458-9a81-f3850b1a3e30", + "type": "requirement", + "variants": [ + { + "id": "17bddaf3-fcfb-482d-ba54-ead2c6d9d2fe", + "requirementText": "Oppgi type vinterdekk (leverandør, kvalitet, med/uten pigg)", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "adfd64da-ef7e-4018-a40c-07ed4cadc764" + ], + "questions": [ + { + "id": "dc378788-93ff-437f-ad24-0aeeb4bea911", + "type": "Q_TEXT", + "config": { + "max": 1000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tekst som krav" + }, + { + "id": "2d997200-72d5-481e-b206-d4a35c7e1434", + "requirementText": "Lokasjon for levering av anskaffet bil:", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "adfd64da-ef7e-4018-a40c-07ed4cadc764" + ], + "questions": [ + { + "id": "8b764903-26a9-4133-a77e-7e9b6fa812f4", + "type": "Q_TEXT", + "config": { + "max": 1000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Tekst som informasjon" + } + ], + "tags": [], + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null + }, + { + "id": "0cf2f3f1-7789-4beb-bffe-3a77bbe0a699", + "title": "Verdi", + "description": "", + "needId": "77ed20aa-8d4d-4458-9a81-f3850b1a3e30", + "type": "requirement", + "variants": [ + { + "id": "40da1809-2b7f-4516-b916-d572332b473b", + "requirementText": "Oppgi mendge RAM maskinen leveres med?", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "89d017b1-01ad-4945-a069-19c3fe6704f9" + ], + "questions": [ + { + "id": "260acb73-f0db-4c77-8595-1b2133832acd", + "type": "Q_SLIDER", + "config": { + "min": 4, + "max": 32, + "step": 4, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": "4" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Verdi som krav" + }, + { + "id": "799b11e7-6df6-4a16-aac1-7be583755a63", + "requirementText": "Minimum antall HDMI-porter på maskinen:", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "89d017b1-01ad-4945-a069-19c3fe6704f9" + ], + "questions": [ + { + "id": "e9ef8b7c-4709-4561-9015-96be0714b1e0", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 8, + "step": 1, + "unit": "porter", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": "1" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Verdi som informasjon" + } + ], + "tags": [], + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null + }, + { + "id": "8ac4e5a4-737c-4bf6-9994-9d7632746187", + "title": "Dato", + "description": "", + "needId": "77ed20aa-8d4d-4458-9a81-f3850b1a3e30", + "type": "requirement", + "variants": [ + { + "id": "5c49f6f3-b055-4651-af20-30e61a34b8e9", + "requirementText": "Oppgi tidligste dato for levering av kjøretøy.", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "b50fae24-727d-404b-994e-cd32a7d75407" + ], + "questions": [ + { + "id": "e09e8ee7-6bc6-4811-b533-13199e95bd30", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Dato som krav" + }, + { + "id": "bc7b0011-0ec4-4a95-8949-913b3b2bbb81", + "requirementText": "Oppgi tidsrom for levering av kjørtøy.", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "b50fae24-727d-404b-994e-cd32a7d75407" + ], + "questions": [ + { + "id": "b8c0261f-510d-46b3-a769-2b1dbf77a0a2", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Dato med periode som krav" + }, + { + "id": "da549f43-3c7e-4b24-bacb-8200bc3dd355", + "requirementText": "Dato for første dag av samlingen:", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "b50fae24-727d-404b-994e-cd32a7d75407" + ], + "questions": [ + { + "id": "4bbfe9b4-3642-4ef4-a6b1-50581b95be43", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Dato som informasjon" + }, + { + "id": "bbfaa542-0a5e-4e47-a49b-250a9a02a7dc", + "requirementText": "Oppgi periode for samlingen", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "b50fae24-727d-404b-994e-cd32a7d75407" + ], + "questions": [ + { + "id": "19e8d852-a363-4982-8dc8-1144612169f1", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Dato med periode som informasjon" + } + ], + "tags": [], + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null + }, + { + "id": "b8033e4e-8cb9-4a52-b5b1-2300867979cc", + "title": "Tidspunkt", + "description": "", + "needId": "77ed20aa-8d4d-4458-9a81-f3850b1a3e30", + "type": "requirement", + "variants": [ + { + "id": "053770a5-5b7c-412c-b367-6db5cc7fed1d", + "requirementText": "Oppgi tidspunkt for lunsj:", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "269b119a-2799-42fb-9ecc-bbb94e82bab1" + ], + "questions": [ + { + "id": "b765ad1b-05ff-42ce-bc07-69e43d6a1e05", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tidspunkt som krav" + }, + { + "id": "e01c721d-fd0d-4910-af2f-4f68691fed7d", + "requirementText": "Oppgi i hvilket tidsrom verkstedet er tilgjengelig for henvendelser på hverdager.", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "269b119a-2799-42fb-9ecc-bbb94e82bab1" + ], + "questions": [ + { + "id": "4e63ca83-625c-4608-b6f5-fc82c5e23cb3", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tidspunkt med periode som krav" + }, + { + "id": "0632310e-1de6-4afe-895c-19c7270a5a89", + "requirementText": "Tidspunkt for lunsj:", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "269b119a-2799-42fb-9ecc-bbb94e82bab1" + ], + "questions": [ + { + "id": "9b8726ca-850f-46ff-8e41-108bf045e91b", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Tidspunkt som informasjon" + }, + { + "id": "5a8fb1f5-9713-4ea0-a3f3-f30f1355eec3", + "requirementText": "Ønsket tidspunkt for tilgang til lunsj-buffet:", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "269b119a-2799-42fb-9ecc-bbb94e82bab1" + ], + "questions": [ + { + "id": "c5817ac2-42ff-4512-bcbd-b46242578ef6", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Tidspunkt med periode som informasjon" + } + ], + "tags": [], + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null + }, + { + "id": "dd7245dd-026f-4c37-b03a-f6c6d39d48ea", + "title": "Kodeliste", + "description": "", + "needId": "77ed20aa-8d4d-4458-9a81-f3850b1a3e30", + "type": "requirement", + "variants": [ + { + "id": "a308a7f1-d829-464e-a137-984ac50e3505", + "requirementText": "Oppgi fargen på tilbudt kjøretøy:", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "6a1a8754-5721-44cf-85f1-d7c16fdb0336" + ], + "questions": [ + { + "id": "df66670b-6c48-48b6-9b36-4fee77e230f3", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "282645ee-43ae-4616-9ff6-d39775648e2b", + "codes": [], + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Kodeliste som krav (1)" + }, + { + "id": "75d66801-a2f6-495d-8b6f-7a484f1d2d86", + "requirementText": "Oppgi hvilke farger pæren kan lyse:", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "6a1a8754-5721-44cf-85f1-d7c16fdb0336" + ], + "questions": [ + { + "id": "931e0d3b-d7ce-41c3-a788-b99469830473", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "282645ee-43ae-4616-9ff6-d39775648e2b", + "codes": [], + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Kodeliste som krav (2)" + }, + { + "id": "03faa455-5d04-44c1-be7b-d40901578bb7", + "requirementText": "Farge på kjøretøyet:", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "6a1a8754-5721-44cf-85f1-d7c16fdb0336" + ], + "questions": [ + { + "id": "81a55e31-3426-4d79-a2ee-fa630cd72cb3", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "282645ee-43ae-4616-9ff6-d39775648e2b", + "codes": [], + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Kodeliste som informasjon (1)" + }, + { + "id": "a490108d-3b35-4e88-b780-48fa39f04fc1", + "requirementText": "Farger som aksepteres på pulten:", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "6a1a8754-5721-44cf-85f1-d7c16fdb0336" + ], + "questions": [ + { + "id": "8b67ae79-4d65-4405-a9b7-3fce0a893ee8", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "282645ee-43ae-4616-9ff6-d39775648e2b", + "codes": [], + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Kodeliste som informasjon (2)" + } + ], + "tags": [], + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "282645ee-43ae-4616-9ff6-d39775648e2b", + "title": "Farger", + "description": "", + "codes": [ + { + "id": "7421129e-5d1f-46d8-8342-69419416f460", + "title": "Hvit", + "description": "", + "type": "code", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null, + "parent": "" + }, + { + "id": "30947dac-9757-4c31-9e7b-d7b9d1075aac", + "title": "Sølv", + "description": "", + "type": "code", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null, + "parent": "" + }, + { + "id": "3cfc7ce1-b5d3-4e90-910e-d2226a1127bb", + "title": "Svart", + "description": "", + "type": "code", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null, + "parent": "" + }, + { + "id": "d58e994c-0cc6-4db7-8a71-277cddd3169d", + "title": "Rød", + "description": "", + "type": "code", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null, + "parent": "" + }, + { + "id": "4ea9d4a6-0544-479b-a5ac-4e235d14407a", + "title": "Rosa", + "description": "Lys variant av rød", + "type": "code", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null, + "parent": "" + }, + { + "id": "1cc4dd43-37ba-41db-9c21-8325722e78ea", + "title": "Blå", + "description": "", + "type": "code", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null, + "parent": "" + }, + { + "id": "92d4a612-1c8c-4473-a6b1-a4f82e70ce28", + "title": "Gul", + "description": "", + "type": "code", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null, + "parent": "" + }, + { + "id": "03776162-1b7e-4cd8-b302-4c3b0e66631b", + "title": "Grønn", + "description": "Kombinasjon av gult og blått", + "type": "code", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null, + "parent": "" + }, + { + "id": "cb678a5a-f445-40b5-96b2-80fe5271c227", + "title": "Lilla", + "description": "Kombinasjon av blått og rødt", + "type": "code", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null, + "parent": "" + }, + { + "id": "f0acbbf9-93b6-482d-b00b-4a6341e0b4b9", + "title": "Orange", + "description": "Kombinasjon av rødt og gult", + "type": "code", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null + } + ], + "products": [ + { + "id": "d4701a64-0b1a-44f8-a81e-a776a365435c", + "title": "Bekreftelse", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "ebfa8440-dfb2-44cc-94ed-b6ea4a7cc449", + "title": "Ja/Nei", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "adfd64da-ef7e-4018-a40c-07ed4cadc764", + "title": "Fritekst", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "89d017b1-01ad-4945-a069-19c3fe6704f9", + "title": "Verdi", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "b50fae24-727d-404b-994e-cd32a7d75407", + "title": "Dato", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "269b119a-2799-42fb-9ecc-bbb94e82bab1", + "title": "Tidspunkt", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "6a1a8754-5721-44cf-85f1-d7c16fdb0336", + "title": "Kodeliste", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + } + ], + "publications": [], + "tags": [], + "version": 1, + "publishedDate": "2022-10-17T13:41:54.187Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "deletedDate": null + }, + { + "id": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "title": "Alle svartyper", + "description": "Prosjekt for testing og verifikasjon av alle svartyper", + "needs": [ + { + "id": "77ed20aa-8d4d-4458-9a81-f3850b1a3e30", + "title": "Svartyper", + "description": "", + "requirements": [ + { + "id": "c83ad487-085f-4d9b-9fe1-5edc4e5d7dc8", + "title": "Bekreftelse", + "description": "", + "needId": "77ed20aa-8d4d-4458-9a81-f3850b1a3e30", + "type": "requirement", + "variants": [ + { + "id": "7ca6e453-73b6-424d-b249-d912442036ba", + "requirementText": "Kravbank skal ha støtte for flere måter å besvare krav.", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "d4701a64-0b1a-44f8-a81e-a776a365435c" + ], + "questions": [ + { + "id": "f25a1694-e92c-418d-b38a-381c4d5a1347", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Bekreftelse som krav" + }, + { + "id": "ad745084-88cc-4882-a13f-36e5060bb3d1", + "requirementText": "Oppdragsgiver har rammeavtale på dekk som benyttes i tilfeller hvor tilbudt dekk ikke dekker behovet.", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "d4701a64-0b1a-44f8-a81e-a776a365435c" + ], + "questions": [], + "type": "info", + "description": "Bekreftelse som informasjon" + } + ], + "tags": [], + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null + }, + { + "id": "7796a0fd-33f8-4186-bc7d-f60229eeb7bc", + "title": "Ja/Nei", + "description": "", + "needId": "77ed20aa-8d4d-4458-9a81-f3850b1a3e30", + "type": "requirement", + "variants": [ + { + "id": "248a09ae-2150-472e-b9fd-6390dc04bef7", + "requirementText": "Leveres bilen med ratt på førersiden?", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "ebfa8440-dfb2-44cc-94ed-b6ea4a7cc449" + ], + "questions": [ + { + "id": "9aa0bb35-efa7-41ab-9ab0-06a766387d20", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Ja/Nei som krav (Default: Ja)" + }, + { + "id": "a3f3ff22-544c-4323-955e-59e753586545", + "requirementText": "Leveres bilen med ratt på passasjersiden?", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "ebfa8440-dfb2-44cc-94ed-b6ea4a7cc449" + ], + "questions": [ + { + "id": "0b6c8bb6-0b67-4671-8da7-4b39c2d6ffe0", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": false + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Ja/Nei som krav (Default: Nei)" + }, + { + "id": "c6259b6a-ee2c-4e24-a47b-bbe2adb18cff", + "requirementText": "Skal bilen være nyvasket før levering?", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "ebfa8440-dfb2-44cc-94ed-b6ea4a7cc449" + ], + "questions": [ + { + "id": "ab951d1f-2c34-4aed-a777-324ce942a4aa", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Ja/Nei som informasjon (Default: Ja)" + }, + { + "id": "c2c9ec4d-03c8-4439-95a1-6b5cfe9d57eb", + "requirementText": "Kan oppdragsgiver akseptere erstatningsbil med færre seter når anskaffet bil er på service?", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "ebfa8440-dfb2-44cc-94ed-b6ea4a7cc449" + ], + "questions": [ + { + "id": "f57c1590-7d44-48d5-897e-f7cb556a52d0", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": false + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Ja/Nei som informasjon (Default: Nei)" + } + ], + "tags": [], + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null + }, + { + "id": "79e07b49-6676-422e-a1bd-d6aa7a2f6697", + "title": "Tekst", + "description": "", + "needId": "77ed20aa-8d4d-4458-9a81-f3850b1a3e30", + "type": "requirement", + "variants": [ + { + "id": "17bddaf3-fcfb-482d-ba54-ead2c6d9d2fe", + "requirementText": "Oppgi type vinterdekk (leverandør, kvalitet, med/uten pigg)", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "adfd64da-ef7e-4018-a40c-07ed4cadc764" + ], + "questions": [ + { + "id": "dc378788-93ff-437f-ad24-0aeeb4bea911", + "type": "Q_TEXT", + "config": { + "max": 1000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tekst som krav" + }, + { + "id": "2d997200-72d5-481e-b206-d4a35c7e1434", + "requirementText": "Lokasjon for levering av anskaffet bil:", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "adfd64da-ef7e-4018-a40c-07ed4cadc764" + ], + "questions": [ + { + "id": "8b764903-26a9-4133-a77e-7e9b6fa812f4", + "type": "Q_TEXT", + "config": { + "max": 1000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Tekst som informasjon" + } + ], + "tags": [], + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null + }, + { + "id": "0cf2f3f1-7789-4beb-bffe-3a77bbe0a699", + "title": "Verdi", + "description": "", + "needId": "77ed20aa-8d4d-4458-9a81-f3850b1a3e30", + "type": "requirement", + "variants": [ + { + "id": "40da1809-2b7f-4516-b916-d572332b473b", + "requirementText": "Oppgi mendge RAM maskinen leveres med?", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "89d017b1-01ad-4945-a069-19c3fe6704f9" + ], + "questions": [ + { + "id": "260acb73-f0db-4c77-8595-1b2133832acd", + "type": "Q_SLIDER", + "config": { + "min": 4, + "max": 32, + "step": 4, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": "4" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Verdi som krav" + }, + { + "id": "799b11e7-6df6-4a16-aac1-7be583755a63", + "requirementText": "Minimum antall HDMI-porter på maskinen:", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "89d017b1-01ad-4945-a069-19c3fe6704f9" + ], + "questions": [ + { + "id": "e9ef8b7c-4709-4561-9015-96be0714b1e0", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 8, + "step": 1, + "unit": "porter", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": "1" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Verdi som informasjon" + } + ], + "tags": [], + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null + }, + { + "id": "8ac4e5a4-737c-4bf6-9994-9d7632746187", + "title": "Dato", + "description": "", + "needId": "77ed20aa-8d4d-4458-9a81-f3850b1a3e30", + "type": "requirement", + "variants": [ + { + "id": "5c49f6f3-b055-4651-af20-30e61a34b8e9", + "requirementText": "Oppgi tidligste dato for levering av kjøretøy.", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "b50fae24-727d-404b-994e-cd32a7d75407" + ], + "questions": [ + { + "id": "e09e8ee7-6bc6-4811-b533-13199e95bd30", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Dato som krav" + }, + { + "id": "bc7b0011-0ec4-4a95-8949-913b3b2bbb81", + "requirementText": "Oppgi tidsrom for levering av kjørtøy.", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "b50fae24-727d-404b-994e-cd32a7d75407" + ], + "questions": [ + { + "id": "b8c0261f-510d-46b3-a769-2b1dbf77a0a2", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Dato med periode som krav" + }, + { + "id": "da549f43-3c7e-4b24-bacb-8200bc3dd355", + "requirementText": "Dato for første dag av samlingen:", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "b50fae24-727d-404b-994e-cd32a7d75407" + ], + "questions": [ + { + "id": "4bbfe9b4-3642-4ef4-a6b1-50581b95be43", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Dato som informasjon" + }, + { + "id": "bbfaa542-0a5e-4e47-a49b-250a9a02a7dc", + "requirementText": "Oppgi periode for samlingen", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "b50fae24-727d-404b-994e-cd32a7d75407" + ], + "questions": [ + { + "id": "19e8d852-a363-4982-8dc8-1144612169f1", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Dato med periode som informasjon" + } + ], + "tags": [], + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null + }, + { + "id": "b8033e4e-8cb9-4a52-b5b1-2300867979cc", + "title": "Tidspunkt", + "description": "", + "needId": "77ed20aa-8d4d-4458-9a81-f3850b1a3e30", + "type": "requirement", + "variants": [ + { + "id": "053770a5-5b7c-412c-b367-6db5cc7fed1d", + "requirementText": "Oppgi tidspunkt for lunsj:", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "269b119a-2799-42fb-9ecc-bbb94e82bab1" + ], + "questions": [ + { + "id": "b765ad1b-05ff-42ce-bc07-69e43d6a1e05", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tidspunkt som krav" + }, + { + "id": "e01c721d-fd0d-4910-af2f-4f68691fed7d", + "requirementText": "Oppgi i hvilket tidsrom verkstedet er tilgjengelig for henvendelser på hverdager.", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "269b119a-2799-42fb-9ecc-bbb94e82bab1" + ], + "questions": [ + { + "id": "4e63ca83-625c-4608-b6f5-fc82c5e23cb3", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tidspunkt med periode som krav" + }, + { + "id": "0632310e-1de6-4afe-895c-19c7270a5a89", + "requirementText": "Tidspunkt for lunsj:", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "269b119a-2799-42fb-9ecc-bbb94e82bab1" + ], + "questions": [ + { + "id": "9b8726ca-850f-46ff-8e41-108bf045e91b", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Tidspunkt som informasjon" + }, + { + "id": "5a8fb1f5-9713-4ea0-a3f3-f30f1355eec3", + "requirementText": "Ønsket tidspunkt for tilgang til lunsj-buffet:", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "269b119a-2799-42fb-9ecc-bbb94e82bab1" + ], + "questions": [ + { + "id": "c5817ac2-42ff-4512-bcbd-b46242578ef6", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Tidspunkt med periode som informasjon" + } + ], + "tags": [], + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null + }, + { + "id": "dd7245dd-026f-4c37-b03a-f6c6d39d48ea", + "title": "Kodeliste", + "description": "", + "needId": "77ed20aa-8d4d-4458-9a81-f3850b1a3e30", + "type": "requirement", + "variants": [ + { + "id": "a308a7f1-d829-464e-a137-984ac50e3505", + "requirementText": "Oppgi fargen på tilbudt kjøretøy:", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "6a1a8754-5721-44cf-85f1-d7c16fdb0336" + ], + "questions": [ + { + "id": "df66670b-6c48-48b6-9b36-4fee77e230f3", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "282645ee-43ae-4616-9ff6-d39775648e2b", + "codes": [], + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Kodeliste som krav (1)" + }, + { + "id": "75d66801-a2f6-495d-8b6f-7a484f1d2d86", + "requirementText": "Oppgi hvilke farger pæren kan lyse:", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "6a1a8754-5721-44cf-85f1-d7c16fdb0336" + ], + "questions": [ + { + "id": "931e0d3b-d7ce-41c3-a788-b99469830473", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "282645ee-43ae-4616-9ff6-d39775648e2b", + "codes": [], + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Kodeliste som krav (2)" + }, + { + "id": "03faa455-5d04-44c1-be7b-d40901578bb7", + "requirementText": "Farge på kjøretøyet:", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "6a1a8754-5721-44cf-85f1-d7c16fdb0336" + ], + "questions": [ + { + "id": "81a55e31-3426-4d79-a2ee-fa630cd72cb3", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "282645ee-43ae-4616-9ff6-d39775648e2b", + "codes": [], + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Kodeliste som informasjon (1)" + }, + { + "id": "a490108d-3b35-4e88-b780-48fa39f04fc1", + "requirementText": "Farger som aksepteres på pulten:", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "6a1a8754-5721-44cf-85f1-d7c16fdb0336" + ], + "questions": [ + { + "id": "8b67ae79-4d65-4405-a9b7-3fce0a893ee8", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "282645ee-43ae-4616-9ff6-d39775648e2b", + "codes": [], + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Kodeliste som informasjon (2)" + } + ], + "tags": [], + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "282645ee-43ae-4616-9ff6-d39775648e2b", + "title": "Farger", + "description": "", + "codes": [ + { + "id": "7421129e-5d1f-46d8-8342-69419416f460", + "title": "Hvit", + "description": "", + "type": "code", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null, + "parent": "" + }, + { + "id": "30947dac-9757-4c31-9e7b-d7b9d1075aac", + "title": "Sølv", + "description": "", + "type": "code", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null, + "parent": "" + }, + { + "id": "3cfc7ce1-b5d3-4e90-910e-d2226a1127bb", + "title": "Svart", + "description": "", + "type": "code", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null, + "parent": "" + }, + { + "id": "d58e994c-0cc6-4db7-8a71-277cddd3169d", + "title": "Rød", + "description": "", + "type": "code", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null, + "parent": "" + }, + { + "id": "4ea9d4a6-0544-479b-a5ac-4e235d14407a", + "title": "Rosa", + "description": "Lys variant av rød", + "type": "code", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null, + "parent": "" + }, + { + "id": "1cc4dd43-37ba-41db-9c21-8325722e78ea", + "title": "Blå", + "description": "", + "type": "code", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null, + "parent": "" + }, + { + "id": "92d4a612-1c8c-4473-a6b1-a4f82e70ce28", + "title": "Gul", + "description": "", + "type": "code", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null, + "parent": "" + }, + { + "id": "03776162-1b7e-4cd8-b302-4c3b0e66631b", + "title": "Grønn", + "description": "Kombinasjon av gult og blått", + "type": "code", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null, + "parent": "" + }, + { + "id": "cb678a5a-f445-40b5-96b2-80fe5271c227", + "title": "Lilla", + "description": "Kombinasjon av blått og rødt", + "type": "code", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null, + "parent": "" + }, + { + "id": "f0acbbf9-93b6-482d-b00b-4a6341e0b4b9", + "title": "Orange", + "description": "Kombinasjon av rødt og gult", + "type": "code", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null + } + ], + "products": [ + { + "id": "d4701a64-0b1a-44f8-a81e-a776a365435c", + "title": "Bekreftelse", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "ebfa8440-dfb2-44cc-94ed-b6ea4a7cc449", + "title": "Ja/Nei", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "adfd64da-ef7e-4018-a40c-07ed4cadc764", + "title": "Fritekst", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "89d017b1-01ad-4945-a069-19c3fe6704f9", + "title": "Verdi", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "b50fae24-727d-404b-994e-cd32a7d75407", + "title": "Dato", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "269b119a-2799-42fb-9ecc-bbb94e82bab1", + "title": "Tidspunkt", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "6a1a8754-5721-44cf-85f1-d7c16fdb0336", + "title": "Kodeliste", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + } + ], + "publications": [ + { + "id": "6edb3e7e-f7a1-4320-a3d2-2a87d09bfd7f", + "bankId": "6edb3e7e-f7a1-4320-a3d2-2a87d09bfd7f", + "comment": "From Erlend with love", + "date": "2022-10-17T13:41:54.187Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + } + ], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "cb8246ca-556f-44c1-a99c-d960dd4b7f03", + "title": "Alle feltene for Ken", + "description": "Beskrivelse", + "needs": [ + { + "id": "7ec67d41-6f3c-4820-bf03-5e51178fc8d4", + "title": "Test", + "description": "Testbehov", + "requirements": [ + { + "id": "9fa122aa-7543-41ed-86eb-fa6276f08eb2", + "title": "Kravtittel", + "description": "", + "needId": "7ec67d41-6f3c-4820-bf03-5e51178fc8d4", + "type": "requirement", + "variants": [], + "tags": [], + "sourceOriginal": "cb8246ca-556f-44c1-a99c-d960dd4b7f03", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "cb8246ca-556f-44c1-a99c-d960dd4b7f03", + "sourceRel": null + } + ], + "codelist": [], + "products": [], + "publications": [], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "3fc678f7-831a-443b-a15d-1fee89018364", + "title": "@l@m test", + "description": "Test prosjekt", + "needs": [ + { + "id": "62073562-cc93-4258-b3c9-14e08e699746", + "title": "Svartyper", + "description": "", + "requirements": [ + { + "id": "4c011bb1-4a5a-461a-8c3c-65ad183cc6eb", + "title": "J/Nei", + "description": "", + "needId": "62073562-cc93-4258-b3c9-14e08e699746", + "type": "requirement", + "variants": [ + { + "id": "7ffba265-5785-4801-ae23-fbbe5a6db79d", + "requirementText": "Leveres bilen med ratt på førersiden?", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "cad5018b-a9f0-429e-9a4c-9b823de4a6eb" + ], + "questions": [ + { + "id": "18b47238-7c0f-4068-9567-7f13c191ff67", + "type": "Q_CHECKBOX", + "config": { + "discountNonPrefered": 0, + "discountPrefered": 0, + "defaultDiscount": 1, + "preferedAlternative": true + }, + "answer": { + "discount": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Ja/Nei som krav " + } + ], + "tags": [], + "sourceOriginal": "02813e43-d3d4-44cc-8ea9-88554c871903", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "02813e43-d3d4-44cc-8ea9-88554c871903", + "sourceRel": null + } + ], + "codelist": [], + "products": [ + { + "id": "42c45c24-85d7-4818-9481-45b303ad99e5", + "title": "Seter materiale", + "description": "Seter materiale", + "type": "product", + "parent": "", + "sourceOriginal": "02813e43-d3d4-44cc-8ea9-88554c871903", + "sourceRel": null, + "deletedDate": "2022-12-13T09:08:50.341Z" + }, + { + "id": "57b7cacc-efa9-4c47-bd55-c1655b4de4ac", + "title": "test", + "description": "sdfsdafsafd", + "type": "product", + "parent": "", + "sourceOriginal": "02813e43-d3d4-44cc-8ea9-88554c871903", + "sourceRel": null, + "deletedDate": "2022-09-07T08:06:46.803Z" + }, + { + "id": "cad5018b-a9f0-429e-9a4c-9b823de4a6eb", + "title": "Ja/Nei", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "02813e43-d3d4-44cc-8ea9-88554c871903", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "8b015696-107c-40f9-a352-849d30451df2", + "title": "Bekreftelse", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "02813e43-d3d4-44cc-8ea9-88554c871903", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + } + ], + "publications": [], + "tags": [], + "version": 6, + "publishedDate": "2022-12-13T10:35:39.011Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "02813e43-d3d4-44cc-8ea9-88554c871903", + "deletedDate": null + }, + { + "id": "236aa147-1b5d-41a2-b0c6-c9544ff36faf", + "title": "@l@m test", + "description": "Test prosjekt", + "needs": [ + { + "id": "62073562-cc93-4258-b3c9-14e08e699746", + "title": "Svartyper", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "02813e43-d3d4-44cc-8ea9-88554c871903", + "sourceRel": null + } + ], + "codelist": [], + "products": [ + { + "id": "42c45c24-85d7-4818-9481-45b303ad99e5", + "title": "Seter materiale", + "description": "Seter materiale", + "type": "product", + "parent": "", + "sourceOriginal": "02813e43-d3d4-44cc-8ea9-88554c871903", + "sourceRel": null, + "deletedDate": "2022-12-13T09:08:50.341Z" + }, + { + "id": "57b7cacc-efa9-4c47-bd55-c1655b4de4ac", + "title": "test", + "description": "sdfsdafsafd", + "type": "product", + "parent": "", + "sourceOriginal": "02813e43-d3d4-44cc-8ea9-88554c871903", + "sourceRel": null, + "deletedDate": "2022-09-07T08:06:46.803Z" + }, + { + "id": "cad5018b-a9f0-429e-9a4c-9b823de4a6eb", + "title": "Ja/Nei", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "02813e43-d3d4-44cc-8ea9-88554c871903", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "8b015696-107c-40f9-a352-849d30451df2", + "title": "Bekreftelse", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "02813e43-d3d4-44cc-8ea9-88554c871903", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + } + ], + "publications": [], + "tags": [], + "version": 5, + "publishedDate": "2022-12-13T10:26:33.160Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "02813e43-d3d4-44cc-8ea9-88554c871903", + "deletedDate": null + }, + { + "id": "ceaaa34b-6b2e-4d08-94d3-37a6ffd44ac0", + "title": "@l@m test", + "description": "Test prosjekt", + "needs": [ + { + "id": "62073562-cc93-4258-b3c9-14e08e699746", + "title": "Svartyper", + "description": "", + "requirements": [ + { + "id": "81ae66c9-08cb-473a-b0d2-e81e35c7d2b5", + "title": "Ja/Nei", + "description": "", + "needId": "62073562-cc93-4258-b3c9-14e08e699746", + "type": "requirement", + "variants": [ + { + "id": "1a9fe5e1-b711-42dc-b124-a643c9c4d8f2", + "requirementText": "Leveres bilen med ratt på førersiden?", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "cad5018b-a9f0-429e-9a4c-9b823de4a6eb" + ], + "questions": [ + { + "id": "22244d48-e920-475b-82c9-d0a889876268", + "type": "Q_CHECKBOX", + "config": { + "discountNonPrefered": 0, + "defaultDiscount": 1, + "preferedAlternative": true + }, + "answer": { + "discount": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Ja/Nei som krav (Default: Ja)" + }, + { + "id": "4efe4934-f7ef-4bfd-9790-3bedb52cecd3", + "requirementText": "Leveres bilen med ratt på passasjersiden?", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "cad5018b-a9f0-429e-9a4c-9b823de4a6eb" + ], + "questions": [ + { + "id": "3dfb8723-ebc3-48af-8d4a-3b31d0446e34", + "type": "Q_CHECKBOX", + "config": { + "discountNonPrefered": 0, + "defaultDiscount": 1, + "preferedAlternative": false + }, + "answer": { + "discount": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Ja/Nei som krav (Default: Nei)" + } + ], + "tags": [], + "sourceOriginal": "02813e43-d3d4-44cc-8ea9-88554c871903", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "02813e43-d3d4-44cc-8ea9-88554c871903", + "sourceRel": null + } + ], + "codelist": [], + "products": [ + { + "id": "42c45c24-85d7-4818-9481-45b303ad99e5", + "title": "Seter materiale", + "description": "Seter materiale", + "type": "product", + "parent": "", + "sourceOriginal": "02813e43-d3d4-44cc-8ea9-88554c871903", + "sourceRel": null, + "deletedDate": "2022-12-13T09:08:50.341Z" + }, + { + "id": "57b7cacc-efa9-4c47-bd55-c1655b4de4ac", + "title": "test", + "description": "sdfsdafsafd", + "type": "product", + "parent": "", + "sourceOriginal": "02813e43-d3d4-44cc-8ea9-88554c871903", + "sourceRel": null, + "deletedDate": "2022-09-07T08:06:46.803Z" + }, + { + "id": "cad5018b-a9f0-429e-9a4c-9b823de4a6eb", + "title": "Ja/Nei", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "02813e43-d3d4-44cc-8ea9-88554c871903", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "8b015696-107c-40f9-a352-849d30451df2", + "title": "Bekreftelse", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "02813e43-d3d4-44cc-8ea9-88554c871903", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + } + ], + "publications": [], + "tags": [], + "version": 4, + "publishedDate": "2022-12-13T09:17:03.975Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "02813e43-d3d4-44cc-8ea9-88554c871903", + "deletedDate": null + }, + { + "id": "4ee1d549-6634-4dbb-8067-4b03da28e593", + "title": "@l@m test", + "description": "Test prosjekt", + "needs": [ + { + "id": "62073562-cc93-4258-b3c9-14e08e699746", + "title": "Svartyper", + "description": "", + "requirements": [ + { + "id": "c44e5113-0b8c-420a-8c63-5da02d432e79", + "title": "Ja/Nei", + "description": "", + "needId": "62073562-cc93-4258-b3c9-14e08e699746", + "type": "requirement", + "variants": [ + { + "id": "4951122e-530f-4a76-bab0-285412562081", + "requirementText": "Leveres bilen med ratt på førersiden?", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "cad5018b-a9f0-429e-9a4c-9b823de4a6eb" + ], + "questions": [ + { + "id": "73f42639-966c-4076-9743-4d36ebe093fb", + "type": "Q_CHECKBOX", + "config": { + "discountNonPrefered": 10, + "defaultDiscount": 1, + "preferedAlternative": true + }, + "answer": { + "discount": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Ja/Nei som krav (Default: Ja)" + }, + { + "id": "67152756-7d91-4853-9eff-ae5852f23db1", + "requirementText": "Leveres bilen med ratt på passasjersiden?", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "cad5018b-a9f0-429e-9a4c-9b823de4a6eb" + ], + "questions": [ + { + "id": "a7577e57-f668-4570-8aa1-4cc78fa58e58", + "type": "Q_CHECKBOX", + "config": { + "discountNonPrefered": 10, + "defaultDiscount": 1, + "preferedAlternative": false + }, + "answer": { + "discount": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Ja/Nei som krav (Default: Nei)" + } + ], + "tags": [], + "sourceOriginal": "02813e43-d3d4-44cc-8ea9-88554c871903", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "02813e43-d3d4-44cc-8ea9-88554c871903", + "sourceRel": null + } + ], + "codelist": [], + "products": [ + { + "id": "42c45c24-85d7-4818-9481-45b303ad99e5", + "title": "Seter materiale", + "description": "Seter materiale", + "type": "product", + "parent": "", + "sourceOriginal": "02813e43-d3d4-44cc-8ea9-88554c871903", + "sourceRel": null, + "deletedDate": "2022-12-13T09:08:50.341Z" + }, + { + "id": "57b7cacc-efa9-4c47-bd55-c1655b4de4ac", + "title": "test", + "description": "sdfsdafsafd", + "type": "product", + "parent": "", + "sourceOriginal": "02813e43-d3d4-44cc-8ea9-88554c871903", + "sourceRel": null, + "deletedDate": "2022-09-07T08:06:46.803Z" + }, + { + "id": "cad5018b-a9f0-429e-9a4c-9b823de4a6eb", + "title": "Ja/Nei", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "02813e43-d3d4-44cc-8ea9-88554c871903", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "8b015696-107c-40f9-a352-849d30451df2", + "title": "Bekreftelse", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "02813e43-d3d4-44cc-8ea9-88554c871903", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + } + ], + "publications": [], + "tags": [], + "version": 3, + "publishedDate": "2022-12-13T09:10:13.009Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "02813e43-d3d4-44cc-8ea9-88554c871903", + "deletedDate": null + }, + { + "id": "02813e43-d3d4-44cc-8ea9-88554c871903", + "title": "@l@m test", + "description": "Test prosjekt", + "needs": [ + { + "id": "62073562-cc93-4258-b3c9-14e08e699746", + "title": "Svartyper", + "description": "", + "requirements": [ + { + "id": "4c011bb1-4a5a-461a-8c3c-65ad183cc6eb", + "title": "J/Nei", + "description": "", + "needId": "62073562-cc93-4258-b3c9-14e08e699746", + "type": "requirement", + "variants": [ + { + "id": "7ffba265-5785-4801-ae23-fbbe5a6db79d", + "requirementText": "Leveres bilen med ratt på førersiden?", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "cad5018b-a9f0-429e-9a4c-9b823de4a6eb" + ], + "questions": [ + { + "id": "18b47238-7c0f-4068-9567-7f13c191ff67", + "type": "Q_CHECKBOX", + "config": { + "discountNonPrefered": 0, + "discountPrefered": 0, + "defaultDiscount": 1, + "preferedAlternative": true + }, + "answer": { + "discount": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Ja/Nei som krav " + } + ], + "tags": [], + "sourceOriginal": "02813e43-d3d4-44cc-8ea9-88554c871903", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "02813e43-d3d4-44cc-8ea9-88554c871903", + "sourceRel": null + } + ], + "codelist": [], + "products": [ + { + "id": "42c45c24-85d7-4818-9481-45b303ad99e5", + "title": "Seter materiale", + "description": "Seter materiale", + "type": "product", + "parent": "", + "sourceOriginal": "02813e43-d3d4-44cc-8ea9-88554c871903", + "sourceRel": null, + "deletedDate": "2022-12-13T09:08:50.341Z" + }, + { + "id": "57b7cacc-efa9-4c47-bd55-c1655b4de4ac", + "title": "test", + "description": "sdfsdafsafd", + "type": "product", + "parent": "", + "sourceOriginal": "02813e43-d3d4-44cc-8ea9-88554c871903", + "sourceRel": null, + "deletedDate": "2022-09-07T08:06:46.803Z" + }, + { + "id": "cad5018b-a9f0-429e-9a4c-9b823de4a6eb", + "title": "Ja/Nei", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "02813e43-d3d4-44cc-8ea9-88554c871903", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "8b015696-107c-40f9-a352-849d30451df2", + "title": "Bekreftelse", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "02813e43-d3d4-44cc-8ea9-88554c871903", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + } + ], + "publications": [ + { + "id": "4bf0f42a-89f0-41a4-a33e-c7999ffa96af", + "bankId": "4bf0f42a-89f0-41a4-a33e-c7999ffa96af", + "comment": "Test", + "date": "2022-12-13T08:54:25.946Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-13T09:04:13.949Z" + }, + { + "id": "3ee07281-8c32-4a48-afab-e651c72e3e38", + "bankId": "3ee07281-8c32-4a48-afab-e651c72e3e38", + "comment": "test2", + "date": "2022-12-13T09:03:25.553Z", + "type": "publication", + "version": 2, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-13T09:04:10.105Z" + }, + { + "id": "4ee1d549-6634-4dbb-8067-4b03da28e593", + "bankId": "4ee1d549-6634-4dbb-8067-4b03da28e593", + "comment": "test1", + "date": "2022-12-13T09:10:13.009Z", + "type": "publication", + "version": 3, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + }, + { + "id": "ceaaa34b-6b2e-4d08-94d3-37a6ffd44ac0", + "bankId": "ceaaa34b-6b2e-4d08-94d3-37a6ffd44ac0", + "comment": "test2", + "date": "2022-12-13T09:17:03.975Z", + "type": "publication", + "version": 4, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + }, + { + "id": "236aa147-1b5d-41a2-b0c6-c9544ff36faf", + "bankId": "236aa147-1b5d-41a2-b0c6-c9544ff36faf", + "comment": "test3", + "date": "2022-12-13T10:26:33.160Z", + "type": "publication", + "version": 5, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + }, + { + "id": "3fc678f7-831a-443b-a15d-1fee89018364", + "bankId": "3fc678f7-831a-443b-a15d-1fee89018364", + "comment": "test", + "date": "2022-12-13T10:35:39.011Z", + "type": "publication", + "version": 6, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + } + ], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "33090e5c-8a48-45ec-b37a-7da1dd1acd4f", + "title": "123123", + "description": "123123321", + "needs": [ + { + "id": "54211b36-16f8-4339-936d-958454dec144", + "title": "Sikkerhet", + "description": "", + "requirements": [ + { + "id": "ed50834c-238d-4649-9525-50291a142126", + "title": "test", + "description": "", + "needId": "54211b36-16f8-4339-936d-958454dec144", + "type": "requirement", + "variants": [ + { + "id": "b5d6dae2-f25f-4aa0-a88a-3bd71c4928e5", + "requirementText": "dsadad", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "4936abc9-bd25-4fd1-a2cb-fe618127af29" + ], + "questions": [ + { + "id": "ffc57a27-1c1c-4ff6-b8cf-c0e50bd97b03", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "twdwe" + } + ], + "tags": [], + "sourceOriginal": "bc708798-1e25-4c55-9100-525b03a7f809", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "bc708798-1e25-4c55-9100-525b03a7f809", + "sourceRel": null + } + ], + "codelist": [], + "products": [ + { + "id": "4936abc9-bd25-4fd1-a2cb-fe618127af29", + "title": "test", + "description": "test", + "type": "product", + "parent": "", + "sourceOriginal": "bc708798-1e25-4c55-9100-525b03a7f809", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [], + "tags": [], + "version": 1, + "publishedDate": "2022-09-07T12:05:16.763Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "bc708798-1e25-4c55-9100-525b03a7f809", + "deletedDate": null + }, + { + "id": "bc708798-1e25-4c55-9100-525b03a7f809", + "title": "123123", + "description": "123123321", + "needs": [ + { + "id": "54211b36-16f8-4339-936d-958454dec144", + "title": "Sikkerhet", + "description": "", + "requirements": [ + { + "id": "ed50834c-238d-4649-9525-50291a142126", + "title": "test", + "description": "", + "needId": "54211b36-16f8-4339-936d-958454dec144", + "type": "requirement", + "variants": [ + { + "id": "b5d6dae2-f25f-4aa0-a88a-3bd71c4928e5", + "requirementText": "dsadad", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "4936abc9-bd25-4fd1-a2cb-fe618127af29" + ], + "questions": [], + "type": "info", + "description": "twdwe" + } + ], + "tags": [], + "sourceOriginal": "bc708798-1e25-4c55-9100-525b03a7f809", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "bc708798-1e25-4c55-9100-525b03a7f809", + "sourceRel": null + }, + { + "id": "371f9ae4-ddc7-49be-a275-80d3aeba2360", + "title": "dasdfaf", + "description": "fafaf", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "bc708798-1e25-4c55-9100-525b03a7f809", + "sourceRel": null + } + ], + "codelist": [], + "products": [ + { + "id": "4936abc9-bd25-4fd1-a2cb-fe618127af29", + "title": "test", + "description": "test", + "type": "product", + "parent": "", + "sourceOriginal": "bc708798-1e25-4c55-9100-525b03a7f809", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + } + ], + "publications": [ + { + "id": "33090e5c-8a48-45ec-b37a-7da1dd1acd4f", + "bankId": "33090e5c-8a48-45ec-b37a-7da1dd1acd4f", + "comment": "test", + "date": "2022-09-07T12:05:16.763Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + } + ], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "374b2812-f7e6-4b14-88b6-f78618d2c43b", + "title": "123", + "description": "123", + "needs": [ + { + "id": "d2475f89-d85d-4718-8f97-64ee09959d15", + "title": "Testing", + "description": "", + "requirements": [ + { + "id": "d8e565d8-74bf-46c8-b4f9-b03fd5644311", + "title": "Testesen", + "description": "", + "needId": "d2475f89-d85d-4718-8f97-64ee09959d15", + "type": "requirement", + "variants": [ + { + "id": "662d026a-9c16-4692-aaf3-eccb4b081f64", + "requirementText": "....", + "instruction": "....", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "a7e2cf06-cf95-4f39-9f7d-c1c2661b8c62" + ], + "questions": [ + { + "id": "d0fd5969-7434-4a1e-934c-4cec59051f6e", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 1, + "step": 1, + "unit": "meter", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Dette vil fungere" + }, + { + "id": "c07c4161-40b5-4f37-919b-bad1598f8bf8", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "Variant uten spm" + } + ], + "tags": [], + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null + }, + { + "id": "f1bbcda5-a6ee-4bae-b200-5f9ccb757dc1", + "title": "zfzs", + "description": "", + "needId": "d2475f89-d85d-4718-8f97-64ee09959d15", + "type": "requirement", + "variants": [], + "tags": [], + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null + }, + { + "id": "2fe0691c-0661-4994-9f2a-fc0235772acc", + "title": "Test av date/time/value", + "description": "", + "needId": "d2475f89-d85d-4718-8f97-64ee09959d15", + "type": "requirement", + "variants": [ + { + "id": "1efb9890-c39b-42f6-a722-19c24dd0d35a", + "requirementText": "Her tester vi", + "instruction": "Test", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "a1b1d18b-c184-44bb-971c-13daf0ceac1e", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [ + { + "date": null, + "score": 0 + }, + { + "date": null, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Dette er bare en test - dato" + }, + { + "id": "7766c8b5-8047-4595-b46c-fea1f639456a", + "requirementText": "test", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "b30fb946-c9d5-4fbc-b87c-902095a5c942", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [ + { + "time": null, + "score": 0 + }, + { + "time": null, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Dette er bare en test - Time" + }, + { + "id": "37bf8522-9009-4ac3-a8db-c829b0b3e2af", + "requirementText": "Teesst", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "ae46c787-bda9-4db7-bab1-07a7be22d440", + "type": "Q_SLIDER", + "config": { + "min": 10, + "max": 20, + "step": 1, + "unit": "testenheter", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 0, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": "10" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Dette er bare en test - Slider" + } + ], + "tags": [], + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null + }, + { + "id": "83a70c56-5866-45ea-a3b2-cc83790ececb", + "title": "Sikkerhet", + "description": "sikkerhetsbehov", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null + } + ], + "codelist": [], + "products": [ + { + "id": "558dc719-d88f-4bf8-9c0e-281c264611d9", + "title": "raghad product", + "description": "test", + "type": "product", + "parent": "", + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null, + "deletedDate": "2022-09-09T07:23:02.193Z" + }, + { + "id": "a7e2cf06-cf95-4f39-9f7d-c1c2661b8c62", + "title": "test", + "description": "ttttt", + "type": "product", + "parent": "", + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null, + "deletedDate": "2022-09-12T08:25:28.165Z" + }, + { + "id": "020116bc-f249-4df5-b236-644b86198fc7", + "title": "test", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null, + "deletedDate": null, + "unit": "kg" + }, + { + "id": "fb256a12-b2a4-4aee-96e0-5d4c4f7d17bb", + "title": "test", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null, + "deletedDate": "2022-09-19T08:45:53.599Z", + "unit": "stk" + }, + { + "id": "60f789b6-5f82-4c64-8dd0-9e7e04494f3a", + "title": "raghad test", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null, + "deletedDate": "2022-09-19T08:45:55.841Z", + "unit": "stk" + }, + { + "id": "d1c4c8fb-8c0a-4782-9b14-6beff24830ad", + "title": "raghad test", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null, + "deletedDate": "2022-09-19T08:46:42.538Z", + "unit": "stk" + }, + { + "id": "f3991563-3d6e-4128-bec7-f95ee027e26d", + "title": "raghad product", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "f581129d-c152-4607-a4e6-dd5b51fb8903", + "title": "testRaghad", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null, + "deletedDate": "2022-09-19T10:28:00.155Z", + "unit": "kg" + } + ], + "publications": [], + "tags": [], + "version": 6, + "publishedDate": "2022-09-19T11:00:25.473Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "deletedDate": null + }, + { + "id": "59461e89-b0b0-4f50-b4ae-a206933a82f7", + "title": "123", + "description": "123", + "needs": [ + { + "id": "d2475f89-d85d-4718-8f97-64ee09959d15", + "title": "Testing", + "description": "", + "requirements": [ + { + "id": "d8e565d8-74bf-46c8-b4f9-b03fd5644311", + "title": "Testesen", + "description": "", + "needId": "d2475f89-d85d-4718-8f97-64ee09959d15", + "type": "requirement", + "variants": [ + { + "id": "662d026a-9c16-4692-aaf3-eccb4b081f64", + "requirementText": "....", + "instruction": "....", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "a7e2cf06-cf95-4f39-9f7d-c1c2661b8c62" + ], + "questions": [ + { + "id": "d0fd5969-7434-4a1e-934c-4cec59051f6e", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 1, + "step": 1, + "unit": "meter", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Dette vil fungere" + }, + { + "id": "c07c4161-40b5-4f37-919b-bad1598f8bf8", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "Variant uten spm" + } + ], + "tags": [], + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null + }, + { + "id": "f1bbcda5-a6ee-4bae-b200-5f9ccb757dc1", + "title": "zfzs", + "description": "", + "needId": "d2475f89-d85d-4718-8f97-64ee09959d15", + "type": "requirement", + "variants": [], + "tags": [], + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null + }, + { + "id": "2fe0691c-0661-4994-9f2a-fc0235772acc", + "title": "Test av date/time/value", + "description": "", + "needId": "d2475f89-d85d-4718-8f97-64ee09959d15", + "type": "requirement", + "variants": [ + { + "id": "1efb9890-c39b-42f6-a722-19c24dd0d35a", + "requirementText": "Her tester vi", + "instruction": "Test", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "a1b1d18b-c184-44bb-971c-13daf0ceac1e", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [ + { + "date": null, + "score": 0 + }, + { + "date": null, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Dette er bare en test - dato" + }, + { + "id": "7766c8b5-8047-4595-b46c-fea1f639456a", + "requirementText": "test", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "b30fb946-c9d5-4fbc-b87c-902095a5c942", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [ + { + "time": null, + "score": 0 + }, + { + "time": null, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Dette er bare en test - Time" + }, + { + "id": "37bf8522-9009-4ac3-a8db-c829b0b3e2af", + "requirementText": "Teesst", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "ae46c787-bda9-4db7-bab1-07a7be22d440", + "type": "Q_SLIDER", + "config": { + "min": 10, + "max": 20, + "step": 1, + "unit": "testenheter", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 0, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": "10" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Dette er bare en test - Slider" + } + ], + "tags": [], + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null + }, + { + "id": "83a70c56-5866-45ea-a3b2-cc83790ececb", + "title": "Sikkerhet", + "description": "sikkerhetsbehov", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null + } + ], + "codelist": [], + "products": [ + { + "id": "558dc719-d88f-4bf8-9c0e-281c264611d9", + "title": "raghad product", + "description": "test", + "type": "product", + "parent": "", + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null, + "deletedDate": "2022-09-09T07:23:02.193Z" + }, + { + "id": "a7e2cf06-cf95-4f39-9f7d-c1c2661b8c62", + "title": "test", + "description": "ttttt", + "type": "product", + "parent": "", + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null, + "deletedDate": "2022-09-12T08:25:28.165Z" + } + ], + "publications": [], + "tags": [], + "version": 5, + "publishedDate": "2022-09-13T14:42:33.785Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "deletedDate": null + }, + { + "id": "198f8b37-562a-4d67-b7c2-da94a22b4f42", + "title": "123", + "description": "123", + "needs": [ + { + "id": "d2475f89-d85d-4718-8f97-64ee09959d15", + "title": "Testing", + "description": "", + "requirements": [ + { + "id": "d8e565d8-74bf-46c8-b4f9-b03fd5644311", + "title": "Testesen", + "description": "", + "needId": "d2475f89-d85d-4718-8f97-64ee09959d15", + "type": "requirement", + "variants": [ + { + "id": "662d026a-9c16-4692-aaf3-eccb4b081f64", + "requirementText": "....", + "instruction": "....", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "a7e2cf06-cf95-4f39-9f7d-c1c2661b8c62" + ], + "questions": [ + { + "id": "d0fd5969-7434-4a1e-934c-4cec59051f6e", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 1, + "step": 1, + "unit": "meter", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Dette vil fungere" + }, + { + "id": "c07c4161-40b5-4f37-919b-bad1598f8bf8", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "Variant uten spm" + } + ], + "tags": [], + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null + }, + { + "id": "f1bbcda5-a6ee-4bae-b200-5f9ccb757dc1", + "title": "zfzs", + "description": "", + "needId": "d2475f89-d85d-4718-8f97-64ee09959d15", + "type": "requirement", + "variants": [], + "tags": [], + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null + }, + { + "id": "83a70c56-5866-45ea-a3b2-cc83790ececb", + "title": "Sikkerhet", + "description": "sikkerhetsbehov", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null + } + ], + "codelist": [], + "products": [ + { + "id": "558dc719-d88f-4bf8-9c0e-281c264611d9", + "title": "raghad product", + "description": "test", + "type": "product", + "parent": "", + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null, + "deletedDate": "2022-09-09T07:23:02.193Z" + }, + { + "id": "a7e2cf06-cf95-4f39-9f7d-c1c2661b8c62", + "title": "test", + "description": "ttttt", + "type": "product", + "parent": "", + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null, + "deletedDate": "2022-09-12T08:25:28.165Z" + } + ], + "publications": [], + "tags": [], + "version": 4, + "publishedDate": "2022-09-13T11:38:36.907Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "deletedDate": null + }, + { + "id": "2ddcd418-3f3b-4cd0-9cac-9dfdc245ce00", + "title": "123", + "description": "123", + "needs": [ + { + "id": "d2475f89-d85d-4718-8f97-64ee09959d15", + "title": "Testing", + "description": "", + "requirements": [ + { + "id": "d8e565d8-74bf-46c8-b4f9-b03fd5644311", + "title": "Testesen", + "description": "", + "needId": "d2475f89-d85d-4718-8f97-64ee09959d15", + "type": "requirement", + "variants": [ + { + "id": "662d026a-9c16-4692-aaf3-eccb4b081f64", + "requirementText": "....", + "instruction": "....", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "03364c97-a04e-4485-87e8-337aed3acd81", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Dette vil fungere" + }, + { + "id": "c07c4161-40b5-4f37-919b-bad1598f8bf8", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "Variant uten spm" + } + ], + "tags": [], + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null + }, + { + "id": "f1bbcda5-a6ee-4bae-b200-5f9ccb757dc1", + "title": "zfzs", + "description": "", + "needId": "d2475f89-d85d-4718-8f97-64ee09959d15", + "type": "requirement", + "variants": [], + "tags": [], + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null + }, + { + "id": "83a70c56-5866-45ea-a3b2-cc83790ececb", + "title": "Sikkerhet", + "description": "sikkerhetsbehov", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null + } + ], + "codelist": [], + "products": [ + { + "id": "558dc719-d88f-4bf8-9c0e-281c264611d9", + "title": "raghad product", + "description": "test", + "type": "product", + "parent": "", + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null, + "deletedDate": "2022-09-09T07:23:02.193Z" + } + ], + "publications": [], + "tags": [], + "version": 3, + "publishedDate": "2022-09-12T07:39:25.073Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "deletedDate": null + }, + { + "id": "6c1830bd-ad94-4b90-8eca-7dfd3577a777", + "title": "123", + "description": "123", + "needs": [ + { + "id": "d2475f89-d85d-4718-8f97-64ee09959d15", + "title": "Testing", + "description": "", + "requirements": [ + { + "id": "d8e565d8-74bf-46c8-b4f9-b03fd5644311", + "title": "Testesen", + "description": "", + "needId": "d2475f89-d85d-4718-8f97-64ee09959d15", + "type": "requirement", + "variants": [ + { + "id": "662d026a-9c16-4692-aaf3-eccb4b081f64", + "requirementText": "....", + "instruction": "....", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "03364c97-a04e-4485-87e8-337aed3acd81", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Dette vil fungere" + }, + { + "id": "c07c4161-40b5-4f37-919b-bad1598f8bf8", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "Variant uten spm" + } + ], + "tags": [], + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null + }, + { + "id": "f1bbcda5-a6ee-4bae-b200-5f9ccb757dc1", + "title": "zfzs", + "description": "", + "needId": "d2475f89-d85d-4718-8f97-64ee09959d15", + "type": "requirement", + "variants": [], + "tags": [], + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null + }, + { + "id": "64ceb840-de39-4afe-9f10-03a08038da5f", + "title": "Sikerhet", + "description": "Sikerhetsbehov", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null + } + ], + "codelist": [], + "products": [], + "publications": [], + "tags": [], + "version": 2, + "publishedDate": "2022-09-08T07:36:22.903Z", + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "deletedDate": null + }, + { + "id": "4e526435-0a64-4010-9a9c-1915ed3106bf", + "title": "123", + "description": "123", + "needs": [ + { + "id": "d2475f89-d85d-4718-8f97-64ee09959d15", + "title": "Testing", + "description": "", + "requirements": [ + { + "id": "d8e565d8-74bf-46c8-b4f9-b03fd5644311", + "title": "Testesen", + "description": "", + "needId": "d2475f89-d85d-4718-8f97-64ee09959d15", + "type": "requirement", + "variants": [ + { + "id": "662d026a-9c16-4692-aaf3-eccb4b081f64", + "requirementText": "....", + "instruction": "....", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "6181a0de-fa43-451c-98cb-a39cfd7d2578", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Dette vil fungere" + } + ], + "tags": [], + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null + } + ], + "codelist": [], + "products": [], + "publications": [], + "tags": [], + "version": 1, + "publishedDate": "2022-09-01T11:58:26.629Z", + "deletedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "cde8a200-99c9-4daf-8896-6bfbf172959a" + }, + { + "id": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "title": "123", + "description": "123", + "needs": [ + { + "id": "d2475f89-d85d-4718-8f97-64ee09959d15", + "title": "Testing", + "description": "", + "requirements": [ + { + "id": "d8e565d8-74bf-46c8-b4f9-b03fd5644311", + "title": "Testesen", + "description": "", + "needId": "d2475f89-d85d-4718-8f97-64ee09959d15", + "type": "requirement", + "variants": [ + { + "id": "662d026a-9c16-4692-aaf3-eccb4b081f64", + "requirementText": "....", + "instruction": "....", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "a7e2cf06-cf95-4f39-9f7d-c1c2661b8c62" + ], + "questions": [ + { + "id": "d0fd5969-7434-4a1e-934c-4cec59051f6e", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 1, + "step": 1, + "unit": "meter", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Dette vil fungere" + }, + { + "id": "c07c4161-40b5-4f37-919b-bad1598f8bf8", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "Variant uten spm" + } + ], + "tags": [], + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null + }, + { + "id": "f1bbcda5-a6ee-4bae-b200-5f9ccb757dc1", + "title": "zfzs", + "description": "", + "needId": "d2475f89-d85d-4718-8f97-64ee09959d15", + "type": "requirement", + "variants": [], + "tags": [], + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null + }, + { + "id": "2fe0691c-0661-4994-9f2a-fc0235772acc", + "title": "Test av date/time/value", + "description": "", + "needId": "d2475f89-d85d-4718-8f97-64ee09959d15", + "type": "requirement", + "variants": [ + { + "id": "1efb9890-c39b-42f6-a722-19c24dd0d35a", + "requirementText": "Her tester vi", + "instruction": "Test", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "a1b1d18b-c184-44bb-971c-13daf0ceac1e", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [ + { + "date": null, + "score": 0 + }, + { + "date": null, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Dette er bare en test - dato" + }, + { + "id": "7766c8b5-8047-4595-b46c-fea1f639456a", + "requirementText": "test", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "b30fb946-c9d5-4fbc-b87c-902095a5c942", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [ + { + "time": null, + "score": 0 + }, + { + "time": null, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Dette er bare en test - Time" + }, + { + "id": "37bf8522-9009-4ac3-a8db-c829b0b3e2af", + "requirementText": "Teesst", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "ae46c787-bda9-4db7-bab1-07a7be22d440", + "type": "Q_SLIDER", + "config": { + "min": 10, + "max": 20, + "step": 1, + "unit": "testenheter", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 0, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": "10" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Dette er bare en test - Slider" + } + ], + "tags": [], + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null + }, + { + "id": "eb3d677a-bdf6-4c22-8bfc-f136975f8195", + "title": "Test", + "description": "", + "needId": "d2475f89-d85d-4718-8f97-64ee09959d15", + "type": "requirement", + "variants": [], + "tags": [], + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null + }, + { + "id": "83a70c56-5866-45ea-a3b2-cc83790ececb", + "title": "Sikkerhet", + "description": "sikkerhetsbehov", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null + } + ], + "codelist": [], + "products": [ + { + "id": "558dc719-d88f-4bf8-9c0e-281c264611d9", + "title": "raghad product", + "description": "test", + "type": "product", + "parent": "", + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null, + "deletedDate": "2022-09-09T07:23:02.193Z" + }, + { + "id": "a7e2cf06-cf95-4f39-9f7d-c1c2661b8c62", + "title": "test", + "description": "ttttt", + "type": "product", + "parent": "", + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null, + "deletedDate": "2022-09-12T08:25:28.165Z" + }, + { + "id": "020116bc-f249-4df5-b236-644b86198fc7", + "title": "test", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null, + "deletedDate": null, + "unit": "kg" + }, + { + "id": "fb256a12-b2a4-4aee-96e0-5d4c4f7d17bb", + "title": "test", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null, + "deletedDate": "2022-09-19T08:45:53.599Z", + "unit": "stk" + }, + { + "id": "60f789b6-5f82-4c64-8dd0-9e7e04494f3a", + "title": "raghad test", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null, + "deletedDate": "2022-09-19T08:45:55.841Z", + "unit": "stk" + }, + { + "id": "d1c4c8fb-8c0a-4782-9b14-6beff24830ad", + "title": "raghad test", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null, + "deletedDate": "2022-09-19T08:46:42.538Z", + "unit": "stk" + }, + { + "id": "f3991563-3d6e-4128-bec7-f95ee027e26d", + "title": "raghad product", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "f581129d-c152-4607-a4e6-dd5b51fb8903", + "title": "testRaghad", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null, + "deletedDate": "2022-09-19T10:28:00.155Z", + "unit": "kg" + }, + { + "id": "0a77a846-e637-459d-a31b-b35b6f8e28c8", + "title": "raghad test product", + "description": "ssdsd", + "type": "product", + "parent": "", + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null, + "deletedDate": "2022-09-19T18:54:42.490Z", + "unit": "stk" + }, + { + "id": "450ccc9c-a294-4224-999b-ca7291392934", + "title": "cdcd", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null, + "deletedDate": "2022-10-17T08:33:11.150Z", + "unit": "stk" + } + ], + "publications": [ + { + "id": "4e526435-0a64-4010-9a9c-1915ed3106bf", + "bankId": "4e526435-0a64-4010-9a9c-1915ed3106bf", + "comment": "Test", + "date": "2022-09-01T11:58:26.629Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "6c1830bd-ad94-4b90-8eca-7dfd3577a777", + "bankId": "6c1830bd-ad94-4b90-8eca-7dfd3577a777", + "comment": "test 2", + "date": "2022-09-08T07:36:22.903Z", + "type": "publication", + "version": 2, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + }, + { + "id": "2ddcd418-3f3b-4cd0-9cac-9dfdc245ce00", + "bankId": "2ddcd418-3f3b-4cd0-9cac-9dfdc245ce00", + "comment": "versjon3", + "date": "2022-09-12T07:39:25.073Z", + "type": "publication", + "version": 3, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + }, + { + "id": "198f8b37-562a-4d67-b7c2-da94a22b4f42", + "bankId": "198f8b37-562a-4d67-b7c2-da94a22b4f42", + "comment": "Test", + "date": "2022-09-13T11:38:36.907Z", + "type": "publication", + "version": 4, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + }, + { + "id": "59461e89-b0b0-4f50-b4ae-a206933a82f7", + "bankId": "59461e89-b0b0-4f50-b4ae-a206933a82f7", + "comment": "Test 5", + "date": "2022-09-13T14:42:33.785Z", + "type": "publication", + "version": 5, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + }, + { + "id": "374b2812-f7e6-4b14-88b6-f78618d2c43b", + "bankId": "374b2812-f7e6-4b14-88b6-f78618d2c43b", + "comment": "raghad version", + "date": "2022-09-19T11:00:25.473Z", + "type": "publication", + "version": 6, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + } + ], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + } +] \ No newline at end of file diff --git a/src/test/resources/projects.json b/src/test/resources/projects.json new file mode 100644 index 00000000..ad4c8e96 --- /dev/null +++ b/src/test/resources/projects.json @@ -0,0 +1,27118 @@ +[ + { + "id": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "title": "123", + "description": "123", + "needs": [ + { + "id": "d2475f89-d85d-4718-8f97-64ee09959d15", + "title": "Testing", + "description": "", + "requirements": [ + { + "id": "d8e565d8-74bf-46c8-b4f9-b03fd5644311", + "title": "Testesen", + "description": "", + "needId": "d2475f89-d85d-4718-8f97-64ee09959d15", + "type": "requirement", + "variants": [ + { + "id": "662d026a-9c16-4692-aaf3-eccb4b081f64", + "requirementText": "....", + "instruction": "....", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "a7e2cf06-cf95-4f39-9f7d-c1c2661b8c62" + ], + "questions": [ + { + "id": "d0fd5969-7434-4a1e-934c-4cec59051f6e", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 1, + "step": 1, + "unit": "meter", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Dette vil fungere" + }, + { + "id": "c07c4161-40b5-4f37-919b-bad1598f8bf8", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "Variant uten spm" + } + ], + "tags": [], + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null + }, + { + "id": "f1bbcda5-a6ee-4bae-b200-5f9ccb757dc1", + "title": "zfzs", + "description": "", + "needId": "d2475f89-d85d-4718-8f97-64ee09959d15", + "type": "requirement", + "variants": [], + "tags": [], + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null + }, + { + "id": "2fe0691c-0661-4994-9f2a-fc0235772acc", + "title": "Test av date/time/value", + "description": "", + "needId": "d2475f89-d85d-4718-8f97-64ee09959d15", + "type": "requirement", + "variants": [ + { + "id": "1efb9890-c39b-42f6-a722-19c24dd0d35a", + "requirementText": "Her tester vi", + "instruction": "Test", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "a1b1d18b-c184-44bb-971c-13daf0ceac1e", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [ + { + "date": null, + "score": 0 + }, + { + "date": null, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Dette er bare en test - dato" + }, + { + "id": "7766c8b5-8047-4595-b46c-fea1f639456a", + "requirementText": "test", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "b30fb946-c9d5-4fbc-b87c-902095a5c942", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [ + { + "time": null, + "score": 0 + }, + { + "time": null, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Dette er bare en test - Time" + }, + { + "id": "37bf8522-9009-4ac3-a8db-c829b0b3e2af", + "requirementText": "Teesst", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "ae46c787-bda9-4db7-bab1-07a7be22d440", + "type": "Q_SLIDER", + "config": { + "min": 10, + "max": 20, + "step": 1, + "unit": "testenheter", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 0, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": "10" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Dette er bare en test - Slider" + } + ], + "tags": [], + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null + }, + { + "id": "eb3d677a-bdf6-4c22-8bfc-f136975f8195", + "title": "Test", + "description": "", + "needId": "d2475f89-d85d-4718-8f97-64ee09959d15", + "type": "requirement", + "variants": [], + "tags": [], + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null + }, + { + "id": "83a70c56-5866-45ea-a3b2-cc83790ececb", + "title": "Sikkerhet", + "description": "sikkerhetsbehov", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null + } + ], + "codelist": [], + "products": [ + { + "id": "558dc719-d88f-4bf8-9c0e-281c264611d9", + "title": "raghad product", + "description": "test", + "type": "product", + "parent": "", + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null, + "deletedDate": "2022-09-09T07:23:02.193Z" + }, + { + "id": "a7e2cf06-cf95-4f39-9f7d-c1c2661b8c62", + "title": "test", + "description": "ttttt", + "type": "product", + "parent": "", + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null, + "deletedDate": "2022-09-12T08:25:28.165Z" + }, + { + "id": "020116bc-f249-4df5-b236-644b86198fc7", + "title": "test", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null, + "deletedDate": null, + "unit": "kg" + }, + { + "id": "fb256a12-b2a4-4aee-96e0-5d4c4f7d17bb", + "title": "test", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null, + "deletedDate": "2022-09-19T08:45:53.599Z", + "unit": "stk" + }, + { + "id": "60f789b6-5f82-4c64-8dd0-9e7e04494f3a", + "title": "raghad test", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null, + "deletedDate": "2022-09-19T08:45:55.841Z", + "unit": "stk" + }, + { + "id": "d1c4c8fb-8c0a-4782-9b14-6beff24830ad", + "title": "raghad test", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null, + "deletedDate": "2022-09-19T08:46:42.538Z", + "unit": "stk" + }, + { + "id": "f3991563-3d6e-4128-bec7-f95ee027e26d", + "title": "raghad product", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "f581129d-c152-4607-a4e6-dd5b51fb8903", + "title": "testRaghad", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null, + "deletedDate": "2022-09-19T10:28:00.155Z", + "unit": "kg" + }, + { + "id": "0a77a846-e637-459d-a31b-b35b6f8e28c8", + "title": "raghad test product", + "description": "ssdsd", + "type": "product", + "parent": "", + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null, + "deletedDate": "2022-09-19T18:54:42.490Z", + "unit": "stk" + }, + { + "id": "450ccc9c-a294-4224-999b-ca7291392934", + "title": "cdcd", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "cde8a200-99c9-4daf-8896-6bfbf172959a", + "sourceRel": null, + "deletedDate": "2022-10-17T08:33:11.150Z", + "unit": "stk" + } + ], + "publications": [ + { + "id": "4e526435-0a64-4010-9a9c-1915ed3106bf", + "bankId": "4e526435-0a64-4010-9a9c-1915ed3106bf", + "comment": "Test", + "date": "2022-09-01T11:58:26.629Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "6c1830bd-ad94-4b90-8eca-7dfd3577a777", + "bankId": "6c1830bd-ad94-4b90-8eca-7dfd3577a777", + "comment": "test 2", + "date": "2022-09-08T07:36:22.903Z", + "type": "publication", + "version": 2, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + }, + { + "id": "2ddcd418-3f3b-4cd0-9cac-9dfdc245ce00", + "bankId": "2ddcd418-3f3b-4cd0-9cac-9dfdc245ce00", + "comment": "versjon3", + "date": "2022-09-12T07:39:25.073Z", + "type": "publication", + "version": 3, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + }, + { + "id": "198f8b37-562a-4d67-b7c2-da94a22b4f42", + "bankId": "198f8b37-562a-4d67-b7c2-da94a22b4f42", + "comment": "Test", + "date": "2022-09-13T11:38:36.907Z", + "type": "publication", + "version": 4, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + }, + { + "id": "59461e89-b0b0-4f50-b4ae-a206933a82f7", + "bankId": "59461e89-b0b0-4f50-b4ae-a206933a82f7", + "comment": "Test 5", + "date": "2022-09-13T14:42:33.785Z", + "type": "publication", + "version": 5, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + }, + { + "id": "374b2812-f7e6-4b14-88b6-f78618d2c43b", + "bankId": "374b2812-f7e6-4b14-88b6-f78618d2c43b", + "comment": "raghad version", + "date": "2022-09-19T11:00:25.473Z", + "type": "publication", + "version": 6, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + } + ], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "bc708798-1e25-4c55-9100-525b03a7f809", + "title": "123123", + "description": "123123321", + "needs": [ + { + "id": "54211b36-16f8-4339-936d-958454dec144", + "title": "Sikkerhet", + "description": "", + "requirements": [ + { + "id": "ed50834c-238d-4649-9525-50291a142126", + "title": "test", + "description": "", + "needId": "54211b36-16f8-4339-936d-958454dec144", + "type": "requirement", + "variants": [ + { + "id": "b5d6dae2-f25f-4aa0-a88a-3bd71c4928e5", + "requirementText": "dsadad", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "4936abc9-bd25-4fd1-a2cb-fe618127af29" + ], + "questions": [], + "type": "info", + "description": "twdwe" + } + ], + "tags": [], + "sourceOriginal": "bc708798-1e25-4c55-9100-525b03a7f809", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "bc708798-1e25-4c55-9100-525b03a7f809", + "sourceRel": null + }, + { + "id": "371f9ae4-ddc7-49be-a275-80d3aeba2360", + "title": "dasdfaf", + "description": "fafaf", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "bc708798-1e25-4c55-9100-525b03a7f809", + "sourceRel": null + } + ], + "codelist": [], + "products": [ + { + "id": "4936abc9-bd25-4fd1-a2cb-fe618127af29", + "title": "test", + "description": "test", + "type": "product", + "parent": "", + "sourceOriginal": "bc708798-1e25-4c55-9100-525b03a7f809", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + } + ], + "publications": [ + { + "id": "33090e5c-8a48-45ec-b37a-7da1dd1acd4f", + "bankId": "33090e5c-8a48-45ec-b37a-7da1dd1acd4f", + "comment": "test", + "date": "2022-09-07T12:05:16.763Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + } + ], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "02813e43-d3d4-44cc-8ea9-88554c871903", + "title": "@l@m test", + "description": "Test prosjekt", + "needs": [ + { + "id": "62073562-cc93-4258-b3c9-14e08e699746", + "title": "Svartyper", + "description": "", + "requirements": [ + { + "id": "4c011bb1-4a5a-461a-8c3c-65ad183cc6eb", + "title": "J/Nei", + "description": "", + "needId": "62073562-cc93-4258-b3c9-14e08e699746", + "type": "requirement", + "variants": [ + { + "id": "7ffba265-5785-4801-ae23-fbbe5a6db79d", + "requirementText": "Leveres bilen med ratt på førersiden?", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "cad5018b-a9f0-429e-9a4c-9b823de4a6eb" + ], + "questions": [ + { + "id": "18b47238-7c0f-4068-9567-7f13c191ff67", + "type": "Q_CHECKBOX", + "config": { + "discountNonPrefered": 0, + "discountPrefered": 0, + "defaultDiscount": 1, + "preferedAlternative": true + }, + "answer": { + "discount": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Ja/Nei som krav " + } + ], + "tags": [], + "sourceOriginal": "02813e43-d3d4-44cc-8ea9-88554c871903", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "02813e43-d3d4-44cc-8ea9-88554c871903", + "sourceRel": null + } + ], + "codelist": [], + "products": [ + { + "id": "42c45c24-85d7-4818-9481-45b303ad99e5", + "title": "Seter materiale", + "description": "Seter materiale", + "type": "product", + "parent": "", + "sourceOriginal": "02813e43-d3d4-44cc-8ea9-88554c871903", + "sourceRel": null, + "deletedDate": "2022-12-13T09:08:50.341Z" + }, + { + "id": "57b7cacc-efa9-4c47-bd55-c1655b4de4ac", + "title": "test", + "description": "sdfsdafsafd", + "type": "product", + "parent": "", + "sourceOriginal": "02813e43-d3d4-44cc-8ea9-88554c871903", + "sourceRel": null, + "deletedDate": "2022-09-07T08:06:46.803Z" + }, + { + "id": "cad5018b-a9f0-429e-9a4c-9b823de4a6eb", + "title": "Ja/Nei", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "02813e43-d3d4-44cc-8ea9-88554c871903", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "8b015696-107c-40f9-a352-849d30451df2", + "title": "Bekreftelse", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "02813e43-d3d4-44cc-8ea9-88554c871903", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + } + ], + "publications": [ + { + "id": "4bf0f42a-89f0-41a4-a33e-c7999ffa96af", + "bankId": "4bf0f42a-89f0-41a4-a33e-c7999ffa96af", + "comment": "Test", + "date": "2022-12-13T08:54:25.946Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-13T09:04:13.949Z" + }, + { + "id": "3ee07281-8c32-4a48-afab-e651c72e3e38", + "bankId": "3ee07281-8c32-4a48-afab-e651c72e3e38", + "comment": "test2", + "date": "2022-12-13T09:03:25.553Z", + "type": "publication", + "version": 2, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-13T09:04:10.105Z" + }, + { + "id": "4ee1d549-6634-4dbb-8067-4b03da28e593", + "bankId": "4ee1d549-6634-4dbb-8067-4b03da28e593", + "comment": "test1", + "date": "2022-12-13T09:10:13.009Z", + "type": "publication", + "version": 3, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + }, + { + "id": "ceaaa34b-6b2e-4d08-94d3-37a6ffd44ac0", + "bankId": "ceaaa34b-6b2e-4d08-94d3-37a6ffd44ac0", + "comment": "test2", + "date": "2022-12-13T09:17:03.975Z", + "type": "publication", + "version": 4, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + }, + { + "id": "236aa147-1b5d-41a2-b0c6-c9544ff36faf", + "bankId": "236aa147-1b5d-41a2-b0c6-c9544ff36faf", + "comment": "test3", + "date": "2022-12-13T10:26:33.160Z", + "type": "publication", + "version": 5, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + }, + { + "id": "3fc678f7-831a-443b-a15d-1fee89018364", + "bankId": "3fc678f7-831a-443b-a15d-1fee89018364", + "comment": "test", + "date": "2022-12-13T10:35:39.011Z", + "type": "publication", + "version": 6, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + } + ], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "cb8246ca-556f-44c1-a99c-d960dd4b7f03", + "title": "Alle feltene for Ken", + "description": "Beskrivelse", + "needs": [ + { + "id": "7ec67d41-6f3c-4820-bf03-5e51178fc8d4", + "title": "Test", + "description": "Testbehov", + "requirements": [ + { + "id": "9fa122aa-7543-41ed-86eb-fa6276f08eb2", + "title": "Kravtittel", + "description": "", + "needId": "7ec67d41-6f3c-4820-bf03-5e51178fc8d4", + "type": "requirement", + "variants": [], + "tags": [], + "sourceOriginal": "cb8246ca-556f-44c1-a99c-d960dd4b7f03", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "cb8246ca-556f-44c1-a99c-d960dd4b7f03", + "sourceRel": null + } + ], + "codelist": [], + "products": [], + "publications": [], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "title": "Alle svartyper", + "description": "Prosjekt for testing og verifikasjon av alle svartyper", + "needs": [ + { + "id": "77ed20aa-8d4d-4458-9a81-f3850b1a3e30", + "title": "Svartyper", + "description": "", + "requirements": [ + { + "id": "c83ad487-085f-4d9b-9fe1-5edc4e5d7dc8", + "title": "Bekreftelse", + "description": "", + "needId": "77ed20aa-8d4d-4458-9a81-f3850b1a3e30", + "type": "requirement", + "variants": [ + { + "id": "7ca6e453-73b6-424d-b249-d912442036ba", + "requirementText": "Kravbank skal ha støtte for flere måter å besvare krav.", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "d4701a64-0b1a-44f8-a81e-a776a365435c" + ], + "questions": [ + { + "id": "f25a1694-e92c-418d-b38a-381c4d5a1347", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Bekreftelse som krav" + }, + { + "id": "ad745084-88cc-4882-a13f-36e5060bb3d1", + "requirementText": "Oppdragsgiver har rammeavtale på dekk som benyttes i tilfeller hvor tilbudt dekk ikke dekker behovet.", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "d4701a64-0b1a-44f8-a81e-a776a365435c" + ], + "questions": [], + "type": "info", + "description": "Bekreftelse som informasjon" + } + ], + "tags": [], + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null + }, + { + "id": "7796a0fd-33f8-4186-bc7d-f60229eeb7bc", + "title": "Ja/Nei", + "description": "", + "needId": "77ed20aa-8d4d-4458-9a81-f3850b1a3e30", + "type": "requirement", + "variants": [ + { + "id": "248a09ae-2150-472e-b9fd-6390dc04bef7", + "requirementText": "Leveres bilen med ratt på førersiden?", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "ebfa8440-dfb2-44cc-94ed-b6ea4a7cc449" + ], + "questions": [ + { + "id": "9aa0bb35-efa7-41ab-9ab0-06a766387d20", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Ja/Nei som krav (Default: Ja)" + }, + { + "id": "a3f3ff22-544c-4323-955e-59e753586545", + "requirementText": "Leveres bilen med ratt på passasjersiden?", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "ebfa8440-dfb2-44cc-94ed-b6ea4a7cc449" + ], + "questions": [ + { + "id": "0b6c8bb6-0b67-4671-8da7-4b39c2d6ffe0", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": false + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Ja/Nei som krav (Default: Nei)" + }, + { + "id": "c6259b6a-ee2c-4e24-a47b-bbe2adb18cff", + "requirementText": "Skal bilen være nyvasket før levering?", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "ebfa8440-dfb2-44cc-94ed-b6ea4a7cc449" + ], + "questions": [ + { + "id": "ab951d1f-2c34-4aed-a777-324ce942a4aa", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Ja/Nei som informasjon (Default: Ja)" + }, + { + "id": "c2c9ec4d-03c8-4439-95a1-6b5cfe9d57eb", + "requirementText": "Kan oppdragsgiver akseptere erstatningsbil med færre seter når anskaffet bil er på service?", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "ebfa8440-dfb2-44cc-94ed-b6ea4a7cc449" + ], + "questions": [ + { + "id": "f57c1590-7d44-48d5-897e-f7cb556a52d0", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": false + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Ja/Nei som informasjon (Default: Nei)" + } + ], + "tags": [], + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null + }, + { + "id": "79e07b49-6676-422e-a1bd-d6aa7a2f6697", + "title": "Tekst", + "description": "", + "needId": "77ed20aa-8d4d-4458-9a81-f3850b1a3e30", + "type": "requirement", + "variants": [ + { + "id": "17bddaf3-fcfb-482d-ba54-ead2c6d9d2fe", + "requirementText": "Oppgi type vinterdekk (leverandør, kvalitet, med/uten pigg)", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "adfd64da-ef7e-4018-a40c-07ed4cadc764" + ], + "questions": [ + { + "id": "dc378788-93ff-437f-ad24-0aeeb4bea911", + "type": "Q_TEXT", + "config": { + "max": 1000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tekst som krav" + }, + { + "id": "2d997200-72d5-481e-b206-d4a35c7e1434", + "requirementText": "Lokasjon for levering av anskaffet bil:", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "adfd64da-ef7e-4018-a40c-07ed4cadc764" + ], + "questions": [ + { + "id": "8b764903-26a9-4133-a77e-7e9b6fa812f4", + "type": "Q_TEXT", + "config": { + "max": 1000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Tekst som informasjon" + } + ], + "tags": [], + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null + }, + { + "id": "0cf2f3f1-7789-4beb-bffe-3a77bbe0a699", + "title": "Verdi", + "description": "", + "needId": "77ed20aa-8d4d-4458-9a81-f3850b1a3e30", + "type": "requirement", + "variants": [ + { + "id": "40da1809-2b7f-4516-b916-d572332b473b", + "requirementText": "Oppgi mendge RAM maskinen leveres med?", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "89d017b1-01ad-4945-a069-19c3fe6704f9" + ], + "questions": [ + { + "id": "260acb73-f0db-4c77-8595-1b2133832acd", + "type": "Q_SLIDER", + "config": { + "min": 4, + "max": 32, + "step": 4, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": "4" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Verdi som krav" + }, + { + "id": "799b11e7-6df6-4a16-aac1-7be583755a63", + "requirementText": "Minimum antall HDMI-porter på maskinen:", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "89d017b1-01ad-4945-a069-19c3fe6704f9" + ], + "questions": [ + { + "id": "e9ef8b7c-4709-4561-9015-96be0714b1e0", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 8, + "step": 1, + "unit": "porter", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": "1" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Verdi som informasjon" + } + ], + "tags": [], + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null + }, + { + "id": "8ac4e5a4-737c-4bf6-9994-9d7632746187", + "title": "Dato", + "description": "", + "needId": "77ed20aa-8d4d-4458-9a81-f3850b1a3e30", + "type": "requirement", + "variants": [ + { + "id": "5c49f6f3-b055-4651-af20-30e61a34b8e9", + "requirementText": "Oppgi tidligste dato for levering av kjøretøy.", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "b50fae24-727d-404b-994e-cd32a7d75407" + ], + "questions": [ + { + "id": "e09e8ee7-6bc6-4811-b533-13199e95bd30", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Dato som krav" + }, + { + "id": "bc7b0011-0ec4-4a95-8949-913b3b2bbb81", + "requirementText": "Oppgi tidsrom for levering av kjørtøy.", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "b50fae24-727d-404b-994e-cd32a7d75407" + ], + "questions": [ + { + "id": "b8c0261f-510d-46b3-a769-2b1dbf77a0a2", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Dato med periode som krav" + }, + { + "id": "da549f43-3c7e-4b24-bacb-8200bc3dd355", + "requirementText": "Dato for første dag av samlingen:", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "b50fae24-727d-404b-994e-cd32a7d75407" + ], + "questions": [ + { + "id": "4bbfe9b4-3642-4ef4-a6b1-50581b95be43", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Dato som informasjon" + }, + { + "id": "bbfaa542-0a5e-4e47-a49b-250a9a02a7dc", + "requirementText": "Oppgi periode for samlingen", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "b50fae24-727d-404b-994e-cd32a7d75407" + ], + "questions": [ + { + "id": "19e8d852-a363-4982-8dc8-1144612169f1", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Dato med periode som informasjon" + } + ], + "tags": [], + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null + }, + { + "id": "b8033e4e-8cb9-4a52-b5b1-2300867979cc", + "title": "Tidspunkt", + "description": "", + "needId": "77ed20aa-8d4d-4458-9a81-f3850b1a3e30", + "type": "requirement", + "variants": [ + { + "id": "053770a5-5b7c-412c-b367-6db5cc7fed1d", + "requirementText": "Oppgi tidspunkt for lunsj:", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "269b119a-2799-42fb-9ecc-bbb94e82bab1" + ], + "questions": [ + { + "id": "b765ad1b-05ff-42ce-bc07-69e43d6a1e05", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tidspunkt som krav" + }, + { + "id": "e01c721d-fd0d-4910-af2f-4f68691fed7d", + "requirementText": "Oppgi i hvilket tidsrom verkstedet er tilgjengelig for henvendelser på hverdager.", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "269b119a-2799-42fb-9ecc-bbb94e82bab1" + ], + "questions": [ + { + "id": "4e63ca83-625c-4608-b6f5-fc82c5e23cb3", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tidspunkt med periode som krav" + }, + { + "id": "0632310e-1de6-4afe-895c-19c7270a5a89", + "requirementText": "Tidspunkt for lunsj:", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "269b119a-2799-42fb-9ecc-bbb94e82bab1" + ], + "questions": [ + { + "id": "9b8726ca-850f-46ff-8e41-108bf045e91b", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Tidspunkt som informasjon" + }, + { + "id": "5a8fb1f5-9713-4ea0-a3f3-f30f1355eec3", + "requirementText": "Ønsket tidspunkt for tilgang til lunsj-buffet:", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "269b119a-2799-42fb-9ecc-bbb94e82bab1" + ], + "questions": [ + { + "id": "c5817ac2-42ff-4512-bcbd-b46242578ef6", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Tidspunkt med periode som informasjon" + } + ], + "tags": [], + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null + }, + { + "id": "dd7245dd-026f-4c37-b03a-f6c6d39d48ea", + "title": "Kodeliste", + "description": "", + "needId": "77ed20aa-8d4d-4458-9a81-f3850b1a3e30", + "type": "requirement", + "variants": [ + { + "id": "a308a7f1-d829-464e-a137-984ac50e3505", + "requirementText": "Oppgi fargen på tilbudt kjøretøy:", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "6a1a8754-5721-44cf-85f1-d7c16fdb0336" + ], + "questions": [ + { + "id": "df66670b-6c48-48b6-9b36-4fee77e230f3", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "282645ee-43ae-4616-9ff6-d39775648e2b", + "codes": [], + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Kodeliste som krav (1)" + }, + { + "id": "75d66801-a2f6-495d-8b6f-7a484f1d2d86", + "requirementText": "Oppgi hvilke farger pæren kan lyse:", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "6a1a8754-5721-44cf-85f1-d7c16fdb0336" + ], + "questions": [ + { + "id": "931e0d3b-d7ce-41c3-a788-b99469830473", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "282645ee-43ae-4616-9ff6-d39775648e2b", + "codes": [], + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Kodeliste som krav (2)" + }, + { + "id": "03faa455-5d04-44c1-be7b-d40901578bb7", + "requirementText": "Farge på kjøretøyet:", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "6a1a8754-5721-44cf-85f1-d7c16fdb0336" + ], + "questions": [ + { + "id": "81a55e31-3426-4d79-a2ee-fa630cd72cb3", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "282645ee-43ae-4616-9ff6-d39775648e2b", + "codes": [], + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Kodeliste som informasjon (1)" + }, + { + "id": "a490108d-3b35-4e88-b780-48fa39f04fc1", + "requirementText": "Farger som aksepteres på pulten:", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "6a1a8754-5721-44cf-85f1-d7c16fdb0336" + ], + "questions": [ + { + "id": "8b67ae79-4d65-4405-a9b7-3fce0a893ee8", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "282645ee-43ae-4616-9ff6-d39775648e2b", + "codes": [], + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Kodeliste som informasjon (2)" + } + ], + "tags": [], + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "282645ee-43ae-4616-9ff6-d39775648e2b", + "title": "Farger", + "description": "", + "codes": [ + { + "id": "7421129e-5d1f-46d8-8342-69419416f460", + "title": "Hvit", + "description": "", + "type": "code", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null, + "parent": "" + }, + { + "id": "30947dac-9757-4c31-9e7b-d7b9d1075aac", + "title": "Sølv", + "description": "", + "type": "code", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null, + "parent": "" + }, + { + "id": "3cfc7ce1-b5d3-4e90-910e-d2226a1127bb", + "title": "Svart", + "description": "", + "type": "code", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null, + "parent": "" + }, + { + "id": "d58e994c-0cc6-4db7-8a71-277cddd3169d", + "title": "Rød", + "description": "", + "type": "code", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null, + "parent": "" + }, + { + "id": "4ea9d4a6-0544-479b-a5ac-4e235d14407a", + "title": "Rosa", + "description": "Lys variant av rød", + "type": "code", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null, + "parent": "" + }, + { + "id": "1cc4dd43-37ba-41db-9c21-8325722e78ea", + "title": "Blå", + "description": "", + "type": "code", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null, + "parent": "" + }, + { + "id": "92d4a612-1c8c-4473-a6b1-a4f82e70ce28", + "title": "Gul", + "description": "", + "type": "code", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null, + "parent": "" + }, + { + "id": "03776162-1b7e-4cd8-b302-4c3b0e66631b", + "title": "Grønn", + "description": "Kombinasjon av gult og blått", + "type": "code", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null, + "parent": "" + }, + { + "id": "cb678a5a-f445-40b5-96b2-80fe5271c227", + "title": "Lilla", + "description": "Kombinasjon av blått og rødt", + "type": "code", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null, + "parent": "" + }, + { + "id": "f0acbbf9-93b6-482d-b00b-4a6341e0b4b9", + "title": "Orange", + "description": "Kombinasjon av rødt og gult", + "type": "code", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null + } + ], + "products": [ + { + "id": "d4701a64-0b1a-44f8-a81e-a776a365435c", + "title": "Bekreftelse", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "ebfa8440-dfb2-44cc-94ed-b6ea4a7cc449", + "title": "Ja/Nei", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "adfd64da-ef7e-4018-a40c-07ed4cadc764", + "title": "Fritekst", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "89d017b1-01ad-4945-a069-19c3fe6704f9", + "title": "Verdi", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "b50fae24-727d-404b-994e-cd32a7d75407", + "title": "Dato", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "269b119a-2799-42fb-9ecc-bbb94e82bab1", + "title": "Tidspunkt", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "6a1a8754-5721-44cf-85f1-d7c16fdb0336", + "title": "Kodeliste", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "34e03fe9-fd32-4bc0-aea2-7b4c0371cb3b", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + } + ], + "publications": [ + { + "id": "6edb3e7e-f7a1-4320-a3d2-2a87d09bfd7f", + "bankId": "6edb3e7e-f7a1-4320-a3d2-2a87d09bfd7f", + "comment": "From Erlend with love", + "date": "2022-10-17T13:41:54.187Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + } + ], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "199fc365-aec1-4699-babf-abddd4f76fa5", + "title": "Balders Liverpool", + "description": "Balders testprosjekt som omhandler Liverpool FC", + "needs": [ + { + "id": "706969fd-085c-4130-bc7a-31e3db8a4146", + "title": "Spillerverdier", + "description": "Mål for spillerene", + "requirements": [ + { + "id": "22d2cd7d-d165-407c-a241-ae0f95080bde", + "title": "Hastighet", + "description": "", + "needId": "706969fd-085c-4130-bc7a-31e3db8a4146", + "type": "requirement", + "variants": [ + { + "id": "b5033b3c-2fa3-4f80-a819-8240aa78c24e", + "requirementText": "Toppfart er viktig for å se hvor rask en fotballspiller er", + "instruction": "Hva er topphastigheten til spilleren", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "b1768e29-6f8e-40cb-af88-4d3c637a8113", + "type": "Q_SLIDER", + "config": { + "min": 20, + "max": 44, + "step": 0.1, + "unit": "km/t", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 20, + "score": 0 + }, + { + "value": 44, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": "20" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Toppfart" + }, + { + "id": "2270b062-4234-4ee7-8a5d-c641ea861727", + "requirementText": "Hvor raskt løper spilleren 100 meter", + "instruction": "Finn ut tiden på 100 meter", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "4acb3773-bf7c-43ec-8798-903426a388b8", + "type": "Q_SLIDER", + "config": { + "min": 9, + "max": 15, + "step": 0.1, + "unit": "sekunder", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 9, + "score": 0 + }, + { + "value": 15, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": "9" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "100 meter fart" + }, + { + "id": "11cf19b6-72a1-4d9a-97ba-3ec14092c88c", + "requirementText": "Infofelt for fart.", + "instruction": "Svares i spesifikasjon", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "446bcefe-7020-4c7a-ae63-f8daa2b2e09c", + "type": "Q_SLIDER", + "config": { + "min": 20, + "max": 44, + "step": 2, + "unit": "km/t", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 20, + "score": 0 + }, + { + "value": 44, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": "20" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Fart info" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "b987fb6b-c061-4331-99ea-44de0955466c", + "title": "Erfaring", + "description": "", + "needId": "706969fd-085c-4130-bc7a-31e3db8a4146", + "type": "requirement", + "variants": [ + { + "id": "3528be95-4935-4e6f-a659-44514a6fb5c0", + "requirementText": "Har spilleren relevant erfaring", + "instruction": "Har spilleren en historie i en annen klubb i PL?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "4f4fb007-11c4-4350-98f2-f336cd37c4fd", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Erfaring fra tidligere Premier League klubber" + }, + { + "id": "ee0d4da1-becf-4c7a-aa01-ade83d932c48", + "requirementText": "Info-felt om Premier League erfaring", + "instruction": "Besvares i spesifikasjon", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "53d437a4-9d78-4958-8505-4b63eb08988a", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Premier League erfaring" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "42b43a87-6f2d-4ddb-bf69-5399c3d10c79", + "title": "Kontrakt", + "description": "", + "needId": "706969fd-085c-4130-bc7a-31e3db8a4146", + "type": "requirement", + "variants": [ + { + "id": "af70283f-7c2b-4924-b125-925969813fec", + "requirementText": "Går kontrakten ut snart?", + "instruction": "Viktig for å få en rimligere pris", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "a2d39977-5f69-47e7-bfa5-a2a4d67b1073" + ], + "questions": [ + { + "id": "c07372a4-3a89-45e0-8b98-d846962a07e9", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "9552c5e0-9964-4ce2-849f-243a8c1e06a0", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Når går kontrakten ut" + }, + { + "id": "f02d9bc5-7263-493b-a579-1f7a68ac5f41", + "requirementText": "Info-typen", + "instruction": "Se info", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "a2d39977-5f69-47e7-bfa5-a2a4d67b1073" + ], + "questions": [ + { + "id": "dfa941fe-187b-4911-8f8d-04ca6fe4453b", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Når går kontrakten ut" + }, + { + "id": "eb6da662-5068-4eef-a551-73a09fa4447a", + "requirementText": "Info type med periode", + "instruction": "det gir ikke mening, jeg vet", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "a2d39977-5f69-47e7-bfa5-a2a4d67b1073" + ], + "questions": [ + { + "id": "4aa0dbc9-c10a-4aa9-a932-9a6cb028daa1", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Når går kontrakten ut tidsperiode" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "e2e79960-934f-4145-a481-5c8315a1209c", + "title": "Spissverdier", + "description": "", + "requirements": [ + { + "id": "d3c8889a-03f0-4cdc-a8ad-8e781128ca08", + "title": "Hvilken posisjon kan spilleren bekle", + "description": "", + "needId": "e2e79960-934f-4145-a481-5c8315a1209c", + "type": "requirement", + "variants": [ + { + "id": "3450991d-2667-4160-9712-dc900b28407d", + "requirementText": "Det kan være alt fra ving til spiss", + "instruction": "Hvilken eller hvilke posisjoner passer best for spilleren", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "e064e18b-2f83-4b7c-ae47-be445da9c0d7", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "2e1092e6-3fef-4078-be07-ba2d0f62d411" + ], + "questions": [ + { + "id": "ef09dea3-2717-447d-aa47-24cc90c7406c", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "692db181-5adc-4053-9af2-1e8b3d39d786", + "codes": [], + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Hvilken posisjon trives angrepsspilleren i" + }, + { + "id": "0aa7e97c-d5b5-46d6-9a44-e53a0d411b2e", + "requirementText": "Info felt", + "instruction": "Med kodeliste", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28" + ], + "questions": [ + { + "id": "ac3b40f2-5762-4b6f-a772-02edefe70eee", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "692db181-5adc-4053-9af2-1e8b3d39d786", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Hvilken posisjon trives angrepsspilleren i" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "type": "need", + "parent": "706969fd-085c-4130-bc7a-31e3db8a4146", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "1a50d93d-e920-47f3-998d-130f7ca5b461", + "title": "Generelle verdier", + "description": "", + "requirements": [ + { + "id": "cbe772ec-ad1e-4d30-bbc4-13339951099d", + "title": "Relasjon med klubben", + "description": "", + "needId": "1a50d93d-e920-47f3-998d-130f7ca5b461", + "type": "requirement", + "variants": [ + { + "id": "2d767568-3040-4b84-b6ae-72216b260664", + "requirementText": "Hvordan er relasjonen med klubben", + "instruction": "Skriv om historien med klubben", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "7de0ff7e-d76c-4f56-bc20-c0558f14fdb2", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Har vi en god relasjon til klubben som henter spiller" + }, + { + "id": "771f52ee-1952-4ee6-a6ed-7ae21b1de81a", + "requirementText": "noe her", + "instruction": "noe her", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "69205b19-6379-450d-904c-bb8498e8f707", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Har vi en god relasjon med klubben vi henter fra" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "d5d6d99d-54d0-4482-b0f1-360ae39a75e2", + "title": "Opplastning av lisens", + "description": "", + "needId": "1a50d93d-e920-47f3-998d-130f7ca5b461", + "type": "requirement", + "variants": [ + { + "id": "f2e25768-a679-4ab0-9ce6-af2d72cdc283", + "requirementText": "Trengs en gyldig lisens for denne handlingen. Venligst last opp denne", + "instruction": "Last opp lisensen", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "0c2b8dc3-4d86-4d20-a9bd-a50734c9c154", + "type": "Q_FILEUPLOAD", + "config": { + "template": null, + "uploadInSpec": false, + "allowMultipleFiles": false, + "fileEndings": [], + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "files": [ + "" + ] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Trengs en gyldig lisens" + }, + { + "id": "26b14771-4805-4c7a-9ae8-9e6b47bc6606", + "requirementText": "Info info info", + "instruction": "Lisens lisens lisens", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "3d609947-2fc4-4b22-9c6d-18e2f45ecbe4", + "type": "Q_FILEUPLOAD", + "config": { + "template": null, + "uploadInSpec": false, + "allowMultipleFiles": false, + "fileEndings": [], + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "files": [ + "" + ] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Trengs en gyldig lisens" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "2820b1b1-eb02-4d14-aca5-7b1d4fcc9887", + "title": "Posisjonsverdier", + "description": "", + "requirements": [ + { + "id": "088032a3-89a2-4a84-8a12-f90b325eaa56", + "title": "Samspill med hverandre", + "description": "", + "needId": "2820b1b1-eb02-4d14-aca5-7b1d4fcc9887", + "type": "requirement", + "variants": [ + { + "id": "70dccd2a-dc14-4bda-972a-208dbd903971", + "requirementText": "Kan være viktig for de personlige relasjonene i et lag", + "instruction": "Hvor lenge har de spilt sammen i de forskjellige posisjonene", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "0ec3cd5c-b551-4063-b745-8abbc77eb162" + ], + "questions": [ + { + "id": "feb2cb3d-cab4-45e7-babf-e2c8d884c122", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "06f46860-5932-44c8-bbd6-610e777e1fd0", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Hvor lenge spillerene har spilt sammen / Når startet de å spille sammen" + }, + { + "id": "2636606d-ca72-4c2f-b865-0410e47c64ae", + "requirementText": "jaja", + "instruction": "noe her og", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "0ec3cd5c-b551-4063-b745-8abbc77eb162" + ], + "questions": [ + { + "id": "431dc573-5bac-48f7-a103-d3e30bdd9013", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Når startet de å spille sammen" + }, + { + "id": "50d1a03d-d785-4811-87f1-d19b551f553b", + "requirementText": "Her er en kravtekst", + "instruction": "Og dette er en veiledning", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "0ec3cd5c-b551-4063-b745-8abbc77eb162" + ], + "questions": [ + { + "id": "19b0439a-a45c-4072-b2c2-37dac036fdcf", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Hvor lenge har de spilt sammen" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "7bd5f637-67da-40fe-a81f-4bedae436401", + "title": "Bekreftelse på at dette er en speller", + "description": "", + "needId": "2820b1b1-eb02-4d14-aca5-7b1d4fcc9887", + "type": "requirement", + "variants": [ + { + "id": "83fda159-c72e-4446-b81e-809d39f64bcd", + "requirementText": "Speller er noe helt annet enn en vanlig spiller. Dette må bekreftes", + "instruction": "Her er det en bekreftelse", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "a2d39977-5f69-47e7-bfa5-a2a4d67b1073" + ], + "questions": [ + { + "id": "dbaeb588-96ea-49bc-b768-1c4a3491a8b4", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Er dette en speller?" + }, + { + "id": "5770a0e3-18fd-4d4b-a09b-596c7dbfdbf1", + "requirementText": "Vet ikke helt hva mening dette gir men", + "instruction": "Hei hå", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b72f1784-2469-4b00-9afe-ab7335ec596c", + "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "71d643a0-39c2-4cbc-80b2-38374b746e95", + "7b75bdda-3c05-4c03-b311-110ec670892f", + "606ee429-74c6-4696-a60b-3048246fc3f4", + "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "c9689511-defd-4259-b5fa-67d127bc5f59", + "a8dc4069-290b-4577-972c-9faac368e3c6", + "86fb309c-c0b8-4964-841c-69991cf4024b", + "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "f6dace96-ef1a-4596-86b0-555676ecd49e", + "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "7e720208-ad36-46a2-b06d-c247feedb1de", + "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "a2d39977-5f69-47e7-bfa5-a2a4d67b1073" + ], + "questions": [ + { + "id": "e81ce611-aad6-4e0e-b422-be60e96e6997", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Info Bekreftelse" + } + ], + "tags": [], + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "type": "need", + "parent": "1a50d93d-e920-47f3-998d-130f7ca5b461", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "692db181-5adc-4053-9af2-1e8b3d39d786", + "title": "Angrepsposisjon", + "description": "Posisjoner i angrep", + "codes": [ + { + "id": "21bbea1f-e425-4fd8-8ac4-7ffd7573e28c", + "title": "9er", + "description": "Klassisk spydspiss", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + }, + { + "id": "3a954f4e-28fd-4610-8a6e-3607b5c87f20", + "title": "Falsk 9er", + "description": "Litt dypere spiss som fungerer i det oppbyggende angrepsspillet", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + }, + { + "id": "c0681282-e5cb-4626-9b39-7f4b41c2a6f2", + "title": "Bred ving", + "description": "Ving som holder bredde og legger mye innlegg", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + }, + { + "id": "c9085640-7a65-4f11-8023-c61f965bb4a3", + "title": "Innovertrukket ving", + "description": "Ving som trekker inn i banen for avslutning", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + }, + { + "id": "cd28300f-f5cd-4690-bb40-2610fe51a920", + "title": "Midtbaneposisjon", + "description": "Posisjoner på midtbanen", + "codes": [ + { + "id": "79ca4c69-bc9d-41ba-ab0a-bb95fa35a6d0", + "title": "Kantspiller", + "description": "Ute til siden, ikke å forveksle med ving", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + }, + { + "id": "601d0162-3436-482c-a325-9fcda3987ccf", + "title": "Indreløper", + "description": "Løper opp og ned i en treer", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + }, + { + "id": "75023f1e-de5c-43fb-8657-57e753cedac4", + "title": "Anker", + "description": "Dyptliggende, taklingssterk", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + }, + { + "id": "0055ab99-59e3-4561-a09d-160d49bc95a2", + "title": "Offensiv midtbanespiller", + "description": "Med fokus i angrep", + "type": "code", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "products": [ + { + "id": "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "title": "Midtstoppere", + "description": "Samling av alle midtstoppere i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "b72f1784-2469-4b00-9afe-ab7335ec596c", + "title": "Joel Matip", + "description": "Høy og rask midtstopper fra Kamerun", + "type": "product", + "parent": "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "161a0bdf-aa43-459a-b7f9-3c59e0e9886d", + "title": "Virgil Van Dijk", + "description": "Verdens beste midtstopper. Kommer fra Nederland", + "type": "product", + "parent": "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "74c7f312-b02e-43df-8367-e0fdf59b3a84", + "title": "Ibrahima Konate", + "description": "Sterk og rask midtstopper fra Frankrike", + "type": "product", + "parent": "7f29dd13-8ecd-462c-a54f-ce29ec71d3d2", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "title": "Backer", + "description": "Samling av alle backene i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "71d643a0-39c2-4cbc-80b2-38374b746e95", + "title": "Trent Alexander-Arnold", + "description": "Verdens beste høyreback. Engelsk, og ekte Liverpoolgutt. Vokst opp et steinkast fra Anfield Road", + "type": "product", + "parent": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "7b75bdda-3c05-4c03-b311-110ec670892f", + "title": "Andrew Robertson", + "description": "Løpssterk venstreback fra Skottland!", + "type": "product", + "parent": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "606ee429-74c6-4696-a60b-3048246fc3f4", + "title": "Konstantinos Tsamikas", + "description": "Unge venstreback fra Hellas. Skåret avgjørende straffesparket i FA cup-finalen", + "type": "product", + "parent": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "063a6df0-d2be-4cd1-8481-c7fb2c46f7cd", + "title": "Joe Gomez", + "description": "Versatil forsvarsspiller fra england. Kan gjøre en god figur både på stopperplass og på backplass", + "type": "product", + "parent": "405534cf-9a8c-47ae-b15f-0e19d7841cf0", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "title": "Keepere", + "description": "Samling av alle keeperene i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "c9689511-defd-4259-b5fa-67d127bc5f59", + "title": "Allison Becker", + "description": "Legendarisk keeper fra Brasil", + "type": "product", + "parent": "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "a8dc4069-290b-4577-972c-9faac368e3c6", + "title": "Adrian", + "description": "Reservekeeper fra Spania. Tidligere spilt for West Ham", + "type": "product", + "parent": "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "86fb309c-c0b8-4964-841c-69991cf4024b", + "title": "Caoimhin Kelleher", + "description": "Ung keeper fra Irland", + "type": "product", + "parent": "286ba449-0f63-49b2-9ff0-1d3b2a5dc70a", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "title": "Midtbanespillere", + "description": "Samling av alle midtbanespiller'e i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "289953fd-5ee1-45d4-b8c9-afa8bbfaa3b0", + "title": "Fabinho", + "description": "Sterk og god defensiv midtbanespiller fra Brasil! Han er kommer du deg ikke forbi", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "f6dace96-ef1a-4596-86b0-555676ecd49e", + "title": "Thiago", + "description": "Teknisk vidunder fra Spania", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "11ab2698-c80e-4be4-bca4-283e8b9e9e47", + "title": "Jordan Henderson", + "description": "Klubbkaptein, og arbeidsjern på midten. Kommer fra England", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "c2d27f6d-aabe-4d81-bcb6-a828c3db8607", + "title": "James Milner", + "description": "Verdens kjedeligste engelskmann. Men løper som en hest", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "a010c174-da0c-4e9a-b6cf-b03fc23f4488", + "title": "Harvey Elliot", + "description": "Ungt teknisk engelsk talent på midtbanen", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "716ac70f-a2e9-402f-b2bb-aa4d6d1c81c0", + "title": "Curtis Jones", + "description": "Ung midtbanespiller fra England", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "9a9d4b5d-77fd-4e35-811a-7405b7847d3f", + "title": "Naby Keita", + "description": "Teknisk driblesterk midtbanespiller fra Guinea", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "f0dcf2c8-b653-4b41-9db1-c4ceeb1c0b28", + "title": "Alex Oxlade-Chamberlain", + "description": "Meget rask midtbanespiller fra England. Tidligere vært Arsenals beste spiller", + "type": "product", + "parent": "25a924ca-7cb3-4a7b-81d2-5d5a46be5612", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "title": "Angrepsspillere", + "description": "Samling av alle angrepsspillere i Liverpool FC", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "5dd912f7-2dff-4be6-9b24-9e1e7e510a20", + "title": "Mohammed Salah", + "description": "Egyptisk konge, og verdens beste fotballspiller", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "ea30ac27-6588-4bf0-91e6-76a68eedb65e", + "title": "Diego Jota", + "description": "Portugals klart beste fotballspiller gjennom tidene", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "ded50d6a-0598-4ed7-bead-7ea7ca5938d5", + "title": "Luis Diaz", + "description": "Ving fra Colombia. Sjeldent kommet noe så bra teknisk vidunder fra vingposisjon fra det landet", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "db06d3ba-98fd-47f9-a57c-7349e37cac90", + "title": "Divock Origi", + "description": "Legende fra Belgia", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "7e720208-ad36-46a2-b06d-c247feedb1de", + "title": "Takumi Minamino", + "description": "Beste offensive spiller produsert i Asia. Japans store sønn", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "2e1092e6-3fef-4078-be07-ba2d0f62d411", + "title": "Roberto Firmino", + "description": "Arbeidsjern fra Brasil. Verdens beste i offensivt press", + "type": "product", + "parent": "0ec3cd5c-b551-4063-b745-8abbc77eb162", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "27428a1e-ebee-4e3c-9899-a7b6a418b852", + "title": "Manager", + "description": "Liverpool FC Manager", + "type": "product", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "a2d39977-5f69-47e7-bfa5-a2a4d67b1073", + "title": "Jurgen Klopp", + "description": "Verdens beste manager. Kommer fra Tyskland", + "type": "product", + "parent": "27428a1e-ebee-4e3c-9899-a7b6a418b852", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [ + { + "id": "de288fb9-2a8f-41e0-9211-bfc220d88103", + "bankId": "de288fb9-2a8f-41e0-9211-bfc220d88103", + "comment": "første utkast av en publisering", + "date": "2022-05-27T11:41:30.999Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-08-12T11:59:12.303Z" + }, + { + "id": "a0b0b253-f32e-4169-9821-c0e3d22e56bf", + "bankId": "a0b0b253-f32e-4169-9821-c0e3d22e56bf", + "comment": "Utkast med alle typer krav", + "date": "2022-05-27T12:15:14.979Z", + "type": "publication", + "version": 2, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + }, + { + "id": "b45734ad-e125-4983-905c-81ad57878f3a", + "bankId": "b45734ad-e125-4983-905c-81ad57878f3a", + "comment": "Lagt til infofelt for boolean og verdi", + "date": "2022-06-08T06:15:14.315Z", + "type": "publication", + "version": 3, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "9e0eb924-f8ca-4ea1-82c3-c0c22d785b16", + "bankId": "9e0eb924-f8ca-4ea1-82c3-c0c22d785b16", + "comment": "Infofelt for alle spørsmålstyper", + "date": "2022-06-21T19:01:01.528Z", + "type": "publication", + "version": 4, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "78d91a42-7baf-4339-95e8-751342450463", + "bankId": "78d91a42-7baf-4339-95e8-751342450463", + "comment": "yrdy", + "date": "2022-08-02T10:51:08.644Z", + "type": "publication", + "version": 5, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "1a21f64d-6e70-42b2-a39c-a8fb37bbade4", + "bankId": "1a21f64d-6e70-42b2-a39c-a8fb37bbade4", + "comment": "Test", + "date": "2022-08-09T08:02:07.186Z", + "type": "publication", + "version": 6, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "e3ed3670-d20c-43fa-a5ba-8c22586b6b84", + "bankId": "e3ed3670-d20c-43fa-a5ba-8c22586b6b84", + "comment": "Oppdaterte Verdier med ny JOI", + "date": "2022-08-18T13:53:59.676Z", + "type": "publication", + "version": 7, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + }, + { + "id": "ad558be2-120f-440a-84a0-62423da4cd01", + "bankId": "ad558be2-120f-440a-84a0-62423da4cd01", + "comment": "Publisering med bekreftelse", + "date": "2022-08-30T12:25:47.863Z", + "type": "publication", + "version": 8, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + }, + { + "id": "04f3e310-d048-4ba1-affd-c424cd31f230", + "bankId": "04f3e310-d048-4ba1-affd-c424cd31f230", + "comment": "Med info bekreftelse", + "date": "2022-08-30T12:28:21.378Z", + "type": "publication", + "version": 9, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + }, + { + "id": "9dae4007-00b8-40ce-8fd1-20666df2fd70", + "bankId": "9dae4007-00b8-40ce-8fd1-20666df2fd70", + "comment": "Publiserings test", + "date": "2022-09-01T12:18:53.012Z", + "type": "publication", + "version": 10, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-09-01T12:19:11.210Z" + }, + { + "id": "e46fdabc-d158-4039-9376-1091d92a6d45", + "bankId": "e46fdabc-d158-4039-9376-1091d92a6d45", + "comment": "test", + "date": "2022-09-01T12:20:03.566Z", + "type": "publication", + "version": 11, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-09-01T12:20:06.419Z" + }, + { + "id": "895864a4-40d7-4335-8068-6eb7b75a5b03", + "bankId": "895864a4-40d7-4335-8068-6eb7b75a5b03", + "comment": "verdi fix", + "date": "2022-09-12T13:24:20.574Z", + "type": "publication", + "version": 12, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + }, + { + "id": "442e6c17-53c7-4c12-b0d0-0ca9f493a675", + "bankId": "442e6c17-53c7-4c12-b0d0-0ca9f493a675", + "comment": "kodeliste fix", + "date": "2022-09-12T13:29:26.350Z", + "type": "publication", + "version": 13, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + } + ], + "tags": [ + { + "id": "7ad34422-7e1c-40b6-9a52-4376843b4129", + "title": "Test", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "199fc365-aec1-4699-babf-abddd4f76fa5", + "sourceRel": null + } + ], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "title": "Demo", + "description": "Fredag den 13. mai ", + "needs": [ + { + "id": "0f039b00-3ec2-47cf-b908-3b5129ddc7c3", + "title": "Balders behov", + "description": "Viktig behov for Balder", + "requirements": [ + { + "id": "72b8b518-d3cd-463f-a488-fdd16711821e", + "title": "Balders krav", + "description": "", + "needId": "0f039b00-3ec2-47cf-b908-3b5129ddc7c3", + "type": "requirement", + "variants": [ + { + "id": "521cde77-591a-40ff-88ac-b95ad23e8b3d", + "requirementText": "Den har en kravtekst", + "instruction": "Og en veiledning", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "86da98f1-f47a-421d-bd43-e5e4c5cc5900" + ], + "questions": [ + { + "id": "303c4783-2e9c-42d3-ba57-0961167e51e9", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "5b499c76-35b7-4f9b-9aed-d5f5ee7d1b51", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "22ce0a3d-7e95-48b5-a121-ba01ae5e7ee0", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Balders variant" + }, + { + "id": "9b74b752-4d64-4f2d-9361-cb5ee338f077", + "requirementText": "Bare info denne", + "instruction": "Kun info", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "86da98f1-f47a-421d-bd43-e5e4c5cc5900", + "9f23d70c-d7f8-4972-a94e-f957cb979ae9" + ], + "questions": [ + { + "id": "b53db655-97a1-44fe-b316-e1b5a7c1ab07", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Balders andre variant" + }, + { + "id": "00c1c70f-1c4f-410c-880e-f9cfde021800", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "08e86379-c165-4431-b353-a56db3d7dcd3", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "22ce0a3d-7e95-48b5-a121-ba01ae5e7ee0", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Balders tredje variant" + } + ], + "tags": [], + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null + }, + { + "id": "59f75cb3-25bc-4c56-bce6-943f9bfb79a0", + "title": "Balders andre krav", + "description": "", + "needId": "0f039b00-3ec2-47cf-b908-3b5129ddc7c3", + "type": "requirement", + "variants": [ + { + "id": "e2542173-28c0-424e-949b-5a012601bcda", + "requirementText": "", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "86da98f1-f47a-421d-bd43-e5e4c5cc5900", + "9f23d70c-d7f8-4972-a94e-f957cb979ae9", + "29d5f322-14ee-40aa-bd5d-bd4a2342017c", + "d3222dc9-a8f3-4e89-b11e-a90ac9e84c1e" + ], + "questions": [ + { + "id": "d30b5ffd-fdb0-4e19-8822-64bc3cd65b6f", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10, + "step": 1, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Eneste varianten her" + } + ], + "tags": [], + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null + }, + { + "id": "49cde852-1212-4e00-a584-84832b0c3d01", + "title": "behov 2", + "description": "", + "requirements": [ + { + "id": "a235e160-3eac-4149-83cb-43999cf29f94", + "title": "test", + "description": "", + "needId": "49cde852-1212-4e00-a584-84832b0c3d01", + "type": "requirement", + "variants": [], + "tags": [], + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null + } + ], + "type": "need", + "parent": "0f039b00-3ec2-47cf-b908-3b5129ddc7c3", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "22ce0a3d-7e95-48b5-a121-ba01ae5e7ee0", + "title": "En tilfeldig kodeliste", + "description": "Her finnes det koder", + "codes": [ + { + "id": "238db097-9ca1-4f92-ad44-6b4cdfd8009c", + "title": "Kode 1", + "description": "", + "type": "code", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null, + "parent": "" + }, + { + "id": "00a0e0fb-0b83-4291-a634-86946acb044e", + "title": "Kode 2", + "description": "", + "type": "code", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null, + "parent": "" + }, + { + "id": "9462c708-f5d5-46b9-8114-0f9aca5e06d2", + "title": "Kode rød", + "description": "", + "type": "code", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null, + "parent": "" + }, + { + "id": "863ab61c-61c8-44e6-a698-c20b83892a93", + "title": "Kode blå", + "description": "", + "type": "code", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null, + "parent": "" + }, + { + "id": "115582dd-5b3c-431d-9894-fc81eb756222", + "title": "Kode 5", + "description": "", + "type": "code", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null, + "parent": "" + }, + { + "id": "bfcadbab-0d67-4388-a80c-c93179250ab1", + "title": "Kode med beskrivelse", + "description": "Big Taco", + "type": "code", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null + }, + { + "id": "9ff0d2c4-a9b5-4029-9ae3-952bca4b1715", + "title": "En annen kodeliste", + "description": "", + "codes": [], + "type": "codelist", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null + } + ], + "products": [ + { + "id": "86da98f1-f47a-421d-bd43-e5e4c5cc5900", + "title": "Balders første produkt", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "9f23d70c-d7f8-4972-a94e-f957cb979ae9", + "title": "Balders andre produkt", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "29d5f322-14ee-40aa-bd5d-bd4a2342017c", + "title": "Balders første underprodukt", + "description": "Skal ligge under andre produkt", + "type": "product", + "parent": "9f23d70c-d7f8-4972-a94e-f957cb979ae9", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "d3222dc9-a8f3-4e89-b11e-a90ac9e84c1e", + "title": "Balders andre underprodukt", + "description": "Også under andre produkt", + "type": "product", + "parent": "9f23d70c-d7f8-4972-a94e-f957cb979ae9", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [ + { + "id": "76961413-b7d7-4228-a485-41c10e84eae6", + "bankId": "76961413-b7d7-4228-a485-41c10e84eae6", + "comment": "Første publikasjon", + "date": "2022-05-13T07:03:11.465Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "7ee4b3d7-8338-44a6-a16e-c20af1143fd1", + "bankId": "7ee4b3d7-8338-44a6-a16e-c20af1143fd1", + "comment": "Andre publikasjon", + "date": "2022-05-13T07:11:46.032Z", + "type": "publication", + "version": 2, + "sourceOriginal": null, + "sourceRel": null + } + ], + "tags": [ + { + "id": "592e9321-9cf9-45a3-8ef9-38e2d0d79bcf", + "title": "Finnes en merkelapp her og", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null + }, + { + "id": "41c49ac6-1e7a-4f5c-ba11-da5407593291", + "title": "Og en til merkelapp", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "d8057185-e63b-403f-bbea-330a2bb78bc6", + "sourceRel": null + } + ], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "a2c0a932-2271-4ef1-9acb-dedaf886c32f", + "title": "Demo", + "description": "13 juni", + "needs": [ + { + "id": "0abe8a17-3099-4b02-9966-6a0622f03506", + "title": "Et behov", + "description": "", + "requirements": [ + { + "id": "ae06dded-9c94-4af8-9e02-2446b0518f54", + "title": "Et krav", + "description": "", + "needId": "0abe8a17-3099-4b02-9966-6a0622f03506", + "type": "requirement", + "variants": [ + { + "id": "c9b88893-db32-4800-8294-c3a3f8886bea", + "requirementText": "Tekst", + "instruction": "Tekst", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "535a8cef-0d64-4eb6-8a77-4bfda304b26f" + ], + "questions": [ + { + "id": "eb86d075-826e-4d35-bb2b-84a2f3f439c1", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "6d4ab500-d523-4997-8abd-b4e902e5a2f4", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "8f8d4fa5-86c5-4bb2-835e-bda80c6df541", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "de6257da-8f85-43fc-901c-cdc1f2269876", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [ + { + "date": null, + "score": 0 + }, + { + "date": null, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "5a718988-8ab8-4015-aa4c-4b811e766e51", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "d16ee27d-b633-4afa-8d5c-8602dea14ca4", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10, + "step": 1, + "unit": "m", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 0, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "3300031b-c900-469f-b9c1-b9838d034146", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [ + { + "time": null, + "score": 0 + }, + { + "time": null, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Dette er et krav" + }, + { + "id": "e119d098-1675-4c99-b77d-b7e0f7628e25", + "requirementText": "Tekst", + "instruction": "Tekst", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "535a8cef-0d64-4eb6-8a77-4bfda304b26f" + ], + "questions": [ + { + "id": "3c4d00d0-6f52-4ee2-9972-b661a6088fb3", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Dette er et infokrav" + } + ], + "tags": [], + "sourceOriginal": "a2c0a932-2271-4ef1-9acb-dedaf886c32f", + "sourceRel": null + }, + { + "id": "98718209-4b6e-4ea9-ae34-af2fba3f7711", + "title": "Nytt krav", + "description": "", + "needId": "0abe8a17-3099-4b02-9966-6a0622f03506", + "type": "requirement", + "variants": [ + { + "id": "5656d21c-6743-4a5e-861d-5cf2f8859b4f", + "requirementText": "Kravteksten", + "instruction": "Veiledning", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "535a8cef-0d64-4eb6-8a77-4bfda304b26f" + ], + "questions": [ + { + "id": "09ff66d6-4886-4540-be63-19b129b85f8a", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 40, + "step": 1, + "unit": "m/s", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Et til infokrav" + }, + { + "id": "58c4248a-e662-4cbf-a794-7057a6727ec7", + "requirementText": "Kravtekst", + "instruction": "Veiledning", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "535a8cef-0d64-4eb6-8a77-4bfda304b26f" + ], + "questions": [ + { + "id": "21c159d9-73d5-4af1-bedf-750d7d239af6", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "8f8d4fa5-86c5-4bb2-835e-bda80c6df541", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Enda et info krav" + } + ], + "tags": [], + "sourceOriginal": "a2c0a932-2271-4ef1-9acb-dedaf886c32f", + "sourceRel": null + }, + { + "id": "e3d72adc-5a4e-45ce-bd82-9519109e9b94", + "title": "Et siste infokrav", + "description": "", + "needId": "0abe8a17-3099-4b02-9966-6a0622f03506", + "type": "requirement", + "variants": [ + { + "id": "4b57767b-ec84-490a-8632-76cae9e7e7d0", + "requirementText": "Her kommer kravteksten", + "instruction": "Og veiledningen", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "535a8cef-0d64-4eb6-8a77-4bfda304b26f" + ], + "questions": [ + { + "id": "a4d2b134-b045-43a9-bc72-f640b2dbc779", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Infokravet" + } + ], + "tags": [], + "sourceOriginal": "a2c0a932-2271-4ef1-9acb-dedaf886c32f", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "a2c0a932-2271-4ef1-9acb-dedaf886c32f", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "8f8d4fa5-86c5-4bb2-835e-bda80c6df541", + "title": "En kodeliste", + "description": "", + "codes": [ + { + "id": "a7800cbf-06aa-4c46-9f73-3af1f2a67a42", + "title": "En kode", + "description": "", + "type": "code", + "sourceOriginal": "a2c0a932-2271-4ef1-9acb-dedaf886c32f", + "sourceRel": null, + "parent": "" + }, + { + "id": "a8c7f9e4-05e0-4494-8239-3a824ea694a7", + "title": "En annen kode", + "description": "", + "type": "code", + "sourceOriginal": "a2c0a932-2271-4ef1-9acb-dedaf886c32f", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "a2c0a932-2271-4ef1-9acb-dedaf886c32f", + "sourceRel": null + } + ], + "products": [ + { + "id": "535a8cef-0d64-4eb6-8a77-4bfda304b26f", + "title": "Et produkt", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "a2c0a932-2271-4ef1-9acb-dedaf886c32f", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [ + { + "id": "27e854ae-fe47-44dd-8460-f80de6659724", + "bankId": "27e854ae-fe47-44dd-8460-f80de6659724", + "comment": "Publikasjon", + "date": "2022-06-13T08:05:45.285Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "cd270163-9fa9-4e17-98fe-eb1f493af2f2", + "bankId": "cd270163-9fa9-4e17-98fe-eb1f493af2f2", + "comment": "Publikasjon", + "date": "2022-06-13T10:08:05.191Z", + "type": "publication", + "version": 2, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "d1c328cb-f2bf-4f48-a177-f43da69f5dfb", + "bankId": "d1c328cb-f2bf-4f48-a177-f43da69f5dfb", + "comment": "Alle spørsmålstyper på et krav", + "date": "2022-06-23T12:46:13.829Z", + "type": "publication", + "version": 3, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "09a919d5-03bf-4daa-91f1-7bae0153aef4", + "bankId": "09a919d5-03bf-4daa-91f1-7bae0153aef4", + "comment": "demo 24 juni", + "date": "2022-06-24T07:00:44.637Z", + "type": "publication", + "version": 4, + "sourceOriginal": null, + "sourceRel": null + } + ], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "8429ee6f-41ee-44b5-90d0-73806a228ea8", + "title": "Demohotellet", + "description": "Enkelt demoprosjekt for visning av ny funksjonalitet", + "needs": [ + { + "id": "1b1db7cf-7df9-4138-8bae-286e07986b18", + "title": "Frokost", + "description": "Dagens viktigste måltid", + "requirements": [ + { + "id": "a83845f6-c8a3-459f-a24e-98be9151f657", + "title": "Frokost åpningstid", + "description": "", + "needId": "1b1db7cf-7df9-4138-8bae-286e07986b18", + "type": "requirement", + "variants": [ + { + "id": "650e9fd2-2ac4-4aa0-83eb-c92589579fa3", + "requirementText": "Når er det tidligste frokosten deres starter?", + "instruction": "Besvar dette kravet med åpningstiden til frokost på hotellet", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "58bfb7bd-d84b-4c73-abab-b84fd427018f", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [ + { + "time": null, + "score": 0 + }, + { + "time": null, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Frokost må være tidlig nok slik at våre ansatte rekker sine daglige gjøremål under oppholdet" + }, + { + "id": "9289cc20-28c6-403c-95ea-929246a9c582", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "ny variant" + } + ], + "tags": [], + "sourceOriginal": "8429ee6f-41ee-44b5-90d0-73806a228ea8", + "sourceRel": null + }, + { + "id": "82483564-ae15-486c-b80d-35e8317c5218", + "title": "Kaffe til frokostbufféen", + "description": "", + "needId": "1b1db7cf-7df9-4138-8bae-286e07986b18", + "type": "requirement", + "variants": [ + { + "id": "eba0cb25-287f-4b39-8de9-a45fd791fa31", + "requirementText": "Serverer dere varm kaffe under frokosten?", + "instruction": "Ja / Nei på om kaffen blir servert varm", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "a2c6decf-81e0-4f91-aa25-21ed8c81f409", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Det må være kaffe til våre ansatte og den må være varm" + } + ], + "tags": [], + "sourceOriginal": "8429ee6f-41ee-44b5-90d0-73806a228ea8", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "8429ee6f-41ee-44b5-90d0-73806a228ea8", + "sourceRel": null + }, + { + "id": "0449d8b7-22ba-438d-a11a-413f88bca730", + "title": "Senger", + "description": "Spesifikke behov når det kommer til senger", + "requirements": [ + { + "id": "e22ad8ee-07d0-4c13-95df-1d70d67f7e7b", + "title": "Sengenes størrelse", + "description": "", + "needId": "0449d8b7-22ba-438d-a11a-413f88bca730", + "type": "requirement", + "variants": [ + { + "id": "3cdc6882-6a64-4cae-ba3f-e04035506d10", + "requirementText": "Hva slags type dobbelseng er installert på rommet.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "85b60a75-c0dc-471f-b2e9-78301702b3ba", + "b3539c1f-60c2-4a7d-a355-6f1720e7ceb8", + "2805dc56-06a5-4d58-9baa-3ed5e99e5587" + ], + "questions": [ + { + "id": "32f0f936-f7e8-4fec-bdc6-4fc6c7b3bad7", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "9ffeacb4-6400-4da6-a2ab-950b382f7071", + "codes": [], + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Hva slags type dobbelseng" + } + ], + "tags": [], + "sourceOriginal": "8429ee6f-41ee-44b5-90d0-73806a228ea8", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "8429ee6f-41ee-44b5-90d0-73806a228ea8", + "sourceRel": null + }, + { + "id": "5a6b8e8c-ee36-4d26-b5fc-b318ae7ada01", + "title": "Etasje", + "description": "Hvordan er etasjestrukturen", + "requirements": [ + { + "id": "4af7b5d7-532f-4e36-a135-facce63db010", + "title": "I hvilken etasje ligger rommet", + "description": "", + "needId": "5a6b8e8c-ee36-4d26-b5fc-b318ae7ada01", + "type": "requirement", + "variants": [ + { + "id": "08da7124-7136-4c1e-b5a9-1390b2f654ab", + "requirementText": "Hvilken etasje ligger rommet?", + "instruction": "Her må du spesifisere hvilke etasje som passer ditt behov best", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "abcf8023-7bf2-4d36-bcc5-343282609b8f", + "85b60a75-c0dc-471f-b2e9-78301702b3ba", + "b3539c1f-60c2-4a7d-a355-6f1720e7ceb8", + "2805dc56-06a5-4d58-9baa-3ed5e99e5587" + ], + "questions": [ + { + "id": "2240768c-bff1-4093-a975-13138f2ad8af", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 30, + "step": 1, + "unit": "etasje", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 0, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Etasje for rommet" + } + ], + "tags": [], + "sourceOriginal": "8429ee6f-41ee-44b5-90d0-73806a228ea8", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "8429ee6f-41ee-44b5-90d0-73806a228ea8", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "9ffeacb4-6400-4da6-a2ab-950b382f7071", + "title": "Sengetype", + "description": "Sengetyper for dobbelseng", + "codes": [ + { + "id": "59a6af69-3107-488e-a661-5c52a271c019", + "title": "King size", + "description": "183 x 203 cm", + "type": "code", + "sourceOriginal": "8429ee6f-41ee-44b5-90d0-73806a228ea8", + "sourceRel": null, + "parent": "" + }, + { + "id": "4bfcc7bf-61fe-4e27-9714-87c7d86c1b8b", + "title": "Queen size", + "description": "153 x 203 cm", + "type": "code", + "sourceOriginal": "8429ee6f-41ee-44b5-90d0-73806a228ea8", + "sourceRel": null, + "parent": "" + }, + { + "id": "2c5de6aa-26f4-4235-b7a2-5a7843abe041", + "title": "Vanlig dobbelseng", + "description": "138 x 188 cm", + "type": "code", + "sourceOriginal": "8429ee6f-41ee-44b5-90d0-73806a228ea8", + "sourceRel": null, + "parent": "" + }, + { + "id": "08e6ca81-85fa-4011-a629-113780a0161e", + "title": "Sovesofa", + "description": "Forskjellige størrelser", + "type": "code", + "sourceOriginal": "8429ee6f-41ee-44b5-90d0-73806a228ea8", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "8429ee6f-41ee-44b5-90d0-73806a228ea8", + "sourceRel": null + } + ], + "products": [ + { + "id": "abcf8023-7bf2-4d36-bcc5-343282609b8f", + "title": "Enkeltrom", + "description": "Rom for 1 person", + "type": "product", + "parent": "", + "sourceOriginal": "8429ee6f-41ee-44b5-90d0-73806a228ea8", + "sourceRel": null, + "deletedDate": "2022-09-05T08:59:41.745Z" + }, + { + "id": "85b60a75-c0dc-471f-b2e9-78301702b3ba", + "title": "Dobbeltrom", + "description": "Rom med plass til 2 personer", + "type": "product", + "parent": "", + "sourceOriginal": "8429ee6f-41ee-44b5-90d0-73806a228ea8", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "b3539c1f-60c2-4a7d-a355-6f1720e7ceb8", + "title": "Familierom", + "description": "Dobbeltrom med ekstra seng", + "type": "product", + "parent": "", + "sourceOriginal": "8429ee6f-41ee-44b5-90d0-73806a228ea8", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "2805dc56-06a5-4d58-9baa-3ed5e99e5587", + "title": "Suite", + "description": "Lukseriøst dobbeltrom", + "type": "product", + "parent": "", + "sourceOriginal": "8429ee6f-41ee-44b5-90d0-73806a228ea8", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [ + { + "id": "c7fb81f9-c8c4-4c41-9cdf-d5355b44aaf6", + "bankId": "c7fb81f9-c8c4-4c41-9cdf-d5355b44aaf6", + "comment": "Første utkast til Demohotellet", + "date": "2022-08-26T06:40:49.500Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null + } + ], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "title": "Demoprosjektet", + "description": "Dette er prosjekt det", + "needs": [ + { + "id": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "title": "tittel", + "description": "sss", + "requirements": [ + { + "id": "ae1d3e71-590d-4822-84d3-fa9c8bc41d2b", + "title": "Kravet", + "description": "", + "needId": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "tags": [], + "variants": [ + { + "id": "02059f10-ae36-4412-a10f-852b4dc408f6", + "requirementText": "test kjør", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "d3f71f71-569c-490f-ac55-64e7efe9344e" + ], + "questions": [ + { + "id": "41fc2071-dc09-4669-94d9-f28d0aa3ad52", + "type": "Q_TEXT", + "config": { + "max": 1000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "653a3f21-1fb7-4bdb-85b4-c5f91bb73505", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "f5322452-6425-4cc0-a0b9-357919d46289", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "11112888-57fb-4d31-ab4c-acfd04be0c02", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "15047fa0-842c-4d4c-9da9-d571a8273328", + "type": "Q_FILEUPLOAD", + "config": { + "template": null, + "uploadInSpec": false, + "allowMultipleFiles": false, + "fileEndings": [], + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "files": [ + "" + ] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "738b9b7b-8b25-44dd-91d9-913e5281f520", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10, + "step": 1, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "c6ebf356-4337-481c-b9f0-074e1bdb31c2", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Helloen" + }, + { + "id": "29f4872a-28b4-44f5-8db7-39625243dda9", + "requirementText": "", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "54fea996-0deb-4247-af32-1d92f5e0d840", + "563cb3b6-04bf-4fb0-8d9d-0ba396cc6fd2", + "07cbd177-b3a7-4c62-8c64-b1b5f24c0652", + "b4d36be5-1502-441f-8de5-29d91d0eab3a" + ], + "questions": [ + { + "id": "e94f4a4e-3fc9-41ad-82a0-a750b2b17555", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "341af8a4-aa08-4bb0-8c95-dca601a85f70", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "142b03cc-a943-464e-b95d-8ab374f6ca41", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "56b15670-e31e-415c-9bf1-43e376e8d5bc", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Dette er en variant" + }, + { + "id": "41b8b68c-209b-479f-bab9-c2a0d73b54cc", + "requirementText": "", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "5b00650a-0531-404c-901d-9dd96da2440c", + "7f7218ba-c13b-4d5b-8cf9-dcbe8f487b4d", + "fb8293e2-8f0e-411f-9d0d-5192085156b1" + ], + "questions": [ + { + "id": "4ab05b39-ead9-47f5-aaed-e5bcb3034eb0", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": false + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "InfoVariant" + } + ], + "type": "requirement", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "231e5480-f2e7-4872-9284-3e51cd33163f", + "title": "nytt krav", + "description": "", + "needId": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "type": "requirement", + "variants": [ + { + "id": "3fd8ca34-ff40-4f45-b075-28f5a8149058", + "requirementText": "Test", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "5b00650a-0531-404c-901d-9dd96da2440c", + "563cb3b6-04bf-4fb0-8d9d-0ba396cc6fd2", + "07cbd177-b3a7-4c62-8c64-b1b5f24c0652" + ], + "questions": [ + { + "id": "d3da0d0d-aeae-48f4-b261-1eb82c36f7db", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": false + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "da9c2627-3315-4cb5-a46b-a09a8cdc41c0", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "6ed38a24-faf7-4b77-a859-b7c60ba2c2ce", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Test" + }, + { + "id": "3ea9ae98-3ef5-464d-beff-b18fc51e317c", + "requirementText": "", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "f55fa241-e53f-495f-8723-a4e10c396c5b" + ], + "questions": [ + { + "id": "b922c385-db9b-467a-b84a-3cd63458f16c", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 5, + "step": 1, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Heicxcx" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "e66a91c6-5bd5-4638-a000-e236ba92010d", + "title": "Nytt krav", + "description": "", + "needId": "d5ea7baa-cd78-4f81-8c81-682a589c7edc", + "type": "requirement", + "variants": [ + { + "id": "87b95368-2a97-4045-811a-9f072793e091", + "requirementText": "", + "instruction": "tst", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "16d94d8d-4a1d-4f24-a6eb-c68aff295cb4", + "2c63b1f9-e3af-4018-a187-10abba2cc377", + "b4d1db8e-8d33-4d7d-a0c8-6ac7f1974453", + "8851aefa-59cf-408d-abbf-44addbdce842" + ], + "questions": [ + { + "id": "39cb084d-0322-4a5b-887b-4f462cf9d80d", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "8743d5c9-cfc3-4c20-a688-7493f40b16e6", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "6ed38a24-faf7-4b77-a859-b7c60ba2c2ce", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Fest" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "dbbf3e8a-8aec-4907-8c1f-8d8274fc22c0", + "title": "Nytt behov", + "description": "", + "requirements": [ + { + "id": "79bc4472-90a8-460f-a947-39e0796e58b4", + "title": "Testooo", + "description": "", + "needId": "dbbf3e8a-8aec-4907-8c1f-8d8274fc22c0", + "type": "requirement", + "variants": [ + { + "id": "5c51cdb1-447f-47cd-81a4-2b31f28eba52", + "requirementText": "Kjlrda", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "5b00650a-0531-404c-901d-9dd96da2440c", + "07cbd177-b3a7-4c62-8c64-b1b5f24c0652" + ], + "questions": [], + "type": "requirement", + "description": "Hva skkjer" + }, + { + "id": "bbaa8b6a-47e0-4463-9e40-27591532d16b", + "requirementText": "tull", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "Hei du" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "65527ccb-5e00-490a-98bd-36d6b25fcaa3", + "title": "Hvor mange nivåer kan vi ha", + "description": "", + "requirements": [], + "type": "need", + "parent": "dbbf3e8a-8aec-4907-8c1f-8d8274fc22c0", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "33924ab6-5ee7-4c15-99ad-75af33774c54", + "title": "Enda behov", + "description": "", + "requirements": [ + { + "id": "9cb9e1eb-7cd0-4e10-bc71-1e8e0a2bd981", + "title": "Dustekrav", + "description": "", + "needId": "33924ab6-5ee7-4c15-99ad-75af33774c54", + "type": "requirement", + "variants": [ + { + "id": "73788544-a109-493e-b2f4-3bb4ab46ee59", + "requirementText": "Dustevariant", + "instruction": "Heia", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "e6a73228-66e6-4288-b75b-aa3e7176b182", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "11112888-57fb-4d31-ab4c-acfd04be0c02", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Kjlørr" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "89b190d5-97b6-49a2-a20d-239b02866af7", + "title": "1000 behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "33924ab6-5ee7-4c15-99ad-75af33774c54", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "07dd8e16-919e-44f1-aab6-45b9ca63c961", + "title": "Mange behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "89b190d5-97b6-49a2-a20d-239b02866af7", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "01d633c1-c349-4a9c-a16f-1e1c5b6c165e", + "title": "Behovet red", + "description": "", + "requirements": [ + { + "id": "6663c59d-8187-4e07-bb8e-561598ab5633", + "title": "Nytt krav", + "description": "", + "needId": "01d633c1-c349-4a9c-a16f-1e1c5b6c165e", + "type": "requirement", + "variants": [ + { + "id": "f0889677-c55e-4fb3-a72d-af59c6f1bcd4", + "requirementText": "Ny variant", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "info", + "description": "TEst" + }, + { + "id": "1403418f-e0bd-4b1c-90fc-208c2490552c", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "info", + "description": "Test 2" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "01aedf91-967b-4f84-98fd-0ddf4ea43ef5", + "title": "Dette er en veldig veldig langt tekst for et behov som ikke skal gjøre noe som helst", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "2a0240f1-bea9-4208-a2d9-2f04393171bf", + "title": "Behov med alle questions", + "description": "Spennende", + "requirements": [ + { + "id": "3b303931-20c1-48f5-acd9-b3bd5aa9e5de", + "title": "Dette er et krav", + "description": "", + "needId": "2a0240f1-bea9-4208-a2d9-2f04393171bf", + "type": "requirement", + "variants": [ + { + "id": "1636f2e9-2c41-4d0a-ad51-5e0a2f17c27e", + "requirementText": "Kravteksten er som så", + "instruction": "Veiledning hei på deg", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "d3f71f71-569c-490f-ac55-64e7efe9344e" + ], + "questions": [ + { + "id": "d205901b-1f39-499a-a009-be56e07351ee", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "f30b6cfd-d4a4-4bef-8552-7d555d72fad6", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "6ed38a24-faf7-4b77-a859-b7c60ba2c2ce", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "7152bbcd-6a58-4538-be14-9303dd57ebc1", + "type": "Q_FILEUPLOAD", + "config": { + "template": null, + "uploadInSpec": false, + "allowMultipleFiles": false, + "fileEndings": [], + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "files": [ + "" + ] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "68fbd9ea-8d0a-4731-a225-674114f92d23", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "8c34887b-b560-4694-9cf4-6a653dae1695", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "c20b05b9-24db-41d4-a476-c7869faed15f", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10, + "step": 1, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "485caac2-8907-436e-9f97-2be22fdd618d", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Variant #1" + }, + { + "id": "804a71a5-6e64-467a-8bda-22dcd5668e0b", + "requirementText": "kraaavtekst", + "instruction": "veeeeiledning", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "d3f71f71-569c-490f-ac55-64e7efe9344e" + ], + "questions": [ + { + "id": "935244d0-ec5e-402d-b68d-ccd8f8482d42", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "7671f13e-77c6-4a6a-93c7-1b0a5bfcb06e", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "11112888-57fb-4d31-ab4c-acfd04be0c02", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "04809e97-bae7-4510-a3d8-a665a3536c13", + "type": "Q_FILEUPLOAD", + "config": { + "template": null, + "uploadInSpec": false, + "allowMultipleFiles": false, + "fileEndings": [], + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "files": [ + "" + ] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "3c56a234-1744-4c67-a255-6932b14fa1f3", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "6e7eece5-7c6a-4814-ba8d-d2cb864740a3", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "9ca3883b-5090-4fa6-a0ea-bdc57c13ec2d", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10, + "step": 1, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "3139b29f-d5fd-4f6a-a957-3db6babc1491", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Variant #2" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "78a470ce-527a-4dda-8051-284e1f0ab899", + "title": "Ekstra krav", + "description": "", + "needId": "2a0240f1-bea9-4208-a2d9-2f04393171bf", + "type": "requirement", + "variants": [ + { + "id": "c18387b3-ddd6-40ed-a36d-867ad8bde2e5", + "requirementText": "kravt", + "instruction": "veild", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "d3f71f71-569c-490f-ac55-64e7efe9344e" + ], + "questions": [ + { + "id": "bd8a7658-93a0-4e8d-a958-a7eb0e322b97", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": false + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "0ad13210-48ae-44d4-a902-b416b6bf55d8", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "142b03cc-a943-464e-b95d-8ab374f6ca41", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "147d8a82-cb6e-4939-9a04-cca1ff48c68b", + "type": "Q_FILEUPLOAD", + "config": { + "template": null, + "uploadInSpec": false, + "allowMultipleFiles": false, + "fileEndings": [], + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "files": [ + "" + ] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "bef68280-6297-44ac-84c3-6bde7c012ce1", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "60a2fcf7-794c-4286-9bb0-c7c994ccd9cb", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "5d253775-0cc7-4a21-a94f-91c07ad996ae", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10, + "step": 1, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "3b793d42-4440-46f1-94bf-5cc1cd7dd420", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Bare en variant her" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "2da47190-74e5-458b-8f5d-06d5f0d53f51", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "requirements": [ + { + "id": "e66fa86a-829c-4acf-a6db-4da62b37b9fd", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "", + "needId": "2da47190-74e5-458b-8f5d-06d5f0d53f51", + "type": "requirement", + "variants": [ + { + "id": "fc42da6c-dc5d-4161-a86d-c9aab2d80f14", + "requirementText": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "instruction": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "6c7d9a09-f358-4b40-b9c7-c8ef721beb85", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "6b686680-5b70-4360-b212-acde1a7550ef", + "title": "Vi kan ha mange veldig lange behover for det er det vi behøver. Dette er et skikkelig langt behov som forhpoentligvis skal strekke seg over flere 1000 linjer. Mest for test purposes, men kanskje også det er et relevant behov som vi får bruk for i eventuelle annskaffelser. Det blir spennede å se ", + "description": "Den har også beskrivelse", + "requirements": [ + { + "id": "a8353ecc-3e97-4266-8100-1f7cc22f57b7", + "title": "Er det virkelig behov for så lange titler?", + "description": "", + "needId": "6b686680-5b70-4360-b212-acde1a7550ef", + "type": "requirement", + "variants": [ + { + "id": "13f05538-44d2-4ce3-ae77-c4a195b19f79", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [], + "type": "info", + "description": "Bare lurer" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "0fa0ed1a-69ae-47c6-821b-403820537bca", + "title": "Dette skal bli så langt at vi må legge på scroll", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "c6c71c0b-831d-43a3-88a4-4bc32fdb2782", + "title": "Vi kan lage mange behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "8120236a-3bc5-4ff6-94a2-27e4a4db364e", + "title": "2 behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "719ad9b0-d207-49d8-b6f8-3d07b8bf6c6d", + "title": "behov med liten bokstav", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "3ead6a9a-f8e7-4953-834e-f74eb6678f06", + "title": "3 behov", + "description": "", + "requirements": [ + { + "id": "ca01dfdc-fbb4-4574-b037-d85a61cad2d3", + "title": "test", + "description": "", + "needId": "3ead6a9a-f8e7-4953-834e-f74eb6678f06", + "type": "requirement", + "variants": [ + { + "id": "08bd560c-8b67-4917-8632-9811ab777574", + "requirementText": "123", + "instruction": "VEILLEEEDDDNING", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "47b657ca-a854-4cbc-a8ff-f4beb92f3400" + ], + "questions": [ + { + "id": "a6176fd0-bebf-41b3-990e-5215eb04a651", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "99611fbd-a546-472a-8a3a-5ae78aba6a98", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Den har beskrivelse" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "b3a01630-2c25-4141-9b1d-799c457b5c9d", + "title": "5 behov", + "description": "", + "requirements": [ + { + "id": "13b07d56-e333-486d-a4cc-94c078d5327a", + "title": "5 krav", + "description": "", + "needId": "b3a01630-2c25-4141-9b1d-799c457b5c9d", + "type": "requirement", + "variants": [ + { + "id": "768baaac-7757-4c9d-a4b6-1f68ad7cf248", + "requirementText": "", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b4d1db8e-8d33-4d7d-a0c8-6ac7f1974453" + ], + "questions": [ + { + "id": "42d5333c-dee1-41c0-819e-07136d870721", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10, + "step": 1, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Testvariant" + }, + { + "id": "97b1604a-f7d9-4ad2-8c68-b83122978566", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "gosse" + } + ], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "089674ad-d770-46fd-aa8a-9b8a57d0b1fe", + "title": "test", + "description": "", + "needId": "b3a01630-2c25-4141-9b1d-799c457b5c9d", + "type": "requirement", + "variants": [], + "tags": [], + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "31b69528-0019-47b7-9d47-318aca88ea3e", + "title": "4 behov", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "6ed38a24-faf7-4b77-a859-b7c60ba2c2ce", + "title": "Koder", + "description": "", + "codes": [ + { + "id": "6e0ffc15-a4c6-4eea-82e9-818b788e5536", + "title": "kode", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "9168c90f-af0f-425f-9ff8-7f3afa522afc", + "title": "Dette her blir en eldig lang tekst, hvordan skal dette gå hve kan vite det, hjelp hjelp hjelp", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "11112888-57fb-4d31-ab4c-acfd04be0c02", + "title": "Supertest", + "description": "", + "codes": [ + { + "id": "733867a7-f820-44a5-a026-03e52736649b", + "title": "Ny kode", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "8f7e7313-5aa3-4825-b13c-9b98a2a79e16", + "title": "Flere koder", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "b2c819f7-5ce5-41d4-9b2f-4decb445e9c5", + "title": "Jeg kan lage mange", + "description": "Testoo", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "854a3d1a-025f-4ae5-990d-d345e353fb20", + "title": "Tusen koder", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "fbe956e5-915c-4b59-aad1-d4d88fc8c192", + "title": "En mill koder?", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "1263f0f0-4f5e-4545-9788-d26db7a23273", + "title": "Ikke så mange", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + }, + { + "id": "df0afa39-04c0-4eaf-af34-64e04cddb37e", + "title": "stopp nå", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "142b03cc-a943-464e-b95d-8ab374f6ca41", + "title": "Ny kodeliste", + "description": "", + "codes": [ + { + "id": "2eb31785-0473-4ce4-805b-9a491dde78c3", + "title": "Den har 1 kode", + "description": "", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "21b8f9dc-278a-40ce-9bf4-744fe9587840", + "title": "Mange kodeliste", + "description": "", + "codes": [], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "1c5bbe31-b4a2-4c6b-a13e-e1464278b985", + "title": "Kjempekodeliste", + "description": "", + "codes": [], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "c07f08b7-10e3-4258-8cb0-ad153951e03a", + "title": "Million kodelister", + "description": "", + "codes": [], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "99611fbd-a546-472a-8a3a-5ae78aba6a98", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "codes": [ + { + "id": "e82d8b64-6207-4c07-aca2-f5dd70d0d7de", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "type": "code", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "d98685b4-03a0-445d-8780-3f5695a58bdf", + "title": "Dette er en dum test", + "description": "Men beskrivelse er på", + "codes": [], + "type": "codelist", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "products": [ + { + "id": "5b00650a-0531-404c-901d-9dd96da2440c", + "title": "Produkt", + "description": "Kjør", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "62e9b3c5-dd36-4ed9-b6dc-391656b51be6", + "title": "1", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "16d94d8d-4a1d-4f24-a6eb-c68aff295cb4", + "title": "Produkt 2", + "description": "Test 2", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "54fea996-0deb-4247-af32-1d92f5e0d840", + "title": "OK kjør", + "description": "test", + "type": "product", + "parent": "16d94d8d-4a1d-4f24-a6eb-c68aff295cb4", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "07cbd177-b3a7-4c62-8c64-b1b5f24c0652", + "title": "Produkt 3", + "description": "fszf", + "type": "product", + "parent": "54fea996-0deb-4247-af32-1d92f5e0d840", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "511ca0ee-4cf4-40f3-a94f-9a37fba87661", + "title": "Et produkt om dagen", + "description": "", + "type": "product", + "parent": "07cbd177-b3a7-4c62-8c64-b1b5f24c0652", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "24c1fffd-aa71-459b-b70f-e231911485d0", + "title": "8", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "5762b917-2f99-4395-9b41-dfd1e2805f78", + "title": "werrewew", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "1e6917dc-7c8d-4b86-bd00-a300632c32e4", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "b4d36be5-1502-441f-8de5-29d91d0eab3a", + "title": "Skal slettes", + "description": "asdads", + "type": "product", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "deletedDate": "2022-06-14T11:10:03.230Z" + }, + { + "id": "1821ed63-a727-458c-a4b4-9b79b0b0907b", + "title": "Underprodukt som skal slettes", + "description": "", + "type": "product", + "parent": "b4d36be5-1502-441f-8de5-29d91d0eab3a", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null, + "deletedDate": "2022-06-14T11:08:38.177Z" + } + ], + "publications": [ + { + "id": "cd971bd9-26c1-4747-9723-108a766b4c72", + "bankId": "cd971bd9-26c1-4747-9723-108a766b4c72", + "comment": "Publisering", + "date": "2022-03-25T11:37:02.811Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "43678058-18c7-4c18-bce2-7bc218a8c019", + "bankId": "43678058-18c7-4c18-bce2-7bc218a8c019", + "comment": "Test", + "date": "2022-03-29T11:27:55.421Z", + "type": "publication", + "version": 2, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "eb57cf85-2315-46e4-b807-c06ace9aaa11", + "bankId": "eb57cf85-2315-46e4-b807-c06ace9aaa11", + "comment": "Kjør", + "date": "2022-03-29T11:28:26.932Z", + "type": "publication", + "version": 3, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "87a86531-91f7-4978-bdc7-8021454730c7", + "bankId": "87a86531-91f7-4978-bdc7-8021454730c7", + "comment": "Ny pub", + "date": "2022-03-29T11:56:48.405Z", + "type": "publication", + "version": 4, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "25f97ef6-9a02-462f-a7ad-c4c7904b2103", + "bankId": "25f97ef6-9a02-462f-a7ad-c4c7904b2103", + "comment": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "date": "2022-04-08T15:05:47.355Z", + "type": "publication", + "version": 5, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "8a043eed-d596-4072-a501-5e21e421ce9d", + "bankId": "8a043eed-d596-4072-a501-5e21e421ce9d", + "comment": "Siste publisering", + "date": "2022-04-19T11:58:03.067Z", + "type": "publication", + "version": 6, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "4d74d107-c1c6-46fd-aca3-d410da7f47b7", + "bankId": "4d74d107-c1c6-46fd-aca3-d410da7f47b7", + "comment": "Test av nye specMin/max", + "date": "2022-04-25T09:11:14.732Z", + "type": "publication", + "version": 7, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "9154daf8-ca6e-4b47-bfca-058b61f39acb", + "bankId": "9154daf8-ca6e-4b47-bfca-058b61f39acb", + "comment": "Flere krav", + "date": "2022-04-25T12:39:24.788Z", + "type": "publication", + "version": 8, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "1106626d-4899-477f-bcae-e18ac9701039", + "bankId": "1106626d-4899-477f-bcae-e18ac9701039", + "comment": "Tatt vekk specmin/max", + "date": "2022-04-26T13:39:04.274Z", + "type": "publication", + "version": 9, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "208008ac-e66f-4e3d-8c2d-90181a0dd9ad", + "bankId": "208008ac-e66f-4e3d-8c2d-90181a0dd9ad", + "comment": "Checkbox Queastion test", + "date": "2022-05-11T07:49:34.438Z", + "type": "publication", + "version": 10, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "4ec817b3-f8e1-4fbe-ac15-194ea409e3e3", + "bankId": "4ec817b3-f8e1-4fbe-ac15-194ea409e3e3", + "comment": "Test", + "date": "2022-05-16T07:04:02.082Z", + "type": "publication", + "version": 11, + "sourceOriginal": null, + "sourceRel": null + } + ], + "tags": [ + { + "id": "5a80809d-d621-4772-a1d0-ec2a42cae470", + "title": "Merkelapp", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "0d1237f7-e6c7-495e-b9d0-cd854aad723b", + "title": "Merkelapp 2", + "description": "", + "type": "tag", + "parent": "5a80809d-d621-4772-a1d0-ec2a42cae470", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "51334e8d-2b09-4585-8b93-347560ccc31e", + "title": "MANGEN MERKELAPPA", + "description": "heihei", + "type": "tag", + "parent": "0d1237f7-e6c7-495e-b9d0-cd854aad723b", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "83e892c4-523e-4234-ab68-c1eecf77bdc3", + "title": "Gal", + "description": "", + "type": "tag", + "parent": "51334e8d-2b09-4585-8b93-347560ccc31e", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + }, + { + "id": "c829f865-cf1a-411c-8221-2d15c2abefb0", + "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "type": "tag", + "parent": "", + "sourceOriginal": "0c76bf8e-3b54-493d-beb3-c59daf0c233a", + "sourceRel": null + } + ], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null + }, + { + "id": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "title": "El-bil til kommunedrift", + "description": "", + "needs": [ + { + "id": "c06819bc-0459-43fc-bc06-5e44fb538b14", + "title": "Levering", + "description": "", + "requirements": [ + { + "id": "99b35df9-27fd-4486-ae39-8701c5a2dda5", + "title": "Leveringstidspunkt", + "description": "", + "needId": "c06819bc-0459-43fc-bc06-5e44fb538b14", + "type": "requirement", + "variants": [ + { + "id": "1bf2d7c5-f880-4387-b465-7fe6c62e77f1", + "requirementText": "Bilen(e) skal leveres klar til bruk innen 3 måneder.", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "8171b24f-5361-470c-b688-17233f91d5ae", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Innen 3 måneder" + }, + { + "id": "c12ac64e-923d-4802-9b2a-4de492ad0f54", + "requirementText": "Bilen(e) skal leveres klar til bruk innen 6 måneder.", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "3533cf12-c92c-4dab-b57f-13a1f127e619", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Innen 6 måneder" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "1077fe91-b42e-4fff-9663-533fed23a88d", + "title": "Leveringssted", + "description": "", + "needId": "c06819bc-0459-43fc-bc06-5e44fb538b14", + "type": "requirement", + "variants": [ + { + "id": "38ba639c-a186-4b09-9600-4da42e38a16b", + "requirementText": "Bilen(e) må leveres på følgende adresse for å være ansett som levert:", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "c55da865-4e7f-45f5-91eb-d2995c24127b", + "type": "Q_TEXT", + "config": { + "max": 1000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Angitt adresse" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "e72fd4f7-5971-4ea3-804c-a1d8ae813e45", + "title": "Egnethet", + "description": "", + "requirements": [ + { + "id": "8a15488d-50fc-44db-9de3-2cacd62cd7d5", + "title": "Bruk", + "description": "", + "needId": "e72fd4f7-5971-4ea3-804c-a1d8ae813e45", + "type": "requirement", + "variants": [ + { + "id": "ff2497e9-52a8-49d0-ad45-78a4ec9366d1", + "requirementText": "Bil skal være godt egnet til helårsbruk under nordiske forhold.", + "instruction": "Brukes dersom bilen skal benyttes gjennom hele året.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "c63ad29b-0b62-4a37-8e63-cb9fb5ca4914", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Helårsbruk i Norden" + }, + { + "id": "fe38eac3-5ac0-400d-85d5-c48b5da826dd", + "requirementText": "Bil skal være godt egnet til bruk i sommerhalvåret (fom. april- tom. oktober) under nordiske forhold.", + "instruction": "Brukes dersom bilen bare benyttes på bart føre.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6", + "b662684a-3f6b-4599-8452-ab699b0c83be" + ], + "questions": [ + { + "id": "3c770ccb-266c-40ed-8128-a41a29d37b6b", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Bruk kun i sommerhalvåret" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "30835af7-d228-4954-93eb-ebb7036dc288", + "title": "Ytelse", + "description": "", + "requirements": [ + { + "id": "2a1954fb-55a7-418d-ba33-7ad7ba835315", + "title": "Trekkraft for tilhenger", + "description": "", + "needId": "30835af7-d228-4954-93eb-ebb7036dc288", + "type": "requirement", + "variants": [ + { + "id": "71841596-6630-4ca4-b0e0-0dbeedc9918f", + "requirementText": "Oppgi maksimal hengervekt dersom bilen er påmontert hengerfeste:", + "instruction": "Benyttes fortrinnsvis i tilfeller hvor man stiller krav om påmontert hengerfeste.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "f2dee43f-ea7c-407d-92eb-cf4aa89bc29e", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 2500, + "step": 50, + "unit": "kg", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Maksimal hengervekt" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "37f5ea54-87c7-4e9c-a01d-3d17dd1c5df6", + "title": "Rekkevidde", + "description": "", + "needId": "30835af7-d228-4954-93eb-ebb7036dc288", + "type": "requirement", + "variants": [ + { + "id": "64ee25d5-b666-4900-a438-229dcace37eb", + "requirementText": "Bilen skal være testet og oppnådd målt rekkevidde på minimum 200 km WLTP.", + "instruction": "Brukes i utgangspunket for alle biler som kun småkjøres gjennom arbeidsdagen.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "be949330-fbf8-44a0-83d1-bf27c8920395", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Minimum 200 km WLTP" + }, + { + "id": "3078866b-0551-4aee-94bb-d220c8fd749e", + "requirementText": "Bilen skal være testet og oppnådd målt rekkevidde på minimum 350 km WLTP.", + "instruction": "Brukes i utgangspunket for alle biler som er beregnet på blandet kjøring eller tidvis lengre turer.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "4c557b8e-3c64-4402-8a30-495a7048348a", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Minimum 350 km WLTP" + }, + { + "id": "6624c39b-f9d0-4403-a6d8-d5fdab6ff9d3", + "requirementText": "Oppgi hvor mange km WLTP bilen er testet til:", + "instruction": "Benyttes når de to andre variantene ikke er egnet.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "6eec190e-9643-4955-8c95-010c67b552da", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "e7f7f9a5-90a5-42be-ad68-abe557081fff", + "type": "Q_SLIDER", + "config": { + "min": 200, + "max": 1000, + "step": 1, + "unit": "km WLTP", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": "200" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Angitt rekkevidde" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "925545a4-c671-4495-9146-79ed1ea21518", + "title": "Lading", + "description": "", + "requirements": [ + { + "id": "d9292336-3e07-4f04-8579-45ce5f79afbb", + "title": "Mode 2 - Sakte lading eller nødlading", + "description": "", + "needId": "925545a4-c671-4495-9146-79ed1ea21518", + "type": "requirement", + "variants": [ + { + "id": "9def52e3-b9b9-4478-956c-d70f8af98912", + "requirementText": "Bilen skal leveres med støtte for Mode 2 ladesystem. Kabel skal følge med.", + "instruction": "Ved Mode 2 lading benyttes det også standard-kontakter, men det lades med en ladekabel som er semi-aktiv. Det vil si at ladekabelen har innebygde sikkerhetsfunksjoner som delvis håndterer de risikoene som kan oppstå ved lading.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "ac70f92c-1f0c-4fc0-9862-fa5c8c2818fb", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Mode 2" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "989bb5af-8a31-41a1-99a8-6f80f5f39810", + "title": "Mode 3 - Normallading med fastmontert ladestasjon", + "description": "", + "needId": "925545a4-c671-4495-9146-79ed1ea21518", + "type": "requirement", + "variants": [ + { + "id": "f577cf63-18f1-41a2-9a55-9ebfce611aac", + "requirementText": "Bilen skal leveres med støtte for Mode 3 type 1 ladesystem. Kabel skal følge med.", + "instruction": "Støtte for sakte og hurtigere lading med kontakt utviklet for det amerikanse markedet. Brukes kun når du vet at dette er standard hos deg.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "3ff49758-b753-42f8-9cfd-142c0c429add", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Mode 3 type 1" + }, + { + "id": "fe6c95c4-b8c4-4ab2-aa64-dc8837fb57b1", + "requirementText": "Bilen skal leveres med støtte for Mode 3 type 2 ladesystem. Kabel skal følge med.", + "instruction": "Støtte for sakte og hurtigere lading med kontakt utviklet for det europeiske markedet. Som hovedregel benyttes dette kravet i Norge.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "8cfc31f3-fd2c-4503-bb84-4891335d99ca", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Mode 3 type 2" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "2460ce7a-107f-46e5-af81-d04246beb174", + "title": "Mode 4 - Hurtiglading", + "description": "", + "needId": "925545a4-c671-4495-9146-79ed1ea21518", + "type": "requirement", + "variants": [ + { + "id": "9f6910a1-baac-478b-a7e9-fac96c91d000", + "requirementText": "Bilen skal leveres med støtte for Mode 4 type CCS ladesystem. Kabel skal følge med.", + "instruction": "Støtte for hurtiglading med kontakt som brukes eller fases inn i Norge.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "b3252be2-8ead-401c-85e3-5e47e96e8ffa", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Mode 4 type CCS" + }, + { + "id": "92589666-8f73-40d4-8792-0387db74461e", + "requirementText": "Bilen skal leveres med støtte for Mode 4 type CHAdeMO ladesystem. Kabel skal følge med.", + "instruction": "Støtte for hurtiglading med kontakt som er under utfasing i Norge. Brukes kun i tilfeller hvor eksisterende anlegg benytter CHAdeMO og ikke er planlagt byttet ut på kort sikt.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "7c14d886-d56f-4e60-a1fe-3699d0f9429a", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Mode 4 type CHAdeMO" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "e25eed11-f6a9-4b68-bd88-0e60e72fbf5b", + "title": "Interiør", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "9d94e11d-4096-4cee-a2f3-bea56974cc30", + "title": "Sitteplasser", + "description": "", + "requirements": [ + { + "id": "5c9bacc1-5963-406a-a3b1-27481a783098", + "title": "Sitteplasser foran", + "description": "", + "needId": "9d94e11d-4096-4cee-a2f3-bea56974cc30", + "type": "requirement", + "variants": [ + { + "id": "649ffae0-aca5-43b9-ae6c-977fdea49495", + "requirementText": "Bilen skal ha to sitteplasser foran.", + "instruction": "Velges dersom man ønsker å motta tilbud utelukkende med to sitteplasser foran.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e" + ], + "questions": [ + { + "id": "148d5858-3f8e-480f-aafd-a8738e9592e8", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "To sitteplasser" + }, + { + "id": "e259ff55-18ad-46fb-91f7-d3e221ffb839", + "requirementText": "Oppgi antall sitteplasser foran:", + "instruction": "Brukes i hovedsak når man ønsker 1 eller 3 sitterplasser foran, eller aksepterer eksempelvis 2-3 sitteplasser foran.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "1b3f45dc-d876-42f5-a219-831f09994625", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 3, + "step": 1, + "unit": "sitteplasser", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": 1 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Angitt antall sitteplasser" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "a0242b93-22af-4d4f-a687-0910083e401b", + "title": "Sitteplasser bak", + "description": "", + "needId": "9d94e11d-4096-4cee-a2f3-bea56974cc30", + "type": "requirement", + "variants": [ + { + "id": "5942e0aa-eeaa-49c5-b2cc-99df72dc44b2", + "requirementText": "Bilen skal ikke ha sitteplasser utover sitteplassene foran.", + "instruction": "Brukes dersom man ønsker at bilen ikke skal ha sitteplasser bak.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82" + ], + "questions": [ + { + "id": "9698a5ec-fb2e-4b7a-94c0-c792d10ff537", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Ingen sitteplasser" + }, + { + "id": "5e5c4dc1-4c7a-4b20-a8ab-1b828162a4f8", + "requirementText": "Bilen skal ha tre sitteplasser bak.", + "instruction": "Velges dersom man ønsker å motta tilbud utelukkende med tre sitteplasser bak.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82" + ], + "questions": [ + { + "id": "e4fe1508-34c6-49e1-93bd-763600b92fc7", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tre sitteplasser" + }, + { + "id": "fcff32ad-faa7-4d69-b1f1-adc85d144847", + "requirementText": "Oppgi antall sitteplasser bak:", + "instruction": "Brukes i hovedsak når man ønsker et annet antall enn tre sitterplasser bak, eller aksepterer eksempelvis 1-5 sitteplasser bak.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82" + ], + "questions": [ + { + "id": "e20ed2dd-44e6-4fc8-b054-17edd226fed5", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 5, + "step": 1, + "unit": "sitteplasser", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": 1 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Angitt antall sitteplasser" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "e25eed11-f6a9-4b68-bd88-0e60e72fbf5b", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "6bd6fb37-2399-4734-b08e-41673568b6dc", + "title": "Bagasjerom/lasteplass", + "description": "", + "requirements": [ + { + "id": "474b9072-8ed7-41dc-9a6c-52f8469539f5", + "title": "Bagasjerom foran", + "description": "", + "needId": "6bd6fb37-2399-4734-b08e-41673568b6dc", + "type": "requirement", + "variants": [ + { + "id": "084ba585-2ecd-4a67-bbda-a1ee2f7f9e84", + "requirementText": "Det skal være eget bagasjerom foran i bilen.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82" + ], + "questions": [ + { + "id": "bb642602-8889-4502-9d8b-b95f78c5104c", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Bagasjerom foran" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "630dadb4-2b23-4eda-a867-4c1553e36021", + "title": "Dører", + "description": "", + "requirements": [ + { + "id": "08e73686-a56c-49ad-8559-837ea869208b", + "title": "Dører foran", + "description": "", + "needId": "630dadb4-2b23-4eda-a867-4c1553e36021", + "type": "requirement", + "variants": [ + { + "id": "7f01c12b-91df-41ff-82dd-1d22ddfdca75", + "requirementText": "Bilen skal leveres med to dører foran.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6", + "b662684a-3f6b-4599-8452-ab699b0c83be" + ], + "questions": [ + { + "id": "563f0486-aa24-4581-95e8-eb0783ff817a", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "2 dører" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "c4cfb797-1eb6-415f-8a5c-b149e460a18f", + "title": "Dører bak", + "description": "", + "needId": "630dadb4-2b23-4eda-a867-4c1553e36021", + "type": "requirement", + "variants": [ + { + "id": "8812c047-0c10-4460-b79d-4cd7d1243834", + "requirementText": "Bilen skal leveres med 2 dører bak.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82" + ], + "questions": [ + { + "id": "07f949c6-d0d5-4108-b96f-b7bd23d1ff22", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "2 dører" + }, + { + "id": "86b3d0b3-9dc1-4d3e-9aa2-46540e4021bb", + "requirementText": "Bilen skal leveres uten dører bak.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "6eec190e-9643-4955-8c95-010c67b552da", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "5f3c13d3-9dd4-4250-bae2-bfffad7aca6b", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Ingen dører bak" + }, + { + "id": "f565c4f7-7d06-4c0e-8856-ddfe613195ea", + "requirementText": "Bilen leveres med skyvedør på høyre side.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6", + "57706570-7442-485a-9c67-083a7a3e73ef" + ], + "questions": [ + { + "id": "8b54daa6-a98a-47e1-891f-b885ae00346c", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Skyvedør på høyre side" + }, + { + "id": "04892c71-5a68-42e8-b326-9077284187ce", + "requirementText": "Bilen leveres med skyvedør på begge sider.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "2b1f27e4-3872-4bb1-a17c-5e7b24a0e293", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Skyvedør på begge sider" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "0b97ca3a-6080-42bb-b248-ee2a2c3ee27f", + "title": "Dør til bagasjerom/lasterom", + "description": "", + "needId": "630dadb4-2b23-4eda-a867-4c1553e36021", + "type": "requirement", + "variants": [ + { + "id": "6433d404-ff43-4fb2-8f3f-453e2aad65cf", + "requirementText": "Bilen leveres med topphengslet dør til bagasjerom/lasterom.", + "instruction": "Dette er det vanligste alternativet.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "25c771a5-5b01-4169-837e-5ae986ed5139", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Topphengslet" + }, + { + "id": "4130f371-85c6-445e-b553-88a5ff9a642b", + "requirementText": "Bilen leveres med sidehengslet dør, montert på høyre side, til bagasjerom/lasterom.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "57706570-7442-485a-9c67-083a7a3e73ef", + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "c3a19e16-0350-483c-b29a-1af2b11fa377", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Sidehengslet (høyre)" + }, + { + "id": "5e0caf1f-341c-4bcc-a875-af06fe57a274", + "requirementText": "Bilen leveres med sidehengslet dør, montert på venstre side, til bagasjerom/lasterom.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "57706570-7442-485a-9c67-083a7a3e73ef", + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae" + ], + "questions": [ + { + "id": "86c4747a-28c4-4019-8906-0f6cdb500d70", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Sidehengslet (venstre)" + }, + { + "id": "0f362237-228e-4170-9948-7f923d8b954c", + "requirementText": "Bilen leveres med sidehengslede dører, montert på begge sider, til bagasjerom/lasterom.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "57706570-7442-485a-9c67-083a7a3e73ef", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "46f77661-afef-414c-92e3-61c9fb4b92eb", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Sidehengslet (begge sider)" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "dbac2fb8-c0a4-4b66-abfb-910e03bd4e70", + "title": "Dekk", + "description": "", + "requirements": [ + { + "id": "3b77d08d-adcb-43f7-98c5-b56ab8826d7b", + "title": "Skodd for årstid", + "description": "", + "needId": "dbac2fb8-c0a4-4b66-abfb-910e03bd4e70", + "type": "requirement", + "variants": [ + { + "id": "09321b5b-5985-4a22-9ee5-594c527c5db8", + "requirementText": "Bilen(e) skal leveres skodd for årstiden for leveranse.", + "instruction": "Brukes i tilfeller hvor bilen(e) skal leveres med dekk for to årstider.", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "1c7d2c6c-04a5-4c36-bf17-93e42affd7dc", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Gjeldende årstid" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "f9bf9ae0-bb94-43c5-86a9-ddb9e21ec23f", + "title": "Sommerdekk", + "description": "", + "needId": "dbac2fb8-c0a4-4b66-abfb-910e03bd4e70", + "type": "requirement", + "variants": [ + { + "id": "4200a375-0c03-422b-b98f-fb039a8f1bd7", + "requirementText": "Bilen skal leveres med ett sett sommerdekk.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "0b52d716-f3a9-4bb4-8ffd-ab2651c95a68", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Sommerdekk" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "c284e29d-334a-435e-86da-48931f57a616", + "title": "Vinterdekk", + "description": "", + "needId": "dbac2fb8-c0a4-4b66-abfb-910e03bd4e70", + "type": "requirement", + "variants": [ + { + "id": "a6ab39b5-e59a-42a8-895e-15ab90e3e74d", + "requirementText": "Bilen leveres med ett sett vinterdekk med pigg.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "476e1654-dbbb-40b4-ae6c-9f3356048709", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Piggdekk" + }, + { + "id": "bc4141c2-69b3-4224-ab68-daadc02125dc", + "requirementText": "Bilen leveres med ett sett vinterdekk uten pigg.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "b071e7f5-a580-4307-a708-18612016f2cd", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Piggfritt" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "8e991d1d-cf7d-4195-86db-76d73370c49e", + "title": "Service", + "description": "", + "requirements": [ + { + "id": "32d39821-6f64-49b0-926f-62750b3a6258", + "title": "Hente- og bringetjeneste", + "description": "", + "needId": "8e991d1d-cf7d-4195-86db-76d73370c49e", + "type": "requirement", + "variants": [ + { + "id": "6d1e3c77-7cf5-4525-b905-1f797f42e956", + "requirementText": "Leverandør må kunne tilby hente- og bringetjeneste ved periodisk service, vedlikehold og annet ved behov.", + "instruction": "Brukes som hovedregel dersom man ikke har nok kapasitet i egen bilflåte til å understøtte dette på egenhånd.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "4b35389b-1c72-492a-9aa1-af71b4674206", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tilbud om tjeneste" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "349e9811-1091-44df-bd75-6e1bdb70dd1a", + "title": "Erstatningsbil ved verkstedsbesøk", + "description": "", + "needId": "8e991d1d-cf7d-4195-86db-76d73370c49e", + "type": "requirement", + "variants": [ + { + "id": "83171f7f-a627-4dc5-93cb-0c770aeba676", + "requirementText": "Leverandøren skal kunne tilby tilsvarende erstatningsbil ved periodisk service og andre verkstedsbesøk.", + "instruction": "Brukes som hovedregel.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "57706570-7442-485a-9c67-083a7a3e73ef", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "7613bca5-0aa2-4e00-8bb3-6234cbf93e2e", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tilbud om tjeneste" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "b0345e40-77f3-41ca-9b61-f8a900622a8c", + "title": "Utseende", + "description": "", + "requirements": [ + { + "id": "27ff4fdc-5c3f-45bf-adaa-936254d521ec", + "title": "Farge", + "description": "", + "needId": "b0345e40-77f3-41ca-9b61-f8a900622a8c", + "type": "requirement", + "variants": [ + { + "id": "82a0de46-76fb-4cf2-9e14-f7da021e0f6e", + "requirementText": "Bilen skal leveres i nøytral lys farge, for eksempel grå, sølvgrå eller hvit.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "84848a60-9645-4d62-a34b-c3847537f864", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Nøytral lys farge" + }, + { + "id": "371f67fc-0a88-4252-9970-29c525dda450", + "requirementText": "Bilen skal leveres i nøytral mørge farge, for eksempel mørk grå, sort eller mørk blå.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "35901179-56aa-403b-893f-0d0072ba437f", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Nøytral mørk farge" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "title": "Utstyr", + "description": "", + "requirements": [ + { + "id": "7e17aa2f-e51c-4970-b941-e9a091aef692", + "title": "Hengerfeste", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "7625f820-882a-4f53-a5d1-d08fdad87de8", + "requirementText": "Bilen leveres med godkjent hengerfeste med modeltilpasset ledningsnett.", + "instruction": "Brukes dersom man ønsker at bilen leveres med hengerfeste.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "a3194e08-8271-4155-98a9-860a8c453269", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Leveres med hengerfest" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "a0247f6d-92be-4a72-aaea-6be678e2141a", + "title": "Lasteromsmatte", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "aea24fda-7b31-45cb-b15b-5afb669209fa", + "requirementText": "Bilen skal leveres med lasteromsmatte/-beskyttelse.", + "instruction": "Brukes dersom bruken av bilen tilsier at slik matte/beskyttelse vil forlenge bilens levetid.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "66ae0d3d-e090-4b53-95c8-bacf10e8f259", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Levert med lasteromsmatte" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "1de14d20-4d47-401d-9957-e121caad7a9b", + "title": "Handsfree", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "77bf3652-f369-4bf6-8810-9e13cff44a26", + "requirementText": "Bilen skal være utstyrt med handsfreeløsning over Bluetooth.", + "instruction": "Anbefalt brukt ved de fleste anskaffelser av bil.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "6eec190e-9643-4955-8c95-010c67b552da", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "55845b56-f335-46bc-a214-01089d7c6a0e", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Montert handsfree" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "1212cc2e-313d-4811-8001-50963bdcf28c", + "title": "Radio", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "69e8efaf-6262-4f41-a16b-7647c30f5bc8", + "requirementText": "Bilen skal være utstyrt med radio med støtte for DAB+.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "5f5c02a9-75bf-4307-9f93-ce28b0d3b662", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "DAB+-radio" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "a68e7be5-b945-4b11-ba1f-609214046962", + "title": "Ryggevarsel", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "510f30c6-69f6-4a99-b43d-92486caf1f38", + "requirementText": "Bilen skal leveres med ferdig montert ryggevarsel.", + "instruction": "Brukes på biler man ønsker skal pipe når den rygger.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "57706570-7442-485a-9c67-083a7a3e73ef", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6", + "b662684a-3f6b-4599-8452-ab699b0c83be" + ], + "questions": [ + { + "id": "fcc49d08-aba8-440c-a71c-9f8be45c6c1a", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Ferdig montert" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "9be41d0f-479b-4e39-9793-c15f6f3df119", + "title": "Ryggekamera", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "c65b477a-fb35-41e4-b440-a531eb39b3d1", + "requirementText": "Bilen skal være utstyrt med ryggekamera.", + "instruction": "Brukes dersom bilen skal ha skjerm som støtter sjåfør ved rygging.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "4b7b7be9-cc1b-4b49-ae91-ce8867d509e3", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Ferdig montert" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "d87525ab-08fe-46f6-9539-c491adbd0583", + "title": "Parkeringssensor", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "6e914bd8-2fbd-463e-a76c-def9446c859d", + "requirementText": "Bilen leveres med to parkeringssensorer bak, en på hver side, som gir lydsignal i bilen når man nærmer seg gjenstander/folk/fe som registreres av sensor(ene).", + "instruction": "Brukes dersom man har behov for parkeringssensorer bak.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "57e5e445-d621-4c48-9445-622366a531bf", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "To sensorer bak" + }, + { + "id": "7c6aebea-9f64-42ea-a196-7f4dae307db9", + "requirementText": "Bilen leveres med to parkeringssensorer bak, en på hver side, og to parkeringssenorer foran, en på hver side, som gir lydsignal i bilen når man nærmer seg gjenstander/folk/fe som registreres av sensor(ene).", + "instruction": "Brukes som hovedregel.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "3ba09985-023c-4ef2-9813-6e0a6c4cfdc1", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "To senorer bak og to sensorer foran" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "d8e25db7-888b-437d-bfce-181ecab15778", + "title": "Setevarme", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "3603e6c1-218a-4a2b-a756-de3f92585e99", + "requirementText": "Bilen leveres med setevarme på sitteplassene foran.", + "instruction": "Brukes som hovedregel.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "af6782f0-e653-42df-80e7-6d5debbae561", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Setevarme foran" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "3450166c-0022-4b87-ad11-ded2c9d111d5", + "title": "Klimaanlegg (Air condition)", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "a23872e0-bacc-4f02-a473-e14e65ed2df6", + "requirementText": "Bilen skal være utstyrt med klimaanlegg.", + "instruction": "Brukes som hovedregel.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "04c830d3-9a75-4b12-8961-f6133c364ec2", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Ferdig montert" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "2df3ab16-45a5-43b2-94a9-07abb91216cc", + "title": "Påbudt sikkerhetsutstyr", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "5199d927-2c6b-4b06-b84b-edc29586be92", + "requirementText": "Bilen skal leveres med godkjent varseltrekant og refleksvest som skal oppbevares ihht. regelverk.", + "instruction": "Brukes alltid.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "68f62c54-c46c-478e-ae17-12bad5288f8d", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Varseltrekant og refleksvest" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "2717cb6c-72f9-4e0c-8081-1479ddbd5173", + "title": "Førstehjelpsutstyr", + "description": "", + "needId": "356d1a4a-dd63-42c0-90fc-dcc376e0bd62", + "type": "requirement", + "variants": [ + { + "id": "6cfbeb90-3a1f-4529-9e81-6eb87ad9238e", + "requirementText": "Bilen skal leveres med pute med førstehjelpsutstyr.", + "instruction": "Bør ansees som minimum.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "6eec190e-9643-4955-8c95-010c67b552da", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "487411be-f144-418a-b90c-1d381d4925e5", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Pute med førstehjelpsutstyr" + }, + { + "id": "0e45f2da-cd3f-4650-9b60-6a8e527d9921", + "requirementText": "Bilen skal leveres med fastmontert skrin med førstehjelpsutstyr.", + "instruction": "Anbefales brukt i arbeidsbiler.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "57706570-7442-485a-9c67-083a7a3e73ef", + "6eec190e-9643-4955-8c95-010c67b552da", + "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "8b12d26e-4772-4a33-b709-6447706f8b82", + "b662684a-3f6b-4599-8452-ab699b0c83be", + "cca9fdd8-5024-46a7-9d22-93c1f293e4d6" + ], + "questions": [ + { + "id": "b41de238-759f-4c6e-a77f-87051f2cc0fd", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Skrin med førstehjelpsutstyr" + } + ], + "tags": [], + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "43866b18-9cad-4405-9d88-7f5891320f20", + "title": "Lys", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "cebe39ce-25a9-498b-ba4c-684cef6513ff", + "title": "Sikkerhet", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "43a0b886-3cd2-45b9-b0c8-ff7daf7a1035", + "title": "LCC", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + }, + { + "id": "7527ba6a-12ea-4b9e-9ba0-c48ac22c1827", + "title": "Miljø", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null + } + ], + "codelist": [], + "products": [ + { + "id": "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "title": "El-bil", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "fab4ddba-c6c7-493f-a24b-70bf3b4c6443", + "title": "Kassebil", + "description": "", + "type": "product", + "parent": "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null, + "deletedDate": "2022-10-24T14:37:41.698Z", + "unit": "stk" + }, + { + "id": "57706570-7442-485a-9c67-083a7a3e73ef", + "title": "Personbil", + "description": "", + "type": "product", + "parent": "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "e47e8dd8-6639-4641-8bd6-ba7acea5e96d", + "title": "Kombi", + "description": "", + "type": "product", + "parent": "57706570-7442-485a-9c67-083a7a3e73ef", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "6eec190e-9643-4955-8c95-010c67b552da", + "title": "Mikrobil", + "description": "", + "type": "product", + "parent": "57706570-7442-485a-9c67-083a7a3e73ef", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "dc162bfb-2edf-4247-beb5-5ff1d9288e3e", + "title": "Sedan", + "description": "", + "type": "product", + "parent": "57706570-7442-485a-9c67-083a7a3e73ef", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "8b12d26e-4772-4a33-b709-6447706f8b82", + "title": "Stasjonsvogn", + "description": "", + "type": "product", + "parent": "57706570-7442-485a-9c67-083a7a3e73ef", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "b662684a-3f6b-4599-8452-ab699b0c83be", + "title": "Pick-up", + "description": "", + "type": "product", + "parent": "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + }, + { + "id": "cca9fdd8-5024-46a7-9d22-93c1f293e4d6", + "title": "Varebil", + "description": "", + "type": "product", + "parent": "c2a4893a-664f-4a0c-9e9e-c4936f7722ae", + "sourceOriginal": "7f3d31e1-9854-4b78-ab16-4ad3dc79e943", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + } + ], + "publications": [ + { + "id": "92b9bd96-984c-44cd-b051-bfcd04bb1115", + "bankId": "92b9bd96-984c-44cd-b051-bfcd04bb1115", + "comment": "Første utgave", + "date": "2022-10-24T16:43:01.005Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + }, + { + "id": "635a7430-f248-4884-a4d9-83b247b348e1", + "bankId": "635a7430-f248-4884-a4d9-83b247b348e1", + "comment": "Rettelser", + "date": "2022-10-24T16:53:57.969Z", + "type": "publication", + "version": 2, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + }, + { + "id": "1af3f003-11a8-4805-8a07-e81717d34317", + "bankId": "1af3f003-11a8-4805-8a07-e81717d34317", + "comment": "Versjon 3", + "date": "2022-10-28T07:49:18.497Z", + "type": "publication", + "version": 3, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + } + ], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "84362eae-1a61-41c4-b210-d38d8a08a2a3", + "title": "Enda en test", + "description": "Denne kan slettes - ", + "needs": [], + "codelist": [], + "products": [], + "publications": [], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "aa58330b-df56-4c07-ad8f-663160b59e9a", + "title": "Erik sitt testprosjekt", + "description": "Erik testar Kravbank", + "needs": [ + { + "id": "a7705e2c-0ffc-4834-b44d-c8d6ec72d147", + "title": "PC", + "description": "", + "requirements": [ + { + "id": "af10c83a-3d47-497d-a600-de2fe36d9e57", + "title": "Minne", + "description": "", + "needId": "a7705e2c-0ffc-4834-b44d-c8d6ec72d147", + "type": "requirement", + "variants": [ + { + "id": "4bf6dc8e-d011-4ae4-bb6e-c53c9b1c6691", + "requirementText": "....", + "instruction": "....", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "44b45ef5-28d0-4aac-9aa6-6af20c2871ff" + ], + "questions": [ + { + "id": "44aee15c-ac8a-43b2-bf6a-34ae6ea6f11a", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "64 GB Minne" + }, + { + "id": "59d289c7-44fa-4423-9700-b1e7b9b826dc", + "requirementText": "Maskinen har minst 32 GB innebygget minne og et eller flere ledige minnespor som kan brukes til å oppgradere til minst 64 GB uten åta ut originalminne.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "43ada92f-660a-478f-8edf-31cafd3f5020" + ], + "questions": [ + { + "id": "4793642d-deb9-491f-8f8d-4be93ff64cb5", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "32 GB Minne med mulight for oppgradering" + } + ], + "tags": [], + "sourceOriginal": "aa58330b-df56-4c07-ad8f-663160b59e9a", + "sourceRel": null + }, + { + "id": "d337eb02-5790-4c55-a888-1160fb9bd05c", + "title": "Prosessor ", + "description": "", + "needId": "a7705e2c-0ffc-4834-b44d-c8d6ec72d147", + "type": "requirement", + "variants": [ + { + "id": "354848a5-0d6c-4497-810d-3dbe46a1f151", + "requirementText": "", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "44b45ef5-28d0-4aac-9aa6-6af20c2871ff" + ], + "questions": [], + "type": "requirement", + "description": "AMD64-type prosessor (AMD/Intel, 64 bit)" + }, + { + "id": "31bf207c-2073-404c-a87e-7e15cb3f8f6a", + "requirementText": "", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "44b45ef5-28d0-4aac-9aa6-6af20c2871ff" + ], + "questions": [], + "type": "requirement", + "description": "M1" + }, + { + "id": "f9a57cbf-b0fa-43d8-8120-1dd84fc83407", + "requirementText": "", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "44b45ef5-28d0-4aac-9aa6-6af20c2871ff" + ], + "questions": [], + "type": "requirement", + "description": "M2" + } + ], + "tags": [], + "sourceOriginal": "aa58330b-df56-4c07-ad8f-663160b59e9a", + "sourceRel": null + }, + { + "id": "cd23d998-2749-4717-b959-8c4542daaaf6", + "title": "Tastatur", + "description": "", + "needId": "a7705e2c-0ffc-4834-b44d-c8d6ec72d147", + "type": "requirement", + "variants": [ + { + "id": "ba70af53-ef79-4afb-b3be-913b7600461c", + "requirementText": "Tastaturet må være tilpasset skriving på norsk", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6474f020-7b7b-4bdc-b56f-1bf475c63b2c" + ], + "questions": [ + { + "id": "6bf9d8fb-22a0-46cf-ac76-0fc9f1484b41", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Norsk/nordisk tastatur" + } + ], + "tags": [], + "sourceOriginal": "aa58330b-df56-4c07-ad8f-663160b59e9a", + "sourceRel": null + }, + { + "id": "eaaad5bd-92fe-4501-ae27-69d313244e83", + "title": "Garanti", + "description": "", + "needId": "a7705e2c-0ffc-4834-b44d-c8d6ec72d147", + "type": "requirement", + "variants": [ + { + "id": "19bacda7-ac82-4768-aac4-d930981b1134", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "142e5dc2-041a-4b56-897f-6abf5a717dde", + "type": "Q_SLIDER", + "config": { + "min": 2, + "max": 10, + "step": 1, + "unit": "år", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 2, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": "2" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "2 års garanti eller mer" + } + ], + "tags": [], + "sourceOriginal": "aa58330b-df56-4c07-ad8f-663160b59e9a", + "sourceRel": null + }, + { + "id": "435b799e-1350-44e5-b056-0a4b961a5ad2", + "title": "tgaerye", + "description": "", + "needId": "a7705e2c-0ffc-4834-b44d-c8d6ec72d147", + "type": "requirement", + "variants": [], + "tags": [], + "sourceOriginal": "aa58330b-df56-4c07-ad8f-663160b59e9a", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "aa58330b-df56-4c07-ad8f-663160b59e9a", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "f5243df3-5886-4f90-9ff6-0e83d14db0db", + "title": "En kodeliste", + "description": "", + "codes": [ + { + "id": "a8f73f75-b34d-4ebf-b3dd-05a1a38e2fdb", + "title": "qwe", + "description": "", + "type": "code", + "sourceOriginal": "aa58330b-df56-4c07-ad8f-663160b59e9a", + "sourceRel": null, + "parent": "" + }, + { + "id": "fbba10f5-5034-4678-8878-0cea92bbbbfd", + "title": "wer", + "description": "", + "type": "code", + "sourceOriginal": "aa58330b-df56-4c07-ad8f-663160b59e9a", + "sourceRel": null, + "parent": "" + }, + { + "id": "271df2a5-5454-46f3-b155-d96f12c7e739", + "title": "ert", + "description": "", + "type": "code", + "sourceOriginal": "aa58330b-df56-4c07-ad8f-663160b59e9a", + "sourceRel": null, + "parent": "" + }, + { + "id": "b6b9f56f-972c-4257-983d-0ab5dbc538b1", + "title": "rty", + "description": "", + "type": "code", + "sourceOriginal": "aa58330b-df56-4c07-ad8f-663160b59e9a", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "aa58330b-df56-4c07-ad8f-663160b59e9a", + "sourceRel": null + } + ], + "products": [ + { + "id": "44b45ef5-28d0-4aac-9aa6-6af20c2871ff", + "title": "Prosessor", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "aa58330b-df56-4c07-ad8f-663160b59e9a", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "43ada92f-660a-478f-8edf-31cafd3f5020", + "title": "Minne", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "aa58330b-df56-4c07-ad8f-663160b59e9a", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "6474f020-7b7b-4bdc-b56f-1bf475c63b2c", + "title": "Tastatur", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "aa58330b-df56-4c07-ad8f-663160b59e9a", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [ + { + "id": "a8dde58f-fff9-4d14-8263-3097bf3b6c0a", + "bankId": "a8dde58f-fff9-4d14-8263-3097bf3b6c0a", + "comment": "Første publisering", + "date": "2022-09-14T05:17:16.645Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + } + ], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "bae1913f-06d9-443c-8bc5-5c1e22243e78", + "title": "Erik testar kravbank veke 41 - 1", + "description": "Berre ein test", + "needs": [ + { + "id": "10dfbb61-087c-4d40-b649-c9f7d109b306", + "title": "Berre ein test", + "description": "", + "requirements": [ + { + "id": "e3cb9092-94d8-4acf-9421-53722cfb40c3", + "title": "Jau jau jau", + "description": "", + "needId": "10dfbb61-087c-4d40-b649-c9f7d109b306", + "type": "requirement", + "variants": [ + { + "id": "465b9f4e-c0b2-41e2-bd29-6c1b17b4c616", + "requirementText": "hei fara", + "instruction": "på vedaskog", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "Og mannen han gjekk seg på vedaskog" + }, + { + "id": "a94c2c33-525f-4a62-9e19-020d30064d51", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "Test" + } + ], + "tags": [], + "sourceOriginal": "bae1913f-06d9-443c-8bc5-5c1e22243e78", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "bae1913f-06d9-443c-8bc5-5c1e22243e78", + "sourceRel": null + }, + { + "id": "19bdd2d3-f022-4ce2-8d1a-2f92c9ea5454", + "title": "Gåsa", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "bae1913f-06d9-443c-8bc5-5c1e22243e78", + "sourceRel": null + }, + { + "id": "aae30f2f-357d-44f8-a5db-9c820ad3ccae", + "title": "Katten", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "bae1913f-06d9-443c-8bc5-5c1e22243e78", + "sourceRel": null + }, + { + "id": "6c5fa0aa-9830-4119-894f-0dc81f4ff1d4", + "title": "Hanen", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "bae1913f-06d9-443c-8bc5-5c1e22243e78", + "sourceRel": null + } + ], + "codelist": [], + "products": [], + "publications": [ + { + "id": "bc062276-66cd-401e-a055-8094e8c197bc", + "bankId": "bc062276-66cd-401e-a055-8094e8c197bc", + "comment": "Mest for å fylle ut framsida", + "date": "2022-10-17T13:28:39.986Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + } + ], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "05d0f2c5-c150-43b3-bc47-eb3e27aaacdc", + "title": "Et lite testprosjekt", + "description": "Av Balder", + "needs": [ + { + "id": "54ceb13e-b6d0-4b52-9e5c-196bf7d8daa6", + "title": "Testbehov", + "description": "Test", + "requirements": [ + { + "id": "871b3e50-f564-4a12-a1b4-62756fb8e724", + "title": "Nytt krav", + "description": "", + "needId": "54ceb13e-b6d0-4b52-9e5c-196bf7d8daa6", + "tags": [], + "variants": [ + { + "id": "739e2b5d-dee1-449f-b0b4-07d04d1fc46c", + "requirementText": "sda", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + } + ], + "type": "requirement", + "sourceOriginal": "05d0f2c5-c150-43b3-bc47-eb3e27aaacdc", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "05d0f2c5-c150-43b3-bc47-eb3e27aaacdc", + "sourceRel": null + }, + { + "id": "922d6a1b-d272-4b7f-a3d5-6b309c80aa5c", + "title": "Behov", + "description": "Test", + "requirements": [ + { + "id": "22871f4e-819a-49f3-8b22-7b2fca87e332", + "title": "test 2", + "description": "", + "needId": "922d6a1b-d272-4b7f-a3d5-6b309c80aa5c", + "type": "requirement", + "variants": [ + { + "id": "5e0f7aba-3b7d-4151-b36d-ba2ec710e79b", + "requirementText": "test 2", + "instruction": "hei", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "ok." + }, + { + "id": "a7cd6663-0983-455f-9cc0-254f5cec2be7", + "requirementText": "Test 1000", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + } + ], + "tags": [], + "sourceOriginal": "05d0f2c5-c150-43b3-bc47-eb3e27aaacdc", + "sourceRel": null + }, + { + "id": "05019bf0-d9fe-40db-b677-58fd291bd672", + "title": "Nytt krav", + "description": "", + "needId": "922d6a1b-d272-4b7f-a3d5-6b309c80aa5c", + "type": "requirement", + "variants": [], + "tags": [], + "sourceOriginal": "05d0f2c5-c150-43b3-bc47-eb3e27aaacdc", + "sourceRel": null + } + ], + "type": "need", + "parent": "54ceb13e-b6d0-4b52-9e5c-196bf7d8daa6", + "sourceOriginal": "05d0f2c5-c150-43b3-bc47-eb3e27aaacdc", + "sourceRel": null + }, + { + "id": "27070ffc-3a40-4424-98e5-ccf63d1d558b", + "title": "Test", + "description": "", + "requirements": [], + "type": "need", + "parent": "922d6a1b-d272-4b7f-a3d5-6b309c80aa5c", + "sourceOriginal": "05d0f2c5-c150-43b3-bc47-eb3e27aaacdc", + "sourceRel": null + }, + { + "id": "95a2a907-5a23-449a-8ef8-6d5df7f11d0b", + "title": "Behov", + "description": "", + "requirements": [ + { + "id": "ac11706b-907e-490e-a500-de65cf4d6656", + "title": "hey", + "description": "", + "needId": "95a2a907-5a23-449a-8ef8-6d5df7f11d0b", + "type": "requirement", + "variants": [ + { + "id": "3c356827-bad1-45c6-b233-699fc1bf3592", + "requirementText": "kjørra", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + } + ], + "tags": [], + "sourceOriginal": "05d0f2c5-c150-43b3-bc47-eb3e27aaacdc", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "05d0f2c5-c150-43b3-bc47-eb3e27aaacdc", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "e44512de-842f-4fbd-a257-87f3d261e67e", + "title": "Bobbo", + "description": "", + "codes": [], + "type": "codelist", + "sourceOriginal": "05d0f2c5-c150-43b3-bc47-eb3e27aaacdc", + "sourceRel": null + } + ], + "products": [ + { + "id": "54ceb13e-b6d0-4b52-9e5c-196bf7d8daa6", + "title": "Testbehov", + "description": "Test", + "requirements": [ + { + "id": "871b3e50-f564-4a12-a1b4-62756fb8e724", + "title": "Nytt krav", + "description": "", + "needId": "54ceb13e-b6d0-4b52-9e5c-196bf7d8daa6", + "tags": [], + "variants": [ + { + "id": "739e2b5d-dee1-449f-b0b4-07d04d1fc46c", + "requirementText": "sda", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + } + ], + "type": "requirement", + "sourceOriginal": "05d0f2c5-c150-43b3-bc47-eb3e27aaacdc", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "05d0f2c5-c150-43b3-bc47-eb3e27aaacdc", + "sourceRel": null + }, + { + "id": "922d6a1b-d272-4b7f-a3d5-6b309c80aa5c", + "title": "Behov", + "description": "Test", + "requirements": [ + { + "id": "22871f4e-819a-49f3-8b22-7b2fca87e332", + "title": "test 2", + "description": "", + "needId": "922d6a1b-d272-4b7f-a3d5-6b309c80aa5c", + "type": "requirement", + "variants": [ + { + "id": "5e0f7aba-3b7d-4151-b36d-ba2ec710e79b", + "requirementText": "test 2", + "instruction": "hei", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "ok." + }, + { + "id": "a7cd6663-0983-455f-9cc0-254f5cec2be7", + "requirementText": "Test 1000", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + } + ], + "tags": [], + "sourceOriginal": "05d0f2c5-c150-43b3-bc47-eb3e27aaacdc", + "sourceRel": null + }, + { + "id": "05019bf0-d9fe-40db-b677-58fd291bd672", + "title": "Nytt krav", + "description": "", + "needId": "922d6a1b-d272-4b7f-a3d5-6b309c80aa5c", + "type": "requirement", + "variants": [], + "tags": [], + "sourceOriginal": "05d0f2c5-c150-43b3-bc47-eb3e27aaacdc", + "sourceRel": null + } + ], + "type": "need", + "parent": "54ceb13e-b6d0-4b52-9e5c-196bf7d8daa6", + "sourceOriginal": "05d0f2c5-c150-43b3-bc47-eb3e27aaacdc", + "sourceRel": null + }, + { + "id": "27070ffc-3a40-4424-98e5-ccf63d1d558b", + "title": "Test", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "05d0f2c5-c150-43b3-bc47-eb3e27aaacdc", + "sourceRel": null + } + ], + "publications": [], + "tags": [ + { + "id": "7f0f2f75-81fd-46f9-9676-e14651136cc9", + "title": "Dust oppg", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "05d0f2c5-c150-43b3-bc47-eb3e27aaacdc", + "sourceRel": null + } + ], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "title": "Frukt og grønnsaker", + "description": "Innkjøp av frukt og grønt til institusjoner/barnehager.", + "needs": [ + { + "id": "0b359334-50c0-4f63-b400-9bbca588098c", + "title": "Levering", + "description": "", + "requirements": [ + { + "id": "14198bbe-2198-41f7-97a1-a3465b6e3521", + "title": "Leveringstidspunkt", + "description": "", + "needId": "0b359334-50c0-4f63-b400-9bbca588098c", + "type": "requirement", + "variants": [ + { + "id": "f91d81d3-bc08-4701-9128-654115c83a26", + "requirementText": "Oppdragsgiver kan ta imot produkter i følgende tidsperiode:", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "0428bd38-7171-4d8c-b758-14e420b0db17", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Tidspunkt for leveranser" + } + ], + "tags": [], + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null + }, + { + "id": "3db3aac4-a9c7-4709-b5de-c67c284f72b5", + "title": "dsfsa", + "description": "", + "needId": "0b359334-50c0-4f63-b400-9bbca588098c", + "type": "requirement", + "variants": [ + { + "id": "ac425f56-a976-4d0b-9cec-cf8cee8e17de", + "requirementText": "...", + "instruction": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "d906b0dc-7a40-42ed-9498-50c8e2308afb", + "26aaf2cf-59b2-4e59-8976-1b1d43a67a35" + ], + "questions": [ + { + "id": "8bcaa0a4-b82c-4ea0-ad58-1ea4fd379aa2", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Test" + }, + { + "id": "83fa2716-0b2c-4dcb-8b1e-09c15990f5aa", + "requirementText": "...", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e02aa2a8-4325-4bdd-a5dd-ce721f67e08b", + "78597480-33cd-454d-99c1-546a0534f020", + "84a20d8a-35b3-4d7a-94e4-2bb97baca2c6" + ], + "questions": [ + { + "id": "9d9ca9a0-8bd7-4acc-8e0f-dfd05341ff7f", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 100, + "step": 0.1, + "unit": "cm", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Test 2" + } + ], + "tags": [], + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null + }, + { + "id": "9397c17c-81a4-4d88-ab87-0390da87a528", + "title": "Utseende", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null + }, + { + "id": "6a63c462-b4d4-4f04-901b-b4699763c720", + "title": "Størrelse", + "description": "", + "requirements": [ + { + "id": "ea6e8578-c369-4b73-85ee-43b4c900ce50", + "title": "Produktets lengde", + "description": "", + "needId": "6a63c462-b4d4-4f04-901b-b4699763c720", + "type": "requirement", + "variants": [ + { + "id": "35f11d71-907d-4df6-a295-74e4d4bde48b", + "requirementText": "Banens lengde skal være minimum:", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "78597480-33cd-454d-99c1-546a0534f020" + ], + "questions": [ + { + "id": "9273f300-ea9e-45d5-aad4-14cdd44cc474", + "type": "Q_SLIDER", + "config": { + "min": 5, + "max": 30, + "step": 0.5, + "unit": "cm", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "f7b2e9de-7f02-48fb-8e03-21f8dba66d92", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "9eb0e535-6910-41d4-aedd-2c02aed9a23b", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "1931a6f0-b198-4c4c-a970-35cd9d92b671", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Minimumslengde for banan" + }, + { + "id": "c9e422ed-7d01-4ffb-8122-a5d95df5172e", + "requirementText": "Gulerotens lengde skal være minimum:", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "be1e712f-e762-4439-a967-368bba3f00c4" + ], + "questions": [ + { + "id": "5a8513ff-c47f-4bb2-b29d-f440dbf09ac2", + "type": "Q_SLIDER", + "config": { + "min": 4, + "max": 40, + "step": 1, + "unit": "cm", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Minimumslengde for gulerot" + } + ], + "tags": [], + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null + } + ], + "type": "need", + "parent": "9397c17c-81a4-4d88-ab87-0390da87a528", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null + }, + { + "id": "9ffb02b7-98ed-4987-acdf-23eb81bf959c", + "title": "Farge", + "description": "", + "requirements": [], + "type": "need", + "parent": "9397c17c-81a4-4d88-ab87-0390da87a528", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null + }, + { + "id": "a65feb59-92bf-4aef-abe3-4e3dc9ddd037", + "title": "Kvalitet", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null + }, + { + "id": "d2e29913-50c3-4fee-b39d-8788548039b4", + "title": "Bærekraft", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null + }, + { + "id": "2c6f50a0-e225-4592-9846-0ed1a1659beb", + "title": "Type", + "description": "", + "requirements": [ + { + "id": "d22b18f5-68b6-422d-b147-569b1ed92422", + "title": "Type eple", + "description": "", + "needId": "2c6f50a0-e225-4592-9846-0ed1a1659beb", + "type": "requirement", + "variants": [ + { + "id": "d1a56262-25b3-4bae-bad7-4ffd14fda9f1", + "requirementText": "Eplene må være av følgende type:", + "instruction": "Velg type(r) eple(r) dersom det er viktig.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "84a20d8a-35b3-4d7a-94e4-2bb97baca2c6" + ], + "questions": [ + { + "id": "04819611-8e07-414f-ab4c-941620490165", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "1931a6f0-b198-4c4c-a970-35cd9d92b671", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Angivelse av type eple" + }, + { + "id": "a289fc46-d034-4272-8949-d4377e6ca8d7", + "requirementText": "Eplene er helst av følgende type:", + "instruction": "Velg denne om det er preferanser, men som ikke er obligatorisk.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "84a20d8a-35b3-4d7a-94e4-2bb97baca2c6" + ], + "questions": [ + { + "id": "dc086e45-60b8-4e3d-9890-3d9e0f5ed528", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "1931a6f0-b198-4c4c-a970-35cd9d92b671", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Foretrukket type eple" + } + ], + "tags": [], + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null + }, + { + "id": "89e3be26-4a01-4e94-95b7-1fcbce1705c2", + "title": "Banan", + "description": "", + "requirements": [ + { + "id": "05bdc11d-9af8-4d80-ba8e-1177baba6e27", + "title": "gule bananer", + "description": "", + "needId": "89e3be26-4a01-4e94-95b7-1fcbce1705c2", + "type": "requirement", + "variants": [], + "tags": [], + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "1931a6f0-b198-4c4c-a970-35cd9d92b671", + "title": "Epletyper", + "description": "", + "codes": [ + { + "id": "5272e27d-8952-4b43-9b06-b4a6148a8fe5", + "title": "Gravensten", + "description": "Grønne og sure", + "type": "code", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null, + "parent": "" + }, + { + "id": "a59784b6-3fa3-4ce4-ae64-d301957fc660", + "title": "Granny Smith", + "description": "", + "type": "code", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null, + "parent": "" + }, + { + "id": "f7b7b67c-db7c-449d-89ab-bfe0ef9b5526", + "title": "Pink Lady", + "description": "", + "type": "code", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null, + "parent": "" + }, + { + "id": "5b4c690a-9a86-4b93-b5b2-6cfc675aa2df", + "title": "Gule epler", + "description": "", + "type": "code", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null + } + ], + "products": [ + { + "id": "e02aa2a8-4325-4bdd-a5dd-ce721f67e08b", + "title": "Frukt", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "78597480-33cd-454d-99c1-546a0534f020", + "title": "Banan", + "description": "", + "type": "product", + "parent": "e02aa2a8-4325-4bdd-a5dd-ce721f67e08b", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "84a20d8a-35b3-4d7a-94e4-2bb97baca2c6", + "title": "Eple", + "description": "", + "type": "product", + "parent": "e02aa2a8-4325-4bdd-a5dd-ce721f67e08b", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "9796365a-ee4d-4b84-9e20-b643a2de8bba", + "title": "Gravensten", + "description": "", + "type": "product", + "parent": "84a20d8a-35b3-4d7a-94e4-2bb97baca2c6", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null, + "deletedDate": "2022-05-12T11:34:24.675Z" + }, + { + "id": "f8e4cfa5-2392-4dfc-9629-2e918e864e60", + "title": "Pink Lady", + "description": "", + "type": "product", + "parent": "84a20d8a-35b3-4d7a-94e4-2bb97baca2c6", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null, + "deletedDate": "2022-05-12T11:34:27.470Z" + }, + { + "id": "6ab17e68-673a-43c9-89f7-f52a4e479373", + "title": "Granny Smith", + "description": "", + "type": "product", + "parent": "84a20d8a-35b3-4d7a-94e4-2bb97baca2c6", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null, + "deletedDate": "2022-05-12T11:34:29.225Z" + }, + { + "id": "13afe5d9-832c-44a5-ad88-a9460f99b907", + "title": "Grønnsaker", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "be1e712f-e762-4439-a967-368bba3f00c4", + "title": "Gulerot", + "description": "", + "type": "product", + "parent": "13afe5d9-832c-44a5-ad88-a9460f99b907", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "d906b0dc-7a40-42ed-9498-50c8e2308afb", + "title": "Bær", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "26aaf2cf-59b2-4e59-8976-1b1d43a67a35", + "title": "Jordbær", + "description": "", + "type": "product", + "parent": "d906b0dc-7a40-42ed-9498-50c8e2308afb", + "sourceOriginal": "c3bc517b-5e9e-40b6-8cc5-8422ae7fd5e8", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [ + { + "id": "0de6b75a-30aa-4da1-8bb1-a6713b42d85e", + "bankId": "0de6b75a-30aa-4da1-8bb1-a6713b42d85e", + "comment": "Første utgave", + "date": "2022-05-12T11:45:21.339Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null + } + ], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "title": "Frukt og grønt [RD]", + "description": "Innkjøp av frukt og grønt", + "needs": [ + { + "id": "953f8f0e-2211-4885-b728-96ab06e7e0fc", + "title": "Bærekraft", + "description": "", + "requirements": [ + { + "id": "65d0f74a-eaad-4ea0-8973-d6ba4cac9672", + "title": "Krav1", + "description": "", + "needId": "953f8f0e-2211-4885-b728-96ab06e7e0fc", + "type": "requirement", + "variants": [], + "tags": [], + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null + }, + { + "id": "1fbc871a-ff1b-4b3c-8528-1b71a7724d63", + "title": "Form og farge", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null + }, + { + "id": "3bad8a87-245f-4eae-b8ad-8c2acc3d29d3", + "title": "Utseende", + "description": "", + "requirements": [], + "type": "need", + "parent": "1fbc871a-ff1b-4b3c-8528-1b71a7724d63", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null + }, + { + "id": "bd4fd8c6-4d03-40b8-991e-05753ca252be", + "title": "Størrelse", + "description": "", + "requirements": [ + { + "id": "f5437580-fa7f-439c-905b-4361687ea8b6", + "title": "Lengde på banan", + "description": "", + "needId": "bd4fd8c6-4d03-40b8-991e-05753ca252be", + "type": "requirement", + "variants": [ + { + "id": "829a1b89-324b-4c58-8a7b-995356ae99fe", + "requirementText": "Bananen må ha minimumslengde.", + "instruction": "Brukes der man ønsker at forbrukerne ikke skal se stor forskjell på hverandre, f.eks. i barnehage.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "362e2fc3-81c5-47d7-8d67-ae55e59e8309" + ], + "questions": [ + { + "id": "4f758ecb-ba79-41d3-aa69-584227a6cc1e", + "type": "Q_SLIDER", + "config": { + "min": 5, + "max": 30, + "step": 0.5, + "unit": "cm", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Angir minimumslengde på banan" + } + ], + "tags": [], + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null + } + ], + "type": "need", + "parent": "1fbc871a-ff1b-4b3c-8528-1b71a7724d63", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null + }, + { + "id": "75908d3e-dbea-42d7-9d69-5971730a5233", + "title": "Smak", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null + }, + { + "id": "c5112d91-afeb-4e21-9d16-5e01edd0e313", + "title": "Type", + "description": "", + "requirements": [ + { + "id": "81a5e27e-5d6c-4f0f-b9b2-41c967eaf101", + "title": "Epletype", + "description": "", + "needId": "c5112d91-afeb-4e21-9d16-5e01edd0e313", + "type": "requirement", + "variants": [ + { + "id": "ea4951ff-9e2e-474b-ad93-6995248082ba", + "requirementText": "Eple må være av følgende type", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "0c00196a-488b-46a3-87c5-836afff2da05" + ], + "questions": [ + { + "id": "2cd0cb38-5bc9-4b8b-830d-4bbe0345d7a4", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "bcb0ec38-df9d-4f53-8bc8-743ed73665d3", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Type eple" + } + ], + "tags": [], + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null + }, + { + "id": "58b2f9c9-3a8f-4d9c-a0ac-38758c06db07", + "title": "Leveranse", + "description": "", + "requirements": [ + { + "id": "4cb6e0ee-a42e-4e06-96e8-0bb5fd0cc5c4", + "title": "Leveringstid", + "description": "", + "needId": "58b2f9c9-3a8f-4d9c-a0ac-38758c06db07", + "type": "requirement", + "variants": [ + { + "id": "f0df396b-e451-443a-a2e0-2dc90b6e3590", + "requirementText": "Leveransen må leveres innen gitt antall arbeidsdager.", + "instruction": "Brukes på de fleste kravspekker.", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "fc56cfd6-6238-4a60-8814-580b827dcf2d", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 30, + "step": 1, + "unit": "dager", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tidspunkt forleveranse" + }, + { + "id": "bbb0adc3-a2ff-409a-8631-969f841f34ea", + "requirementText": "Leveransen må være levert innen følgende dato.", + "instruction": "Brukes i hovedsak nå du trenger leveransen innen et gitt tidspunkt.", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "82b94671-f442-4317-814d-32ac8444ca6d", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Leveranse innen gitt tidspunkt" + } + ], + "tags": [], + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "bcb0ec38-df9d-4f53-8bc8-743ed73665d3", + "title": "Epletyper", + "description": "", + "codes": [ + { + "id": "64c687fb-eee9-4177-91a1-67dc694eddd5", + "title": "Granny Smith", + "description": "", + "type": "code", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null, + "parent": "" + }, + { + "id": "a276fa2f-3391-48b1-80ad-b5c66e66acf8", + "title": "Gravenstein", + "description": "", + "type": "code", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null, + "parent": "" + }, + { + "id": "c7f61d90-b44e-449d-a26d-557bdccd5f9f", + "title": "Annet grønn eple", + "description": "", + "type": "code", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null, + "parent": "" + }, + { + "id": "47a8df43-dc18-430a-b55a-da685384982c", + "title": "Gult eple", + "description": "", + "type": "code", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null + } + ], + "products": [ + { + "id": "87835e26-12ed-415e-8b63-241e2a584cdf", + "title": "Frukt", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "0c00196a-488b-46a3-87c5-836afff2da05", + "title": "Eple", + "description": "", + "type": "product", + "parent": "87835e26-12ed-415e-8b63-241e2a584cdf", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "deff7e6c-83a9-49f1-9ad0-4368cdfc6781", + "title": "Grønne epler", + "description": "", + "type": "product", + "parent": "0c00196a-488b-46a3-87c5-836afff2da05", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "9b3cf0da-ccc5-454f-81ba-5b364522ab5d", + "title": "Gravenstein", + "description": "", + "type": "product", + "parent": "deff7e6c-83a9-49f1-9ad0-4368cdfc6781", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null, + "deletedDate": "2022-05-18T10:48:48.407Z" + }, + { + "id": "395bae6c-50ab-414a-a8b5-0498e01eaaa2", + "title": "Granny Smith", + "description": "", + "type": "product", + "parent": "deff7e6c-83a9-49f1-9ad0-4368cdfc6781", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null, + "deletedDate": "2022-05-18T10:48:46.367Z" + }, + { + "id": "362e2fc3-81c5-47d7-8d67-ae55e59e8309", + "title": "Banan", + "description": "", + "type": "product", + "parent": "87835e26-12ed-415e-8b63-241e2a584cdf", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "9b5ab031-4f47-437d-81ab-4210b64edeab", + "title": "Grønnsaker", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "692f430b-4b57-44c3-9ae0-465adb194079", + "title": "Potet", + "description": "", + "type": "product", + "parent": "9b5ab031-4f47-437d-81ab-4210b64edeab", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "e8298a52-0c00-4dca-806e-e5a8020a98a9", + "title": "Bær", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "33407a7e-9d8c-4149-ae63-38a8f94c9a84", + "title": "Nøtter", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "d1ea532d-37ff-4004-b77d-fd58f99295c2", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [ + { + "id": "4db56c43-9408-4849-ba53-b848347ae5fc", + "bankId": "4db56c43-9408-4849-ba53-b848347ae5fc", + "comment": "Første utgave", + "date": "2022-05-18T10:54:02.853Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null + } + ], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "ed2c59b2-ef81-4a5b-a397-13f01257ad77", + "title": "Kens Test", + "description": "Kort beskrivelse av Kens testprosjekt", + "needs": [], + "codelist": [], + "products": [], + "publications": [], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "title": "Kjøretøy til hjemmetjenesten", + "description": "", + "needs": [ + { + "id": "2376e4df-070b-480b-9254-7f3d6d999868", + "title": "Tjenester", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "f992f93a-3b78-4463-b5a3-ab5d8652d649", + "title": "Levering", + "description": "", + "requirements": [ + { + "id": "5c4ba703-c12b-4b9b-9311-26a1cb398dc5", + "title": "Leveringstid", + "description": "", + "needId": "f992f93a-3b78-4463-b5a3-ab5d8652d649", + "type": "requirement", + "variants": [ + { + "id": "3080766a-3432-4b03-93b4-1ad04c49340a", + "requirementText": "Oppgi hvor mange dager man maksimalt må påregne fra bestilling til leveranse.", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "3ef1eaef-7ade-40fb-a379-9906840d7bdf", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 90, + "step": 1, + "unit": "dag(er)", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Maksimal forventet leveringstid" + }, + { + "id": "1c13f326-2717-4c82-a449-28430ef44884", + "requirementText": "Oppgi hvor mange dager man gjennomsnittlig må påregne fra bestilling til leveranse.", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "93aa56c0-3940-4ce8-a8b0-94896de5cbbb", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 90, + "step": 1, + "unit": "dag(er)", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Gjennomsnittlig forventet leveringstid" + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "97ccfc65-a1c6-4091-8bd7-03cd5f321511", + "title": "Leveringssted", + "description": "", + "needId": "f992f93a-3b78-4463-b5a3-ab5d8652d649", + "type": "requirement", + "variants": [ + { + "id": "3fe6a9b9-76c9-48a3-bf13-138dcc100a3b", + "requirementText": "Kjøretøy må leveres på følgende sted for å kunne regnes som levert:", + "instruction": "Brukes dersom man ønsker at kjøretøy skal leveres i stedet for å hentes hos leverandør.", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "a1341758-a55f-48b0-9f04-70022c7aae1a", + "type": "Q_TEXT", + "config": { + "max": 400, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Leveringssted " + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + } + ], + "type": "need", + "parent": "2376e4df-070b-480b-9254-7f3d6d999868", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "051d0699-e767-497a-9885-64a96a69865a", + "title": "Vedlikehold", + "description": "", + "requirements": [ + { + "id": "bb07d56f-312c-4195-aae9-ed2aa9126fd5", + "title": "Avstand til godkjent verksted", + "description": "", + "needId": "051d0699-e767-497a-9885-64a96a69865a", + "type": "requirement", + "variants": [ + { + "id": "ebcdb9e8-40bb-46c5-a2e5-76e705bf203b", + "requirementText": "Oppgi avstand fra leveringssted til nærmeste godkjente verksted.\n\nBenytt Google Maps til å beregne kjørelengde, benytt korteste kjørelengde. Avrundes oppover til nærmeste 0,1 km.", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "981877b7-093e-42d5-90ac-5badea45d128", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 1000, + "step": 0.1, + "unit": "km", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Avstand" + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + } + ], + "type": "need", + "parent": "2376e4df-070b-480b-9254-7f3d6d999868", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "5c331890-cae1-4a69-8956-c964c3ad701d", + "title": "Kjøretøy", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "11674baa-8f9b-44bb-b2fd-bdf4f7b0e606", + "title": "Tilstand", + "description": "", + "requirements": [ + { + "id": "37f7f2e8-9963-4b64-9cd6-d75caa4e753a", + "title": "Fabrikk-ny", + "description": "", + "needId": "11674baa-8f9b-44bb-b2fd-bdf4f7b0e606", + "type": "requirement", + "variants": [ + { + "id": "9f1ecb6e-90f2-49c7-8bbd-7d0842d72340", + "requirementText": "Kommer kjøretøyet direkte fra fabrikk til forhandler?", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "aacfeb2e-811b-4f21-8229-7399e04f9125", + "b15d3434-ff76-4676-b9d7-183438c1e6b1", + "6d916c0f-f378-4d0f-88f8-f703d1cce58a" + ], + "questions": [ + { + "id": "61acc870-13c5-425b-8e77-87984cc668ce", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Helt ny bil" + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + } + ], + "type": "need", + "parent": "5c331890-cae1-4a69-8956-c964c3ad701d", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "445ef81a-06ca-4dda-9c29-d87c1adc3c76", + "title": "Kjøreegenskaper", + "description": "", + "requirements": [ + { + "id": "293d0d46-ddef-4d8d-8e9b-ba1c8ca9f33d", + "title": "Type gir", + "description": "", + "needId": "445ef81a-06ca-4dda-9c29-d87c1adc3c76", + "type": "requirement", + "variants": [ + { + "id": "db610fcc-c760-49c0-8fbe-2e7b7dd034f3", + "requirementText": "Kjøretøyet har automatgir.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "91730e0f-984d-4889-b371-a7bf4b2b3d33", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Automatgir" + }, + { + "id": "46ead1b3-ff3e-47a7-95af-565de915d917", + "requirementText": "Kjøretøyet har manuelt gir.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "ccbcde12-5c25-4dc0-be53-a36fda48528b", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Manuelt gir" + }, + { + "id": "f2c5a15d-f13c-4f16-a486-0012eda48c05", + "requirementText": "Oppgi type gir i kjøretøyet.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "44c32f6c-17eb-45dc-ac2c-2544a02ff614", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "a9c304ba-1e07-4cb2-ad9c-cf5375f33656", + "codes": [], + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Oppgi type" + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + } + ], + "type": "need", + "parent": "5c331890-cae1-4a69-8956-c964c3ad701d", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "7c7631a7-eacb-4c3a-82ca-e3096c50e71d", + "title": "Inventar", + "description": "", + "requirements": [ + { + "id": "11fa06ac-8257-47a3-8dff-89fa82bcb833", + "title": "Tilbehør i kupé", + "description": "", + "needId": "7c7631a7-eacb-4c3a-82ca-e3096c50e71d", + "type": "requirement", + "variants": [ + { + "id": "3c973b6e-2f10-4914-98a6-eec7d9212f3c", + "requirementText": "Oppgi tilgjengelig tilbehør i kupéen.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "aacfeb2e-811b-4f21-8229-7399e04f9125", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "2b9fe78e-2c74-4d61-bb65-b9fb609ab7a0", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "8c5e2ae0-66e2-4c0a-8702-cd065925b101", + "codes": [], + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tilbehør i kupéen" + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "1d44e888-b624-47e2-8dcc-eea12af39d4e", + "title": "Seter foran", + "description": "", + "needId": "7c7631a7-eacb-4c3a-82ca-e3096c50e71d", + "type": "requirement", + "variants": [ + { + "id": "b1d22e3d-5fbe-47df-807c-14a378d1a5a3", + "requirementText": "Oppgi antall seter foran i kjøretøyet inkludert sjåførens sete.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "aacfeb2e-811b-4f21-8229-7399e04f9125", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "2f975346-7f8f-4684-8879-d2b663be79ab", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 3, + "step": 1, + "unit": "sete(r)", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": "1" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Antall" + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "8654537f-5c0e-40e5-afcb-ebadd7538f6d", + "title": "Seter bak", + "description": "", + "needId": "7c7631a7-eacb-4c3a-82ca-e3096c50e71d", + "type": "requirement", + "variants": [ + { + "id": "00f081ee-f787-4419-9eb7-52fcfe8f2d01", + "requirementText": "Oppgi antall seter bak i kjøretøyet.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "aacfeb2e-811b-4f21-8229-7399e04f9125", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "3de86915-dbbd-4fe3-88d9-b18cc747616d", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 7, + "step": 1, + "unit": "", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": "0" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Antall" + }, + { + "id": "a6eaca9b-3b29-43a3-b374-fda756536b6f", + "requirementText": "Kjøretøyet har ikke seter bak sjåfør.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "aacfeb2e-811b-4f21-8229-7399e04f9125", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "9e692a53-2e72-4064-9d51-a836ab4ca606", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Ingen seter bak" + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + } + ], + "type": "need", + "parent": "5c331890-cae1-4a69-8956-c964c3ad701d", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "ca08b990-55c0-4683-9428-97a53a727ccf", + "title": "Bagasjerom", + "description": "", + "requirements": [ + { + "id": "0784e425-5cfd-4c4f-af01-5216211c6bd3", + "title": "Volum", + "description": "", + "needId": "ca08b990-55c0-4683-9428-97a53a727ccf", + "type": "requirement", + "variants": [ + { + "id": "74ad87c5-1ccb-403f-8a21-364ece821b22", + "requirementText": "Godsrommet eller planet må kunne romme en rettvinklet kasse (også kalt \"statskassa\") med lengde/bredde/høyde 140 x 90 x 105 cm.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "aacfeb2e-811b-4f21-8229-7399e04f9125", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "e3412818-88cf-4fa6-880f-3685e234441f", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Støtte for \"statsakassa\"" + }, + { + "id": "64e9a281-02c1-436d-9f82-e44e01708e31", + "requirementText": "Oppgi basjerommets volum.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "aacfeb2e-811b-4f21-8229-7399e04f9125", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "06c7b134-30f7-4ccb-8baf-1616f46d6758", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 8, + "step": 0.1, + "unit": "m³", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Volum" + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + } + ], + "type": "need", + "parent": "5c331890-cae1-4a69-8956-c964c3ad701d", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "3f7076c6-d54c-4733-a480-6ab95fcb1ab4", + "title": "Sikring", + "description": "", + "requirements": [ + { + "id": "c2bfc159-dcd2-4d3e-8585-bc02605e2423", + "title": "Sentrallås", + "description": "", + "needId": "3f7076c6-d54c-4733-a480-6ab95fcb1ab4", + "type": "requirement", + "variants": [ + { + "id": "e6cd46fd-0371-4e16-9be0-451204dca112", + "requirementText": "Kjøretøyet er utstyrt med sentrallås.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "aacfeb2e-811b-4f21-8229-7399e04f9125", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "1f20d46b-ff70-4fe5-8a2f-eac0c453eb5c", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Med sentrallås" + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + } + ], + "type": "need", + "parent": "5c331890-cae1-4a69-8956-c964c3ad701d", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "b07a677e-0e0e-4ad2-82fa-8a756f29fe7c", + "title": "Sikkerhet", + "description": "", + "requirements": [], + "type": "need", + "parent": "5c331890-cae1-4a69-8956-c964c3ad701d", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "6bddecaf-dce4-4942-ab64-7bc439f75b25", + "title": "Utseende", + "description": "", + "requirements": [ + { + "id": "0e5086cb-e4fc-493c-8286-e524dd925ab8", + "title": "Karosserifarge", + "description": "", + "needId": "6bddecaf-dce4-4942-ab64-7bc439f75b25", + "type": "requirement", + "variants": [ + { + "id": "4c27a656-1f39-45cd-9757-cd3605500597", + "requirementText": "Oppgi kjøretøyets primære farge på karosseriet.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "aacfeb2e-811b-4f21-8229-7399e04f9125", + "b15d3434-ff76-4676-b9d7-183438c1e6b1" + ], + "questions": [ + { + "id": "d56195e3-ee4e-403c-8687-1ebcac80c94d", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "322ffb17-c74d-4da3-8827-d6bbdbe241ff", + "codes": [], + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Farge" + } + ], + "tags": [], + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + } + ], + "type": "need", + "parent": "5c331890-cae1-4a69-8956-c964c3ad701d", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "8c5e2ae0-66e2-4c0a-8702-cd065925b101", + "title": "Tilbehør, kupé", + "description": "", + "codes": [ + { + "id": "ea5095d0-6e3a-497f-ad22-d2fb86db3433", + "title": "Koppholder for sjåfør", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "aa465e7e-36ef-487a-a415-a0afa3da456f", + "title": "Koppholder for passasjer foran", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "718f0944-9082-453c-b71e-56b9d8b1857e", + "title": "Mobilholder", + "description": "Holder for mobiltelefon med tilhørende USB-ladepunkt", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "22ecc9e1-020a-4bf5-bc2c-9471ed39c618", + "title": "Nettbrettholder", + "description": "Holder for nettbrett med tilhørender USB-ladepunkt", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "a9c304ba-1e07-4cb2-ad9c-cf5375f33656", + "title": "Gir", + "description": "", + "codes": [ + { + "id": "26230250-0ab2-416d-abdd-b2acbb0a4b14", + "title": "Manuelt gir", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "076fda24-a7f3-4d06-869a-e030740bc42e", + "title": "Automatgir", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "cf09deaf-d1ce-404e-81a2-f41c4d095cba", + "title": "Trekk", + "description": "", + "codes": [ + { + "id": "2fba46b3-26d1-483b-80f9-456d9298c61c", + "title": "Forhjuls-trekk", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "324b481b-3b78-4f08-989e-068006b52092", + "title": "Bakhjuls-trekk", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "175e3dbd-8a8f-4368-90bd-b25665e5c4fe", + "title": "Trekk på alle hjul", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + }, + { + "id": "322ffb17-c74d-4da3-8827-d6bbdbe241ff", + "title": "Farger", + "description": "", + "codes": [ + { + "id": "f9935288-7729-4ae0-bbb5-465684f9773f", + "title": "Hvit", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "aecee155-92cd-4f81-a878-20910e0307ab", + "title": "Svart", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "79c4461f-1c53-4038-a620-3146170df0e6", + "title": "Rød", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "b324b109-a78a-40cf-a131-ea82aaaffcfa", + "title": "Gul", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "f10b5c7e-e7fe-47b5-b479-9fd410c7bdb4", + "title": "Orange", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "b2da9b1e-d48f-4994-a89a-f14b44c34660", + "title": "Sølv", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + }, + { + "id": "205c9c23-4d07-43e3-842e-fbfa303df76d", + "title": "Blå", + "description": "", + "type": "code", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null + } + ], + "products": [ + { + "id": "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "title": "Bil", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "deletedDate": null, + "unit": "Stk" + }, + { + "id": "aacfeb2e-811b-4f21-8229-7399e04f9125", + "title": "El-bil", + "description": "", + "type": "product", + "parent": "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "deletedDate": null, + "unit": "Stk" + }, + { + "id": "b15d3434-ff76-4676-b9d7-183438c1e6b1", + "title": "Fossil-bil", + "description": "", + "type": "product", + "parent": "6d916c0f-f378-4d0f-88f8-f703d1cce58a", + "sourceOriginal": "ebe7af77-dba5-4e5f-ba9b-8b4601182e9c", + "sourceRel": null, + "deletedDate": null, + "unit": "Stk" + } + ], + "publications": [ + { + "id": "18769a27-09c2-4527-8911-8cb061d3fbe9", + "bankId": "18769a27-09c2-4527-8911-8cb061d3fbe9", + "comment": "Første utgave", + "date": "2022-09-16T06:02:02.935Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + }, + { + "id": "dc4f9e9c-f090-4c75-9e76-58f2d1fa5bd8", + "bankId": "dc4f9e9c-f090-4c75-9e76-58f2d1fa5bd8", + "comment": "Sikre at endringer er kommet med.", + "date": "2022-09-20T08:34:54.974Z", + "type": "publication", + "version": 2, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + }, + { + "id": "582c2b73-3c66-4748-b166-eaac2febb54d", + "bankId": "582c2b73-3c66-4748-b166-eaac2febb54d", + "comment": "Ny endring i produkt form", + "date": "2022-09-23T08:36:15.043Z", + "type": "publication", + "version": 3, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-09-23T08:45:36.717Z" + }, + { + "id": "fb7d1130-f80b-45fc-9453-61c471d7c331", + "bankId": "fb7d1130-f80b-45fc-9453-61c471d7c331", + "comment": "Legge til ja/nei-spørsmål", + "date": "2022-09-29T06:21:05.218Z", + "type": "publication", + "version": 4, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + } + ], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "457b5f97-da8e-487c-be9a-d45a27404721", + "title": "Kjøretøy under 7,5 tonn", + "description": "", + "needs": [ + { + "id": "8ca33302-a4d0-4f77-85ee-f0dc49b08fd8", + "title": "Motor", + "description": "", + "requirements": [ + { + "id": "7b05c867-0ed8-4e13-85f8-baf26ef333cf", + "title": "Energiform", + "description": "", + "needId": "8ca33302-a4d0-4f77-85ee-f0dc49b08fd8", + "type": "requirement", + "variants": [ + { + "id": "8ccffbb6-ddca-47dc-8166-6b52b65a86c8", + "requirementText": "Kjøretøyet må benytte følgende energiform.", + "instruction": "Benyttes når det er kun et alternativ til godkjent energiform.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "190fb393-6ba2-45ed-9887-03bf5ec96915" + ], + "questions": [ + { + "id": "e0ef64d5-df4e-4ddd-b8d3-91eb546a8c42", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "b5e26249-1497-4b01-a676-ce0b3bdf0594", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Kjøretøyets energiform" + }, + { + "id": "470c66c1-bf93-4d4c-9837-498219d961e9", + "requirementText": "Oppgi kjøretøyets energiform", + "instruction": "...", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "190fb393-6ba2-45ed-9887-03bf5ec96915" + ], + "questions": [ + { + "id": "323e1a40-cab2-4c18-a37a-610d2d97611f", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "b5e26249-1497-4b01-a676-ce0b3bdf0594", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Kjøretøyets energiform" + } + ], + "tags": [], + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null + }, + { + "id": "59f692f7-6766-4385-a6cf-1d2dd4285b35", + "title": "Rekkevidde", + "description": "", + "requirements": [], + "type": "need", + "parent": "8ca33302-a4d0-4f77-85ee-f0dc49b08fd8", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null + }, + { + "id": "737e56fa-ca62-46ba-b989-b4319c703688", + "title": "Utseende", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null + }, + { + "id": "82f6bea5-9b12-4044-9117-dba80bd5de64", + "title": "Profilering", + "description": "", + "requirements": [], + "type": "need", + "parent": "737e56fa-ca62-46ba-b989-b4319c703688", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null + }, + { + "id": "8cc70f40-47f1-40b5-987d-8ef34e6da440", + "title": "Varsellys", + "description": "", + "requirements": [], + "type": "need", + "parent": "737e56fa-ca62-46ba-b989-b4319c703688", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null + }, + { + "id": "80cc0931-9948-4a5f-86d5-9aabae9cb92c", + "title": "Størrelse", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null + }, + { + "id": "b80fcaaf-23df-4c85-91bf-3d78fd393e47", + "title": "Tilgjengelighet", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null + }, + { + "id": "ed5765b5-93c6-47b9-84c8-08ef12a67e68", + "title": "Service/vedlikehold", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "b5e26249-1497-4b01-a676-ce0b3bdf0594", + "title": "Energiform", + "description": "", + "codes": [ + { + "id": "9ef1b3eb-17b5-4198-9ae1-a4772c263933", + "title": "Bensin", + "description": "", + "type": "code", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null, + "parent": "" + }, + { + "id": "b8eb28d0-578d-4145-a231-cf443da9d9a7", + "title": "Diesel", + "description": "", + "type": "code", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null, + "parent": "" + }, + { + "id": "e478420d-7cdd-421d-afeb-abe3032d9718", + "title": "Elektrisitet", + "description": "", + "type": "code", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null + } + ], + "products": [ + { + "id": "190fb393-6ba2-45ed-9887-03bf5ec96915", + "title": "Bil", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "bdab3636-d807-4e56-a0ef-5319f3ddf9d4", + "title": "Varebil", + "description": "", + "type": "product", + "parent": "190fb393-6ba2-45ed-9887-03bf5ec96915", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "f0fc0e2c-af31-4329-b751-a5f8f81976b9", + "title": "Elbil", + "description": "", + "type": "product", + "parent": "190fb393-6ba2-45ed-9887-03bf5ec96915", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null, + "deletedDate": "2022-06-07T09:41:32.984Z" + }, + { + "id": "1ead6dbb-7165-4e31-b4a2-a52ca02ccd27", + "title": "Dieselbil", + "description": "", + "type": "product", + "parent": "190fb393-6ba2-45ed-9887-03bf5ec96915", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null, + "deletedDate": "2022-06-07T09:41:35.507Z" + }, + { + "id": "4ae1d465-2935-4ec6-91e1-9f551336e622", + "title": "Bensinbil", + "description": "", + "type": "product", + "parent": "190fb393-6ba2-45ed-9887-03bf5ec96915", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null, + "deletedDate": "2022-06-07T09:41:37.767Z" + }, + { + "id": "538228dc-c5bd-455b-8322-cec6a1a720f3", + "title": "Traktor", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "61a04f97-17ef-488b-b1c9-9f8955c5bbe5", + "title": "Elsykkel", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "457b5f97-da8e-487c-be9a-d45a27404721", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [ + { + "id": "ad50a977-93b0-4f93-a379-1411638d3720", + "bankId": "ad50a977-93b0-4f93-a379-1411638d3720", + "comment": "Første utgave", + "date": "2022-06-07T09:51:28.748Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null + } + ], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "title": "Konsulentbistand [RD]", + "description": "", + "needs": [ + { + "id": "67e10415-783b-4fe5-97cc-a6ce0918e8a0", + "title": "Fagområder", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "cda8ff42-c32e-4a72-bde8-1b1a75cf7a15", + "title": "Personvern ", + "description": "", + "requirements": [], + "type": "need", + "parent": "67e10415-783b-4fe5-97cc-a6ce0918e8a0", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "e16d5e68-3d14-46f5-b26b-3692d426c5ab", + "title": "DPIA", + "description": "", + "requirements": [], + "type": "need", + "parent": "cda8ff42-c32e-4a72-bde8-1b1a75cf7a15", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "5c749ea3-311b-4c9a-b33f-ee857012c69e", + "title": "Risikovurderinger ", + "description": "", + "requirements": [ + { + "id": "92ae8f43-d2e8-42a4-a212-27c97212a102", + "title": "Gjennomføring av risikovurdering (ROS)", + "description": "", + "needId": "5c749ea3-311b-4c9a-b33f-ee857012c69e", + "type": "requirement", + "variants": [ + { + "id": "22af5ea3-4564-4aa9-9841-469273b5491e", + "requirementText": "Oppgi konsulentens kompetansenivå knyttet gjennomføring av risikovurderinger (ROS) innen personvern.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b1582f41-f2e1-4d3c-98ef-af8b914a3801" + ], + "questions": [ + { + "id": "098097c4-1077-4ef1-a353-6325349c792f", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "a5258b3e-e00b-4125-89f6-64c01e5ab308", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Kompetansenivå knyttet til risikovurdering" + } + ], + "tags": [], + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + } + ], + "type": "need", + "parent": "cda8ff42-c32e-4a72-bde8-1b1a75cf7a15", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "c1283a67-0263-482e-93ae-d39a249219ad", + "title": "Forretningsinnsikt (BI)", + "description": "", + "requirements": [], + "type": "need", + "parent": "67e10415-783b-4fe5-97cc-a6ce0918e8a0", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "68c5c0e9-237f-4525-a259-407db984c95c", + "title": "Kartlegging", + "description": "", + "requirements": [], + "type": "need", + "parent": "c1283a67-0263-482e-93ae-d39a249219ad", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "61f2a016-34ac-4786-af99-353c7cc6963f", + "title": "Uthenting", + "description": "", + "requirements": [], + "type": "need", + "parent": "c1283a67-0263-482e-93ae-d39a249219ad", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "83d99be8-5360-46e3-bc1b-b7535b14bd29", + "title": "Generelt", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "fab10d85-05bf-4c2d-ac0d-a63cd0c3baff", + "title": "Tilgjengelighet", + "description": "", + "requirements": [ + { + "id": "c37d44b8-6789-4f3f-9afe-29424826d58d", + "title": "Oppdragets oppstart", + "description": "", + "needId": "fab10d85-05bf-4c2d-ac0d-a63cd0c3baff", + "type": "requirement", + "variants": [ + { + "id": "1b8dc123-ec04-4964-90b9-320a32f3d390", + "requirementText": "Oppdraget starter følgende dato.", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "d6abafc9-b659-47ff-8b7a-6d375a4890d4", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Oppdragets oppstart" + } + ], + "tags": [], + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "441b29f4-845a-4a76-b7c6-382e3f1fed5e", + "title": "Oppdragets avslutning", + "description": "", + "needId": "fab10d85-05bf-4c2d-ac0d-a63cd0c3baff", + "type": "requirement", + "variants": [ + { + "id": "d330075a-a328-4845-be1c-0fe0eb54e57d", + "requirementText": "Oppdraget avsluttes følgende dato.", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "09ee53a8-9c65-47df-8324-0b46752f3b6c", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Oppdragets avslutning" + } + ], + "tags": [], + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "c52c0a19-a310-46d7-a27c-da95d0d9b291", + "title": "Belastning", + "description": "", + "needId": "fab10d85-05bf-4c2d-ac0d-a63cd0c3baff", + "type": "requirement", + "variants": [ + { + "id": "bd8cadba-e26c-4c1d-a447-87dd84eb448e", + "requirementText": "Oppgi maksimal belastning som kan tilgjengeliggjøres for oppdraget.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b1582f41-f2e1-4d3c-98ef-af8b914a3801" + ], + "questions": [ + { + "id": "b7b42a2f-8a9e-4e74-9af1-fa628786ed06", + "type": "Q_SLIDER", + "config": { + "min": 5, + "max": 100, + "step": 1, + "unit": "%", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tilgjengelig belastning" + }, + { + "id": "77baf95c-a85b-4551-8436-2170dc11c5a5", + "requirementText": "Oppdragsgiver avtaler fortløpende i ressursmøter ved avtalte intervall hvilken belastning man ønsker i oppdraget.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b1582f41-f2e1-4d3c-98ef-af8b914a3801" + ], + "questions": [ + { + "id": "5421a2bb-7c9e-4990-81fb-b1552c8be634", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Avtales underveis" + } + ], + "tags": [], + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "f7970a78-e303-4a90-a030-df049e200a20", + "title": "Periode 1: Tidsperiode", + "description": "", + "needId": "fab10d85-05bf-4c2d-ac0d-a63cd0c3baff", + "type": "requirement", + "variants": [ + { + "id": "dd1a359f-1bac-4e69-ac0d-94f05a128810", + "requirementText": "Følgende periode er periode 1.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b1582f41-f2e1-4d3c-98ef-af8b914a3801" + ], + "questions": [ + { + "id": "e74d790a-213e-4da5-9af9-3f3141fca29e", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Tidsperiode for periode 1" + } + ], + "tags": [], + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "4379f11d-4625-47f3-a7fb-9b8a5aa149d2", + "title": "Periode 1: Belastning", + "description": "", + "needId": "fab10d85-05bf-4c2d-ac0d-a63cd0c3baff", + "type": "requirement", + "variants": [ + { + "id": "55de4e79-b8d0-4b89-9ba4-152fdb7b3040", + "requirementText": "Følgende maksimal belastning i periode 1.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b1582f41-f2e1-4d3c-98ef-af8b914a3801" + ], + "questions": [ + { + "id": "41f7fcc1-ee0f-49ca-a8b7-4dcfb46dce74", + "type": "Q_SLIDER", + "config": { + "min": 5, + "max": 100, + "step": 1, + "unit": "%", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Belastning i periode 1" + } + ], + "tags": [], + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "5e5d55e0-f01f-4e60-a654-1b133109397f", + "title": "Periode 2: Tidsperiode", + "description": "", + "needId": "fab10d85-05bf-4c2d-ac0d-a63cd0c3baff", + "type": "requirement", + "variants": [ + { + "id": "f2ddc48e-96e3-4a0d-aea5-c2f57e9899bd", + "requirementText": "Følgende periode er periode 2.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b1582f41-f2e1-4d3c-98ef-af8b914a3801" + ], + "questions": [ + { + "id": "a554150f-67ea-4a56-a187-9d2030009e23", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Tidsperiode for periode 2" + } + ], + "tags": [], + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "1df4b33c-14e7-4cdd-b5c4-227829527819", + "title": "Periode 2: Belastning", + "description": "", + "needId": "fab10d85-05bf-4c2d-ac0d-a63cd0c3baff", + "type": "requirement", + "variants": [ + { + "id": "25f3143d-f401-4796-b30e-9dcbaaee1036", + "requirementText": "Følgende maksimal belastning i periode 2.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b1582f41-f2e1-4d3c-98ef-af8b914a3801" + ], + "questions": [ + { + "id": "c159c622-0d6c-4440-ada3-a5f1fd96a407", + "type": "Q_SLIDER", + "config": { + "min": 5, + "max": 100, + "step": 1, + "unit": "%", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Belastning i periode 2" + } + ], + "tags": [], + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "d6513f5d-75df-4e70-baac-c1cd771439c1", + "title": "Overtid", + "description": "", + "needId": "fab10d85-05bf-4c2d-ac0d-a63cd0c3baff", + "type": "requirement", + "variants": [ + { + "id": "916852d5-4b81-4c21-b7eb-5f43e13f529f", + "requirementText": "Oppgi om det er anledning til å benytte overtid i oppdraget.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "b1582f41-f2e1-4d3c-98ef-af8b914a3801" + ], + "questions": [ + { + "id": "b60a8baa-ee82-408a-8e10-00b7019919b8", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Bruk av overtid" + } + ], + "tags": [], + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + } + ], + "type": "need", + "parent": "83d99be8-5360-46e3-bc1b-b7535b14bd29", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "952238a0-1616-4456-ada4-14f9eb806c90", + "title": "Tilstedeværelse", + "description": "", + "requirements": [ + { + "id": "ee473dba-b20f-4e1f-969b-755522f6f188", + "title": "Arbeidssted", + "description": "", + "needId": "952238a0-1616-4456-ada4-14f9eb806c90", + "type": "requirement", + "variants": [ + { + "id": "9f88745c-d2e6-4c6b-9a89-b2dbcdda1abc", + "requirementText": "Arbeidssted for innleid personell under gjennomføring av oppdraget.", + "instruction": "Benyttes i tilfeller hvor det er relevant hvor innleid personell arbeider. Anbefales ikke brukt når man leier inn nasjonal/internasjonal kompetanse som man ikke forventer å finne i eget nærmiljø.", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "b1582f41-f2e1-4d3c-98ef-af8b914a3801" + ], + "questions": [ + { + "id": "f380d61e-e466-45ad-b0c7-7679a481219e", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "b114e355-a2fa-4139-aebd-0c17f4848e17", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Arbeidssted under oppdraget" + } + ], + "tags": [], + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + } + ], + "type": "need", + "parent": "83d99be8-5360-46e3-bc1b-b7535b14bd29", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "2eeb7a3a-413d-42c6-bfd9-8bcfb967adf3", + "title": "Tekniske kapabiliteter", + "description": "", + "requirements": [], + "type": "need", + "parent": "83d99be8-5360-46e3-bc1b-b7535b14bd29", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "519be33f-c010-455e-a0f5-1814a763d104", + "title": "Ekstern tilgang (VPN)", + "description": "", + "requirements": [], + "type": "need", + "parent": "2eeb7a3a-413d-42c6-bfd9-8bcfb967adf3", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "e3779d3c-1343-47d6-9c29-50ca02c71b9c", + "title": "Opplæring ", + "description": "", + "requirements": [], + "type": "need", + "parent": "83d99be8-5360-46e3-bc1b-b7535b14bd29", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "cc5ac07e-0f31-410f-8992-b8d13b75f2b8", + "title": "Tilstedeværelse", + "description": "", + "requirements": [], + "type": "need", + "parent": "e3779d3c-1343-47d6-9c29-50ca02c71b9c", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "a5258b3e-e00b-4125-89f6-64c01e5ab308", + "title": "Kompetansenivå", + "description": "", + "codes": [ + { + "id": "81c5dd87-aa60-4425-9393-7e6883ef6e7d", + "title": "Ingen kompetanse", + "description": "Har ingen erfaring med området.", + "type": "code", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null, + "parent": "" + }, + { + "id": "9f165569-af0a-4a78-8291-9f3ed1dac7fa", + "title": "Nybegynner", + "description": "Mindre enn 2 års erfaring innen området.", + "type": "code", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null, + "parent": "" + }, + { + "id": "1ce7e1b2-89d4-4a13-8dfb-4ba6fa82e6d3", + "title": "Erfaren", + "description": "Mindre enn 5 års erfaring innen området.", + "type": "code", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null, + "parent": "" + }, + { + "id": "757e1435-1ee5-477a-8a41-80ad4d8e222d", + "title": "Ekspert", + "description": "Mer enn 5 års erfaring innen området eller leder utviklingen innen området i organisasjonen.", + "type": "code", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null, + "parent": "" + }, + { + "id": "99282743-f640-4011-b545-2a054edaeabe", + "title": "Internasjonal ekspert", + "description": "Deltar aktivt i utvikling innen området på internasjonalt nivå.", + "type": "code", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + }, + { + "id": "b114e355-a2fa-4139-aebd-0c17f4848e17", + "title": "Arbeidssted", + "description": "", + "codes": [ + { + "id": "9548fd74-8144-4e2b-ad80-f285131a85f9", + "title": "Oppdragsgivers kontorsted", + "description": "Kontorstedet som kontaktperson jobber fra.", + "type": "code", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null, + "parent": "" + }, + { + "id": "526a752e-3318-4c5a-9437-1cae8241192f", + "title": "Primært oppdragsgivers kontorsted", + "description": "Oppdragsgivers kontorsted benyttes med det kan avtales underveis.", + "type": "code", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null, + "parent": "" + }, + { + "id": "a4241610-890f-48cb-babc-f544c0d27a80", + "title": "Eget kontor/arbeidssted", + "description": "Kontoret/arbeidsstedet til leverandør med mulig for oppdragsgiver å benytte samme arbeidssted underveis i arbeidet.", + "type": "code", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null, + "parent": "" + }, + { + "id": "d76d5d3a-fa74-4037-9f94-1ecba2b159f8", + "title": "Fjernarbeid", + "description": "Egenstyrt arbeidslokasjon utenom oppdragsgivers kontorsted.", + "type": "code", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null + } + ], + "products": [ + { + "id": "b1582f41-f2e1-4d3c-98ef-af8b914a3801", + "title": "Konsulent på personvern", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "f73872ea-0d2f-4511-8f3a-1d4af67d804b", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [ + { + "id": "0c205e2e-765c-4a90-8d8b-30d31968f83d", + "bankId": "0c205e2e-765c-4a90-8d8b-30d31968f83d", + "comment": "Første utgave", + "date": "2022-05-19T08:22:01.750Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "25c257ad-ccd9-471e-88a2-5dcf358ea8a4", + "bankId": "25c257ad-ccd9-471e-88a2-5dcf358ea8a4", + "comment": "Andre utgave", + "date": "2022-05-19T10:45:57.272Z", + "type": "publication", + "version": 2, + "sourceOriginal": null, + "sourceRel": null + } + ], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "9790342b-f279-4044-9083-c6beed3bdb43", + "title": "Kriterieveiviseren TestProsjekt", + "description": "Test av Nye møbler", + "needs": [ + { + "id": "8cd63f21-e12d-4692-af12-316ea19fc0fc", + "title": "Robuste møbler", + "description": "Kravspesifikasjon", + "requirements": [ + { + "id": "5e7cd008-9e04-497f-867e-456cf9d1fa02", + "title": "Kvalitetskrav", + "description": "", + "needId": "8cd63f21-e12d-4692-af12-316ea19fc0fc", + "type": "requirement", + "variants": [ + { + "id": "39c9e87a-aa97-440e-bdd1-2a70d241b0fc", + "requirementText": "Fargeekthet ved våtgnidning (Kravet gjelder ikke for hvite tekstiler eller tekstiler som hverken er farget eller trykt)", + "instruction": "ISO 105 X12 eller tilsvarende", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "Kvalitetskrav" + } + ], + "tags": [], + "sourceOriginal": "9790342b-f279-4044-9083-c6beed3bdb43", + "sourceRel": null + }, + { + "id": "33aa88f2-52a4-4607-86f1-1cb8b15d15f5", + "title": "Kvalitetskrav", + "description": "", + "needId": "8cd63f21-e12d-4692-af12-316ea19fc0fc", + "type": "requirement", + "variants": [ + { + "id": "650a3d68-74e6-4435-9b6c-024816009eab", + "requirementText": "Fargeekthet ved tørrgnidning (Kravet gjelder ikke for hvite tekstiler eller tekstiler som hverken er farget eller trykt)", + "instruction": "ISO 105 X12 eller tilsvarende", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "Kvalitetskrav" + } + ], + "tags": [], + "sourceOriginal": "9790342b-f279-4044-9083-c6beed3bdb43", + "sourceRel": null + }, + { + "id": "bf679a01-14e0-43dd-bec5-541dbc864992", + "title": "Dokumentasjon", + "description": "", + "needId": "8cd63f21-e12d-4692-af12-316ea19fc0fc", + "type": "requirement", + "variants": [ + { + "id": "e3927e7d-3059-4488-aced-06a446533eaf", + "requirementText": "Kravet skal dokumenteres ved erklæring fra produsent av tekstilene, støttet av relevante testrapporter, som viser at kvalitetskravene i tabellen er oppfylt. Oppfyllelse av kravet kan også dokumenteres ved tilgang på gyldig sertifikat på at tilbudt møbelprodukt er tildelt sertifisering utviklet i henhold til ISO 14024 (Type I eller Type I-lik) som oppfyller kravet. For eksempel Svanemerket. For kravet om slitasjestyrke (Martindale) skal det likevel kunne leveres egen dokumentasjon (erklæring fra produsent av tekstilene, støttet av relevant testrapport).", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "info", + "description": "Hvordan be om dokumentasjon " + } + ], + "tags": [], + "sourceOriginal": "9790342b-f279-4044-9083-c6beed3bdb43", + "sourceRel": null + }, + { + "id": "d09fe888-a8e0-4089-8ab6-b03ed65765bb", + "title": "Informasjon", + "description": "", + "needId": "8cd63f21-e12d-4692-af12-316ea19fc0fc", + "type": "requirement", + "variants": [ + { + "id": "7ac3dced-a3d9-4e56-9f64-e943130b2abd", + "requirementText": "Dette kravet bør stilles i alle anskaffelser som inkluderer møbler med tekstil. Av hensyn til dokumentasjonsbyrden er kravet på basisnivå innrettet slik at det kan dokumenteres med flere ulike merkeordninger (i tillegg til egen dokumentasjon på slitasjestyrke, siden noen av de vanligste miljømerkene har et lavere krav til Martindaletest enn hva som er angitt i dette kravet). Kravet på avansert nivå krever mer dokumentasjon siden leverandøren må levere inn relevante testrapporter (siden flere av de vanlige miljømerkene ikke stiller de samme kravene), men er særlig relevant å stille i anskaffelser hvor tekstilene utsettes for stor slitasje.", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "info", + "description": "Informasjon " + } + ], + "tags": [], + "sourceOriginal": "9790342b-f279-4044-9083-c6beed3bdb43", + "sourceRel": null + }, + { + "id": "ff431620-828c-46af-bd9c-3819e8879abc", + "title": "Kvalitetskrav", + "description": "", + "needId": "8cd63f21-e12d-4692-af12-316ea19fc0fc", + "type": "requirement", + "variants": [], + "tags": [], + "sourceOriginal": "9790342b-f279-4044-9083-c6beed3bdb43", + "sourceRel": null + }, + { + "id": "d4ecb9dc-f2b4-4664-9b7c-b980d9720de7", + "title": "Kvalitetskrav", + "description": "", + "needId": "8cd63f21-e12d-4692-af12-316ea19fc0fc", + "type": "requirement", + "variants": [], + "tags": [], + "sourceOriginal": "9790342b-f279-4044-9083-c6beed3bdb43", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "9790342b-f279-4044-9083-c6beed3bdb43", + "sourceRel": null + } + ], + "codelist": [], + "products": [], + "publications": [ + { + "id": "5e639185-19f0-4303-97ea-660ab26b4fb5", + "bankId": "5e639185-19f0-4303-97ea-660ab26b4fb5", + "comment": "Første utgave", + "date": "2022-04-25T14:56:31.126Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null + } + ], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "title": "Kurs og konferanse ASI (NY)", + "description": "Under arbeid, skal bli kravbank for produksjon", + "needs": [ + { + "id": "c8dd0912-eb52-4895-96e3-58996001d5b2", + "title": "Kurs- og konferanse", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "d8070a7d-3610-4ba1-90be-587d1bf1bb2a", + "title": "Tilgjengelighet og universell utforming", + "description": "Tilrettelegging for de med funksjonsnedsettelse. ", + "requirements": [ + { + "id": "8bcc2231-51b5-468e-a1c7-ae3853e543f5", + "title": "Tilgjengelighet", + "description": "", + "needId": "d8070a7d-3610-4ba1-90be-587d1bf1bb2a", + "type": "requirement", + "variants": [ + { + "id": "1c90c20e-7164-4b9c-b6b8-a98fd4459e65", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "Tilgjengelighet" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "0c04e641-d684-4595-b1e7-8552190ef23c", + "title": "Universell utforming", + "description": "", + "needId": "d8070a7d-3610-4ba1-90be-587d1bf1bb2a", + "type": "requirement", + "variants": [ + { + "id": "b6ba8933-01ed-43ac-9d58-42f40baf84e1", + "requirementText": "Oppfyller dere kravene til universell utforming?", + "instruction": "Trenger dere at leverandør oppfyller kravene til universell utforming?", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "e706b478-80e1-4fd8-b742-dcc661e6428b", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "23ec62dc-2d00-4e74-b20a-4d4e9dddf8ec", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Universell utforming" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + } + ], + "type": "need", + "parent": "c8dd0912-eb52-4895-96e3-58996001d5b2", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "37444ee7-b902-4e34-988a-08a78af878c0", + "title": "Sikkerhet", + "description": "", + "requirements": [ + { + "id": "98c2e29f-5f4e-40e5-92e4-6c840569e931", + "title": "Fysisk sikring", + "description": "", + "needId": "37444ee7-b902-4e34-988a-08a78af878c0", + "type": "requirement", + "variants": [ + { + "id": "6ba17c09-8951-4101-82b5-b12f1af65f3d", + "requirementText": "Kan dere tilby fysisk sikring for gjestene? 1) Svar ja/nei 2) Velg fra kodelisten hvilke krav dere oppfyller til fysisk sikring. ", + "instruction": "Trenger dere ekstra fysisk sikring under oppholdet? 1) Svar ja/nei 2) Velg fra kodelisten.", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "fd6a588a-9e6c-4f88-b430-38d52c86e220", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "3c0ba5c8-2a26-40e1-8428-a7443ff93655", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Krav til fysisk sikring under arrangementet" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + } + ], + "type": "need", + "parent": "c8dd0912-eb52-4895-96e3-58996001d5b2", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "f0fadfd5-325d-4572-b424-854203b66d93", + "title": "Standard", + "description": "", + "requirements": [ + { + "id": "25c63963-2416-45bd-8848-170ef883b953", + "title": "Standard på lokalene", + "description": "", + "needId": "f0fadfd5-325d-4572-b424-854203b66d93", + "type": "requirement", + "variants": [ + { + "id": "a434a5f5-1ae7-4564-a750-f5420da5a5f6", + "requirementText": "Velg fra kodelisten hvilken standard dere tilbyr på møterommene. ", + "instruction": "Velg fra kodelisten hvilken standard dere ønsker på møterommene. ", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "0dbbe638-7d9c-41ce-90e2-98febda4d5e1", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "73e6dbec-2d1f-4d46-b7db-8044fd180f43", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Standard på møterommene/kurs- og konferanserommene" + }, + { + "id": "c2621611-09af-418d-85ba-6a6775d4652a", + "requirementText": "Beskriv hvilken standard dere tilbyr på hotellrommene. Velg fra kodelisten.", + "instruction": "Velg hvilken standard dere ønsker på hotellrommene. Velg fra kodelisten. ", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c087beae-1a3d-427b-b0fe-2859f3a93a63", + "adf7dbf8-d86e-4550-a018-6fffe283876f", + "deb4c8f2-e2ee-4278-90f5-a986bd3cbf40", + "217cda9b-1984-4a5f-8467-bda3293133ca", + "b2d12668-3db1-4a63-bd38-5263f1b6ae23", + "7665fbf9-deba-4cb7-b2a4-30c976231077", + "ce098cbf-90d2-4019-b4c3-42e3308ebde7", + "66da97ac-466e-4914-af7f-28dbeef05d24" + ], + "questions": [ + { + "id": "3d3ce232-f9ad-45fb-bb9f-b9c6f717c57e", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "1c2873da-0fb7-4604-92aa-d9c483d0b554", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Standard på hotellrommene" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "d90feb81-f55f-4171-a177-364dd79601bf", + "title": "Luftkvalitet", + "description": "", + "needId": "f0fadfd5-325d-4572-b424-854203b66d93", + "type": "requirement", + "variants": [ + { + "id": "95eb744f-a8c5-4924-8eb6-a984956d8a77", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "Luftkvalitet" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + } + ], + "type": "need", + "parent": "c8dd0912-eb52-4895-96e3-58996001d5b2", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "cb2e7f5e-2831-4577-ace1-826ce87a9ffa", + "title": "Kundeservice", + "description": "Teknisk utstyr, teknisk assistanse, m.m.", + "requirements": [ + { + "id": "4c24c9e1-b7e9-452b-9078-53c1bad66064", + "title": "Teknisk utstyr", + "description": "", + "needId": "cb2e7f5e-2831-4577-ace1-826ce87a9ffa", + "type": "requirement", + "variants": [ + { + "id": "c3152c6b-5ba8-4e3e-b311-3c8f050213e4", + "requirementText": "Oppgi om dere kan tilby standard konferanseteknikk/AV-utstyr under arrangementet. 1) Svar ja/nei 2) Oppgi hvilket utstyr dere har tilgjengelig fra kodelisten. ", + "instruction": "Oppgi om dere trenger standard konferanseteknikk/AV-utstyr under arrangementet. 1) Svar ja/nei 2) Oppgi hvilket utstyr dere trenger fra kodelisten. ", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "82fc4874-282a-44b5-b350-6fb42ca062bc", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "4f39242f-7d8c-4002-a042-8d2ef94ffff3", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "25e48d34-e889-4641-994a-819f7a78e4d0", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Standard konferanseteknikk/AV-utstyr" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "3d47bcec-f798-4406-ba0f-54a922da659b", + "title": "Teknisk assistanse under arrangementet", + "description": "", + "needId": "cb2e7f5e-2831-4577-ace1-826ce87a9ffa", + "type": "requirement", + "variants": [ + { + "id": "aab14b3f-3182-46e6-94bf-3e3ab1d38d43", + "requirementText": "Oppgi om dere kan tilby teknisk assistanse under arrangementet. 1) Svar ja/nei 2) Beskriv om dere kan tilby tekniker under hele/deler av arrangementet 3) Oppgi dato for når dette kan tilbys 4) Oppgi tidspunkt for når dette kan tilbys.", + "instruction": "Oppgi om dere har behov for teknisk assistanse under arrangementet 1) Svar ja/nei 2) Beskriv om dere trenger assistanse under hele/deler av arrangementet 3) Oppgi dato for når dere trenger teknisk assistanse 4) Oppgi tidspunkt for når dere har behov for teknisk assistanse. ", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f", + "de87935c-40fa-49cd-9dfd-59a18ea88635", + "2efda706-512a-4a9b-ba6e-9fbe590bbcca" + ], + "questions": [ + { + "id": "7252fb80-0970-4b4e-ab63-f1f188e54c55", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tilgang til tekniker under arrangementet" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "9fee7e48-1c40-44a0-b204-74b1c9f647fa", + "title": "Oppsett av lokalet (rigg)", + "description": "", + "needId": "cb2e7f5e-2831-4577-ace1-826ce87a9ffa", + "type": "requirement", + "variants": [ + { + "id": "94c67e1e-0d37-405a-94bf-b3840b1ea3eb", + "requirementText": "Tilbyr dere å rigge lokalet før arrangementet finner sted?", + "instruction": "Ønsker dere at leverandør skal rigge lokalet før arrangementet finner sted?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "59737edc-3dfc-4f02-9aa6-24c15060f15d", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "db4b617a-e5a7-4965-aa57-8bcfad36488e", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Oppsett av lokalet" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "cade9c5b-c841-4acb-8b2b-1a56350994f4", + "title": "Omrigg av lokalet", + "description": "", + "needId": "cb2e7f5e-2831-4577-ace1-826ce87a9ffa", + "type": "requirement", + "variants": [ + { + "id": "a0b108d8-743a-4042-94f4-50b894762640", + "requirementText": "Kan dere tilby omrigg underveis i arrangementet?", + "instruction": "Ønsker dere omrigg underveis i arrangementet?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "35b419aa-cca6-480a-b099-dac4c3ec3d83", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "db4b617a-e5a7-4965-aa57-8bcfad36488e", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Omrigg av lokalet" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "8063ec2e-0fef-4d90-b627-bf0fea5b1a01", + "title": "Nedrigg av lokalet", + "description": "", + "needId": "cb2e7f5e-2831-4577-ace1-826ce87a9ffa", + "type": "requirement", + "variants": [ + { + "id": "d0053bfa-27b3-4405-a625-fd0f725a50de", + "requirementText": "Kan dere tilby opprydding etter arrangementet (nedrigg av lokalet)?", + "instruction": "Ønsker dere opprydding etter arrangementet (nedrigg av lokalet)?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "b09d1491-a336-4923-a089-86f61bdd15b7", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "db4b617a-e5a7-4965-aa57-8bcfad36488e", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Nedrigg av lokalet" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "23ae018b-2377-4447-853c-aca486da955b", + "title": "Dato for oppsett av lokalet (rigg)", + "description": "", + "needId": "cb2e7f5e-2831-4577-ace1-826ce87a9ffa", + "type": "requirement", + "variants": [ + { + "id": "2aa37883-0697-4002-b757-e236b92ef741", + "requirementText": "Hvilken dato kan dere tilby oppsett av lokalet?", + "instruction": "Hvilken dato ønsker dere oppsett av lokalet?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "c5d170ae-c31e-4ec3-b639-42b261de1799", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [ + { + "date": null, + "score": 0 + }, + { + "date": null, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Dato for oppsett av lokalet" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "dc5536dc-e811-4739-a522-a43f37b914b2", + "title": "Dato for omrigg av lokalet", + "description": "", + "needId": "cb2e7f5e-2831-4577-ace1-826ce87a9ffa", + "type": "requirement", + "variants": [ + { + "id": "ddcb74b9-2484-4644-bf72-954d1a1ff886", + "requirementText": "Hvilken dato kan dere tilby omrigg av lokalet?", + "instruction": "Hvilken dato ønsker dere omrigg av lokalet?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "a58954d6-e94d-4137-8b96-121a459b7905", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [ + { + "date": null, + "score": 0 + }, + { + "date": null, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Dato for omrigg av lokalet" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "ff2d6b73-fa61-4101-92bd-f85c7f303b05", + "title": "Dato for nedrigg av lokalet ", + "description": "", + "needId": "cb2e7f5e-2831-4577-ace1-826ce87a9ffa", + "type": "requirement", + "variants": [ + { + "id": "1f6ba82b-6126-4f83-9bac-5eed91c27214", + "requirementText": "Hvilken dato kan dere tilby nedrigg av lokalet?", + "instruction": "Hvilken dato ønsker dere nedrigg av lokalet?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "4659491d-5834-474b-b653-8d98afd4603a", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [ + { + "date": null, + "score": 0 + }, + { + "date": null, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Nedrigg av lokalet" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "7a4ba4bf-5735-4d70-bf3b-8ac87da8fa0e", + "title": "Tidspunkt for oppsett av lokalet (rigg)", + "description": "", + "needId": "cb2e7f5e-2831-4577-ace1-826ce87a9ffa", + "type": "requirement", + "variants": [ + { + "id": "e43cda65-0734-475e-9c98-229c14909ff7", + "requirementText": "Hvilket tidspunkt kan dere tilby oppsett av lokalet (rigg)?", + "instruction": "Hvilket tidspunkt ønsker dere oppsett av lokalet (rigg)?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "e3396e9e-909f-4cfd-a6db-a2619f66faab", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [ + { + "time": null, + "score": 0 + }, + { + "time": null, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tidspunkt for oppsett av lokalet (rigg)" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "e4762151-a05e-4e20-afde-ef2816eb4c39", + "title": "Tidspunkt for omrigg av lokalet", + "description": "", + "needId": "cb2e7f5e-2831-4577-ace1-826ce87a9ffa", + "type": "requirement", + "variants": [ + { + "id": "12f084d6-6565-4380-9654-d76689465a63", + "requirementText": "Hvilket tidspunkt kan dere tilby omrigg av lokalet?", + "instruction": "Hvilket tidspunkt ønsker dere omrigg av lokalet?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "6827a0da-2570-4ccd-b09b-51490ab2ddd1", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [ + { + "time": null, + "score": 0 + }, + { + "time": null, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tidspunkt for omrigg av lokalet" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "3d45bb8c-d325-4804-925d-2c2c5945f75e", + "title": "Tidspunkt for nedrigg av lokalet", + "description": "", + "needId": "cb2e7f5e-2831-4577-ace1-826ce87a9ffa", + "type": "requirement", + "variants": [ + { + "id": "768bc43b-c53d-4666-98e4-4ddd3c8defb1", + "requirementText": "Hvilket tidspunkt kan dere tilby nedrigg av lokalet (opprydding)?", + "instruction": "Hvilket tidspunkt ønsker dere nedrigg av lokalet (opprydding)?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "f17a7355-b486-4701-bcd4-79d99926b5ff", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [ + { + "time": null, + "score": 0 + }, + { + "time": null, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tidspunkt for nedrigg av lokalet" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "50e0d4b1-b779-4017-98a9-dd2031254d80", + "title": "Påmeldingssystem", + "description": "", + "needId": "cb2e7f5e-2831-4577-ace1-826ce87a9ffa", + "type": "requirement", + "variants": [ + { + "id": "1623a231-a40e-40cc-a402-9f70062063f6", + "requirementText": "Kan dere tilby oppdragsgiver et påmeldingssystem for deltakere?", + "instruction": "Ønsker dere at leverandør stiller med et påmeldingssystem for deltakere?", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "bc6bffc0-5305-4221-8383-49fc73dca4ca", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Påmeldingssystem" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "3c400c71-0a66-4a1a-adf4-ccf9876f492e", + "title": "Registrering", + "description": "", + "needId": "cb2e7f5e-2831-4577-ace1-826ce87a9ffa", + "type": "requirement", + "variants": [ + { + "id": "d8223377-675d-4472-95a8-2e20f769b0e0", + "requirementText": "Kan dere bistå oppdragsgiver med registrering av deltakere?", + "instruction": "Ønsker dere at leverandør bistår dere med registrering av deltakere?", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "95deca78-b51e-4045-98aa-f73eed32e606", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Bistand med registrering" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "1e6c4921-6840-4c63-aa43-36096a6b6c44", + "title": "Fast kontaktperson", + "description": "", + "needId": "cb2e7f5e-2831-4577-ace1-826ce87a9ffa", + "type": "requirement", + "variants": [ + { + "id": "860d917c-a4fe-4b16-b57b-1b49feec15c8", + "requirementText": "Kan dere tilby oppdragsgiver en fast kontaktperson før og under arrangementet for planlegging og gjennomføring av arrangementet? Personen skal bistå med koordinering under gjennomføringen av arrangementet.", + "instruction": "Ønsker dere en fast kontaktperson før og under arrangementet for planlegging og gjennomføring av arrangementet? Personen skal bistå med koordinering under gjennomføringen av arrangementet.", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "9b6f3a1d-fbcc-4ea1-8707-ab7c6d16e270", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Fast kontaktperson" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + } + ], + "type": "need", + "parent": "c8dd0912-eb52-4895-96e3-58996001d5b2", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "1836802d-5f10-4a32-bbac-db9ac4d5f899", + "title": "Servering", + "description": "", + "requirements": [ + { + "id": "6fba8d3a-a599-4ef8-9647-03aec980b50b", + "title": "Inkludert frokost", + "description": "", + "needId": "1836802d-5f10-4a32-bbac-db9ac4d5f899", + "type": "requirement", + "variants": [ + { + "id": "7d7f0afa-1706-41f2-af0c-5a5fc9d9bd5a", + "requirementText": "1) Er frokost inkludert ved bestilling av overnatting? Svar ja/nei.\n2) Oppgi hvilken type frokost dere kan tilby.\n3) Oppgi antall personer dere har kapasitet til å tilby frokost til.", + "instruction": "1) Er det ønskelig med frokost inkludert ved bestilling av overnatting? Svar ja/nei.\n2) Hvilken type frokost ønsker dere? Velg ønsket alternativ.\n3) Hvor mange personer skal ha frokost inkludert ved bestilling av overnatting? Velg antall. \n", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "adf7dbf8-d86e-4550-a018-6fffe283876f", + "deb4c8f2-e2ee-4278-90f5-a986bd3cbf40", + "217cda9b-1984-4a5f-8467-bda3293133ca", + "b2d12668-3db1-4a63-bd38-5263f1b6ae23", + "7665fbf9-deba-4cb7-b2a4-30c976231077", + "ce098cbf-90d2-4019-b4c3-42e3308ebde7", + "66da97ac-466e-4914-af7f-28dbeef05d24", + "c087beae-1a3d-427b-b0fe-2859f3a93a63" + ], + "questions": [ + { + "id": "e7de2885-9ba1-4ffd-9f69-1c8c7e794852", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "79d8f285-0368-44d2-8b3f-33a42ea045ea", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "6904f02d-fcd8-4a2d-80af-494cb2c6b6aa", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "4af41af5-0426-494d-b3f9-22ee5540c4a9", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 2000, + "step": 1, + "unit": "Antall personer", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 0, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Frokost inkludert ved bestilling av overnatting" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "a8be850a-3ffa-4941-9d32-60bfeee409fe", + "title": "Inkludert møtemat/pausemat", + "description": "", + "needId": "1836802d-5f10-4a32-bbac-db9ac4d5f899", + "type": "requirement", + "variants": [ + { + "id": "279f57a4-5551-47a6-bf7a-fa4640ea1695", + "requirementText": "Oppgi om dere kan tilby møtemat/pausemat ved bestilling av møterom/konferanserom.\n", + "instruction": "Oppgi om du ønsker møtemat/pausemat ved bestilling av møterom/konferanserom.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "81d387d0-f5ac-4c60-8d3f-f164113af336", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "fa708687-b5ee-482c-abfb-05d469695433", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "2cabbc89-f46a-4d71-b95e-c0de391da038", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "c4e46ec7-5039-4060-bfff-8c0d4d4d88b3", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 2000, + "step": 1, + "unit": "Personer", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 0, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Møtemat/pausemat inkludert ved bestilling av møterom/konferanserom" + }, + { + "id": "8ed4ce0b-7cb3-4f68-8eed-16e711a8e220", + "requirementText": "Oppgi hvilke tilpasninger dere kan tilby for møtemat/pausemat ved bestilling av møterom/konferanserom.", + "instruction": "Oppgi hvilke tilpasninger dere trenger for møtemat/pausemat ved bestilling av møterom/konferanserom.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "1fb3289f-ffc7-4552-96c7-fb1e48eed64b", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "d6fdb096-2c50-4356-abd3-816568582d39", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "8aca0a91-c1f7-4a2a-bb0d-0ab99d17aec7", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "9b4848bc-27d0-4f37-90bd-547f659af0d1", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 2000, + "step": 1, + "unit": "Personer", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 0, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Møtemat/pausemat inkludert (allergener) ved bestilling av møterom/konferanserom" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "61890b79-f482-44bd-80a8-68920891e74c", + "title": "Inkludert middag", + "description": "", + "needId": "1836802d-5f10-4a32-bbac-db9ac4d5f899", + "type": "requirement", + "variants": [ + { + "id": "783445e1-440c-41e7-ada5-5ffa66867c22", + "requirementText": "Oppgi om dere har middag inkludert ved bestilling av overnatting eller kurs- og konferanserom", + "instruction": "Oppgi om du ønsker middag inkludert ved bestilling av overnatting eller kurs- og konferanserom", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "7c01f2ca-73c5-4bd4-9bf9-ea44d199fad3", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "7ff601ee-1502-40c8-a576-a62d0db394b5", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "9db68a5d-1ef9-45ab-a2b8-c519dd96e92a", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Middag inkludert ved bestilling av overnatting eller kurs- og konferanserom" + }, + { + "id": "37493cdc-6849-48f7-8680-14e9114073d4", + "requirementText": "Kan dere tilby middag (tilpasset matallergi) inkludert ved bestilling av overnatting eller kurs- og konferanserom?", + "instruction": "Ønsker dere middag (tilpasset matallergi) inkludert ved bestilling av overnatting eller kurs- og konferanserom?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "5c4bb2a7-3ead-48ed-ade5-f7cc2871b7f4", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "d6fdb096-2c50-4356-abd3-816568582d39", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "ec0b3595-3feb-4553-be0d-3277af993cd7", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 2000, + "step": 1, + "unit": "Personer", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 0, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Middag inkludert ved bestilling av overnatting (tilpasset matallergi) eller kurs- og konferanserom" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "3699b540-9aa8-4300-967c-130b373f5c1c", + "title": "Middag (tilvalg)", + "description": "", + "needId": "1836802d-5f10-4a32-bbac-db9ac4d5f899", + "type": "requirement", + "variants": [ + { + "id": "b080dac4-83b8-46fc-bedb-8b57e03f1314", + "requirementText": "Kan dere tilby Oppdragsgiver oppgradering til festmiddag? 1) Ja/nei 2) Velg fra kodeliste", + "instruction": "Ønsker dere å oppgradere til festmiddag? 1) Ja/nei 2) Velg fra kodeliste", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "de87935c-40fa-49cd-9dfd-59a18ea88635", + "2efda706-512a-4a9b-ba6e-9fbe590bbcca" + ], + "questions": [ + { + "id": "67263e92-fd47-4dc7-9b5e-8d42d7b60bc0", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "58ece071-458b-4c25-a4c0-ad0fb33c311f", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "7beb89e7-deaa-4bff-ad10-fb8076187fae", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "c250a02e-b82b-4ca5-a50c-99f9ca5853d3", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 2000, + "step": 1, + "unit": "Personer", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 0, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Festmiddag" + }, + { + "id": "ece6fe25-818b-4817-803e-5777dce4a4fd", + "requirementText": "Kan dere tilby kjøp av middag dersom det ikke er inkludert i booking av møterom?", + "instruction": "Ønsker dere å kjøpe middag dersom det ikke er inkludert i booking av møterom?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e5065081-7c78-4c41-8478-af3de75bc7f8", + "2efda706-512a-4a9b-ba6e-9fbe590bbcca", + "de87935c-40fa-49cd-9dfd-59a18ea88635" + ], + "questions": [ + { + "id": "8415749e-3f7a-4855-941c-23d5fd6ded1d", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "a147b589-f866-456b-a03f-64e6cd4e560d", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "9db68a5d-1ef9-45ab-a2b8-c519dd96e92a", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "5095bd36-1670-4609-ae06-eec8f230052b", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 2000, + "step": 1, + "unit": "Personer", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 0, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Middag" + }, + { + "id": "cd6d819f-3712-434f-9c9b-8082f5dbcc88", + "requirementText": "Kan dere tilby kjøp av middag (tilpasset allergener) dersom det ikke er inkludert i booking av møterom/hotellrom?", + "instruction": "Ønsker dere å kjøpe middag (tilpasset allergener) dersom dette ikke er inkludert i booking av møterom/hotellrom?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e5065081-7c78-4c41-8478-af3de75bc7f8", + "2efda706-512a-4a9b-ba6e-9fbe590bbcca", + "de87935c-40fa-49cd-9dfd-59a18ea88635" + ], + "questions": [ + { + "id": "2f2301aa-22bb-4a57-93bc-1d19a7f4eb9c", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "8d5e45fb-c14e-422e-bcb0-097885f4862c", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "d6fdb096-2c50-4356-abd3-816568582d39", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "779be458-64b3-47f0-a3c5-ccc20f1b2d25", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 2000, + "step": 1, + "unit": "Personer", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 0, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Middag (tilpasset allergener)" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "5d10f387-0e31-4dc1-86f0-8a7b5390ab41", + "title": "Inkludert lunsj", + "description": "", + "needId": "1836802d-5f10-4a32-bbac-db9ac4d5f899", + "type": "requirement", + "variants": [ + { + "id": "0c4eef50-bc8f-42e9-9ff4-26e264720dca", + "requirementText": "Kan dere tilby lunsj inkludert ved bestilling av overnatting eller møterom? 1) Ja/nei 2) Velg fra kodeliste.", + "instruction": "Ønsker dere lunsj inkludert ved bestilling av overnatting eller møterom? 1) Ja/nei 2) Velg fra kodeliste.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "0cd36309-aaf6-4ce0-9b43-e412ddd453d8", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "7e7610e0-6fba-46a8-828a-38f50ead2406", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "d27a6c21-5f16-48c6-9d1c-271b41c5b0c3", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "51cb90d0-9b48-4e77-b62f-7b57bb990ccb", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 1000, + "step": 1, + "unit": "Personer", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 0, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Lunsj inkludert ved bestilling av overnatting eller møterom" + }, + { + "id": "56ae8c8e-c921-4515-aa0c-bac6d91272bb", + "requirementText": "Kan dere tilby lunsj tilpasset allergener inkludert ved bestilling av overnatting eller møterom? 1) Ja/nei 2) Velg matallergi dere kan ta hensyn til 3) Velg antall dere kan tilby.", + "instruction": "Ønsker dere lunsj inkludert tilpasset allergener ved bestilling av overnatting eller møterom? 1) Ja/nei 2) Velg matallergi dere ønsker at Leverandør skal ta hensyn til 3) Velg antall personer som trenger matservering tilpasset matallergi. \n\nDette skal ikke settes som et krav ved matpreferanser. ", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "ad432819-47dc-443a-804d-261b78d6d43d", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "3b77919f-b447-4d97-80ec-fb5cbfbd7c36", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "916727da-8d0a-47cf-91ef-ec1a7195644d", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "d6fdb096-2c50-4356-abd3-816568582d39", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "c7651f06-f1da-49bf-99d6-9dcc935d7b14", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 2000, + "step": 1, + "unit": "Antall personer", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 0, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Lunsj inkludert ved bestilling av overnatting eller møterom (tilpasset matallergi)" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "b67944e3-77de-49c9-beb1-a96eaf937456", + "title": "Frokost (tilvalg)", + "description": "", + "needId": "1836802d-5f10-4a32-bbac-db9ac4d5f899", + "type": "requirement", + "variants": [ + { + "id": "500a10f8-2917-48cd-b0e1-f3cdc27b8a30", + "requirementText": "Kan dere tilby kjøp av frokost dersom det ikke er inkludert i booking av f.eks. hotellrom? 1) Svar ja/nei 2) Oppgi hvilken type frokost dere i så fall kan tilby 3) Oppgi antall dere kan tilby frokost til.", + "instruction": "Ønsker dere å kjøpe frokost for en eller flere dager? 1) Svar ja/nei 2) Oppgi hvilken frokost dere ønsker 3) Oppgi antall som ønsker frokost.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "1d855ecf-48c7-4cda-87c0-03e6167ef345" + ], + "questions": [ + { + "id": "7427d2d9-1f8d-486a-8bf5-d6aaa471b5ce", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "1dd85812-a269-4639-b8eb-b51c8c50aaad", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "6904f02d-fcd8-4a2d-80af-494cb2c6b6aa", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "3233ace5-3868-4e19-b045-43cf20535830", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 2000, + "step": 1, + "unit": "Personer", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 0, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Kjøp av ekstra frokost" + }, + { + "id": "da82675f-42d2-4c38-9689-2be0621f5549", + "requirementText": "Kan dere tilby kjøp av frokost tilpasset allergener dersom det ikke er inkludert i booking av f.eks. hotellrom? 1) Svar ja/nei 2) Oppgi hvilke tilpasninger dere kan tilby 3) Oppgi antall dere kan tilby til.", + "instruction": "Ønsker dere å kjøpe ekstra frokost tilpasset allergener dersom det ikke er inkludert i booking av f.eks. hotellrom? 1) Svar ja/nei 2)Oppgi hvilke tilpasninger dere ønsker fra leverandør 3) Oppgi antallet dere ønsker å kjøpe frokost tilpasset allergener til.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "1d855ecf-48c7-4cda-87c0-03e6167ef345" + ], + "questions": [ + { + "id": "1f2cb734-77fd-414c-b717-f3eb3bdabaf6", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "12bf0348-7b9f-4ace-87d0-ca5783b5972f", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "d6fdb096-2c50-4356-abd3-816568582d39", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "1688d222-641f-4f8f-b859-85e9e1d4898b", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 2000, + "step": 1, + "unit": "Personer", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 0, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Kjøp av ekstra frokost (tilpasset allergener)" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "01920d9d-d717-4397-a8be-0a7895f734b8", + "title": "Lunsj (tilvalg)", + "description": "", + "needId": "1836802d-5f10-4a32-bbac-db9ac4d5f899", + "type": "requirement", + "variants": [ + { + "id": "9a677fa8-cd31-471b-a2f6-aad6b3a46b12", + "requirementText": "Kan dere tilby kjøp av lunsj som ikke er inkludert ved booking av f.eks. hotellrom? 1) Svar ja/nei 2) Oppgi hvilken type lunsj dere kan tilby", + "instruction": "Ønsker dere å kjøpe ekstra lunsj for en eller flere dager? 1) Ja/nei 2) Oppgi hvilken type lunsj dere ønsker.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "67577fef-c766-4bf6-9c78-8c0c83ca7bae" + ], + "questions": [ + { + "id": "96ec6ad2-78b4-498d-9fd0-ec8acfc268d9", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "d3233a94-7198-45a5-bff6-2de3d272ce39", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "d27a6c21-5f16-48c6-9d1c-271b41c5b0c3", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Kjøp av ekstra lunsj" + }, + { + "id": "3e3d023c-ec13-451e-9c4a-fe18fbd2a02a", + "requirementText": "Kan dere tilby lunsj tilpasset allergener?", + "instruction": "Ønsker dere lunsj tilpasset allergener?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "67577fef-c766-4bf6-9c78-8c0c83ca7bae" + ], + "questions": [ + { + "id": "bbe2d0c3-be3f-43f5-b849-4c124a25d1ca", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "18005fae-6489-4bec-a27b-680661afafc7", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "d6fdb096-2c50-4356-abd3-816568582d39", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Kjøp av lunsj tilpasset allergener" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "7ec46b18-529d-49ce-bd42-ad9caae31547", + "title": "Møtemat (tilvalg)", + "description": "", + "needId": "1836802d-5f10-4a32-bbac-db9ac4d5f899", + "type": "requirement", + "variants": [ + { + "id": "b8f7b325-0f57-43e0-a7ab-eaa1ff47378c", + "requirementText": "Kan dere tilby kjøp av ekstra møtemat/pausemat?", + "instruction": "Ønsker dere å kjøpe ekstra møtemat/pausemat?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "2da680fd-039d-440e-8188-4fa80082b995" + ], + "questions": [ + { + "id": "9365c3dd-70b3-4aba-bacc-2f8af5d5a5ca", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "e8a100de-06ca-431b-a38b-4891488505b5", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "2cabbc89-f46a-4d71-b95e-c0de391da038", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "558c2c73-dc48-4610-88ab-0c98a431a4b1", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 2000, + "step": 1, + "unit": "Personer", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 0, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Kjøp av ekstra møtemat" + }, + { + "id": "4264fc6c-5bef-4aa9-9058-555215eb44fb", + "requirementText": "Kan dere tilby møtemat/pausemat tilpasset allergener?", + "instruction": "Ønsker dere møtemat/pausemat tilpasset allergener?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "2da680fd-039d-440e-8188-4fa80082b995" + ], + "questions": [ + { + "id": "a898dda9-0a93-49d9-a881-9bfe67e89c72", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "cfab3eb2-e7d1-4a48-a8a3-4e100be38861", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "d6fdb096-2c50-4356-abd3-816568582d39", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "ddabc8af-4285-442e-84db-a321e3a8fd00", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 2000, + "step": 1, + "unit": "Personer", + "defaultPoint": 1, + "scoreValues": [ + { + "value": 0, + "score": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Kjøp av møtemat/pausemat tilpasset allergener" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "6be90939-bd8e-444c-a30c-2f58aa8ff9a0", + "title": "Inkludert frokost ved bestilling av overnatting (tilpasset matallergi)", + "description": "", + "needId": "1836802d-5f10-4a32-bbac-db9ac4d5f899", + "type": "requirement", + "variants": [ + { + "id": "022589e7-1c54-4ceb-b20b-c382af9a33b0", + "requirementText": "Velg hvilke matallergier dere kan ta hensyn til under frokosten.", + "instruction": "Velg hvilke matallergier det skal tilpasses for under frokosten. Dette kravet skal ikke brukes ved matpreferanser. ", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c087beae-1a3d-427b-b0fe-2859f3a93a63", + "adf7dbf8-d86e-4550-a018-6fffe283876f", + "deb4c8f2-e2ee-4278-90f5-a986bd3cbf40", + "217cda9b-1984-4a5f-8467-bda3293133ca", + "b2d12668-3db1-4a63-bd38-5263f1b6ae23", + "7665fbf9-deba-4cb7-b2a4-30c976231077", + "ce098cbf-90d2-4019-b4c3-42e3308ebde7", + "66da97ac-466e-4914-af7f-28dbeef05d24" + ], + "questions": [ + { + "id": "fa7d12fd-26b0-4656-8db5-beec3b793619", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "d6fdb096-2c50-4356-abd3-816568582d39", + "codes": [], + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Frokost inkludert ved bestilling av overnatting (tilpasset matallergi)" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + } + ], + "type": "need", + "parent": "c8dd0912-eb52-4895-96e3-58996001d5b2", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "16f8b402-a74d-4c5f-8cc9-23654bc7e50a", + "title": "Møterom", + "description": "", + "requirements": [ + { + "id": "e6eff920-6325-4378-a285-e0066a0663db", + "title": "Møterom", + "description": "", + "needId": "16f8b402-a74d-4c5f-8cc9-23654bc7e50a", + "type": "requirement", + "variants": [ + { + "id": "b0f23d50-85d5-4730-abc1-43f5f9d0cdd3", + "requirementText": "Velg type møterom dere kan tilby. ", + "instruction": "Velg type møterom som er ønskelig under arrangementet. ", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "feccdcfc-c124-4525-8e26-853f2d46bceb", + "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "ad432819-47dc-443a-804d-261b78d6d43d", + "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "19deb58c-d37d-4031-ae8c-e45e27632f08", + "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f" + ], + "questions": [ + { + "id": "987a7622-287e-4973-80bc-0329635c0c5e", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "db4b617a-e5a7-4965-aa57-8bcfad36488e", + "codes": [], + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Valg av møterom til kurs- og konferanser" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + } + ], + "type": "need", + "parent": "c8dd0912-eb52-4895-96e3-58996001d5b2", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "f3d61877-48ef-46b3-9759-2bad07cb17f6", + "title": "Aktiviteter/teambuilding", + "description": "", + "requirements": [ + { + "id": "b16fd274-af99-4f93-9fa0-4cb91cff6620", + "title": "Gruppeaktiviteter", + "description": "", + "needId": "f3d61877-48ef-46b3-9759-2bad07cb17f6", + "type": "requirement", + "variants": [ + { + "id": "d87a9b47-1cc1-4eed-8512-a9e06f055bac", + "requirementText": "Kan dere tilby gruppeaktiviteter/teambuildingsaktiviteter?", + "instruction": "Oppgi ønskede gruppeaktiviteter for oppholdet.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "166d1f14-d964-43a4-a08b-854fffdba28a", + "03e54d89-9b6c-4e01-91ad-3b659837979f", + "6fd6f3af-a48f-431c-a968-a19a876575eb", + "23ac680d-b7d6-4288-93bb-42686e50fbb5", + "eabaf6b8-d47c-4718-9d09-9444d35836a6", + "a0a9a371-0ce1-4a05-9412-3a42f90ef79e", + "d2177612-f32a-43c3-9ea8-8fad12cb8126", + "fdb7b369-18a1-4407-84e6-e04e54211422", + "c3e16ea0-eca7-47c8-b123-393c3794817a", + "9e36774a-3937-4b9f-9341-42e390103e81" + ], + "questions": [ + { + "id": "e1113ef6-95c0-453a-ae17-cfde76674bee", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "84adb6f9-f1a5-495a-8c5d-9d99ba0f3f67", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Ønskede gruppeaktiviteter" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "ba53595b-0615-4386-ad86-5d7215e56fa4", + "title": "Dato for gruppeaktiviteter", + "description": "", + "needId": "f3d61877-48ef-46b3-9759-2bad07cb17f6", + "type": "requirement", + "variants": [ + { + "id": "b0f541f3-d046-4ec7-b7ef-8b2ba06321ec", + "requirementText": "Oppgi dato dere kan tilby teambuilding/gruppeaktiviteter", + "instruction": "Oppgi dato dere ønsker teambuilding/aktiviteter", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "62d484a3-cd25-4f1d-9ff0-d2816e10f7db", + "166d1f14-d964-43a4-a08b-854fffdba28a" + ], + "questions": [ + { + "id": "ff9a3f0c-c15c-42f3-8a15-35314679209b", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [ + { + "date": null, + "score": 0 + }, + { + "date": null, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Dato for teambuilding" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "388c6314-e681-4344-81d3-504a55910d4c", + "title": "Tidspunkt for gruppeaktiviteter", + "description": "", + "needId": "f3d61877-48ef-46b3-9759-2bad07cb17f6", + "type": "requirement", + "variants": [ + { + "id": "ba0aa927-f9ce-4b1b-bd5b-3f716cdaaea4", + "requirementText": "Oppgi tidspunkt dere kan tilby teambuilding/gruppeaktiviteter", + "instruction": "Oppgi tidspunkt dere ønsker teambuilding/gruppeaktiviteter", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "62d484a3-cd25-4f1d-9ff0-d2816e10f7db", + "166d1f14-d964-43a4-a08b-854fffdba28a" + ], + "questions": [ + { + "id": "974e4305-43ce-48e7-ade3-14b0c7eb6341", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [ + { + "time": null, + "score": 0 + }, + { + "time": null, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Tidspunkt for teambuilding" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + } + ], + "type": "need", + "parent": "c8dd0912-eb52-4895-96e3-58996001d5b2", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "4c172142-4b13-463a-bc7b-54abe835a198", + "title": "Underholdning", + "description": "", + "requirements": [ + { + "id": "b48245fa-7792-4f1b-9e8c-06cc51d73274", + "title": "Underholdning", + "description": "", + "needId": "4c172142-4b13-463a-bc7b-54abe835a198", + "type": "requirement", + "variants": [ + { + "id": "2f0eed33-d977-421e-9b16-544d9a1c7480", + "requirementText": "Kan dere tilby underholdning under arrangementet?", + "instruction": "Ønsker dere underholdning under arrangementet?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "49c2537b-684f-4b57-ae98-ec8c339e9068" + ], + "questions": [ + { + "id": "caeada82-7884-4728-adfc-98b08f27d6b8", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "80226d5d-d30a-4e98-a386-9b6f65578e6b", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Underholdning" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "0052a996-af19-4473-b93b-c1dd676e0501", + "title": "Dato for underholdning", + "description": "", + "needId": "4c172142-4b13-463a-bc7b-54abe835a198", + "type": "requirement", + "variants": [ + { + "id": "16e528f9-1c26-4170-b3f5-c28b349ecebe", + "requirementText": "Oppgi dato for når dere kan tilby underholdning", + "instruction": "Oppgi dato for når dere ønsker underholdning", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "49c2537b-684f-4b57-ae98-ec8c339e9068" + ], + "questions": [ + { + "id": "1ccd002a-b301-474b-bd1b-06676853a78b", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [ + { + "date": null, + "score": 0 + }, + { + "date": null, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Dato for underholdning" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "b59d8ccf-5b01-4711-ad61-4d37caaf054c", + "title": "Tidspunkt for underholdning", + "description": "", + "needId": "4c172142-4b13-463a-bc7b-54abe835a198", + "type": "requirement", + "variants": [ + { + "id": "02f766a6-a714-472d-b22c-08c49bed97f0", + "requirementText": "Oppgi tidspunkt dere kan tilby underholdning", + "instruction": "Oppgi tidspunkt for når dere ønsker underholdning", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "49c2537b-684f-4b57-ae98-ec8c339e9068" + ], + "questions": [ + { + "id": "b21a9e9e-889f-45da-ad42-4c9ec4f66308", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [ + { + "time": null, + "score": 0 + }, + { + "time": null, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Tidspunkt for underholdning" + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + } + ], + "type": "need", + "parent": "c8dd0912-eb52-4895-96e3-58996001d5b2", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "53771ec9-a99f-4e33-ab36-85d9726cc345", + "title": "Transport", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "0a472e20-c7f9-40ff-af50-ac6c1d364890", + "title": "Parkering", + "description": "", + "requirements": [ + { + "id": "b4719d50-874a-4df6-860c-b44a3ffa195b", + "title": "Inkludert gratis parkering", + "description": "", + "needId": "0a472e20-c7f9-40ff-af50-ac6c1d364890", + "type": "requirement", + "variants": [ + { + "id": "4448e152-75c1-4bc6-8b45-356643eac4a5", + "requirementText": "Kan dere tilby gratis parkering på egen tomt? ", + "instruction": "Ønsker dere gratis parkering på stedets egen tomt?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "320ffb0e-e707-40ed-8330-cdf97624ec97", + "9c8ba3d1-ce00-42c8-82b6-706859c097cc", + "ffc1c540-5655-4430-8545-136ecb6aa041" + ], + "questions": [ + { + "id": "a7acd0a0-4e77-48f9-8d1f-73f221ec8761", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Gratis parkering på egen tomt" + }, + { + "id": "5446e0c0-9349-4248-b90a-acaaae4f3fae", + "requirementText": "Kan dere tilby gratis parkering i parkeringshus?", + "instruction": "Ønsker dere gratis parkering i parkeringshus? ", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "9c8ba3d1-ce00-42c8-82b6-706859c097cc", + "eb2a27df-615b-4eae-ab0c-209a95d37a3d", + "320ffb0e-e707-40ed-8330-cdf97624ec97" + ], + "questions": [ + { + "id": "e9db943d-e3f4-4dd1-8896-2c699129e38c", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Gratis parkering i parkeringshus" + }, + { + "id": "9fdfbdeb-a09e-497b-9c59-92155678732e", + "requirementText": "Finnes det gratis parkering utendørs på offentlig sted i nærheten av kurs- og konferanselokalet?", + "instruction": "Ønsker dere gratis parkering utendørs på offentlig sted i nærheten av kurs- og konferanselokalet?", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "320ffb0e-e707-40ed-8330-cdf97624ec97", + "683e1061-c8ab-43ee-920a-ad32f6b209f1", + "9c8ba3d1-ce00-42c8-82b6-706859c097cc", + "0dc9950f-81e5-486d-aec3-caec82a51a14" + ], + "questions": [ + { + "id": "deb76d2f-eb98-4b47-ae15-d5ddf069a2ce", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Gratis parkering utendørs på offentlig sted " + } + ], + "tags": [], + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "6904f02d-fcd8-4a2d-80af-494cb2c6b6aa", + "title": "Frokost", + "description": "", + "codes": [ + { + "id": "dd5c87f5-c1b5-4fe9-8ea2-c6e2f585a666", + "title": "Frokostbuffet", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "bee4b7e0-1557-42ad-b893-f40593c46242", + "title": "Kontinentalfrokost", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "b6e1f5f6-9493-40a8-a3b6-2d66918c2e3a", + "title": "Engelsk frokost", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "f186373b-5f73-4420-9d5b-4aafceb40110", + "title": "Amerikansk frokost", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "d27a6c21-5f16-48c6-9d1c-271b41c5b0c3", + "title": "Lunsj", + "description": "", + "codes": [ + { + "id": "f7b7c818-2275-4e1c-bed2-8ab183277dfb", + "title": "Lunsj-buffet", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "a274c89b-7d12-4d08-b1b6-53c049fe8e5c", + "title": "2-retters", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "d0f465b3-62f3-4972-b594-a1559341e069", + "title": "3- retters", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "e75e7614-a904-4cd2-9581-1f9feacbb254", + "title": "Vegetar", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "f6c79f19-2a7b-4019-adfc-0c1220254fc9", + "title": "Vegansk", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "3df9a8e2-7bd9-43e5-b63d-889c3f06ac57", + "title": "Økologisk", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "82a066ce-9095-4fbc-aa5a-8b60b7e275bc", + "title": "Fingermat/tapas", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "6dc3ae60-e777-4117-bc30-13b55d6bc509", + "title": "Alkoholfri drikke", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "2ec04913-f0e8-477d-b276-468d85921edf", + "title": "Mineralvann", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "e3ebc0c6-0c33-496d-b3aa-f5072cb8f6ec", + "title": "Kaffe/te", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "9db68a5d-1ef9-45ab-a2b8-c519dd96e92a", + "title": "Middag", + "description": "", + "codes": [ + { + "id": "2c7796db-c585-4243-a154-eccdedbe7cc2", + "title": "Middagsbuffet", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "c3541b50-6b05-460a-be08-00bfa61b0e57", + "title": "2-retters", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "b3428af1-0c74-4225-8524-51cf3a6ccb1e", + "title": "3-retters", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "96058fb2-abe6-4656-8b73-0c96e1fef874", + "title": "4-retters", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "667359b7-f683-4193-913f-949a3daa5c66", + "title": "5-retters", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "6ee9771f-6c28-499c-8f1a-acc2624153fe", + "title": "Vegetarmat", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "63d9f4cc-c27f-4fc5-aca4-73c0100a984c", + "title": "Vegansk mat", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "4f1be30c-1832-4958-9d7d-9e731e7da63b", + "title": "Økologisk mat", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "d9fbfc4a-65a6-4bc8-874d-9ca493fd043f", + "title": "Fingermat/tapas", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "016f7ee6-aa64-4ca4-a440-adb49b2a8583", + "title": "Tilpasset matregler knyttet til religion", + "description": "F.eks. kosher, halal, mv. ", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "f0eb9370-0549-441a-a5a9-4a55be3a4b7a", + "title": "Alkoholfri drikke", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "d109b4cd-a7c1-4a7c-880a-60b2c9ffa6fa", + "title": "Øl/vin/apertif/café avec", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "2cabbc89-f46a-4d71-b95e-c0de391da038", + "title": "Møtemat/pausemat", + "description": "", + "codes": [ + { + "id": "df6c952e-d644-4b01-b5a0-dbbfd629619b", + "title": "Smoothie", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "1f47c194-202e-4eab-bb03-96e162b220d5", + "title": "Mineralvann", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "031436eb-0f22-4c34-8bef-9cce818092de", + "title": "Nøtter", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "c94fd068-521f-4aa6-91d6-988dc9dee873", + "title": "Wraps", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "4c60b618-1882-4c18-8f19-5c389f7c922d", + "title": "Smørbrød", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "68b897e4-ca43-43f5-bdb8-ba6e1bae47c4", + "title": "Kaffe/te", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "7c7ad4f5-6637-4b06-8070-3d816fc94fa7", + "title": "Kake/bakst", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "c73e5699-02c9-4c24-8bac-d2ff9408b0dd", + "title": "Fingermat/tapas", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "adbd9948-5f5a-4ed3-87ea-1d46691fcea2", + "title": "Frukt", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "d6fdb096-2c50-4356-abd3-816568582d39", + "title": "Allergener", + "description": "", + "codes": [ + { + "id": "a8e7e16e-766d-40ec-8781-050eec182aec", + "title": "Gluten", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "a564f0b1-157a-4ae2-a60a-197fb90b19f3", + "title": "Skalldyr", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "a73e446d-690f-4cfd-aef3-2b7fd919af47", + "title": "Egg", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "ccc4f51f-642c-4495-a6ed-d8d0bb7a6e84", + "title": "Fisk", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "59081e1c-86d8-4dc6-b466-43a27c42959b", + "title": "Nøtter", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "9b525938-576c-4ef5-90c8-a93fcb76e60e", + "title": "Soya", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "2c133fa2-660b-46d7-be28-4c66e7357a6c", + "title": "Melk", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "d69caa52-c0ec-4cb9-8ce2-7c81b747386a", + "title": "Laktose", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "3756752d-631a-43fb-94e1-b8e193ad7421", + "title": "Selleri", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "b093d220-1878-41e8-8650-f85161570303", + "title": "Sennep", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "0f919bf6-7cd1-4358-94c1-e266848e8b5f", + "title": "Sesamfrø", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "aa225989-8af4-4939-a4f1-2ef8aad7904c", + "title": "Svoveldioksid og sulfitter", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "8f850ef5-0013-455c-9a09-db94ff7e66d9", + "title": "Lupin", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "29da074f-59b6-47ec-b7f6-e8c6c82e0a3a", + "title": "Bløtdyr", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "db4b617a-e5a7-4965-aa57-8bcfad36488e", + "title": "Romoppsett", + "description": "", + "codes": [ + { + "id": "8cbc73c2-222f-4011-9546-bed1639a4851", + "title": "Klasserom", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "ff2c1750-6867-4a4d-9d47-fb1d09c39369", + "title": "Scene", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "60a748d2-5a68-494f-a4a4-3a610ea1a801", + "title": "Styreoppsett/langbord", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "13f875f9-9e71-44c4-ba7d-c0c44bd1cbdc", + "title": "Klasserom", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "007bff18-2977-4cfc-8789-5e684704ee02", + "title": "Grupperom", + "description": "3-6 personer", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "e8ac700e-4192-4b95-acea-768e9161b951", + "title": "Grupperom ", + "description": "7-12 personer", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "f82fb0ad-0706-4cc1-bbcc-621b02373628", + "title": "U-bord/hestesko", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "a232c075-f83b-4cda-9ebb-bffa29ecf43b", + "title": "T-bord", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "f661462c-ab6b-4e7f-920b-a00f164bb584", + "title": "Kino", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "48b2cbe8-a985-485c-889d-e4e37cbc2406", + "title": "Runde bord", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "e48ca47f-38aa-4786-a3e3-257d5bc1ec41", + "title": "Delplenum", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "7bff77c0-6eba-48ee-b77d-01ec4fdaae18", + "title": "Kafébord", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "25e48d34-e889-4641-994a-819f7a78e4d0", + "title": "Standard konferanseteknikk/AV-utstyr", + "description": "", + "codes": [ + { + "id": "abed440c-edec-4da6-bf95-ad3d3ef4ab5f", + "title": "Mikrofon/mygg", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "b25d1fec-4263-4d93-a969-c249ab825bc6", + "title": "Mikrofon håndholdt", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "9f6b63cc-cad8-4c73-bd1f-900f2e357f14", + "title": "Lydforsterkere", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "267a511a-ddd0-4167-8fe1-36ace119f495", + "title": "Miksere", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "1cd072cb-bf30-44a4-ad47-c4f90b64c0cb", + "title": "Prosjektor/storskjerm ", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "21caf73c-2959-44e0-84ac-a83d80a80dbd", + "title": "Overgang (VGA-HDMI display port)", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "5670311a-fcd0-40e4-bc70-76d29c7cc49b", + "title": "Flipover/whiteboard", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "33f10d40-5bb4-4f5d-8d95-3c70c0f65fba", + "title": "Streamingmuligheter (Kamera, m.m.)", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "6fb3295e-7341-4c81-8945-98de56c23e94", + "title": "Teknisk assistanse", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "cb54c860-0983-4273-8ac2-aebb0ac77afe", + "title": "Høytaler", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "adb122a3-113a-4fd7-8acc-637b52f58d0e", + "title": "Konferansetelefon", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "0025f3c0-06ef-4e28-aa13-6aceef952c14", + "title": "Lyskastere", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "1faf643d-e2ee-41dc-be08-ffade6480276", + "title": "Spotlights", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "1677f4ac-f089-41aa-8b99-20da8233fe1e", + "title": "Stemningsbelysning", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "63ef122b-2627-4c66-a042-61c475547abe", + "title": "Talerstol", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "72dbe24c-7c15-466d-8de4-0c736f57a8ac", + "title": "Tilgang til skjermer på møterom/grupperom", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "c904f802-21e2-4554-9357-d9e31f433e9c", + "title": "Tilgang til innganger (PC) på møterom/grupperom", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "765409a0-14cc-4944-8c04-1411e6fb4059", + "title": "Tilgang på lydkilder på møterom/grupperom", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "1e62febb-30b5-4e63-b7e6-f50c1aa6fc4d", + "title": "Leie av PC", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "e5d97ee0-cac7-4903-b157-5808bac9df0c", + "title": "Webcam", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "84adb6f9-f1a5-495a-8c5d-9d99ba0f3f67", + "title": "Aktiviteter/teambuilding", + "description": "", + "codes": [ + { + "id": "cc842990-b0ec-4d34-907d-ece90257d2d8", + "title": "Vin-/ølsmaking", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "b13cf6d0-f9f0-4765-aee3-057980f3e009", + "title": "Sjokoladesmaking", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "ae8fd18a-a8c2-41d3-b9a2-1ff49f60a626", + "title": "Omvisning/guidet tur", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "20a06f9f-77a2-4454-92a4-c458a6e986cb", + "title": "Båttur", + "description": "Seilbåt, rib, robåt, pedalbåt, m.m.", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "f84f17f3-c5ae-4e0b-9ca6-087a641ce92a", + "title": "Escape room", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "46073609-99d7-4eca-92e2-14781b7d64d2", + "title": "Padling", + "description": "Kajakk, kano, SUP, m.m.", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "12038bd5-a3a5-4238-ae02-5f6e0261dae0", + "title": "Flerkamp", + "description": "5-/10-kamp", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "1a5e19b6-a62f-4db7-a907-d53d937b1518", + "title": "Boblefotball", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "b3065e3d-122d-4e1d-aefe-c641d95ee5fe", + "title": "Skitur", + "description": "Leie av langrennsski og forslag til tur.", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "c240e4fc-c4b4-4b55-b7b6-c7e808a0b9e0", + "title": "Discogolf", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "a4c66c80-3872-47c6-98ee-954ebd1f059b", + "title": "Shuffleboard", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "9b984e63-422a-4f5b-a836-7a808a42df13", + "title": "Biljard", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "b461e8d6-651c-4a6d-8cae-304bd4f866d5", + "title": "Sykkeltur", + "description": "Leie av sykkel og forslag til tur.", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "dbb9e49f-e99b-4412-8291-b0ef95dc637f", + "title": "Minigolf", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "fd83fafa-60bc-4cf1-bd05-7f40e3e81698", + "title": "Ridning", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "d6b9dbba-ec04-46cf-b689-e02a0e4fe4ca", + "title": "Fisketur", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "5f5bfbf9-06ac-40f0-a24a-06153b2262bc", + "title": "Bordtennis", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "32c132ff-1b34-42cb-b4a2-30b6405fa9ce", + "title": "Klatring", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "bb025b17-e5b1-4fee-b90a-d13f530ce4eb", + "title": "Matkurs", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "f2770612-bb0e-47c9-b076-7990da435847", + "title": "Yoga", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "f9beafb9-6b2a-4ddb-9b62-ed180acd9bec", + "title": "Dansekurs", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "84cccf75-9fb9-477c-8760-2bc21fac949a", + "title": "Gruppetrening", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "80226d5d-d30a-4e98-a386-9b6f65578e6b", + "title": "Underholdning", + "description": "", + "codes": [ + { + "id": "65198083-f31c-45c4-b298-8b166ee56165", + "title": "Foredrag", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "a2753926-6a57-4734-b704-24eb855a3487", + "title": "Musikalsk innslag", + "description": "Band, DJ, m.m.", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "176c368f-8f12-48d3-aa03-6f90d825d800", + "title": "Danseshow", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "2c65ccad-c99f-41ac-b825-9c517384ad3a", + "title": "Magiker", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "e9b54bbb-00b5-4d7f-be9b-ee807803b290", + "title": "DJ", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "7beb89e7-deaa-4bff-ad10-fb8076187fae", + "title": "Festmiddag", + "description": "", + "codes": [], + "type": "codelist", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "23ec62dc-2d00-4e74-b20a-4d4e9dddf8ec", + "title": "Universell utforming", + "description": "", + "codes": [], + "type": "codelist", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "3c0ba5c8-2a26-40e1-8428-a7443ff93655", + "title": "Sikkerhet", + "description": "Krav til fysisk sikring under arrangementet. ", + "codes": [ + { + "id": "4d401b5b-db6f-4103-b075-c064ddf1ee78", + "title": "Skuddsikre glass", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "8d65f8f9-14ad-4f31-8f9e-bcbf42048664", + "title": "Forsterkede vegger", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "d0269b05-adff-456a-beac-5bb0b14a2c00", + "title": "Begrenset adkomst", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "45e31473-10de-4f5e-92bc-df5f339144d3", + "title": "Ekstra vakthold", + "description": "", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "73e6dbec-2d1f-4d46-b7db-8044fd180f43", + "title": "Standard møterom/lokale", + "description": "", + "codes": [ + { + "id": "ccb987ad-5a65-4177-a2dc-9cf93870d0c8", + "title": "Lav standard", + "description": "Enkel romstandard, ingen tilgjengelig teknisk assistanse, begrenset med teknisk utstyr.", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "e8fadb8b-e327-4afb-92e2-7ba23b724d08", + "title": "Middels standard", + "description": "Lokale med god standard, gode lysforhold og ventilasjon, servering av alle måltider i egne eller nærliggende lokaler, standard teknisk utstyr, teknisk assistanse under deler av arrangementet. ", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "adf58ab1-72c4-4928-a239-04afbc6ba5d3", + "title": "Høy standard", + "description": "Lokale med meget god standard, meget gode lysforhold og ventilasjon, utsikt, alle måltider tilbys i egne lokaler, fellesarealer, serviceytelser på høyt nivå, tilgjengelig kursvertinne/vert under hele arrangementet, god tilgang på teknisk utstyr, tilgang på wifi og teknisk assistanse under hele arrangementet.", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "81a52088-64b3-48a8-9ac3-55029938134c", + "title": "Høy standard +", + "description": "Lokaler av svært god kvalitet, svært gode lysforhold og ventilasjon, utsikt, alle måltider tilbys i egen restaurant, tilgang på fellesarealer, serviceytelser på et høyt nivå, tilgjengelig kursvertinne/vert under hele arrangementet, god tilgang på teknisk utstyr, tilgang til wifi og teknisk assistanse under hele arrangementet. ", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + }, + { + "id": "1c2873da-0fb7-4604-92aa-d9c483d0b554", + "title": "Standard hotellrom", + "description": "", + "codes": [ + { + "id": "5ecc2c59-bc10-495b-a69b-417f58a0ca7a", + "title": "Lav standard/DNT-standard", + "description": "Gjestegård, e.l. Sted med enkel romstandard, felles dusj og toalett. ", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "61e80cf4-667b-4fbc-a36b-ee251c788985", + "title": "Middels standard", + "description": "God romstandard med TV, dusj, toalett og skrivebord. ", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "53b3b15f-9acb-49ad-8258-d643ea7e58a6", + "title": "Høy standard", + "description": "Meget god romstandard. TV, dusj, toalett, skrivebord og wifi på rommet. 24-timers resepsjon. Tilgjengelig restaurant på hotellet. Tilgang til svømmebasseng, spa eller treningssenter på hotellet. ", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + }, + { + "id": "33bc8bb4-96ea-4a95-acf4-96c6b5b9509e", + "title": "Høy standard +", + "description": "Svært god romstandard. TV, dusj, toalett, skrivebord og wifi på rommet. 24-timers resepsjon og room-service. Kostnadsfri tilgang til svømmebasseng, spa eller treningssenter. Alle måltider tilbys i egen restaurant. ", + "type": "code", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null + } + ], + "products": [ + { + "id": "c087beae-1a3d-427b-b0fe-2859f3a93a63", + "title": "Hotellrom", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "adf7dbf8-d86e-4550-a018-6fffe283876f", + "title": "Enkeltrom", + "description": "", + "type": "product", + "parent": "c087beae-1a3d-427b-b0fe-2859f3a93a63", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "deb4c8f2-e2ee-4278-90f5-a986bd3cbf40", + "title": "Dobbeltrom", + "description": "", + "type": "product", + "parent": "c087beae-1a3d-427b-b0fe-2859f3a93a63", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "217cda9b-1984-4a5f-8467-bda3293133ca", + "title": "Twin-rom", + "description": "", + "type": "product", + "parent": "c087beae-1a3d-427b-b0fe-2859f3a93a63", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "b2d12668-3db1-4a63-bd38-5263f1b6ae23", + "title": "Familierom", + "description": "", + "type": "product", + "parent": "c087beae-1a3d-427b-b0fe-2859f3a93a63", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "7665fbf9-deba-4cb7-b2a4-30c976231077", + "title": "Junior suite", + "description": "", + "type": "product", + "parent": "c087beae-1a3d-427b-b0fe-2859f3a93a63", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "ce098cbf-90d2-4019-b4c3-42e3308ebde7", + "title": "Suite", + "description": "", + "type": "product", + "parent": "c087beae-1a3d-427b-b0fe-2859f3a93a63", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "66da97ac-466e-4914-af7f-28dbeef05d24", + "title": "Penthouse suite", + "description": "", + "type": "product", + "parent": "c087beae-1a3d-427b-b0fe-2859f3a93a63", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "title": "Møterom", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "feccdcfc-c124-4525-8e26-853f2d46bceb", + "title": "Plenumssal", + "description": "", + "type": "product", + "parent": "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "6315e343-893c-4877-aa3c-11f7c89d2fc0", + "title": "Møterom/grupperom", + "description": "", + "type": "product", + "parent": "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "ad432819-47dc-443a-804d-261b78d6d43d", + "title": "Kursrom", + "description": "", + "type": "product", + "parent": "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "19deb58c-d37d-4031-ae8c-e45e27632f08", + "title": "Klasserom", + "description": "", + "type": "product", + "parent": "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "ad22980f-c3f4-4750-8f1b-2ebefded82d3", + "title": "Møterom tilpasset hybridmøter", + "description": "", + "type": "product", + "parent": "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "3ea12fd0-0f12-4464-b76b-3ebcdcc37a8f", + "title": "Utstillerareal", + "description": "", + "type": "product", + "parent": "e1a590a0-c5b4-4cfd-a778-f29a0c344c5f", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "de87935c-40fa-49cd-9dfd-59a18ea88635", + "title": "Bankett/festmiddag", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "2efda706-512a-4a9b-ba6e-9fbe590bbcca", + "title": "Festmiddag", + "description": "", + "type": "product", + "parent": "de87935c-40fa-49cd-9dfd-59a18ea88635", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "62d484a3-cd25-4f1d-9ff0-d2816e10f7db", + "title": "Aktiviteter/teambuilding", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "166d1f14-d964-43a4-a08b-854fffdba28a", + "title": "Gruppeaktiviteter", + "description": "", + "type": "product", + "parent": "62d484a3-cd25-4f1d-9ff0-d2816e10f7db", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "49c2537b-684f-4b57-ae98-ec8c339e9068", + "title": "Underholdning", + "description": "Foredrag, musikalsk innslag, m.m.", + "type": "product", + "parent": "", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "647f6c0e-24dd-43d5-adcd-b1503ac50a14", + "title": "Servering", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "1d855ecf-48c7-4cda-87c0-03e6167ef345", + "title": "Frokost", + "description": "", + "type": "product", + "parent": "647f6c0e-24dd-43d5-adcd-b1503ac50a14", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "67577fef-c766-4bf6-9c78-8c0c83ca7bae", + "title": "Lunsj", + "description": "", + "type": "product", + "parent": "647f6c0e-24dd-43d5-adcd-b1503ac50a14", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "e5065081-7c78-4c41-8478-af3de75bc7f8", + "title": "Middag", + "description": "", + "type": "product", + "parent": "647f6c0e-24dd-43d5-adcd-b1503ac50a14", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "2da680fd-039d-440e-8188-4fa80082b995", + "title": "Møtemat/pausemat", + "description": "", + "type": "product", + "parent": "647f6c0e-24dd-43d5-adcd-b1503ac50a14", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "9c8ba3d1-ce00-42c8-82b6-706859c097cc", + "title": "Parkering", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "ffc1c540-5655-4430-8545-136ecb6aa041", + "title": "Parkering på egen tomt", + "description": "", + "type": "product", + "parent": "9c8ba3d1-ce00-42c8-82b6-706859c097cc", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "eb2a27df-615b-4eae-ab0c-209a95d37a3d", + "title": "Parkeringshus ", + "description": "Parkeringshus i nærheten av kurs- og konferansestedet. ", + "type": "product", + "parent": "9c8ba3d1-ce00-42c8-82b6-706859c097cc", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "683e1061-c8ab-43ee-920a-ad32f6b209f1", + "title": "Parkering utendørs på offentlig sted", + "description": "Tilgjengelig parkering utendørs på offentlig sted.", + "type": "product", + "parent": "9c8ba3d1-ce00-42c8-82b6-706859c097cc", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "0dc9950f-81e5-486d-aec3-caec82a51a14", + "title": "Gateparkering", + "description": "Tilgjengelig gateparkering i nærhet til kurs- og konferansestedet.", + "type": "product", + "parent": "9c8ba3d1-ce00-42c8-82b6-706859c097cc", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "320ffb0e-e707-40ed-8330-cdf97624ec97", + "title": "Parkering med elbil-lader", + "description": "Tilgjengelig parkering i nærheten av kurs- og konferansestedet med elbil-lader.", + "type": "product", + "parent": "9c8ba3d1-ce00-42c8-82b6-706859c097cc", + "sourceOriginal": "f514ba2a-63a7-4b85-ad28-1a0d751c8baa", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [ + { + "id": "eae6dcf4-4333-4873-9fee-2e38dc1e9ee7", + "bankId": "eae6dcf4-4333-4873-9fee-2e38dc1e9ee7", + "comment": "Første utgave", + "date": "2022-08-29T12:11:35.686Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null + } + ], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "title": "Kurs og konferanse [Erlend]", + "description": "", + "needs": [ + { + "id": "e5395f5b-9ac0-43dc-a320-0bb745406480", + "title": "Arrangement", + "description": "", + "requirements": [ + { + "id": "b5707497-e01f-47b3-9360-5e5ccece30e8", + "title": "Type arrangement", + "description": "", + "needId": "e5395f5b-9ac0-43dc-a320-0bb745406480", + "type": "requirement", + "variants": [ + { + "id": "ce0e313b-6a8b-43d3-b600-3950be55f226", + "requirementText": "Arrangementet er av følgende type:", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "618d36f0-6367-4b0d-af12-bcb35a4ab8fa", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "14ad306a-fa4c-4b72-9cce-570f0a313a92", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Kode" + }, + { + "id": "4fff3c1a-83cf-476a-8964-ff316e8f3e50", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "dd197ec5-4e06-43db-923f-f83f9bf956df", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10, + "step": 1, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Fritekst" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "fbad687f-9a30-4619-8fdf-3fb64ea63b26", + "title": "Ankomst", + "description": "", + "needId": "e5395f5b-9ac0-43dc-a320-0bb745406480", + "type": "requirement", + "variants": [ + { + "id": "68dc0156-b90a-4d81-b56f-1edb020d02f3", + "requirementText": "Dato for ankomst:", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "67d46a71-e437-46ce-acec-cef6d52f0a01", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Dato for ankomst" + }, + { + "id": "db6bb874-baff-4707-91d1-c45d1d8cc0fe", + "requirementText": "Dato for innsjekk:", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "27d21926-6fbd-4fa0-81a1-cca0b85906e0", + "89a12bae-4efd-4d63-8104-812c4320a0f0", + "9dc5b01c-fdb5-43c8-8a90-264c3d0212ea", + "9738b9ec-61b9-458f-b3a8-91598bc14d8e" + ], + "questions": [ + { + "id": "497f52ec-84bf-486a-b625-929dca4c8fe4", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Dato for innsjekk" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "73269ed6-335b-4bcf-b23b-bd2b89255a2a", + "title": "Avreise", + "description": "", + "needId": "e5395f5b-9ac0-43dc-a320-0bb745406480", + "type": "requirement", + "variants": [ + { + "id": "8c63d7e7-ed19-4b22-b196-9a63451b69be", + "requirementText": "Dato for avreise:", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "2e3c98b4-c7bc-4ba2-9f07-950b379dfc8a", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Dato for avreise" + }, + { + "id": "cdd13caa-668c-4bc6-a637-ec60cf50eb2f", + "requirementText": "Dato for utsjekk:", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "27d21926-6fbd-4fa0-81a1-cca0b85906e0", + "89a12bae-4efd-4d63-8104-812c4320a0f0", + "9dc5b01c-fdb5-43c8-8a90-264c3d0212ea", + "9738b9ec-61b9-458f-b3a8-91598bc14d8e" + ], + "questions": [ + { + "id": "fa4b8956-8bae-4471-9e93-94a75fe5a9ab", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Dato for utsjekk" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "ee650624-77f6-4deb-8f1a-c767629f4ba8", + "title": "Tidspunkt (dato)", + "description": "", + "needId": "e5395f5b-9ac0-43dc-a320-0bb745406480", + "type": "requirement", + "variants": [ + { + "id": "57ad74c4-73ec-4bec-9ac0-0e839ddb5ab9", + "requirementText": "Produktet er for følgende dato:", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "f9217dbc-16b1-4b29-8453-d3f22f169b2e", + "2148ae47-a626-442c-897f-fe00f2391828", + "aa329b5d-9bbf-4cfd-bd1d-f49bd5d93251", + "4c7fd42b-5b8c-4c01-82d3-c58ca03c9826", + "ee1516e6-a4da-4b0f-b7a8-55e528d2f7f3", + "6563ced7-29a9-4297-a17e-cf30a1f9f184", + "679b16c2-6eae-430c-91fa-e06ca5a4fab4", + "d3e9b0fb-7b15-4227-910f-b8ba89b76793", + "99ae62a9-a814-4013-8e47-2dc05bad21a0", + "7642f782-5dbb-4743-9c2d-3509f46b694f", + "38ac2409-606c-4325-ae11-f65e149c20ee", + "7d534b07-9a2b-44cb-8b20-ee962427580b", + "ffa3b3d7-1c9b-453e-8122-3fd966b4677e" + ], + "questions": [ + { + "id": "705fbd70-554c-4e67-b4c1-a4db13ce5412", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Dato for bestillingen" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "239dbf15-da7c-4f7f-8fa9-9e8e80ee04b3", + "title": "Fasiliteter", + "description": "", + "requirements": [ + { + "id": "8b32029e-8d6d-45fd-94bc-248b4e942f1f", + "title": "Størrelse", + "description": "", + "needId": "239dbf15-da7c-4f7f-8fa9-9e8e80ee04b3", + "type": "requirement", + "variants": [ + { + "id": "81ab7342-fdf1-4a2e-867f-11dd138c3792", + "requirementText": "Antall personer det må være plass til på møterom:", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "f9217dbc-16b1-4b29-8453-d3f22f169b2e", + "2148ae47-a626-442c-897f-fe00f2391828", + "aa329b5d-9bbf-4cfd-bd1d-f49bd5d93251" + ], + "questions": [ + { + "id": "9071ccdf-4010-41e1-bc23-9fb5f315f147", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 30, + "step": 1, + "unit": "personer", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Antall personer på møterom" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "b46be6a6-d2ae-494c-8d80-3a48df4bf427", + "title": "Tilgang til Internett", + "description": "", + "needId": "239dbf15-da7c-4f7f-8fa9-9e8e80ee04b3", + "type": "requirement", + "variants": [ + { + "id": "5bd07d1f-5d49-4da1-84f6-251ffb105331", + "requirementText": "Det gis fri tilgang til Internett uten ekstra kostnader eller tegning av abonnement.", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "b5f86d49-a89f-4be6-a1a1-bb92890404d8", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tilgang til Internett uten ekstra kostnad/abonnement" + }, + { + "id": "3484e292-4d33-407e-a415-1070ec9f15fc", + "requirementText": "Det må være tilkoblingspunkt for arrangørens eget nettverksutstyr.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "f9217dbc-16b1-4b29-8453-d3f22f169b2e", + "2148ae47-a626-442c-897f-fe00f2391828", + "aa329b5d-9bbf-4cfd-bd1d-f49bd5d93251", + "4c7fd42b-5b8c-4c01-82d3-c58ca03c9826", + "ee1516e6-a4da-4b0f-b7a8-55e528d2f7f3", + "6563ced7-29a9-4297-a17e-cf30a1f9f184", + "679b16c2-6eae-430c-91fa-e06ca5a4fab4" + ], + "questions": [ + { + "id": "b31fa533-d093-402c-862f-3477511a09a1", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tilgang til å sette opp eget nettverk" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "a55aaa2f-d14d-43fc-bcd2-f91ccf4891f1", + "title": "Parkering", + "description": "", + "needId": "239dbf15-da7c-4f7f-8fa9-9e8e80ee04b3", + "type": "requirement", + "variants": [ + { + "id": "b2f6b4c0-3eed-4bb4-8d4d-142610d0c1f5", + "requirementText": "Det må være tilgjengelig gratis parkering med lademuligheter på lokasjonen. ", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "b08a6c7f-978b-44c3-83cd-a09ffc41d44a", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Behov for gratis parkering med lading" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "e8c223c3-653c-4f21-9f7b-d5883e833d89", + "title": "Geografisk lokasjon", + "description": "", + "requirements": [ + { + "id": "f98184d7-fd2a-4590-bf15-d776d5472c1a", + "title": "Distanse fra lokasjon", + "description": "", + "needId": "e8c223c3-653c-4f21-9f7b-d5883e833d89", + "type": "requirement", + "variants": [ + { + "id": "10840910-8699-4356-9819-a9e0021f374b", + "requirementText": "Oppgi distanse til nærmeste kollektivknutepunkt (togstasjon, bussterminal). Oppgis i antall meter kalkulert på Google Maps fra leverandørs adresse til knytepunktets adresse.", + "instruction": "Benyttes når distanse til kollektivknutepunkt er relevant for evaluering.", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "bedd9862-53ac-43c2-a545-efa9326fd39f", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10000, + "step": 50, + "unit": "meter", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Distanse fra nærmeste kollektivknutepunkt" + }, + { + "id": "1b1153cb-7671-437b-aa06-5c2a127a64f2", + "requirementText": "Oppgi distanse til adressen oppgitt under. Oppgis i antall kilometer kalkulert på Google Maps fra leverandørs adresse til oppgitt adresse.", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "d3715cf2-38df-4d08-9ac2-b705cf2bbf57", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 100, + "step": 0.1, + "unit": "km", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Distanse fra oppgitt adresse" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "d328160e-d04a-4a36-8031-f39fcb819206", + "title": "Adresse for avstandsberegning", + "description": "", + "needId": "e8c223c3-653c-4f21-9f7b-d5883e833d89", + "type": "requirement", + "variants": [ + { + "id": "08273d97-8798-493f-83eb-beb20d60b2e8", + "requirementText": "Følgende adresse brukes til avstandsberegning i kravet over:", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "41c160c8-1d9b-4679-9389-b74a1fef0abe", + "type": "Q_TEXT", + "config": { + "max": 200, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Oppgitt adresse" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + } + ], + "type": "need", + "parent": "239dbf15-da7c-4f7f-8fa9-9e8e80ee04b3", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "d5b2380c-9e20-4657-8ae6-ef5308206bb6", + "title": "Universell utforming", + "description": "", + "requirements": [ + { + "id": "76c6113a-3904-4fd5-95fc-639c29ea2740", + "title": "Tilgjengelighet", + "description": "", + "needId": "d5b2380c-9e20-4657-8ae6-ef5308206bb6", + "type": "requirement", + "variants": [ + { + "id": "7aef945e-5541-476a-ba71-4ab2eb51970c", + "requirementText": "Følgende tilrettelegging må være på plass på lokasjonen:", + "instruction": "Brukes i tilfeller hvor man er avhengig av tilrettelegging eller at det er politisk bestemt at det skal stilles krav om tilrettelegging.", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "c53732e5-8d57-462f-be05-c0ca8d4576e6", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "94ae8e4d-080a-4447-b98e-ab4de03b5e32", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Påkrevd tilrettelegging" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "b64c0e32-3a65-4aff-968d-060b6e2336f8", + "title": "Handikap-rom", + "description": "", + "needId": "d5b2380c-9e20-4657-8ae6-ef5308206bb6", + "type": "requirement", + "variants": [ + { + "id": "45d8a855-13b1-4f0f-bf74-b8851b1fa719", + "requirementText": "Rommet må være tilpasset person med handikap eller rullestol.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "27d21926-6fbd-4fa0-81a1-cca0b85906e0", + "89a12bae-4efd-4d63-8104-812c4320a0f0", + "9dc5b01c-fdb5-43c8-8a90-264c3d0212ea", + "9738b9ec-61b9-458f-b3a8-91598bc14d8e" + ], + "questions": [ + { + "id": "dfb67b99-cc3d-4876-a4e7-d5d2774d44d1", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Rom tilpasset for person med handikap eller rullestol" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "41a7f4cd-e7a5-4cfe-a78a-2035bf8dd332", + "title": "Handikap-parkering", + "description": "", + "needId": "d5b2380c-9e20-4657-8ae6-ef5308206bb6", + "type": "requirement", + "variants": [ + { + "id": "7ead3a51-fc99-42c4-b9b2-52d6faa27a32", + "requirementText": "Det må være tilgjengelig handikap-parkering på lokasjonen.", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "86c66da1-8394-4114-99af-a5554f4a1f76", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Handikap-parkering på lokasjonen" + }, + { + "id": "3776ff93-9df2-4a57-9c89-5076da428727", + "requirementText": "Antall parkeringsplasser som må være tilgjengelig for arrangementet på lokasjonen:", + "instruction": "Brukes når man på forhånd vet at man har et gitt behov så leverandør kan tilrettelegge dersom det er et større antall enn \"vanlig\".", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "4ed501f2-7b17-4c93-83a4-9a845abbd1f4", + "type": "Q_SLIDER", + "config": { + "min": 1, + "max": 20, + "step": 1, + "unit": "parkeringsplasser", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Antall parkeringsplasser for handikap på lokasjonen" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + } + ], + "type": "need", + "parent": "239dbf15-da7c-4f7f-8fa9-9e8e80ee04b3", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "787ec415-f367-41d2-8870-2116728c60b5", + "title": "Oppsett", + "description": "", + "requirements": [ + { + "id": "094d5911-3c21-432e-aa5a-2c4645ba348a", + "title": "Møteromsoppsett", + "description": "", + "needId": "787ec415-f367-41d2-8870-2116728c60b5", + "type": "requirement", + "variants": [ + { + "id": "667aff0b-df93-4bf3-aa16-e9dac51ca117", + "requirementText": "Beskrivelse av oppsett på møterom:", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "f9217dbc-16b1-4b29-8453-d3f22f169b2e", + "2148ae47-a626-442c-897f-fe00f2391828", + "aa329b5d-9bbf-4cfd-bd1d-f49bd5d93251" + ], + "questions": [ + { + "id": "7a092004-7f20-4d1f-9466-3fddcf5d1c27", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Fritekst" + }, + { + "id": "27266ffd-2fdc-44ab-b9b9-fb938d0dff71", + "requirementText": "Følgende oppsett på møterommet er ønsket:", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "f9217dbc-16b1-4b29-8453-d3f22f169b2e", + "2148ae47-a626-442c-897f-fe00f2391828", + "aa329b5d-9bbf-4cfd-bd1d-f49bd5d93251" + ], + "questions": [ + { + "id": "1afd939f-a66b-4146-b663-87229f7c1517", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "9b63a659-ae0f-4008-8e53-d96e60f869fe", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Predefinert" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "527b6568-5d7f-475c-a93c-0d46512022e3", + "title": "Teknisk utstyr", + "description": "", + "needId": "787ec415-f367-41d2-8870-2116728c60b5", + "type": "requirement", + "variants": [ + { + "id": "79ce2146-acb2-4ce5-a43f-3c0f32850365", + "requirementText": "Følgende utstyr må være tilgjengelig på møterommet:", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "f9217dbc-16b1-4b29-8453-d3f22f169b2e", + "2148ae47-a626-442c-897f-fe00f2391828", + "aa329b5d-9bbf-4cfd-bd1d-f49bd5d93251" + ], + "questions": [ + { + "id": "dab691a8-c6e8-4e30-9835-9a322dd6837d", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "8b03cd70-5f2c-4399-a134-736b5bcfb591", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Utstyr på møterommet" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + } + ], + "type": "need", + "parent": "239dbf15-da7c-4f7f-8fa9-9e8e80ee04b3", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "9bd9b6ea-6b25-4a43-a23b-e19bb0d2de71", + "title": "Overnatting", + "description": "", + "requirements": [ + { + "id": "3ff3c708-9055-4b16-ac93-e20d330c4b69", + "title": "Inventar", + "description": "", + "needId": "9bd9b6ea-6b25-4a43-a23b-e19bb0d2de71", + "type": "requirement", + "variants": [ + { + "id": "9267b007-a8de-4119-bc44-4086d018a12d", + "requirementText": "Følgende inventar er ønskelig/nødvendig på rommet:", + "instruction": "Benyttes i tilfeller hvor spesifikt inventar er ønskelig eller nødvendig.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "27d21926-6fbd-4fa0-81a1-cca0b85906e0", + "89a12bae-4efd-4d63-8104-812c4320a0f0", + "9dc5b01c-fdb5-43c8-8a90-264c3d0212ea", + "9738b9ec-61b9-458f-b3a8-91598bc14d8e" + ], + "questions": [ + { + "id": "bdb829d7-5db6-4375-87bd-6bc09bdbe254", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "fd5fc764-aef6-4e36-8d2b-942670fae95c", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Inventar på rom" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "4c700f6a-5330-455b-bfa3-f9c3c995e1c0", + "title": "To enkeltsenger", + "description": "", + "needId": "9bd9b6ea-6b25-4a43-a23b-e19bb0d2de71", + "type": "requirement", + "variants": [ + { + "id": "c7ca5c98-9d6c-4d84-853d-c955ba2ca852", + "requirementText": "Ønsker at det benyttes to enkeltsenger i stedet for dobbeltseng.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "9dc5b01c-fdb5-43c8-8a90-264c3d0212ea", + "9738b9ec-61b9-458f-b3a8-91598bc14d8e" + ], + "questions": [ + { + "id": "57e69a50-d0f4-45d0-a3f2-ef51e9627c35", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Enkeltsenger" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "5639d0ca-bbbe-441f-965b-688ee957b2ab", + "title": "Bespisning", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "dc1081a9-0cad-48ac-bb6e-4a797866d381", + "title": "Inkludert bespisning", + "description": "Måltider inkludert i ikke-dedikerte produkter", + "requirements": [ + { + "id": "cbd51b69-dca8-4296-98c4-a8089ca11e6f", + "title": "Frokost", + "description": "", + "needId": "dc1081a9-0cad-48ac-bb6e-4a797866d381", + "type": "requirement", + "variants": [ + { + "id": "6bd8971b-2844-418e-9fc3-2be0abc3f6f3", + "requirementText": "Angi om frokost inngår i prisen for overnatting.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "27d21926-6fbd-4fa0-81a1-cca0b85906e0", + "89a12bae-4efd-4d63-8104-812c4320a0f0", + "9dc5b01c-fdb5-43c8-8a90-264c3d0212ea", + "9738b9ec-61b9-458f-b3a8-91598bc14d8e" + ], + "questions": [ + { + "id": "dee9bafd-1243-4aff-8787-477423c94a8b", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Inkludert frokost" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "d6781a8a-c8ac-4636-80dd-493ad3d62717", + "title": "Kvelds", + "description": "", + "needId": "dc1081a9-0cad-48ac-bb6e-4a797866d381", + "type": "requirement", + "variants": [ + { + "id": "3dffff0d-a23c-4abd-8e33-9efec0dbe173", + "requirementText": "Angi om kvelds inngår i prisen for overnatting.", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "27d21926-6fbd-4fa0-81a1-cca0b85906e0", + "89a12bae-4efd-4d63-8104-812c4320a0f0", + "9dc5b01c-fdb5-43c8-8a90-264c3d0212ea", + "9738b9ec-61b9-458f-b3a8-91598bc14d8e" + ], + "questions": [ + { + "id": "5c92ac6e-8a1a-4bd7-9319-4fd7f436afbc", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Inkludert kvelds" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "9ad25c53-faab-4581-a486-63bb33461e0f", + "title": "Møteromsbespisning", + "description": "", + "needId": "dc1081a9-0cad-48ac-bb6e-4a797866d381", + "type": "requirement", + "variants": [ + { + "id": "38216a20-2d97-4b57-88cd-8c3f3dc17348", + "requirementText": "Oppgi tilgjengelig mat/drikke på møtetrommet", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "f9217dbc-16b1-4b29-8453-d3f22f169b2e", + "2148ae47-a626-442c-897f-fe00f2391828", + "aa329b5d-9bbf-4cfd-bd1d-f49bd5d93251" + ], + "questions": [ + { + "id": "cfdca67d-9994-4034-bf5a-5127786ff2e0", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "b6f7cc03-08d6-4bcc-9d69-9074bd729741", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Tilgjengelig mat/drikke på møterom" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + } + ], + "type": "need", + "parent": "5639d0ca-bbbe-441f-965b-688ee957b2ab", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "999804a6-d3a5-4fc2-a845-b61bbbc15878", + "title": "Tilpasninger", + "description": "", + "requirements": [ + { + "id": "30bb95d6-c16c-4f13-a9a0-828d34d7afa8", + "title": "Allergener (høy sensitivitet)", + "description": "", + "needId": "999804a6-d3a5-4fc2-a845-b61bbbc15878", + "type": "requirement", + "variants": [ + { + "id": "4028127d-4247-4876-a44c-6b464ed1684d", + "requirementText": "Følgende matvarer kan ikke være i området for arrangementet.", + "instruction": "Brukes når personer på arrangementet ikke kan være i nærheten av spesifikk mat uten å få allergisk reaksjon.", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "f9217dbc-16b1-4b29-8453-d3f22f169b2e", + "2148ae47-a626-442c-897f-fe00f2391828", + "aa329b5d-9bbf-4cfd-bd1d-f49bd5d93251", + "4c7fd42b-5b8c-4c01-82d3-c58ca03c9826", + "ee1516e6-a4da-4b0f-b7a8-55e528d2f7f3", + "6563ced7-29a9-4297-a17e-cf30a1f9f184", + "679b16c2-6eae-430c-91fa-e06ca5a4fab4", + "d3e9b0fb-7b15-4227-910f-b8ba89b76793", + "99ae62a9-a814-4013-8e47-2dc05bad21a0", + "7642f782-5dbb-4743-9c2d-3509f46b694f", + "38ac2409-606c-4325-ae11-f65e149c20ee", + "7d534b07-9a2b-44cb-8b20-ee962427580b", + "ffa3b3d7-1c9b-453e-8122-3fd966b4677e" + ], + "questions": [ + { + "id": "6732ac73-d429-4161-8b76-d94e0e35095e", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "7d36781c-fbd1-4f6a-9f9b-2ba1f005b4a2", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Allergener i området for arrangementet" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "f52a1ce1-391f-49a4-b42f-bd568e0b877e", + "title": "Allergener", + "description": "", + "needId": "999804a6-d3a5-4fc2-a845-b61bbbc15878", + "type": "requirement", + "variants": [ + { + "id": "e5600806-b7df-43e8-8744-4010aea724a4", + "requirementText": "Følgende allergener må man ta høyde for:", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "d3e9b0fb-7b15-4227-910f-b8ba89b76793", + "99ae62a9-a814-4013-8e47-2dc05bad21a0", + "7642f782-5dbb-4743-9c2d-3509f46b694f", + "38ac2409-606c-4325-ae11-f65e149c20ee", + "7d534b07-9a2b-44cb-8b20-ee962427580b", + "ffa3b3d7-1c9b-453e-8122-3fd966b4677e" + ], + "questions": [ + { + "id": "e190c6d7-7ad2-429e-9b0c-f5370d5d31d8", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "7d36781c-fbd1-4f6a-9f9b-2ba1f005b4a2", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "Allergener" + } + ], + "tags": [], + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + } + ], + "type": "need", + "parent": "5639d0ca-bbbe-441f-965b-688ee957b2ab", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "14ad306a-fa4c-4b72-9cce-570f0a313a92", + "title": "Arrangementstype", + "description": "", + "codes": [ + { + "id": "369458cb-0873-4d3e-9f56-afc93c9c0147", + "title": "Internt møte", + "description": "Mindre møte med i hovedsak interne deltakere", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "b07db7f4-26c9-4de3-8da9-03d72a594b48", + "title": "Intern samling", + "description": "Samling med i hovedsak interne deltakere", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "d186d9ec-34c0-4f3d-8266-1dc5f3062081", + "title": "Møte med eksterne", + "description": "Mindre møte med i hovedsak eksterne deltakere", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "3c251c5a-7f3a-4f4c-af46-24ec90df1dcb", + "title": "Samling med eksterne", + "description": "Samling med i hovedsak eksterne deltakere", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "f3b0450f-577b-448d-914e-7a6f3f82c577", + "title": "Konferanse", + "description": "Arrangement som skal behandles som en konferanse", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "94ae8e4d-080a-4447-b98e-ab4de03b5e32", + "title": "Tilgjengelighet", + "description": "Universell utforming", + "codes": [ + { + "id": "2f897c9f-5f9c-4127-8a48-cfaad4499503", + "title": "Syn", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "69b5cf55-3ff0-4ae7-b5eb-eb6e3a630873", + "title": "Hørsel", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "cde3f5b8-d252-4a26-b650-3d2dc0a3b9a2", + "title": "Bevegelse", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "fc4ea4d1-beca-404d-abd2-93ffc52dea49", + "title": "Rullestol", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "fd5fc764-aef6-4e36-8d2b-942670fae95c", + "title": "Inventar, hotellrom", + "description": "", + "codes": [ + { + "id": "3e438b0e-1e59-488c-88e3-c341cf6e8ebc", + "title": "Skrivebord", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "f33d1a87-de81-4a1c-96f4-11c7a6be000d", + "title": "Sofagruppe", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "532037bc-a78b-4111-a504-edb7a2f07fa8", + "title": "Lenestol", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "9e43d7f0-b65f-46e8-b18e-2a31d101395f", + "title": "Safe", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "94af1e45-d31f-4723-a182-af449218dfd1", + "title": "Badekar", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "8b03cd70-5f2c-4399-a134-736b5bcfb591", + "title": "Teknisk utstyr, møterom", + "description": "", + "codes": [ + { + "id": "01f625da-c93e-428d-b661-ce993ce5b552", + "title": "Videokanon", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "0ec827a4-0a87-4ce1-80f1-f93c67d6ca5c", + "title": "Overhead", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "b6f7cc03-08d6-4bcc-9d69-9074bd729741", + "title": "Bespisning på møterom", + "description": "", + "codes": [ + { + "id": "9e8c31f4-74f9-4bc6-834b-3034554881cf", + "title": "Kaffe/te og vann", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "d6162dc4-bd2b-4f5d-a21e-0cf68424db31", + "title": "Mineralvann", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "67250e53-3f0c-473a-9d9b-65beb82b9fdd", + "title": "Fersk frukt", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "9a02b5cb-0649-42d5-81c8-c293abd92820", + "title": "Kake eller fingermat", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "9b63a659-ae0f-4008-8e53-d96e60f869fe", + "title": "Møteromsoppsett", + "description": "", + "codes": [ + { + "id": "d3c254ac-e65d-46a3-97cb-44d278a6c3b3", + "title": "Langbord", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "435eedfa-05f3-441c-bfa9-73e7940587ba", + "title": "Klasserom", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "9dd2094c-5309-40db-9f15-8dc7f15743a9", + "title": "Hestesko", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "b0c773fb-5e1f-4ab0-8185-dde9ffa78e1d", + "title": "Grupper", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + }, + { + "id": "7d36781c-fbd1-4f6a-9f9b-2ba1f005b4a2", + "title": "Allergener", + "description": "", + "codes": [ + { + "id": "a56a6a3d-f31f-4439-b582-a1759e69b913", + "title": "Hasselnøtt", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "3a20f29e-3000-467f-a8ae-886b35233b32", + "title": "Peanøtter", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "bce74154-b37d-49f4-9047-155394d1d1a9", + "title": "Fisk", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + }, + { + "id": "ec45d176-c792-4419-a003-31f86f27e9d8", + "title": "Skalldyr", + "description": "", + "type": "code", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null + } + ], + "products": [ + { + "id": "f9217dbc-16b1-4b29-8453-d3f22f169b2e", + "title": "Møtefasiliteter", + "description": "Fasiliteter for møter", + "type": "product", + "parent": "", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "2148ae47-a626-442c-897f-fe00f2391828", + "title": "Grupperom", + "description": "Rom for inntil 10 personer", + "type": "product", + "parent": "f9217dbc-16b1-4b29-8453-d3f22f169b2e", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "aa329b5d-9bbf-4cfd-bd1d-f49bd5d93251", + "title": "Møterom", + "description": "Rom for inntil 30 personer", + "type": "product", + "parent": "f9217dbc-16b1-4b29-8453-d3f22f169b2e", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "4c7fd42b-5b8c-4c01-82d3-c58ca03c9826", + "title": "Konferansefasiliteter", + "description": "Fasiliteter for konferanser", + "type": "product", + "parent": "", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "ee1516e6-a4da-4b0f-b7a8-55e528d2f7f3", + "title": "Plenumssal", + "description": "Større sal som kan samle alle deltakerne", + "type": "product", + "parent": "4c7fd42b-5b8c-4c01-82d3-c58ca03c9826", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "6563ced7-29a9-4297-a17e-cf30a1f9f184", + "title": "Resepsjon", + "description": "Dedikert resepsjon for deltakere", + "type": "product", + "parent": "4c7fd42b-5b8c-4c01-82d3-c58ca03c9826", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "679b16c2-6eae-430c-91fa-e06ca5a4fab4", + "title": "Utstillerområde", + "description": "Område for utstillere", + "type": "product", + "parent": "4c7fd42b-5b8c-4c01-82d3-c58ca03c9826", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "27d21926-6fbd-4fa0-81a1-cca0b85906e0", + "title": "Rom", + "description": "Rom for overnatting", + "type": "product", + "parent": "", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "89a12bae-4efd-4d63-8104-812c4320a0f0", + "title": "Enkeltrom", + "description": "Rom for overnatting for en person", + "type": "product", + "parent": "27d21926-6fbd-4fa0-81a1-cca0b85906e0", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "9dc5b01c-fdb5-43c8-8a90-264c3d0212ea", + "title": "Dobbeltrom", + "description": "Rom for overnatting for inntil to personer", + "type": "product", + "parent": "27d21926-6fbd-4fa0-81a1-cca0b85906e0", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "9738b9ec-61b9-458f-b3a8-91598bc14d8e", + "title": "Familierom", + "description": "Rom for overnatting med dobbeltseng og to enkeltsenger", + "type": "product", + "parent": "27d21926-6fbd-4fa0-81a1-cca0b85906e0", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "d3e9b0fb-7b15-4227-910f-b8ba89b76793", + "title": "Bespisning", + "description": "Måltid som ikke inngår i andre produkter", + "type": "product", + "parent": "", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "99ae62a9-a814-4013-8e47-2dc05bad21a0", + "title": "Frokost", + "description": "Måltid servert før klokka 10", + "type": "product", + "parent": "d3e9b0fb-7b15-4227-910f-b8ba89b76793", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "7642f782-5dbb-4743-9c2d-3509f46b694f", + "title": "Lunsj", + "description": "Måltid servert mellom klokka 11 og 13", + "type": "product", + "parent": "d3e9b0fb-7b15-4227-910f-b8ba89b76793", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "38ac2409-606c-4325-ae11-f65e149c20ee", + "title": "Middag", + "description": "Større måltid servert etter klokka 15", + "type": "product", + "parent": "d3e9b0fb-7b15-4227-910f-b8ba89b76793", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "7d534b07-9a2b-44cb-8b20-ee962427580b", + "title": "Kvelds", + "description": "Mindre måltid servert etter klokka 19", + "type": "product", + "parent": "d3e9b0fb-7b15-4227-910f-b8ba89b76793", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "ffa3b3d7-1c9b-453e-8122-3fd966b4677e", + "title": "Matpakke", + "description": "Ferdig smurt matpakke", + "type": "product", + "parent": "d3e9b0fb-7b15-4227-910f-b8ba89b76793", + "sourceOriginal": "1b677d8c-8a45-4951-954b-b8fd1f8b8446", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [ + { + "id": "d593ed53-a9b6-41d9-8bef-8893a7fdec39", + "bankId": "d593ed53-a9b6-41d9-8bef-8893a7fdec39", + "comment": "Første utgave", + "date": "2022-06-14T07:08:25.250Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "be17e2fb-cd0e-478e-869a-9452a851846c", + "bankId": "be17e2fb-cd0e-478e-869a-9452a851846c", + "comment": "Neste publisering", + "date": "2022-06-14T13:47:11.778Z", + "type": "publication", + "version": 2, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "e2b66af3-ad59-48b1-b07d-32e1de6d6e97", + "bankId": "e2b66af3-ad59-48b1-b07d-32e1de6d6e97", + "comment": "Neste utgave", + "date": "2022-06-22T12:11:47.075Z", + "type": "publication", + "version": 3, + "sourceOriginal": null, + "sourceRel": null + } + ], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "bb0636be-4188-4132-83c2-90b866679859", + "title": "Kurs og konferanser", + "description": "Geirs test", + "needs": [ + { + "id": "4a1c509c-02f2-4dea-a9f3-2eeeef5cdb37", + "title": "Servering", + "description": "", + "requirements": [ + { + "id": "d0a70716-59e6-4dea-a2f5-752ff1960023", + "title": "Inkludert frokost", + "description": "", + "needId": "4a1c509c-02f2-4dea-a9f3-2eeeef5cdb37", + "type": "requirement", + "variants": [ + { + "id": "df95d65d-4c24-4150-ba7d-de048f207f68", + "requirementText": "Geir tester et krav", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c4fabb8d-77b9-4e51-bc27-c8968ed2b37d" + ], + "questions": [ + { + "id": "a0a2bae5-4e67-4f09-9e0c-22930a224e78", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Frokost inkludert ved bestilling av overnatting" + }, + { + "id": "b18761f5-6dbe-47de-a0c4-b4edb50e9994", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "Frokost inkludert ved bestilling av overnatting (tilpasset matallergi)" + } + ], + "tags": [], + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null + }, + { + "id": "2e15ec35-d6f0-4955-9845-23f74e0ec348", + "title": "Møtemat/pausemat", + "description": "", + "needId": "4a1c509c-02f2-4dea-a9f3-2eeeef5cdb37", + "type": "requirement", + "variants": [ + { + "id": "77ce911b-0ac0-4cfd-b9c6-15aabad0f4cd", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "Møtemat/pausemat inkludert" + } + ], + "tags": [], + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null + }, + { + "id": "90617079-3fd8-4cbc-bdd3-e2b69990a4ea", + "title": "Inkludert middag", + "description": "", + "needId": "4a1c509c-02f2-4dea-a9f3-2eeeef5cdb37", + "type": "requirement", + "variants": [ + { + "id": "285b3a84-3dd8-4dd2-a9ff-0e562cacd89e", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "Middag inkludert ved bestilling av overnatting" + } + ], + "tags": [], + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null + }, + { + "id": "1f92f5d3-5e88-42cf-8a84-ee28240957aa", + "title": "Aktiviteter", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null + }, + { + "id": "8e9e85c7-63df-4dfa-b2ae-8d69458a9b5c", + "title": "Overnatting", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null + }, + { + "id": "a069c3bb-08cc-418f-b6e1-d1db8830ea79", + "title": "Enkeltrom", + "description": "", + "requirements": [], + "type": "need", + "parent": "8e9e85c7-63df-4dfa-b2ae-8d69458a9b5c", + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null + }, + { + "id": "f731cd0e-e049-499c-a08a-4502187ec649", + "title": "Parkering", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null + }, + { + "id": "c622d421-2d05-4e8b-b117-c7d1b4b52327", + "title": "Universell utforming", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "8e467ad8-7e61-4b2a-94cd-6eef926f244d", + "title": "Allergener", + "description": "Liste over alle allergener", + "codes": [ + { + "id": "a7d49048-fbec-402d-b9e5-46748f06034a", + "title": "Cøliaki", + "description": "", + "type": "code", + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null, + "parent": "" + }, + { + "id": "9237d9e0-c904-46e2-b1c1-d32e0389c071", + "title": "Laktoseintoleranse", + "description": "", + "type": "code", + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null, + "parent": "" + }, + { + "id": "b5f74f8a-c0ef-4e80-a917-66882f26418a", + "title": "Peanøtter", + "description": "", + "type": "code", + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null + } + ], + "products": [ + { + "id": "c4fabb8d-77b9-4e51-bc27-c8968ed2b37d", + "title": "Møtefasiliteter", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "0adfb0a3-65d0-4bcd-a0ed-c2391af65684", + "title": "Grupperom", + "description": "", + "type": "product", + "parent": "c4fabb8d-77b9-4e51-bc27-c8968ed2b37d", + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "51612de3-4c5a-4966-bea5-0b70c6ceb4a6", + "title": "Møterom", + "description": "", + "type": "product", + "parent": "c4fabb8d-77b9-4e51-bc27-c8968ed2b37d", + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "6f984817-ab82-4818-b6ed-d44f9f940d45", + "title": "Konferansefasiliteter", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "6ddf8832-11ce-42fa-98e3-9025a6d67195", + "title": "Plensumsal", + "description": "", + "type": "product", + "parent": "6f984817-ab82-4818-b6ed-d44f9f940d45", + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "88da99da-ecfd-4899-b6df-725ca4566ea1", + "title": "Resepsjon", + "description": "", + "type": "product", + "parent": "6f984817-ab82-4818-b6ed-d44f9f940d45", + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "5d4119a3-60ea-4313-a4be-2c318d7409c1", + "title": "Utstillerområde", + "description": "", + "type": "product", + "parent": "6f984817-ab82-4818-b6ed-d44f9f940d45", + "sourceOriginal": "bb0636be-4188-4132-83c2-90b866679859", + "sourceRel": null, + "deletedDate": null + } + ], + "publications": [ + { + "id": "f4939d28-b0dc-4af8-a268-5aa6c3a4c6bb", + "bankId": "f4939d28-b0dc-4af8-a268-5aa6c3a4c6bb", + "comment": "Geir første versjon", + "date": "2022-08-09T10:25:42.015Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null + } + ], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "title": "Kurs og konferanser2", + "description": "Krav for kurs og konferanser, laget for Covid-192", + "needs": [ + { + "id": "a411d37f-17db-4ddd-83df-68105d6d8822", + "title": "Overnatting", + "description": "", + "requirements": [ + { + "id": "0166f8fc-70af-47dc-afd4-3836734ea048", + "title": "Krav 1", + "description": "", + "needId": "a411d37f-17db-4ddd-83df-68105d6d8822", + "tags": [], + "variants": [ + { + "id": "ffff0a9d-45bf-4d26-b04a-c6fdef4e3b8d", + "requirementText": "Varianttekst", + "instruction": "Hola Hoi", + "useProduct": false, + "useSpesification": true, + "useQualification": true, + "products": [], + "questions": [ + { + "id": "f652893b-454e-40e0-80e9-eb0a18e9c4ff", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Supervariant" + }, + { + "id": "fc66ba78-00fe-4d6e-85bf-b1e983d3d91d", + "requirementText": "Variant 2", + "instruction": "He", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6f5b40b2-7628-49cc-843b-7519cff7fe95" + ], + "questions": [ + { + "id": "566b6999-a170-48b3-9594-9ba3fbc1c7a0", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "540371a0-9ea1-45ac-9ad0-80157fe93f68", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Det går fort å lage varianter" + } + ], + "type": "requirement", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "822152ae-ba64-43a9-a6ba-377f0b6e1c4d", + "title": "Balders behov", + "description": "Test e", + "requirements": [ + { + "id": "4f207a47-b7ab-4d56-8243-14b7cab1c9d9", + "title": "Balders krav 100", + "description": "Gi meg det jeg vil ha", + "needId": "822152ae-ba64-43a9-a6ba-377f0b6e1c4d", + "type": "requirement", + "variants": [ + { + "id": "40c0d410-b0bf-4535-a81e-d8bd6aaee6d9", + "requirementText": "Test", + "instruction": "test", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "se" + } + ], + "tags": [], + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "847fb2b4-ffd3-47fa-912d-cc30e4d71209", + "title": "TEST", + "description": "Savner han", + "requirements": [ + { + "id": "c7a5a0c5-52a6-4b95-b122-774c3bcb8dcf", + "title": "Dette skal være balder sitt krav 2", + "description": "", + "needId": "847fb2b4-ffd3-47fa-912d-cc30e4d71209", + "type": "requirement", + "variants": [ + { + "id": "50c3dc0f-123f-460e-99bc-a10b242ad35c", + "requirementText": "Test", + "instruction": "Hei", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + }, + { + "id": "98183937-6d48-4ec0-b495-69106bd40278", + "requirementText": "Et til", + "instruction": "Kjør", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + } + ], + "tags": [], + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "254ff617-8980-4855-8b30-696eeca2c836", + "title": "Nytt krav", + "description": "", + "needId": "847fb2b4-ffd3-47fa-912d-cc30e4d71209", + "type": "requirement", + "variants": [ + { + "id": "d168045f-270a-462c-99ad-d466cc37b390", + "requirementText": "Ja", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + } + ], + "tags": [], + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "5277719a-f86f-4392-a325-748cec69b7b8", + "title": "ok.", + "description": "", + "needId": "847fb2b4-ffd3-47fa-912d-cc30e4d71209", + "type": "requirement", + "variants": [ + { + "id": "082201b6-dedb-4ea8-9b60-128a3790514b", + "requirementText": "Okokokok", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + } + ], + "tags": [], + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "5e554f3b-f96f-4251-bd24-d7f38a68ef3a", + "title": "Yeay", + "description": "Test", + "requirements": [ + { + "id": "8af094ea-12bc-489b-8bdc-aa9537081c82", + "title": "Test", + "description": "", + "needId": "5e554f3b-f96f-4251-bd24-d7f38a68ef3a", + "type": "requirement", + "variants": [ + { + "id": "4f3be934-e8d6-4772-8fef-173a9c3009ff", + "requirementText": "test", + "instruction": "test", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + }, + { + "id": "01564178-ea79-43ee-a370-17e653dc384f", + "requirementText": "han trenger et navn", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + } + ], + "tags": [], + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "3be2d08e-c07a-48e4-b73e-4bd25d53e992", + "title": "Nytt behov", + "description": "Behovet", + "requirements": [ + { + "id": "bd281f6d-de77-4629-823c-8cc8bad61dd2", + "title": "Test", + "description": "", + "needId": "3be2d08e-c07a-48e4-b73e-4bd25d53e992", + "type": "requirement", + "variants": [ + { + "id": "fe755bd2-b2fd-42ea-bbbc-ec54bf53ffc5", + "requirementText": "Hei", + "instruction": "ok.", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + } + ], + "tags": [], + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "a673423a-481b-4b49-b8ba-044d565c3ee4", + "title": "Kjør krav", + "description": "", + "needId": "3be2d08e-c07a-48e4-b73e-4bd25d53e992", + "type": "requirement", + "variants": [], + "tags": [], + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "6c930c07-cc55-4801-9be3-1c762cf4cfe2", + "title": "4", + "description": "", + "codes": [ + { + "id": "81614582-d907-42d0-b675-e49b5f40e2e7", + "title": "1", + "description": "", + "type": "code", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null, + "parent": "" + }, + { + "id": "245155d9-ebe3-41ba-b175-635325bbded9", + "title": "2", + "description": "", + "type": "code", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "82f0f05f-1ed9-4fe5-8559-a47e7734fb06", + "title": "1", + "description": "", + "codes": [ + { + "id": "95e43e1e-69de-4ed5-b39a-55cc9c548436", + "title": "1", + "description": "", + "type": "code", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null, + "parent": "" + }, + { + "id": "322b6b3c-219a-4087-8f4a-f2c06a24a1d0", + "title": "2", + "description": "", + "type": "code", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null, + "parent": "" + }, + { + "id": "78d04e07-01d8-40ac-8d0f-3cd71f57d489", + "title": "3", + "description": "", + "type": "code", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null, + "parent": "" + }, + { + "id": "4ab55a80-a042-4d1e-aadd-99c8b876fc4a", + "title": "4", + "description": "", + "type": "code", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "products": [ + { + "id": "a411d37f-17db-4ddd-83df-68105d6d8822", + "title": "Overnatting", + "description": "", + "requirements": [ + { + "id": "0166f8fc-70af-47dc-afd4-3836734ea048", + "title": "Krav 1", + "description": "", + "needId": "a411d37f-17db-4ddd-83df-68105d6d8822", + "tags": [], + "variants": [ + { + "id": "ffff0a9d-45bf-4d26-b04a-c6fdef4e3b8d", + "requirementText": "Varianttekst", + "instruction": "Hola Hoi", + "useProduct": false, + "useSpesification": true, + "useQualification": true, + "products": [], + "questions": [ + { + "id": "f652893b-454e-40e0-80e9-eb0a18e9c4ff", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Supervariant" + }, + { + "id": "fc66ba78-00fe-4d6e-85bf-b1e983d3d91d", + "requirementText": "Variant 2", + "instruction": "He", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "6f5b40b2-7628-49cc-843b-7519cff7fe95" + ], + "questions": [ + { + "id": "566b6999-a170-48b3-9594-9ba3fbc1c7a0", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "540371a0-9ea1-45ac-9ad0-80157fe93f68", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Det går fort å lage varianter" + } + ], + "type": "requirement", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "822152ae-ba64-43a9-a6ba-377f0b6e1c4d", + "title": "Balders behov", + "description": "Test e", + "requirements": [ + { + "id": "4f207a47-b7ab-4d56-8243-14b7cab1c9d9", + "title": "Balders krav 100", + "description": "Gi meg det jeg vil ha", + "needId": "822152ae-ba64-43a9-a6ba-377f0b6e1c4d", + "type": "requirement", + "variants": [ + { + "id": "40c0d410-b0bf-4535-a81e-d8bd6aaee6d9", + "requirementText": "Test", + "instruction": "test", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "se" + } + ], + "tags": [], + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "847fb2b4-ffd3-47fa-912d-cc30e4d71209", + "title": "TEST", + "description": "Savner han", + "requirements": [ + { + "id": "c7a5a0c5-52a6-4b95-b122-774c3bcb8dcf", + "title": "Dette skal være balder sitt krav", + "description": "", + "needId": "847fb2b4-ffd3-47fa-912d-cc30e4d71209", + "type": "requirement", + "variants": [ + { + "id": "50c3dc0f-123f-460e-99bc-a10b242ad35c", + "requirementText": "Test", + "instruction": "Hei", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + }, + { + "id": "98183937-6d48-4ec0-b495-69106bd40278", + "requirementText": "Et til", + "instruction": "Kjør", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + } + ], + "tags": [], + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "254ff617-8980-4855-8b30-696eeca2c836", + "title": "Nytt krav", + "description": "", + "needId": "847fb2b4-ffd3-47fa-912d-cc30e4d71209", + "type": "requirement", + "variants": [ + { + "id": "d168045f-270a-462c-99ad-d466cc37b390", + "requirementText": "Ja", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + } + ], + "tags": [], + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "5277719a-f86f-4392-a325-748cec69b7b8", + "title": "ok.", + "description": "", + "needId": "847fb2b4-ffd3-47fa-912d-cc30e4d71209", + "type": "requirement", + "variants": [ + { + "id": "082201b6-dedb-4ea8-9b60-128a3790514b", + "requirementText": "Okokokok", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + } + ], + "tags": [], + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "type": "need", + "parent": "822152ae-ba64-43a9-a6ba-377f0b6e1c4d", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "5e554f3b-f96f-4251-bd24-d7f38a68ef3a", + "title": "Yeay", + "description": "Test", + "requirements": [ + { + "id": "8af094ea-12bc-489b-8bdc-aa9537081c82", + "title": "Test", + "description": "", + "needId": "5e554f3b-f96f-4251-bd24-d7f38a68ef3a", + "type": "requirement", + "variants": [ + { + "id": "4f3be934-e8d6-4772-8fef-173a9c3009ff", + "requirementText": "test", + "instruction": "test", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + }, + { + "id": "01564178-ea79-43ee-a370-17e653dc384f", + "requirementText": "han trenger et navn", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "" + } + ], + "tags": [], + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "type": "need", + "parent": "822152ae-ba64-43a9-a6ba-377f0b6e1c4d", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "publications": [ + { + "id": "18131bcd-bd3f-4346-908a-522fc190ecbf", + "bankId": "18131bcd-bd3f-4346-908a-522fc190ecbf", + "comment": "123", + "date": "2022-03-25T12:52:04.975Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null + } + ], + "tags": [ + { + "id": "5e5cd865-ae6d-4eaf-baf9-c3e04b0a6ff1", + "title": "Miljøvennlig", + "type": "tag", + "parent": "", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "fe02610d-c585-4346-8cad-60e616c22b71", + "title": "Olje", + "description": "Ikke mi.jøvennlig", + "type": "tag", + "parent": "5e5cd865-ae6d-4eaf-baf9-c3e04b0a6ff1", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "9a1e5b75-afef-4562-8ab8-063aa423a971", + "title": "test", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "a5c7fb67-4a35-4e78-9e74-9443cd13d004", + "title": "teast", + "description": "", + "type": "tag", + "parent": "9a1e5b75-afef-4562-8ab8-063aa423a971", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "dc9aebe0-6e0c-421e-a52c-8605c2ffc59a", + "title": "tast", + "description": "", + "type": "tag", + "parent": "9a1e5b75-afef-4562-8ab8-063aa423a971", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "580a62b6-9de4-41e6-bee2-a123d5944e3c", + "title": "ttt", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "17ba65ef-01f3-49b8-bfb4-678a1f7e57ae", + "title": "ttteattatat", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "7ba2a635-b2a2-4341-a8df-81bae10d7fbb", + "title": "yrdy", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "c0f7c868-c104-4145-b14a-28190cb7e1ae", + "title": "test", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "ddc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "version": 1, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "712ffcf0-14ac-4220-8901-0b363cd3bae9" + }, + { + "id": "4657069c-2893-4fde-b668-1cbf7cc03ce2", + "title": "Kurs- og konferansetjenester [ASI/2]", + "description": "", + "needs": [ + { + "id": "4556f65b-da22-45f6-b884-e072d9a386ae", + "title": "Informasjon om bestiller", + "description": "Kontaktinformasjon til bestiller og informasjon om virksomheten.", + "requirements": [ + { + "id": "d9025e30-d4e1-4ced-9245-288f4c1e7909", + "title": "Kontaktinformasjon til bestiller", + "description": "", + "needId": "4556f65b-da22-45f6-b884-e072d9a386ae", + "type": "requirement", + "variants": [ + { + "id": "609aeab3-9d54-4ec6-aa65-2ea50a66bfde", + "requirementText": "Navn, telefonnummer, e-postadresse til bestiller. ", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "info", + "description": "Navn, telefonnummer, e-postadresse til bestiller. " + } + ], + "tags": [], + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null + }, + { + "id": "becaae37-b586-4e12-9410-b915c010b280", + "title": "Informasjon om virksomheten som bestiller. ", + "description": "", + "needId": "4556f65b-da22-45f6-b884-e072d9a386ae", + "type": "requirement", + "variants": [ + { + "id": "3993fff6-2ba2-4e5d-ac65-10f1639b4b09", + "requirementText": "Navn på virksomhet, organisasjonsnummer, faktureringsadresse, kontaktinformasjon. ", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "info", + "description": "Navn på virksomhet, organisasjonsnummer, faktureringsadresse, kontaktinformasjon. " + } + ], + "tags": [], + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null + }, + { + "id": "ee93a4a7-5c57-44ca-84e8-486211496578", + "title": "Registering og informasjon", + "description": "Oppdragsgiver har behov for et særskilt område for registrering av deltakere og utgivelse av informasjon, m.m.", + "requirements": [ + { + "id": "e29f4e63-ca0e-41fb-afa2-db70dd64793f", + "title": "Registering", + "description": "", + "needId": "ee93a4a7-5c57-44ca-84e8-486211496578", + "type": "requirement", + "variants": [ + { + "id": "b75d80a0-da17-421d-8d07-64291598fb0d", + "requirementText": "Område for registrering", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "dd856594-0625-4303-ae3d-97ae7223fb42", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Område for registrering" + } + ], + "tags": [], + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null + }, + { + "id": "c58acbea-6fec-4057-a185-bf7a508707eb", + "title": "Informasjon", + "description": "", + "needId": "ee93a4a7-5c57-44ca-84e8-486211496578", + "type": "requirement", + "variants": [ + { + "id": "d8c5b90f-f59c-4bb6-a021-c1ade17fe87a", + "requirementText": "Område for utgivelse av informasjon", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "35df1c13-0ac5-4bac-b1dd-e3a9297e0ccd", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Område for utgivelse av informasjon" + } + ], + "tags": [], + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null + }, + { + "id": "d471da92-541a-4ccd-9bd3-a10a5af2b3c2", + "title": "Krav til tjenesten", + "description": "", + "requirements": [], + "type": "need", + "sourceOriginal": null, + "sourceRel": null, + "parent": "" + }, + { + "id": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "title": "Kurs- og konferansefasiliteter", + "description": "", + "requirements": [ + { + "id": "22a98a48-5edc-4eff-859b-173475190d73", + "description": "Leverandøren skal ha dedikert personell tilgjengelig som kan bistå før og under arrangementet. Tilgjengelig personell må ha høy grad av service og kunnskap om AV utstyr. Bistand skal være inkludert i prisen.", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Bistand ", + "variants": [ + { + "id": "fa9b5e4c-c364-432b-ad66-3ca2a3748ed0", + "requirementText": "Leverandøren skal ha dedikert personell tilgjengelig som kan bistå før og under arrangementet. Tilgjengelig personell må ha høy grad av service og kunnskap om AV utstyr. Bistand skal være inkludert i prisen.", + "description": "", + "instruction": "", + "useQualification": false, + "useSpesification": true, + "useProduct": false, + "products": [], + "questions": [] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "baafab82-4bc0-46af-8d86-803005da0a5e", + "description": "Leverandøren skal kunne tilby mat tilpasset gjester med spesielle krav p.g.a. intoleranse, religion/livsstil etc. Leverandør skal kunne informere gjester om hvilke råvarer som er brukt i retter som serveres.", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Spesielle behov", + "variants": [ + { + "id": "9db4e071-0bec-44fd-a464-b01edc779485", + "requirementText": "Leverandøren skal kunne tilby mat tilpasset gjester med spesielle krav p.g.a. intoleranse, religion/livsstil etc. Leverandør skal kunne informere gjester om hvilke råvarer som er brukt i retter som serveres.", + "description": "", + "instruction": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "cb48b8f2-4e47-4f2d-ba7a-21fbc7be5bfc", + "description": "Leverandøren skal tilby avlastningsrom som skal kunne fungere som grupperom.", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Avlastningsrom", + "variants": [ + { + "id": "9a83064e-317d-4ca9-826b-62c77f83ec2f", + "requirementText": "Leverandøren skal tilby avlastningsrom som skal kunne fungere som grupperom.", + "instruction": "", + "description": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "18f71082-b906-4574-898a-98544522ad92", + "description": "Leverandøren skal, ved overnatting, være bemannet for inn- og utsjekk samt andre henvendelser 24 timer i døgnet. ", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Inn-/ utsjekk", + "variants": [ + { + "id": "6e2ab18c-6055-4240-9d56-07f5e8d42118", + "requirementText": "Leverandøren skal, ved overnatting, være bemannet for inn- og utsjekk samt andre henvendelser 24 timer i døgnet. ", + "instruction": "", + "description": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "26de09d1-7f25-40b6-a9e9-eb36aa2e9e7d", + "description": "Leverandøren skal besvare alle henvendelser så hurtig som mulig og minimum innen 1 virkedag. Henvendelser skal besvares senest samme dag ved henvendelse før kl. 14:00. Ved henvendelse etter kl. 14:00, skal det besvares innen kl. 12:00 neste dag. Dette gjelder i virkedager. Spesifisere at dette gjelder under arrangement/kontraktsperioden", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Responstid", + "variants": [ + { + "id": "600ea1ee-823b-45a9-ab35-a304245dab9d", + "requirementText": "Leverandøren skal besvare alle henvendelser så hurtig som mulig og minimum innen 1 virkedag. Henvendelser skal besvares senest samme dag ved henvendelse før kl. 14:00. Ved henvendelse etter kl. 14:00, skal det besvares innen kl. 12:00 neste dag. Dette gjelder i virkedager. Spesifisere at dette gjelder under arrangement/kontraktsperioden.", + "instruction": "", + "useProduct": false, + "description": "", + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "fc15fd24-a8c4-460f-943b-98b183dce4a5", + "description": "Angi ønsket geografisk område ved behov(evaluering)", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Geografisk område", + "variants": [ + { + "id": "e2f366ce-5c67-4b4c-9252-0ba0dbbbff32", + "requirementText": "Leverandøren skal kunne tilby kurs- og konferanselokalet innenfor angitt geografisk lokalisering. ", + "instruction": "", + "description": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "2ad1d3fa-cf8e-4c5e-a8d8-f08ced852d54", + "description": "Angi antall deltakere + arrangør for arrangementet", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Størrelse på arrangementet", + "variants": [ + { + "id": "e114f278-a330-4529-8793-7cab692f5f5a", + "requirementText": "", + "instruction": "", + "description": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "4507036e-66dd-426a-80fb-f2881b2e7c6a", + "type": "Q_TEXT", + "config": { + "max": 0 + }, + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "3a00c1c0-9658-4cf8-8b90-a2bd9b1abcf6", + "description": "Leverandøren skal ha dedikert og fast kontaktperson(er) til respektive Oppdragsgivere under kontraktens varighet. ", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Fast kontaktperson", + "variants": [ + { + "id": "c6f2caf2-d643-4039-9c2c-ead0a9188a99", + "requirementText": "Leverandøren skal ha dedikert og fast kontaktperson(er) til respektive Oppdragsgivere under kontraktens varighet. ", + "instruction": "", + "description": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "fd969be5-a493-44f5-97d7-4d47d6a4758f", + "description": "Leverandøren skal kunne tilby vegetarmat i henhold til Oppdragsgivers behov. ", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Vegetarmat", + "variants": [ + { + "id": "f387b7e1-7c73-44b1-b42f-20b90aeffaef", + "requirementText": "Leverandøren skal kunne tilby vegetarmat i henhold til Oppdragsgivers behov. ", + "instruction": "", + "description": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "9e775a7c-cb61-43cc-a6d9-6b220dbf7160", + "description": "All mat skal være merket iht. gjeldende forskrifter for matmerking. ", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Mat og drikke", + "variants": [ + { + "id": "f3f637eb-9b64-44b2-8097-a4ba5d0fcd06", + "requirementText": "All mat skal være merket iht. gjeldende forskrifter for matmerking. ", + "instruction": "", + "description": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "c1fe72f2-eadd-4d22-9bab-aad14a495b32", + "description": "Leverandøren skal kunne tilby allergenfri-mat tilpasset deltakere med ulike matallergier/intoleranser (cøliaki osv). Mat som blir servert skal være merket med hvilke allergener den inneholder. ", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Merking av allergener", + "variants": [ + { + "id": "03f044b0-0c21-4e8d-a8ad-24e9e2382c8e", + "requirementText": "Leverandøren skal kunne tilby allergenfri-mat tilpasset deltakere med ulike matallergier/intoleranser (cøliaki osv). Mat som blir servert skal være merket med hvilke allergener den inneholder. ", + "instruction": "", + "description": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "fc6ab9e8-1cfe-4773-923b-b1b695c4d0d6", + "description": "Leverandøren skal sikre at deres leverandører har en ordning for sluttbehandling av emballasje, hvor emballasjen blir tatt hånd om på miljømessig forsvarlig måte. ", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Emballasje", + "variants": [ + { + "id": "88e93281-34c4-4dfa-a53d-b1af036828d5", + "requirementText": "Leverandøren skal sikre at deres leverandører har en ordning for sluttbehandling av emballasje, hvor emballasjen blir tatt hånd om på miljømessig forsvarlig måte. ", + "instruction": "", + "description": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "270a2732-2d0f-4d18-913b-3764d88db8c6", + "description": "Engangsartikler (tallerkener, kopper, glass og bestikk) skal ikke brukes i forbindelse med matservering. ", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Engangsartikler", + "variants": [ + { + "id": "4235c0fa-17c7-49c1-8b73-65c05bd7b7b0", + "requirementText": "Engangsartikler (tallerkener, kopper, glass og bestikk) skal ikke brukes i forbindelse med matservering. ", + "instruction": "", + "description": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "92a011e5-e88a-451f-8f01-fafddb1d3363", + "description": "Leverandøren skal kunne tilby gratis Wi-Fi i fellesarealene tilpasset dagens standard til kvalitet, hastighet og kapasitet ", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Gratis Wi-Fi", + "variants": [ + { + "id": "e340863e-ad73-4b2a-b5a6-dde72873f4bc", + "requirementText": "Leverandøren skal kunne tilby gratis Wi-Fi i fellesarealene tilpasset dagens standard til kvalitet, hastighet og kapasitet ", + "instruction": "", + "description": "", + "useQualification": false, + "useSpesification": true, + "useProduct": false, + "products": [], + "questions": [] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "4276b651-9a2b-4e31-bdfe-ead2597be1ef", + "description": "", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Overnatting", + "variants": [ + { + "id": "3e3640b7-7a5f-4239-a464-89d63e1e3157", + "requirementText": "", + "instruction": "", + "description": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "3c3dd2e0-fdd7-4245-8f66-187ce5ebecf9" + ], + "questions": [] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "b6050698-e4ab-4201-8ad4-53acaa613227", + "title": "Rutiner for gjennomføring av arrangementet (evaluering)", + "description": "", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "variants": [], + "sourceOriginal": null, + "sourceRel": null, + "type": "requirement" + }, + { + "id": "c10a37f4-d674-4ed2-aab3-df3d3119913b", + "description": "", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Registreringsområdet for arrangementet", + "variants": [ + { + "id": "cbc8dc45-d87c-44c3-9c67-78eb2b25a591", + "requirementText": "Leverandøren skal kunne tilby Oppdragsgiver et særskilt område i lokalet for registrering av deltakere, utdeling av program/informasjon m.m. \n", + "instruction": "", + "description": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "89d0e909-b958-4355-8cfb-5c159e9a8f77", + "description": "Angi varighet dato fra - til på arrangementet", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Varighet på arrangementet", + "variants": [ + { + "id": "d201d12d-556a-46d0-a926-b0379610541e", + "requirementText": "", + "instruction": "", + "description": "", + "useQualification": false, + "useSpesification": true, + "useProduct": false, + "products": [], + "questions": [ + { + "id": "a41feecb-36bd-4867-a322-5ea8c22fb9c3", + "type": "Q_PERIOD_DATE", + "config": { + "fromDate": "2021-09-14T11:03:09.024Z", + "toDate": "2021-09-14T11:03:09.024Z" + }, + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "ccb22e62-be64-4f0b-b1b7-82f831f79e67", + "description": "", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Konferanseteknikk/AV-utstyr", + "variants": [ + { + "id": "a5284dc0-2a1d-4ef5-b31d-d93906d55255", + "requirementText": "", + "instruction": "", + "description": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "2e844dfe-ae06-4321-9518-ce4a25db6c94" + ], + "questions": [ + { + "id": "1d24630b-9400-4e62-b6ee-8ba2d2cc17ef", + "type": "Q_CODELIST", + "config": { + "multipleSelect": false, + "codelist": "13b119a0-a987-44af-baee-9fe10a9d0873" + }, + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "7cf1c22f-968b-46de-9a10-4964fa86fd09", + "description": "", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Tilgjengelighet", + "variants": [ + { + "id": "d15be950-7a33-4e73-bcd3-86f8161cc669", + "requirementText": "", + "instruction": "", + "description": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "2e844dfe-ae06-4321-9518-ce4a25db6c94" + ], + "questions": [ + { + "id": "fd9457d7-2b43-4faa-a35e-80d0fb05acec", + "type": "Q_CODELIST", + "config": { + "multipleSelect": false, + "codelist": "13b119a0-a987-44af-baee-9fe10a9d0873" + }, + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "19146283-62d5-4b27-bdd8-9d65895d957f", + "description": "Overordnet angivelse av hvilket type arrangement som skal gjennomføres", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Type arrangement ", + "variants": [ + { + "id": "4a9af0b3-fba1-4843-9a14-763497e0b712", + "requirementText": "", + "description": "", + "instruction": "Overordnet angivelse av hvilket type arrangement som skal gjennomføres", + "useQualification": false, + "useSpesification": true, + "useProduct": false, + "products": [], + "questions": [ + { + "id": "55a16720-153f-4b7e-ad29-97d14954221e", + "type": "Q_CODELIST", + "config": { + "codelist": "ef491ecb-a816-4dba-a37f-cd63295460de", + "multipleSelect": false + }, + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "21123c75-9306-4919-9a75-03dcf4fbe560", + "description": "", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Oppsett av lokale", + "variants": [ + { + "id": "9fa50193-03a7-41cf-b6b4-2dade56789dd", + "requirementText": "Leverandøren skal sørge for at oppsettet av lokalet er i henhold til......", + "instruction": "Krav knyttet til hvordan det er ønskelig at lokalet settes opp. ", + "description": "", + "useQualification": false, + "useSpesification": false, + "useProduct": true, + "products": [ + "2e844dfe-ae06-4321-9518-ce4a25db6c94" + ], + "questions": [ + { + "id": "ca55653c-efb0-40d6-84ff-851934f00df6", + "type": "Q_CODELIST", + "config": { + "codelist": "78f0af2f-065c-49e0-8083-24c84dca791e", + "multipleSelect": false + }, + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "f885b791-5e36-4ac7-8d60-191d98568171", + "description": "Antall personer som det skal være plass til i rommet", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Antall", + "variants": [ + { + "id": "4585f28b-4ee4-4d2c-bae1-a1a33a460d33", + "requirementText": "Det skal være plass til .....", + "instruction": "", + "description": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "2e844dfe-ae06-4321-9518-ce4a25db6c94" + ], + "questions": [ + { + "id": "b7e66ecd-dd51-4e20-8827-bc8473bc0994", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 0, + "step": 1, + "unit": "GB" + }, + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "7c868ccb-0f45-403c-be14-4371fcb5e45f", + "description": "", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Periode", + "variants": [ + { + "id": "2af645c4-e325-4dd1-9f96-d9359bbb6f1a", + "requirementText": "Lokalet skal være tilgjengelig fra oppnevnt dato.", + "instruction": "", + "description": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "2e844dfe-ae06-4321-9518-ce4a25db6c94" + ], + "questions": [ + { + "id": "c9b560cb-141d-4998-a506-d1d18aad83c8", + "type": "Q_PERIOD_DATE", + "config": { + "fromDate": "2021-09-14T13:01:29.942Z", + "toDate": "2021-09-14T13:01:29.942Z" + }, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "15352f01-d545-49f3-863d-b870ce243d1e", + "type": "Q_TIME", + "config": { + "fromTime": "", + "toTime": "" + }, + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "9700814a-1ef6-4342-8e0a-452a53c47135", + "description": "", + "needId": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "type": "requirement", + "title": "Kvalitet", + "variants": [ + { + "id": "9a0983a7-709c-4103-89a1-a3685f4a4e39", + "requirementText": "", + "instruction": "", + "description": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "2e844dfe-ae06-4321-9518-ce4a25db6c94" + ], + "questions": [ + { + "id": "deb63392-44c8-4b6e-b466-5cc1a4b74c59", + "type": "Q_CODELIST", + "config": { + "multipleSelect": false, + "codelist": "13b119a0-a987-44af-baee-9fe10a9d0873" + }, + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "fb27b35e-0bff-4989-9625-b21763a342fd", + "title": "Bankett/festmiddag", + "description": "", + "requirements": [], + "type": "need", + "parent": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null + }, + { + "id": "1c575994-5e33-4126-82ad-2d3a44ca3259", + "title": "Kvalitet", + "description": "", + "requirements": [ + { + "id": "a7dac000-3588-48c8-b307-e833086dcaf2", + "description": "Leverandøren skal sikre at fasilitetene har følgende minimum standard: Alt over det minimumet vil være poenggivende.", + "needId": "1c575994-5e33-4126-82ad-2d3a44ca3259", + "type": "requirement", + "title": "Kvalitet på lokalet", + "variants": [ + { + "id": "e46d2e26-cb31-44f1-8605-be20f8dbda9c", + "requirementText": "Leverandøren skal sikre at fasilitetene har følgende minimum standard: Alt over det minimumet vil være poenggivende.", + "instruction": "", + "description": "", + "useQualification": false, + "useSpesification": true, + "useProduct": true, + "products": [ + "2e844dfe-ae06-4321-9518-ce4a25db6c94" + ], + "questions": [ + { + "id": "d0471564-ebe3-426d-8aea-773171fd69cc", + "type": "Q_CODELIST", + "config": { + "multipleSelect": false, + "codelist": "13b119a0-a987-44af-baee-9fe10a9d0873" + }, + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + } + ], + "type": "need", + "sourceOriginal": null, + "sourceRel": null, + "parent": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694" + }, + { + "id": "6c47ce09-ea36-4885-9eff-3e0fae08a678", + "title": "Geografisk lokasjon", + "description": "", + "requirements": [ + { + "id": "8e88019b-a0b1-4135-a274-04522267e13e", + "description": "Leverandøren skal kunne til tilby kurs- og konferanse lokalet innenfor minimum 15 km avstand fra respektive....", + "needId": "6c47ce09-ea36-4885-9eff-3e0fae08a678", + "type": "requirement", + "title": "Geografisk lokasjon", + "variants": [ + { + "id": "769b21c5-d375-461f-ace8-4c54279e55e1", + "requirementText": "", + "instruction": "", + "description": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "2ca81c82-c258-4b9c-bacd-7476ade0fb44", + "type": "Q_CODELIST", + "config": { + "multipleSelect": false, + "codelist": "13b119a0-a987-44af-baee-9fe10a9d0873" + }, + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + } + ], + "type": "need", + "sourceOriginal": null, + "sourceRel": null, + "parent": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694" + }, + { + "id": "637ba097-820c-41de-8550-bc2e829f5f88", + "title": "Overnatting", + "description": "", + "requirements": [ + { + "id": "133ebbd7-0b02-4c4c-a3c3-abb610605f51", + "description": "Leverandøren skal kunne tilby alle type rom som beskrevet under produkter. ", + "needId": "637ba097-820c-41de-8550-bc2e829f5f88", + "type": "requirement", + "title": "Rom ", + "variants": [ + { + "id": "b0bf3967-e962-41c5-a396-97382650b62f", + "requirementText": "", + "instruction": "", + "description": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "e2fe0d0a-849c-4eeb-a57b-2589c7d73e11", + "description": "Leverandøren skal, ved overnatting, være bemannet for inn- og utsjekk samt andre henvendelser 24 timer i døgnet. ", + "needId": "637ba097-820c-41de-8550-bc2e829f5f88", + "type": "requirement", + "title": "Inn- og utsjekk", + "variants": [ + { + "id": "a79caa47-1dce-4dfe-9bc7-d7aad4102e10", + "requirementText": "", + "instruction": "", + "description": "", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "3c3dd2e0-fdd7-4245-8f66-187ce5ebecf9" + ], + "questions": [] + }, + { + "id": "7137a3ee-9ada-44e2-a388-b0a98d617adc", + "requirementText": "Beskriv behovet for tidlig/sen inn- eller utsjekk.", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "Beskriv behovet for tidlig/sen inn- eller utsjekk. " + } + ], + "sourceOriginal": null, + "sourceRel": null + } + ], + "type": "need", + "sourceOriginal": null, + "sourceRel": null, + "parent": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694" + }, + { + "id": "a9117deb-8924-4974-9dd7-1fa54ea21d03", + "title": "Servering", + "description": "", + "requirements": [ + { + "id": "ce96916c-840c-4840-a473-fe40169893a1", + "description": "", + "needId": "a9117deb-8924-4974-9dd7-1fa54ea21d03", + "type": "requirement", + "title": "Middag", + "variants": [ + { + "id": "d8c8f51f-778b-4690-a927-7ba574f2b602", + "requirementText": "", + "instruction": "", + "description": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "2e844dfe-ae06-4321-9518-ce4a25db6c94" + ], + "questions": [ + { + "id": "bb6b3114-f403-4bf5-9489-2c66854c7ab8", + "type": "Q_CODELIST", + "config": { + "multipleSelect": false, + "codelist": "13b119a0-a987-44af-baee-9fe10a9d0873" + }, + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "c229424d-2a85-42c7-a48d-bc153fd694bc", + "description": "", + "needId": "a9117deb-8924-4974-9dd7-1fa54ea21d03", + "type": "requirement", + "title": "Pausemat", + "variants": [ + { + "id": "f31fafd1-4351-42cd-becd-e6b9c6f08695", + "requirementText": "", + "instruction": "", + "description": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "2e844dfe-ae06-4321-9518-ce4a25db6c94" + ], + "questions": [ + { + "id": "464b88f3-fef3-42c0-842f-95f715bb4043", + "type": "Q_CODELIST", + "config": { + "multipleSelect": false, + "codelist": "13b119a0-a987-44af-baee-9fe10a9d0873" + }, + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "506de38b-1a10-4a3d-bb30-93ff1026d4b5", + "description": "", + "needId": "a9117deb-8924-4974-9dd7-1fa54ea21d03", + "type": "requirement", + "title": "Frokost", + "variants": [ + { + "id": "65844762-c8cc-44a5-87f2-042285019eba", + "requirementText": "", + "instruction": "", + "description": "", + "useQualification": false, + "useSpesification": false, + "useProduct": true, + "products": [ + "2e844dfe-ae06-4321-9518-ce4a25db6c94", + "9e28988f-0174-42d5-ab07-966edcbe0c3f", + "5df73405-a011-4020-a137-5f732c516917", + "8a144c25-06a3-4dcf-a294-ab601b7967d1", + "3c3dd2e0-fdd7-4245-8f66-187ce5ebecf9", + "7120ab97-3451-4955-8989-b0b82b26a59d", + "9c47622b-2463-441e-afc1-0b12554cc4be", + "287cb3ef-4912-4f26-ab90-e8935958cf9f", + "df9e7132-fd8f-41c8-a1fc-2b50d6286d89" + ], + "questions": [ + { + "id": "f5d1cccf-5ad0-4ac2-95ba-4780be42032f", + "type": "Q_CODELIST", + "config": { + "codelist": "13b119a0-a987-44af-baee-9fe10a9d0873", + "multipleSelect": false + }, + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "f2af86d0-64c9-4a5f-9bab-b9d83d75773a", + "description": "Leverandøren skal kunne tilby lunsj.", + "needId": "a9117deb-8924-4974-9dd7-1fa54ea21d03", + "type": "requirement", + "title": "Lunsj", + "variants": [ + { + "id": "449112de-7c31-41a7-bc4f-3183c47f6a81", + "requirementText": "", + "instruction": "", + "description": "", + "useQualification": false, + "useSpesification": true, + "useProduct": false, + "products": [ + "2e844dfe-ae06-4321-9518-ce4a25db6c94" + ], + "questions": [] + }, + { + "id": "a77c619c-3233-4338-ad3e-d6fba6729229", + "requirementText": "", + "instruction": "", + "description": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "2e844dfe-ae06-4321-9518-ce4a25db6c94" + ], + "questions": [ + { + "id": "5a7a6177-5191-4c9f-ac70-08f04543c2d7", + "type": "Q_CODELIST", + "config": { + "multipleSelect": false, + "codelist": "13b119a0-a987-44af-baee-9fe10a9d0873" + }, + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + } + ], + "type": "need", + "sourceOriginal": null, + "sourceRel": null, + "parent": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694" + }, + { + "id": "ba8481f5-655b-4321-9e75-04d29aec90f0", + "title": "Underholdning/aktivitet", + "description": "", + "requirements": [ + { + "id": "51480eb8-8ae9-438b-9c91-b79ef0bea96e", + "title": "Underholdning", + "description": "", + "needId": "ba8481f5-655b-4321-9e75-04d29aec90f0", + "type": "requirement", + "variants": [], + "tags": [], + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null + }, + { + "id": "c537bf6d-1184-4541-b0e4-e73f52d3220b", + "title": "Aktivitet", + "description": "", + "needId": "ba8481f5-655b-4321-9e75-04d29aec90f0", + "type": "requirement", + "variants": [], + "tags": [], + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null + } + ], + "type": "need", + "parent": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null + }, + { + "id": "7ec994b1-c2ba-405e-b236-abc4265d06bd", + "title": "Parkering", + "description": "", + "requirements": [ + { + "id": "f079b0e1-3995-48b2-94ff-b831d0991bf6", + "description": "Leverandøren skal tilby parkering tilknyttet kurs- og konferanselokalet. ", + "needId": "7ec994b1-c2ba-405e-b236-abc4265d06bd", + "type": "requirement", + "title": "Parkeringsmuligheter", + "variants": [ + { + "id": "413cd2bf-d8c4-49f7-906c-4d41feac06ba", + "requirementText": "", + "instruction": "", + "description": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [] + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "781b81a1-a7de-4416-b537-77119023f329", + "description": "Leverandøren skal tilby", + "needId": "7ec994b1-c2ba-405e-b236-abc4265d06bd", + "type": "requirement", + "title": "Parkeringsmuligheter(evaluering)", + "variants": [ + { + "id": "1b99fcd2-b08e-472e-a29f-c585e4435a94", + "requirementText": "", + "instruction": "", + "description": "", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "d0394924-8c85-40cb-8eb4-cc2370c235e3", + "type": "Q_CODELIST", + "config": { + "multipleSelect": false, + "codelist": "13b119a0-a987-44af-baee-9fe10a9d0873" + }, + "sourceOriginal": null, + "sourceRel": null + } + ] + } + ], + "sourceOriginal": null, + "sourceRel": null + } + ], + "type": "need", + "sourceOriginal": null, + "sourceRel": null, + "parent": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694" + }, + { + "id": "e98631f7-fb0e-49eb-932f-769f68f93af9", + "title": "Transport", + "description": "", + "requirements": [ + { + "id": "c0a18336-fe84-41f2-9b86-287bbb2297cf", + "title": "Transportalternativer", + "description": "", + "needId": "e98631f7-fb0e-49eb-932f-769f68f93af9", + "type": "requirement", + "variants": [], + "tags": [], + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null + } + ], + "type": "need", + "parent": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null + }, + { + "id": "238c13a1-821b-426a-b9c8-bff877ce2c6b", + "title": "Tilgjengelighet(Universell utforming)", + "description": "", + "requirements": [ + { + "id": "deb3d9ae-4af7-4499-8384-228004a87468", + "title": "Tilrettelagt for rullestolbrukere", + "description": "", + "needId": "238c13a1-821b-426a-b9c8-bff877ce2c6b", + "type": "requirement", + "variants": [], + "tags": [], + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null + } + ], + "type": "need", + "sourceOriginal": null, + "sourceRel": null, + "parent": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694" + }, + { + "id": "3bb3b6e6-fb25-40f4-9456-ff6455d86b65", + "title": "Sikkerhet", + "description": "Oppdragsgiver har behov for ivaretakelse av sikkerhet under oppholdet.", + "requirements": [], + "type": "need", + "parent": "db6e13a4-3df6-4a9e-9e54-b37fb6b4c694", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null + } + ], + "products": [ + { + "id": "2e844dfe-ae06-4321-9518-ce4a25db6c94", + "title": "Plenumsal", + "description": "", + "parent": "", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "04795b94-4cd6-4e2b-b6d1-614a7038519c", + "title": "Antall", + "description": "Angi antall personer det skal være plass til i plenumssalen.", + "type": "product", + "parent": "2e844dfe-ae06-4321-9518-ce4a25db6c94", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "84c72195-b9a0-47a1-97f1-209f06c0a06f", + "title": "Status", + "description": "Det skal gis en bekreftelse på at plenumssalen er reservert. ", + "type": "product", + "parent": "2e844dfe-ae06-4321-9518-ce4a25db6c94", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "3682db89-bef9-4387-898f-478ff00efb23", + "title": "Tilgjengelighet", + "description": "Angi behovet for universell utforming for dette rommet. ", + "type": "product", + "parent": "2e844dfe-ae06-4321-9518-ce4a25db6c94", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "e4df1c72-3a6a-4367-8488-163fd475d99a", + "title": "Navn", + "description": "Angi navn på ansvarlig person for lokalet.", + "type": "product", + "parent": "2e844dfe-ae06-4321-9518-ce4a25db6c94", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "4a64770b-da35-47b9-920e-8732d25fad0c", + "title": "Dato", + "description": "Angi dato for når lokalet skal benyttes.", + "type": "product", + "parent": "2e844dfe-ae06-4321-9518-ce4a25db6c94", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "79deb2a6-0ad4-446f-abd5-4a06ad22fc47", + "title": "Klokkeslett", + "description": "Angi klokkeslett for når plenumssalen skal benyttes.", + "type": "product", + "parent": "2e844dfe-ae06-4321-9518-ce4a25db6c94", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "bf42aeff-4755-4005-952e-b1224979b3a2", + "title": "Standard konferanseteknikk/AV-utstyr", + "description": "Angi behovet for teknisk utstyr i plenumssalen.", + "type": "product", + "parent": "2e844dfe-ae06-4321-9518-ce4a25db6c94", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "8c1e4efe-5694-4157-9272-36d073a1a12d", + "title": "Oppsett av lokale", + "description": "Angi ønsket oppsett av plenumssalen.", + "type": "product", + "parent": "2e844dfe-ae06-4321-9518-ce4a25db6c94", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "19a7db1f-ab3b-4b48-ad27-46caf2318c43", + "title": "Omrigg", + "description": "Angi behov for endring i oppsett av plenumssalen under arrangementet.", + "type": "product", + "parent": "2e844dfe-ae06-4321-9518-ce4a25db6c94", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "868ffc32-14ca-480f-8de4-ecdd5eb93614", + "title": "Tekniker", + "description": "Angi behov for å ha tekniker tilstede under hele eller deler av arrangementet.", + "type": "product", + "parent": "2e844dfe-ae06-4321-9518-ce4a25db6c94", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "f8b957b1-7ded-4568-85c7-18778e864887", + "title": "Innrigg", + "description": "Angi behov for innrigg, for eksempel dekorasjon av bord, dekor eller profilering kvelden før/om morgenen før start.", + "type": "product", + "parent": "2e844dfe-ae06-4321-9518-ce4a25db6c94", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "a19f6500-5c0a-4c29-be22-f2e56c276c3c", + "title": "Kvalitet/standard", + "description": "Angi ønsket minimumsstandard.", + "type": "product", + "parent": "2e844dfe-ae06-4321-9518-ce4a25db6c94", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "237e8947-2904-417e-8827-7771090bf5df", + "title": "Servering", + "description": "Angi behov for servering i tilknytning til arrangementet. ", + "type": "product", + "parent": "2e844dfe-ae06-4321-9518-ce4a25db6c94", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "2892c0e5-2174-45d5-affa-01ee919266b5", + "title": "Fysisk sikring", + "description": "Angi behov for fysisk sikring, for eksempel skuddsikre glass, forsterkede vegger, begrenset adkomst, vakt tilstede, mv. ", + "type": "product", + "parent": "2e844dfe-ae06-4321-9518-ce4a25db6c94", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "9e28988f-0174-42d5-ab07-966edcbe0c3f", + "title": "Grupperom", + "description": "", + "parent": "", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "307c0026-aea2-4492-83e6-95b984b2b82f", + "title": "Antall", + "description": "Angi hvor mange personer det skal være plass til i grupperommet. ", + "type": "product", + "parent": "9e28988f-0174-42d5-ab07-966edcbe0c3f", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "7a5e52ea-4456-407b-88f1-4e908eb5a331", + "title": "Status", + "description": "Det skal gis en bekreftelse på at grupperommet er reservert. ", + "type": "product", + "parent": "9e28988f-0174-42d5-ab07-966edcbe0c3f", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "8eb11dc6-94e4-45a4-918c-42d5b70ab7eb", + "title": "Tilgjengelighet", + "description": "Behovet for universell utforming for grupperommet skal angis. ", + "type": "product", + "parent": "9e28988f-0174-42d5-ab07-966edcbe0c3f", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "8233e1f6-e580-46f7-917a-3ade2edc6fae", + "title": "Navn", + "description": "Det skal angis navn på ansvarlig person for grupperommet. ", + "type": "product", + "parent": "9e28988f-0174-42d5-ab07-966edcbe0c3f", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "160a0e44-63df-4315-8d15-2826f722b2c8", + "title": "Dato", + "description": "Angi dato for når lokalet skal benyttes. ", + "type": "product", + "parent": "9e28988f-0174-42d5-ab07-966edcbe0c3f", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "8a4ed223-8b5e-4f07-9c79-93ec73a7d222", + "title": "Klokkeslett", + "description": "Angi klokkeslett for når grupperommet skal benyttes.", + "type": "product", + "parent": "9e28988f-0174-42d5-ab07-966edcbe0c3f", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "3813021a-28c0-464f-a5b5-5b2cd0054eba", + "title": "Standard konferanseteknikk/AV-utstyr", + "description": "Angi behov for teknisk utstyr i grupperommet.", + "type": "product", + "parent": "9e28988f-0174-42d5-ab07-966edcbe0c3f", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "a097ca87-d1bf-416b-a299-e96126112c64", + "title": "Oppsett av lokale", + "description": "Angi ønsket oppsett av lokalet. ", + "type": "product", + "parent": "9e28988f-0174-42d5-ab07-966edcbe0c3f", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "e790d517-5a22-42f4-90d3-52108a689303", + "title": "Omrigg", + "description": "Angi behov for endring i oppsett av grupperommet under arrangementet. ", + "type": "product", + "parent": "9e28988f-0174-42d5-ab07-966edcbe0c3f", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "0c42d5d3-6ab0-409e-80f8-fad3d787320b", + "title": "Tekniker", + "description": "Angi behov for å ha tekniker tilstede under hele eller deler av arrangementet. ", + "type": "product", + "parent": "9e28988f-0174-42d5-ab07-966edcbe0c3f", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "81d81173-0076-4adf-923f-7fe7f62f798f", + "title": "Innrigg", + "description": "Angi behov for innrigg, for eksempel dekorasjon av grupperommet, dekor eller profilering kvelden før/morgenen før start. ", + "type": "product", + "parent": "9e28988f-0174-42d5-ab07-966edcbe0c3f", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "c2e5eafb-0de1-45a5-915f-33c4d0f9b22d", + "title": "Kvalitet/standard", + "description": "Angi ønsket minimumsstandard på grupperommet. ", + "type": "product", + "parent": "9e28988f-0174-42d5-ab07-966edcbe0c3f", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "55fa0a18-5e27-4fca-ab15-bd8b653d1b6a", + "title": "Servering", + "description": "Angi behov for servering i tilknytning til arrangementet. ", + "type": "product", + "parent": "9e28988f-0174-42d5-ab07-966edcbe0c3f", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "bdee2fc3-78b8-41da-807a-f4603ff7ee1a", + "title": "Fysisk sikring", + "description": "Angi behov for fysisk sikring, for eksempel skuddsikre glass, forsterkede vegger, begrenset adkomst, vakt tilstede, mv. ", + "type": "product", + "parent": "9e28988f-0174-42d5-ab07-966edcbe0c3f", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "5df73405-a011-4020-a137-5f732c516917", + "title": "Møterom", + "description": "", + "parent": "", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "55dbf0bc-82ef-4f05-a5da-7685c956ad9a", + "title": "Antall", + "description": "Angi hvor mange det skal være plass til i møterommet. ", + "type": "product", + "parent": "5df73405-a011-4020-a137-5f732c516917", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "663e6ce0-fb44-47f9-b62e-717e88b87c6f", + "title": "Status", + "description": "Det skal gis bekreftelse på at møterommet er reservert. ", + "type": "product", + "parent": "5df73405-a011-4020-a137-5f732c516917", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "66c42dad-fb8d-4ff9-a157-14987b32814b", + "title": "Tilgjengelighet", + "description": "Angi behovet for tilgjengelighet eller universell utforming for møterommet. ", + "type": "product", + "parent": "5df73405-a011-4020-a137-5f732c516917", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "0a660b5f-01d6-460e-ae17-a60583888475", + "title": "Navn", + "description": "Angi navn på ansvarlig person for møterommet. ", + "type": "product", + "parent": "5df73405-a011-4020-a137-5f732c516917", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "c587c586-faf3-42f0-94af-f4da10ad07af", + "title": "Dato", + "description": "Angi dato for når lokalet skal benyttes.", + "type": "product", + "parent": "5df73405-a011-4020-a137-5f732c516917", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "8431d5a2-714e-49c8-9385-36c49dc519c1", + "title": "Klokkeslett", + "description": "Angi klokkeslett for når møterommet skal benyttes.", + "type": "product", + "parent": "5df73405-a011-4020-a137-5f732c516917", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "bbb71ba6-d0c2-4da3-b9ae-b26f971eb67c", + "title": "Standard konferanseteknikk/AV-utstyr", + "description": "Angi behovet for teknisk utstyr i lokalet. ", + "type": "product", + "parent": "5df73405-a011-4020-a137-5f732c516917", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "dae551e9-5c0b-4187-bfa4-33a72d817d22", + "title": "Oppsett av lokale", + "description": "Angi ønsket behov for oppsett av møterommet. ", + "type": "product", + "parent": "5df73405-a011-4020-a137-5f732c516917", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "2ef5884a-2534-4ba9-9cc8-ea29457a45f1", + "title": "Omrigg", + "description": "Angi behov for endring i oppsett av møterommet underveis i arrangementet. ", + "type": "product", + "parent": "5df73405-a011-4020-a137-5f732c516917", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "9d1818b4-0bd8-4af3-a344-46c687ce30df", + "title": "Tekniker", + "description": "Angi behov for å ha tekniker tilstede under hele eller deler av arrangementet. ", + "type": "product", + "parent": "5df73405-a011-4020-a137-5f732c516917", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "748f8a50-8af3-454f-97d5-3b241c4016ee", + "title": "Innrigg", + "description": "Angi behov for innrigg, for eksempel dekorasjon av møterom eller profilering kvelden/morgenen før start. ", + "type": "product", + "parent": "5df73405-a011-4020-a137-5f732c516917", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "683a20c3-216f-46ab-beef-94375b7e80f8", + "title": "Kvalitet/standard", + "description": "Angi ønsket minimumsstandard på møtelokalet. ", + "type": "product", + "parent": "5df73405-a011-4020-a137-5f732c516917", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "5583aaac-15c1-4a99-be33-aa1ff96f6a84", + "title": "Servering", + "description": "Angi behov for servering knyttet til arrangementet. ", + "type": "product", + "parent": "5df73405-a011-4020-a137-5f732c516917", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "af81a9ad-6b48-4722-95ed-ebe02eb7337a", + "title": "Fysisk sikring", + "description": "Angi behov for fysisk sikring, for eksempel skuddsikre glass, forsterkede vegger, begrenset adkomst, vakt tilstede, mv. ", + "type": "product", + "parent": "5df73405-a011-4020-a137-5f732c516917", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "a35832a1-7db5-45d1-8b37-3154599fb609", + "title": "Hybridmøte", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "2f8489e2-f82c-4a1f-b429-cfd0d7fb3c6f", + "title": "Antall", + "description": "Angi hvor mange personer det skal være plass til i rommet. ", + "type": "product", + "parent": "a35832a1-7db5-45d1-8b37-3154599fb609", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "60a8d52b-8ffb-4e43-8293-dc52fc1d4267", + "title": "Status", + "description": "Det skal gis en bekreftelse på at lokalet er reservert. ", + "type": "product", + "parent": "a35832a1-7db5-45d1-8b37-3154599fb609", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "1b2f8b82-e6dc-4d83-94b0-eefda5564de2", + "title": "Tilgjengelighet", + "description": "Angi behovet for tilgjengelighet eller universell utforming. ", + "type": "product", + "parent": "a35832a1-7db5-45d1-8b37-3154599fb609", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "b22b9f66-6856-426a-bfee-a49a50a0ef96", + "title": "Navn", + "description": "Oppgi navn på ansvarlig person for lokalet. ", + "type": "product", + "parent": "a35832a1-7db5-45d1-8b37-3154599fb609", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "ad8e2a52-e681-4f38-8ac1-fd283efecfeb", + "title": "Dato", + "description": "Angi dato for når lokalet skal benyttes. ", + "type": "product", + "parent": "a35832a1-7db5-45d1-8b37-3154599fb609", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "50b87cab-b2b7-4cdf-8cb3-194a90ee3dd7", + "title": "Klokkeslett", + "description": "Angi klokkeslett for når arrangementet skal finne sted. ", + "type": "product", + "parent": "a35832a1-7db5-45d1-8b37-3154599fb609", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "628cf777-0363-4e74-8f5b-7505a01b520a", + "title": "Standard konferanseteknikk/AV-utstyr", + "description": "Angi behovet for teknisk utstyr i lokalet. ", + "type": "product", + "parent": "a35832a1-7db5-45d1-8b37-3154599fb609", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "6b09ed68-8bf6-4212-9515-d565f07f79d9", + "title": "Oppsett av lokale", + "description": "Angi ønsket oppsett av lokalet. ", + "type": "product", + "parent": "a35832a1-7db5-45d1-8b37-3154599fb609", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "8aae0220-c98b-4c57-8f77-8bf8a9bb74d1", + "title": "Omrigg", + "description": "Angi behov for endring i oppsett underveis.", + "type": "product", + "parent": "a35832a1-7db5-45d1-8b37-3154599fb609", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "f971859a-dd0e-4c2d-a76b-7de56791990b", + "title": "Tekniker", + "description": "Angi behov for å ha tekniker tilstede under hele eller deler av arrangementet. ", + "type": "product", + "parent": "a35832a1-7db5-45d1-8b37-3154599fb609", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "6e2706e0-8082-4d7e-ba86-26aa2fcc1ebb", + "title": "Innrigg", + "description": "Angi behov for innrigg, for eksempel dekor eller profilering kvelden før/samme morgen før start. ", + "type": "product", + "parent": "a35832a1-7db5-45d1-8b37-3154599fb609", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "cfcf4e07-6c56-444f-bf9a-17480393a701", + "title": "Kvalitet/standard", + "description": "Angi ønsket minimumsstandard på lokalet. ", + "type": "product", + "parent": "a35832a1-7db5-45d1-8b37-3154599fb609", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "30a41cfd-17a9-4943-9ef8-014bee11a410", + "title": "Servering", + "description": "Angi behov for servering i tilknytning til arrangementet. ", + "type": "product", + "parent": "a35832a1-7db5-45d1-8b37-3154599fb609", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "379986bc-69f9-439a-b22a-637df1290f18", + "title": "Fysisk sikring", + "description": "Angi behov for fysisk sikring, for eksempel skuddsikre glass, forsterkede vegger, begrenset adkomst, vakt tilstede, mv. ", + "type": "product", + "parent": "a35832a1-7db5-45d1-8b37-3154599fb609", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "8a144c25-06a3-4dcf-a294-ab601b7967d1", + "title": "Utstillingsareal", + "description": "", + "parent": "", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "16b482bb-17e5-44ae-89b0-9fa83108054f", + "title": "Antall", + "description": "Angi hvor mange utstillere det skal være plass til. ", + "type": "product", + "parent": "8a144c25-06a3-4dcf-a294-ab601b7967d1", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "6824aa4a-6f6b-4eaf-ba6f-ca6f403dc817", + "title": "Status", + "description": "Det skal gis bekreftelse på at utstillerarealet er reservert. ", + "type": "product", + "parent": "8a144c25-06a3-4dcf-a294-ab601b7967d1", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "cb94bb65-86a4-4a21-bae9-b6048d77c01a", + "title": "Tilgjengelighet", + "description": "Angi behovet for tilgjengelighet eller universell utforming for utstillerarealet. ", + "type": "product", + "parent": "8a144c25-06a3-4dcf-a294-ab601b7967d1", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "22404106-41d6-4f8e-a4d0-af88446becca", + "title": "Navn", + "description": "Angi navn på ansvarlig person for utstillerarealet. ", + "type": "product", + "parent": "8a144c25-06a3-4dcf-a294-ab601b7967d1", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "5ba2d923-e2a4-45d0-8109-9d3448766512", + "title": "Dato", + "description": "Angi dato for når utstillerarealet skal benyttes. ", + "type": "product", + "parent": "8a144c25-06a3-4dcf-a294-ab601b7967d1", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "9d031b02-2a9d-4be1-ac73-a16482febfb8", + "title": "Klokkeslett", + "description": "Angi klokkeslett for når utstillerarealet skal benyttes. ", + "type": "product", + "parent": "8a144c25-06a3-4dcf-a294-ab601b7967d1", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "57c51b04-9f65-431c-8e09-d5c3ff019c88", + "title": "Standard konferanseteknikk/AV-utstyr", + "description": "Angi behovet for teknisk utstyr i utstillerarealet. ", + "type": "product", + "parent": "8a144c25-06a3-4dcf-a294-ab601b7967d1", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "3556eaf5-aed7-45b2-9267-f3c2231a3279", + "title": "Oppsett av lokale", + "description": "Angi ønsket behov for oppsett av utstillerarealet. ", + "type": "product", + "parent": "8a144c25-06a3-4dcf-a294-ab601b7967d1", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "ff7676e4-cd9f-4cf7-8de3-b8d99aafc999", + "title": "Omrigg", + "description": "Angi behov for endring i oppsett av utstillerarealet underveis i arrangementet. ", + "type": "product", + "parent": "8a144c25-06a3-4dcf-a294-ab601b7967d1", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "08e08c4a-a5c7-4027-92f2-f46275871d72", + "title": "Tekniker", + "description": "Angi behov for å ha tekniker tilstede under hele eller deler av arrangementet. ", + "type": "product", + "parent": "8a144c25-06a3-4dcf-a294-ab601b7967d1", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "a4869f9b-3248-41a7-98d8-449d74a93b9c", + "title": "Kvalitet/standard", + "description": "Angi ønsket minimumsstandard for utstillerarealet. ", + "type": "product", + "parent": "8a144c25-06a3-4dcf-a294-ab601b7967d1", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "d448b2ad-c7d6-468a-9d74-6be3fc2f1e6e", + "title": "Innrigg", + "description": "Angi behov for innrigg, for eksempel dekor eller profilering kvelden før/morgenen før start av arrangementet. ", + "type": "product", + "parent": "8a144c25-06a3-4dcf-a294-ab601b7967d1", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "5ac7a071-b5ac-4518-8e2a-21618a076fc9", + "title": "Servering", + "description": "Angi behov for servering i tilknytning til arrangementet. ", + "type": "product", + "parent": "8a144c25-06a3-4dcf-a294-ab601b7967d1", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "3c3dd2e0-fdd7-4245-8f66-187ce5ebecf9", + "title": "Rom", + "description": "", + "parent": "", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "60bf3d82-6e8c-4974-bd4a-66b90a49233d", + "title": "Dobbeltrom", + "description": "", + "parent": "3c3dd2e0-fdd7-4245-8f66-187ce5ebecf9", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "4e327286-33a0-402b-b16e-e578d1192434", + "title": "Enkeltrom", + "description": "", + "parent": "3c3dd2e0-fdd7-4245-8f66-187ce5ebecf9", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "09adb798-f9c8-4446-9058-eab4c2068e91", + "title": "Twin-rom", + "description": "", + "parent": "3c3dd2e0-fdd7-4245-8f66-187ce5ebecf9", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "6c66a44d-abb6-40f2-ae87-3900c21629a8", + "title": "3-sengsrom", + "description": "", + "parent": "3c3dd2e0-fdd7-4245-8f66-187ce5ebecf9", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "01637bb0-b5de-4264-972e-50933536d1fd", + "title": "Familierom", + "description": "", + "parent": "3c3dd2e0-fdd7-4245-8f66-187ce5ebecf9", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "3337a989-04a1-4a2f-bb16-ee849df81b83", + "title": "Juniorsuite", + "description": "", + "parent": "3c3dd2e0-fdd7-4245-8f66-187ce5ebecf9", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "ba15a975-695a-4c3f-b33f-558c08610280", + "title": "Suite", + "description": "", + "parent": "3c3dd2e0-fdd7-4245-8f66-187ce5ebecf9", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "7120ab97-3451-4955-8989-b0b82b26a59d", + "title": "Standard innvendig lugar", + "description": "", + "parent": "", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "9c47622b-2463-441e-afc1-0b12554cc4be", + "title": "Standard lugar med havutsikt", + "description": "", + "parent": "", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "287cb3ef-4912-4f26-ab90-e8935958cf9f", + "title": "Suite lugar innvendig", + "description": "", + "parent": "", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "df9e7132-fd8f-41c8-a1fc-2b50d6286d89", + "title": "Suite lugar med havutsikt", + "description": "", + "parent": "", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "d32258f6-992b-4615-b9a7-71f6f34cb2af", + "title": "Frokost", + "description": "", + "parent": "", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "37a62541-2359-419e-ba90-1f06ad614f33", + "title": "Lunsj", + "description": "", + "parent": "", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "d0208128-40ef-4bb7-b93a-217ed0970860", + "title": "Middag", + "description": "", + "parent": "", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "907777b3-d684-4280-b983-f4dcf66f91b6", + "title": "Pausemat", + "description": "", + "parent": "", + "type": "product", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "95f93aea-0f1c-4785-912f-9c6317157303", + "title": "test testesen", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce2", + "sourceRel": null, + "deletedDate": "2022-06-15T06:37:46.083Z" + }, + { + "id": "f43e20a0-052b-45d8-837f-fa430dc5fd81", + "title": "dsfsd", + "description": "fsd", + "type": "product", + "parent": "", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce2", + "sourceRel": null, + "deletedDate": "2022-06-15T06:40:01.991Z" + }, + { + "id": "07ea2aed-dd2c-4f17-8500-355860b17b6b", + "title": "saaa", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce2", + "sourceRel": null, + "deletedDate": "2022-06-15T06:40:06.635Z" + }, + { + "id": "23484e23-8114-4817-a580-1a6805f48532", + "title": "testt", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce2", + "sourceRel": null, + "deletedDate": "2022-06-15T06:44:02.245Z" + }, + { + "id": "0201d818-91bb-405f-bade-f204e511f15e", + "title": "trdt", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce2", + "sourceRel": null, + "deletedDate": "2022-06-15T06:49:20.657Z" + }, + { + "id": "6785c561-4c72-43ee-bf32-b8842cdeffe3", + "title": "test", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce2", + "sourceRel": null, + "deletedDate": "2022-06-15T06:57:55.925Z" + } + ], + "codelist": [ + { + "id": "13b119a0-a987-44af-baee-9fe10a9d0873", + "title": "Tilbudets språk", + "description": "Angi hvilket språk tilbudet skal leveres på", + "codes": [ + { + "id": "6c80ac68-a6ba-4cf1-b053-7503993ccc1f", + "title": "Norsk", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "d44377d5-379f-4d7c-b3de-117cbf83c69b", + "title": "Nordisk", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "1aede443-674b-43ab-8191-d6abdab63a2b", + "title": "Engelsk", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "7c2933d0-f0d7-499d-9e01-511722b33665", + "title": "Norsk", + "description": "Standardinnstilling", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "4c473a4d-82a5-477c-a469-ac595cc5fbcf", + "title": "Engelsk", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "ef491ecb-a816-4dba-a37f-cd63295460de", + "title": "Formål", + "description": "Beskriv formål eller type arrangement", + "codes": [ + { + "id": "4c4bead9-41cd-4df2-9380-1fc9c07c3dc6", + "title": "Kongress", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "5942cd33-d5fe-409c-b491-850a411e2c58", + "title": "Konferanse", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "705098de-78c7-49e5-909c-6bd64bce0339", + "title": "Dagmøte", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "046419ad-5e93-46cb-9e4f-e20b9b843843", + "title": "Teambuilding", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "7044155a-35e9-4a9a-acd6-26e914a908b4", + "title": "Kick-off/oppstartsmøte", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "51b1d912-06c5-45c6-8d0e-ecbd2f073264", + "title": "Lansering", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "7d3caa8a-e7b6-459c-b705-55c6f0371878", + "title": "Workshop", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "fae31a63-20bf-468c-9084-3084b46af929", + "title": "Årsfest/samling", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "45153d7c-1267-479a-bfdd-27bd7e3d75cd", + "title": "Møteserie", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "87315c05-50b7-4afa-8319-69b807bf8233", + "title": "Profilkonkurranse VIP", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "4692cb50-24ce-4ff7-99b0-9962789b6e1f", + "title": "Kongress", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "c7efd144-c49f-47a2-9d2f-5ef2b26f13d0", + "title": "Konferanse", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "fd23a637-1052-4283-a196-089d5f59dcae", + "title": "Internt møte", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "4fd04a5b-c8b2-4a3b-a20e-997ecce11819", + "title": "Møte (dagtid)", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "8382e28a-70ff-4b05-9274-38776bbf5f7a", + "title": "Representasjon", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "f904b92b-80fa-4c84-8f44-c220cba20172", + "title": "Teambuilding", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "7437445c-4897-4d4d-b993-da84112b4f4a", + "title": "Kick-off", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "e9052bbe-a9d4-4f20-812f-87a799c9b101", + "title": "Lansering", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "7b88458d-bd99-4b9c-99de-15b9f10d217f", + "title": "Workshop", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "09142d96-db3a-4590-8b66-4b4fd6dfba03", + "title": "Årssamling", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "0a3612a6-5e9d-422b-b4d5-840405ee8bc8", + "title": "Møteserie", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "55f0fae6-9c03-490c-b5b9-984f9e1fd493", + "title": "Møte med middag", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "d91a39f4-6426-491a-8feb-8151302d3d9a", + "title": "Møte med overnatting", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "ce330cd2-d739-4ec9-9b95-c4e5c484fd9d", + "title": "Lunsj til lunsj", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "01438963-afb1-49dc-9f65-f2ee5a96db3a", + "title": "Opplæring/intern kursing", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "d12dd048-b3de-4b04-8296-38e83b6b22ac", + "title": "Utstilling", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "be2e7a99-a6db-416c-9fed-0236d15ed37d", + "title": "Lansering", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "7fbff469-29cf-4e2b-8488-0480c98b9898", + "title": "Faglig seminar", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "b0b9509e-bcf2-453c-8a6e-80c79442baab", + "title": "Konferanseteknikk/AV-utstyr", + "description": "Standard AV-utstyr/konferanseteknikk inkluderer wifi, lyd og bilde. Annet spesifiseres som tillegg.", + "codes": [ + { + "id": "86e31971-73eb-43b2-94c7-65cf692b8ba4", + "title": "Trådløs mikrofon", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "bcd9f829-48a2-453b-8c65-4055a8025718", + "title": "Tradisjonell mikrofon", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "77450ff2-43a8-4998-98e2-1c19ad85d659", + "title": "Lyd forsterker", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "550300ca-fc1a-40f3-a7fd-3dfe0c31673b", + "title": "Mikser", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "4a695437-eae0-4e1f-b5a0-16039b17252c", + "title": "Prosjektor", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "083f26ec-9f11-4b24-a7d7-cbdd31d6d239", + "title": "Overgang(VGA-HDMI)", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "ca9ff3ea-7844-4b78-b7a3-27a415a13bd8", + "title": "Whiteboard", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "b02d28ab-677a-4d87-acd6-b7c86e6f451d", + "title": "Streaming", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "87920962-8325-438f-b22b-fb3870ba44b0", + "title": "Trådløs høyttaler", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "6345556c-7f1e-4996-b3f4-4f7bf995e6e7", + "title": "Konferansetelefon", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "34eb82d7-0b09-4f32-abe6-da4deb32c3dd", + "title": "Lyskaster", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "cc4f1cbf-8abe-4407-a684-09a116718da5", + "title": "Stemningsbelysning", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "8e126ca8-eff6-4bf0-ab85-ed3313b09908", + "title": "Talerstol", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "d7164d68-98f1-41b2-93cd-b26cd20518d7", + "title": "Skjermer", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "d3b4bf14-4f48-4517-b0fc-c3af6ff58799", + "title": "PC", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "6724528b-3682-4794-b793-150816248cee", + "title": "Mikrofon/mygg", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "816890d6-dc04-42a3-9299-c71fdbb0f132", + "title": "Mikrofon, håndholdt", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "db5566b3-72d2-435c-97cf-8ab8b9db97d8", + "title": "Lydforsterkere", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "2098c69e-6b2d-4390-b59d-9b355d1b57c0", + "title": "Miksere", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "1303ca74-15ae-4437-9e37-888aa7c8361c", + "title": "Prosjektor/storskjerm", + "description": "God oppløsning", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "43bbdd69-6e40-4960-966b-b1ff8998d271", + "title": "Overganger", + "description": "VGA-HDMI, display port", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "99ede0ca-cb95-4af0-963a-188433995326", + "title": "Flipover/whiteboard", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "b421974d-2314-4554-9755-ba6622dff39d", + "title": "Streamingmuligheter", + "description": "Kamera, m.m.", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "baf785fb-fafc-414a-bba4-a607cbddd936", + "title": "Teknisk assistanse", + "description": "Ved behov. Ikke tilstedeværelse gjennom hele arrangementet. ", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "989b4f6f-3cf7-4ef6-978b-f6367a79a64d", + "title": "Høytaler", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "baee1879-b786-477c-9e92-d997ab87e470", + "title": "Konferansetelefon", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "ca06056e-d8d3-4f1c-a19b-9b1d9e3476a4", + "title": "Lyskastere", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "cf30932f-4475-4563-9782-dda345341429", + "title": "Spotlight", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "aaa2074c-543e-4a2b-9dd4-4080017df258", + "title": "Stemningsbelysning", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "9e7ed6c3-9ea3-4551-9a60-c031f0a11bde", + "title": "Talerstol", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "862b1ba2-98e5-4ba4-a7b2-a9703163773b", + "title": "Tilgang til skjermer", + "description": "Grupperom A-C", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "ab7d833f-216c-4c30-baab-8292d7429182", + "title": "Tilgang til PC-innganger", + "description": "Grupperom A-C", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "aaf8db1a-1435-46bd-bb1d-2fb9f15f334f", + "title": "Tilgang til lydkilder", + "description": "Grupperom A-C", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "05f6f525-9c44-41c2-a967-85177ad433b2", + "title": "Leie av PC", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "fd258ab0-c8ec-4eb4-bb79-d9ab0dddc596", + "title": "Web-kamera", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "95670605-95b1-4657-a342-8ef7be910931", + "title": "Allergener", + "description": "", + "codes": [ + { + "id": "3192cc48-76a0-499f-a74e-90996dcf9d9a", + "title": "Glutenholdig korn", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "43636d36-11c0-4ce0-af43-85e3399cdabd", + "title": "Skalldyr", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "f67878f0-16e6-4be5-a336-a2a88f79ae7b", + "title": "Egg", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "e91dd913-95f1-4d7a-823d-6b414ee9a4b5", + "title": "Fisk", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "711b6ccb-bd3d-4e04-9a04-77f7d47c8022", + "title": "Peanøtter", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "14bba7a4-5ce6-47ce-9ca4-0318e6cb62ef", + "title": "Soya", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "39b7b38f-74b9-421e-ad92-52a23005e9a5", + "title": "Melk(laktose)", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "d0d089ef-0d24-4f78-ad5e-8964a25a98a0", + "title": "Nøtter", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "697d85f2-c6ef-49af-8e34-00c5d43c3ee2", + "title": "Selleri", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "bb8fd9bd-e42b-4505-9a6d-28a130439c78", + "title": "Sennep", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "0b95113d-6ea1-49a1-abb7-853b9ee1aa56", + "title": "Sesamfrø", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "02e7a40e-c91a-4226-a6d6-667d6565364c", + "title": "Svoveldioksid og sulfitt", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "40617761-3e2e-4a3c-a66d-ddd7a0d44b12", + "title": "Lupin", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "a09e6731-9c41-464a-9d93-e8d3abd77447", + "title": "Bløtdyr", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "d13905f3-6603-4eb3-beb3-3fa54a544dee", + "title": "Gluten", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "c716e9b1-de01-4e86-877c-a52978a33d2e", + "title": "Skalldyr", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "afcf3ac6-10da-46a7-a73f-d5fa3bc94254", + "title": "Egg", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "cee72083-3a68-4716-b82b-8c87dffe7d5f", + "title": "Fisk", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "7608cb62-ff14-447e-86e6-28e9e2d0fce0", + "title": "Nøtter", + "description": "Spesifiser hvilke nøtter det gjelder.", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "263af7cf-b5cf-4c36-b38e-c50767a529db", + "title": "Soya", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "67f4c8e8-c618-4566-a75f-69eab64488d7", + "title": "Melk", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "24e3ba70-f324-4d65-a285-cfee8e3a28e5", + "title": "Laktose", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "9896dc71-e6a9-4ef6-ad1f-9ec5c0db93dc", + "title": "Selleri", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "36829f09-e1e1-457d-b267-72fa80db2b36", + "title": "Sennep", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "ec09e7e4-51ae-4026-a7cf-bbeb29bf1468", + "title": "Sesamfrø", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "d24afad5-52fb-419c-b0b8-4f05ccdcee37", + "title": "Svoveldioksid og sulfitter", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "50dbce6e-4b7c-444c-ae58-e7890172961b", + "title": "Lupin", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "2c5ce0b6-22e8-4c6a-8369-b4c5c5284b27", + "title": "Bløtdyr", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "f2f98363-79c0-4b9d-b26f-16687af69b06", + "title": "Frokost", + "description": "Velg ønsket frokost.", + "codes": [ + { + "id": "88e65b9b-6598-44f6-9745-a694ea5d7f03", + "title": "Frokost-buffet", + "description": "", + "type": "code", + "parent": "", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "b77af015-dd37-4844-919e-03f1454085e2", + "title": "Engelsk frokost", + "description": "", + "type": "code", + "parent": "", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "574e3302-4c0d-4711-bdbc-ecbb942db29e", + "title": "Amerikansk frokost", + "description": "", + "type": "code", + "parent": "", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "ad3cd55b-a51f-46ea-9f27-1a54f6ad5c8d", + "title": "Kontinental frokost", + "description": "", + "type": "code", + "parent": "", + "sourceOriginal": null, + "sourceRel": null + } + ], + "type": "codelist", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "8d5de8e2-da25-4eeb-92ad-f3d214a4ec1d", + "title": "Lunsj", + "description": "Velg ønsket lunsj.", + "codes": [ + { + "id": "abf6d89d-2802-477e-a3be-1eb762fc0cae", + "title": "Lunsj buffet", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "9b60a48c-52ac-493c-85cd-e0b0ec521e5e", + "title": "2-retters lunsj", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "9e3b4d35-8250-472e-9522-b525edd2d55b", + "title": "3-retters lunsj", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "acf45f1d-7542-4f84-8e1a-54164c886446", + "title": "Alkoholfri drikke", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "3ad929ac-436a-4740-9128-251057b884db", + "title": "Mineralvann", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "607fa31f-1c23-48b5-9111-2f58cae78bc4", + "title": "Kaffe", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "9d4c3eb2-db0e-48bb-a701-091eee29a954", + "title": "Te", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "eb818e24-9526-4cd8-b1de-d6e498b1ed0f", + "title": "Vegetar", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "1f8ffc9e-b08b-4637-b5d2-3166d25b2dc3", + "title": "Vegansk", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "0ba084f6-4921-4daa-be9b-7b51eb18b656", + "title": "Økologisk", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "a1cf049d-5f9e-404f-8fe7-f79da9b6c306", + "title": "Tapas", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "2c374452-c964-4986-81cf-eb87f5398f39", + "title": "Lunsj-buffet", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "ea98ff4d-2b52-4d62-bd18-3ab56325150e", + "title": "2-retters", + "description": "Forrett og hovedrett", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "1bbfd9ed-4f99-41cf-873f-5b92a1874c51", + "title": "3-retters", + "description": "Forrett, hovedrett og dessert", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "20f4a5d9-a247-438e-ab61-82caf9371745", + "title": "Alkoholfri drikke", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "2b90afc1-1d75-485a-8774-47e7d6e42765", + "title": "Mineralvann", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "3b4c6637-915c-49a0-8a1c-bbad956e2db8", + "title": "Kaffe/te", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "a1bc74d9-9c33-4be9-bb5d-1c395a0b7461", + "title": "Vegetarmat", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "107dfa3d-eee2-4799-ae4e-7444580fbc06", + "title": "Vegansk mat", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "d8e97c68-a9da-45f7-a835-e392890f5c90", + "title": "Økologisk mat", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "dc352b1c-9db8-4df4-aa5f-268ccd8dfbbe", + "title": "Fingermat/tapas", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "01d3ed35-8bf0-4d0f-8119-4b8e149daeb1", + "title": "Middag", + "description": "Velg ønsket alternativ til middag.", + "codes": [ + { + "id": "ae93cdd5-2054-42e6-b861-b4d962c0933d", + "title": "Middags buffet", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "973031b0-2f3a-43b3-9dae-f9fe5dddf59d", + "title": "2-retters middag", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "08b63d3f-4387-47d1-970b-c5339c5693c0", + "title": "3-retters middag", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "6a679945-e679-4b17-9269-82dae32f0ae4", + "title": "5-retters middag", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "2aad43f0-ca33-42f3-a037-a7c2d32f2eb0", + "title": "Alkoholfri drikke", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "1a259a0e-ea96-4bff-a5c6-60fa5bd95bae", + "title": "Mineralvann", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "36dd7357-4dd4-4708-a8f2-9fb591cc3e60", + "title": "Kaffe", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "0951e3ca-c46a-455f-9e9c-390db9cf4971", + "title": "Te", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "d99fbcb3-d2c2-46b4-ae72-80f1e23bc212", + "title": "Vegetar", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "1943b7c2-4bd7-4045-a41b-00cd3cd368dc", + "title": "Vegansk", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "2b078d69-3416-4bbb-8dfd-31084766464d", + "title": "Økologisk", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "5c665b48-655b-4289-b25e-3b2e766dc727", + "title": "Tapas", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "7faebacd-4ad3-4f8d-9929-89242dc70eff", + "title": "Buffet", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "df280749-42f5-4242-a401-248e436f29e2", + "title": "2-retters", + "description": "Forrett og hovedrett", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "e204f48a-7422-42d5-ac28-ee25e9447972", + "title": "3-retters", + "description": "Forrett, hovedrett og dessert.", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "85c32bf3-1664-434d-a93b-61aa597de6e1", + "title": "5-retters", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "d52a55be-40d5-4cc8-a0a0-d6d52965c674", + "title": "Alkoholfri drikke", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "b7aa6fbd-121f-434a-9380-416b029622f7", + "title": "Øl/vin/apertif/café avec", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "9a7e1706-e0dc-4de5-be06-bfb988752dfc", + "title": "Vegetarmat", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "06902696-4fd9-4453-ab17-6d56a0029f91", + "title": "Vegansk mat", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "c93faf06-98d0-48d9-b498-54233d3e1e88", + "title": "Økologisk mat", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "c41ce4ca-3985-4e3d-9212-8b2425c8edf6", + "title": "Fingermat/tapas", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "e8f38160-90a5-4aa4-aeff-5a10a52ca905", + "title": "Tilpasset matregler knyttet til religion", + "description": "Kosher, halal, m.m.", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "f5ec09bf-9e0d-4143-8362-3fbbe41aaf4c", + "title": "Møtemat/pausemat", + "description": "Forfriskninger til møter/pauser", + "codes": [ + { + "id": "718cfcce-7121-4201-b2aa-2f214bafe114", + "title": "Smoothie", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "48a0bb4a-9993-4e4d-930f-4e10f718059a", + "title": "Mineralvann", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "15ad6eff-1c75-45a6-88ed-61fa54bd0294", + "title": "Nøtter", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "27a2011a-6640-492b-823b-f0c61ff2892a", + "title": "Wraps", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "2b155664-7d8b-44cc-851d-bed6d026fb62", + "title": "Smørbrød", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "01163c8a-17bc-4ca8-8d87-beb4db7167d6", + "title": "Kaffe", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "88102cc1-e576-4ea0-af6a-0d7d43fa6b0f", + "title": "Te", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "a5100b16-162b-4426-ac93-8cc53b7a8368", + "title": "Bakst", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "1f533bc5-23b8-40fe-852f-a2e4eb980f2e", + "title": "Tapas", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "ecb1de8a-07e9-42ed-9613-5684144070a0", + "title": "Smoothie", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "d7b76c58-a5a4-4c2b-9a46-b1eae8f4c8c8", + "title": "Mineralvann", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "03736ea3-f236-4029-bb53-eca9485708c1", + "title": "Nøtter", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "f13788a9-8e53-4e9a-b925-7d91e3b6fb91", + "title": "Wraps", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "d50a0f74-607f-4651-9f04-586280ef1f44", + "title": "Smørbrød", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "aa11db19-7225-4cdd-ad64-10b29cf21027", + "title": "Kaffe/te", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "f0d38be7-07d7-4204-9bfb-67789174bcae", + "title": "Kake/bakst", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "dd77e53d-7420-42a4-97eb-4bf6b0a02f93", + "title": "Fingermat/tapas", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "9b2bf47f-dd51-4ddd-88eb-ef94f7e31d8e", + "title": "Tilgjengelighet", + "description": "Tilrettelegging ved funksjonsnedsettelse.", + "codes": [ + { + "id": "cd936431-fca6-4afb-981f-d0a8b6a86908", + "title": "Bevegelse", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "e9cf0496-72d4-4090-9d54-cf908715a697", + "title": "Syn", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "cc56751f-84a6-42cc-8e0c-5b115e669a8e", + "title": "Hørsel", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "ab4e3b15-5043-480d-bc33-721ffb95c4e9", + "title": "Tale", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "408095f6-57f5-44df-b222-d581a2cf79e1", + "title": "Teleslynge", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "7bf393cc-aa99-40f8-bee8-072fd171b25a", + "title": "Bevegelse", + "description": "Tilrettelegging for individer med begrensninger knyttet til bevegelse og forflytning. Det kan for eksempel omhandle tilrettelegging for mennesker i rullestol og reserverte parkeringsplasser.", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "1c25adc6-3352-41c6-b813-c609830033e6", + "title": "Syn", + "description": "Tilrettelegging for mennesker med svekket synsfunksjon.", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "339ab873-4651-435b-b1e8-619c1ad50c17", + "title": "Hørsel", + "description": "Tilrettelegging for mennesker med nedsatt hørsel.", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "f879365d-01de-4248-9c4a-bc0dde5ed93b", + "title": "Tale", + "description": "Tilrettelegging for mennesker med nedsatt taleevne.", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "d4945300-117f-4c52-b007-7d979df69108", + "title": "Teleslynge ", + "description": "Gjør det mulig for lydsignal fra mikrofon eller annen elektronisk lydkilde å bli fanget opp av et høreapparat.", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "23a8d763-b269-4157-a607-9a1518691307", + "title": "Brannvarsling for døve", + "description": "A-C", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "e240c6a7-e948-463b-94ab-4b6ca642a70d", + "title": "Parkering", + "description": "", + "codes": [ + { + "id": "1affc1fb-52e3-4c4b-9e88-405723f9bf7c", + "title": "Gratis parkering på tomt", + "description": "", + "type": "code", + "parent": "", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "0ff41004-678e-4f29-9b30-179618c4e227", + "title": "Gratis parkering i eget parkeringshus", + "description": "", + "type": "code", + "parent": "", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "b045ae6c-0af4-47e3-8e47-bf0e5cc26e66", + "title": "Gratis parkering på offentlig sted utendørs", + "description": "", + "type": "code", + "parent": "", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "a3b0af58-765e-4ca2-878f-21d6b9c8c4bb", + "title": "Gratis gateparkering", + "description": "", + "type": "code", + "parent": "", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "8ca4befa-dd87-421a-bd56-f2fac0b31052", + "title": "Gratis EL-bil parkering", + "description": "", + "type": "code", + "parent": "", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "5c215d92-0b3b-4370-8e12-c93d5456c2dd", + "title": "Betalt parkering i parkeringshus", + "description": "", + "type": "code", + "parent": "", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "66cb3dfa-874e-4d15-968c-44bcb00f8d10", + "title": "Betalt parkering på offentlig sted utendørs", + "description": "", + "type": "code", + "parent": "", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "33530731-bfee-4cfe-9394-45abd4018c59", + "title": "Betalt gateparkering", + "description": "", + "type": "code", + "parent": "", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "ad3df5d9-583d-4684-ba22-8b95fe743b7e", + "title": "Betalt EL-bil parkering", + "description": "", + "type": "code", + "parent": "", + "sourceOriginal": null, + "sourceRel": null + } + ], + "type": "codelist", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "78f0af2f-065c-49e0-8083-24c84dca791e", + "title": "Romoppsett", + "description": "Velg ønsket type rom til arrangementet", + "codes": [ + { + "id": "3dd0eb6d-fced-4bf4-8f3a-9ec195a7fd33", + "title": "Klasserom", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "bda65d03-c0d5-424f-9022-57eeea9ba951", + "title": "Grupperom", + "description": "3-6 personer", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "707743c3-3ba2-4993-bb91-8a43bf20dfa1", + "title": "Grupperom", + "description": "7-12 personer", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "92292bb2-03f2-4cc6-959c-8be78671c8ce", + "title": "Konferanserom", + "description": "Hestesko/U-form", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "53de35a9-e995-4e88-af3f-0e5ed5ba926f", + "title": "T-bord", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "3f6fb907-9dba-42f3-ac45-90f20f802489", + "title": "Kinosal", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "f1079500-e073-42c2-800b-ee688fdcf9fb", + "title": "Styreoppsett/langbord", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "55bba453-9deb-4e77-b49c-33c481f4b032", + "title": "Grupperom", + "description": "Rundt bord", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "3811e5a9-cf76-4112-ad0f-487bdc79b360", + "title": "Delplenum", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "ddd75c90-1347-446b-a86c-667e377c9759", + "title": "Kafébord", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "e9e98713-b1ad-42e4-8b97-64f06397ffa9", + "title": "Scene", + "description": "A-C. Beskriv ønsket størrelse. ", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "d0f36f70-2440-4ec2-9068-35dabc99a6ff", + "title": "Geografisk plassering", + "description": "", + "codes": [ + { + "id": "830f07c4-f401-498a-a21f-ece269705322", + "title": "Oslo", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "74cb0c68-3e55-4f9a-a19f-c1c3319d7f3a", + "title": "Gardermoen", + "description": "", + "type": "code", + "sourceOriginal": null, + "sourceRel": null + } + ], + "type": "codelist", + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "febcf252-0e7c-4755-a3f1-b8d0e24070c2", + "title": "Standard til møterom/lokale", + "description": "Velg ønsket standard til møterom/lokale", + "codes": [ + { + "id": "22346093-d09b-4f15-a53d-44d69938e071", + "title": "Lav standard", + "description": "Lokale med enkel romstandard. Ikke/delvis tilgjengelig kursvert/vertinne. Begrenset tilgang til teknisk utstyr.", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "0d84078c-6cb1-4c3c-af76-dd34731aad99", + "title": "Middels standard", + "description": "Lokale med god standard, lysforhold og ventilasjon. Servering av alle måltider i egne eller nærliggende lokaler. Standard teknisk utstyr, samt tilgjengelig kursvert/vertinne. for deler av arrangementet.", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "ca84ef78-0ddd-4416-8ba0-0d0909aa18c6", + "title": "Høy standard", + "description": "Lokale med meget god standard, lysforhold, ventilasjon og utsikt. Wifi er inkludert og avansert teknisk utstyr er tilgjengelig for bruk. Alle måltider tilbys i egen restaurant. Tilgjengelig kursvert/vertinne under hele arrangementet.", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "ee7b5b2c-89a1-42cb-94d4-483cce484f37", + "title": "Høy standard +", + "description": "Lokale med svært høy kvalitet, lysforhold, ventilasjon og utsikt. Wifi er inkludert og teknisk utstyr skal være tilgjengelig. Alle måltider tilbys i egen restaurant. Tilgang til fellesareal og møterom. Høy grad av serviceytelser med tilgjengelig kursvert/vertinne under hele arrangementet. ", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "05b6ce85-a82b-4869-ab61-b01b48d6a968", + "title": "Historisk", + "description": "Legg inn beskrivelse", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null + }, + { + "id": "5dea41f6-5bc0-4b26-bd23-44d037bef0a6", + "title": "Standard til hotellrom/overnatting", + "description": "Velg ønsket standard på hotellrom/rom for overnatting", + "codes": [ + { + "id": "0599bd4e-6e40-4bfc-a252-5e0172078aba", + "title": "Lav standard/DNT-standard", + "description": "Enkel romstandard. Felles dusj og toalett. Enkel servering. ", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "f0bd1276-01a7-4434-93b8-ccffa4e10a1b", + "title": "Middels standard", + "description": "God romstandard. TV, skrivebord, egen dusj og toalett. ", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "2190abe9-fd9a-4ac2-92ba-97609df7c00e", + "title": "Høy standard", + "description": "Meget god romstandard med full service. TV, skrivebord, egen dusj og toalett. Inkluderer middag på à la carte restaurant. Wifi på rommet. Døgnåpen resepsjon. ", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "ed7673c9-a1c7-4957-9822-0486a8413e8b", + "title": "Høy standard +", + "description": "Svært god romstandard med full service. Romstandard og fellesarealer av høy kvalitet. 24-timers room-service og resepsjon. Alle måltider tilbys i egen restaurant. Inkludert lunsj og middag i à la carte restaurant. Innendørs svømmebasseng, spa, treningssenter inkludert uten ekstra kostnad. ", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null + }, + { + "id": "de614230-af6f-4859-8176-9760ee0234f2", + "title": "Standard på servering (meny)", + "description": "Velg ønsket meny", + "codes": [ + { + "id": "bd294866-eb58-45cc-bdd5-ab154d3a18e4", + "title": "Ordinær meny", + "description": "Stedets vanlige meny.", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "120f5e7f-04c3-45a0-9033-df00ec32c911", + "title": "Oppgradert meny", + "description": "Meny tilpasset arrangementet/sesong.", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "2dcc5458-25d4-4307-906a-bf7484e04d4d", + "title": "Festmeny", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "6dea154d-fe9f-4b53-b6f3-e6d77f4eaf1a", + "title": "2-retters", + "description": "Inkluderer forrett og hovedrett.", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "42ac171c-9936-428d-8b1b-74ecdb2a441c", + "title": "3-retters", + "description": "Inkluderer forrett, hovedrett og dessert. ", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null + }, + { + "id": "31748f47-df49-4d33-adb5-858a3d79013a", + "title": "Fysisk sikring", + "description": "Krav til bygningens sikkerhet.", + "codes": [ + { + "id": "849c2b68-f98f-40b0-8f22-558183e9bcc1", + "title": "Skuddsikre glass", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "6dc0c51a-1fa6-4a4c-a306-1ab51f187f8b", + "title": "Forsterkede vegger", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "62ac5c47-5f89-4894-808f-205c7d03204a", + "title": "Begrenset adkomst", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "5d08935c-9130-40ef-aba1-f7934853aafc", + "title": "Ekstra vakthold", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null + }, + { + "id": "8e3f6bea-469b-4e31-bc4e-5cea0d2c3d72", + "title": "Aktiviteter", + "description": "", + "codes": [ + { + "id": "e43df60a-a62e-44a6-b36d-a637b87bffe2", + "title": "Skisenter", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "22bb901e-08fd-47aa-b4b5-2e2fad96495c", + "title": "Sykkelbaner", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "61b2b1b8-f116-4f4c-99c8-137e3855d543", + "title": "Stier", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "9494565b-897d-4866-bc2e-72ef1390fc0a", + "title": "Kano", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "d5eaea12-3caa-4962-bd4a-149071bb86bd", + "title": "Robåter", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "309b7237-1ade-40fd-9008-25bebf17509b", + "title": "Pedalbåter", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "62b9610f-55ad-4671-be4d-dbd656e67bbe", + "title": "SUP", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "230124e9-43d1-4cf5-b060-fe80ea4e4954", + "title": "Minigolf", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "86c2f77e-7360-4323-b253-82dd39609706", + "title": "Ridning", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "39ae7d0a-279a-42c2-8fe0-6f0242be2778", + "title": "Fiskemuligheter", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "bd0ef16a-0000-42c4-ab90-0d3339feef21", + "title": "Shuffleboard", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "7d3fb958-5b15-4f07-9d63-1353e856d38b", + "title": "Bordtennis", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "73a161b6-3dc7-4dda-845e-4a55e7c89c07", + "title": "Klatring", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "65c4fe29-0c4d-46da-8917-28746e783022", + "title": "Mind-games", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "4e6ef14f-d045-447a-be89-2618c0a6483e", + "title": "Øl/vinsmaking", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "2795cb5c-1b27-4ef3-9209-c42fd2a86c7d", + "title": "Team-building (løyper)", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "55f2279a-d41f-4c1e-8241-8c22d515f289", + "title": "Yoga", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "70e02c8d-d9b0-4b2b-8e44-0afce65f4479", + "title": "Matkurs", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null + }, + { + "id": "1c478e69-3f84-4a82-9e62-f3be16f532d9", + "title": "Underholdning", + "description": "", + "codes": [ + { + "id": "ac4bcf47-0f52-4b01-afee-156e25b4decf", + "title": "Magiker", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "f5e4073b-b628-40ad-8988-2748d9136290", + "title": "Stand-up", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "c234da73-c64f-4b9e-b23f-84309f2c80fc", + "title": "Foredrag", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + }, + { + "id": "23b85e4a-7366-4e2e-9610-d419b2ed70e9", + "title": "Musikalsk innslag", + "description": "", + "type": "code", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "sourceRel": null + } + ], + "tags": [], + "inheritedBanks": [], + "publishedDate": null, + "version": 1, + "projectId": "4657069c-2893-4fde-b668-1cbf7cc03ce4", + "type": "bank", + "publications": [ + { + "id": "552401af-d142-45c4-901c-2b237ed0f0cd", + "bankId": "552401af-d142-45c4-901c-2b237ed0f0cd", + "comment": "Publiserer så det kanskje blir tilgjengelig i byggern.", + "date": "2022-05-06T10:47:01.342Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null + } + ], + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "91672d76-94a2-4f56-b19a-d8ce4c3125be", + "title": "Møbelkrav kriterieveivisere", + "description": "Krav og kriteriesett relatert til møbler i kriterieveiviseren", + "needs": [ + { + "id": "f4d91c1f-53c0-4b28-be6d-69f09f12fd30", + "title": "Produktgaranti", + "description": "Behov for produktgaranti", + "requirements": [ + { + "id": "850b4139-69fd-41a0-ad9f-b6044dc01c53", + "title": "Produktgaranti, basis", + "description": "", + "needId": "f4d91c1f-53c0-4b28-be6d-69f09f12fd30", + "type": "requirement", + "variants": [ + { + "id": "17fe10cc-eaf2-408d-a29a-8c16794209f8", + "requirementText": "Alle produkter som tilbys skal minimum ha 5 års garanti mot material- og produksjonsfeil fra tidspunktet for levering. Garantien skal være inkludert i produktprisen.", + "instruction": "Bør tas med som basiskrav", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "8b1e07bd-48ce-4aa2-b15d-322d5b309401", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "" + } + ], + "tags": [], + "sourceOriginal": "91672d76-94a2-4f56-b19a-d8ce4c3125be", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "91672d76-94a2-4f56-b19a-d8ce4c3125be", + "sourceRel": null + }, + { + "id": "5cb36889-e722-49f9-9831-1df3c8a41d44", + "title": "Robuste tekstiler", + "description": "Behov for robuste tekstiler", + "requirements": [ + { + "id": "3ff0f76a-2b90-441f-8614-42ded8dd2835", + "title": "Robuste tekstiler, basis", + "description": "", + "needId": "5cb36889-e722-49f9-9831-1df3c8a41d44", + "type": "requirement", + "variants": [ + { + "id": "74f97879-f015-461f-ba9b-d2ddee3d9037", + "requirementText": "Der møbeltrekket for polstrede/stoppede møbler inkluderer materialer som er basert på tekstilstoffer, skal de oppfylle kvalitetskrav til fargeektehet ved våtglidning iht. ISO 105 X12 på minimum angitte nivå", + "instruction": "Minimumsnivå bør være nivå 2-3 iht. ISO 105 X12. ", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "ec090df2-06b3-4cfb-9147-26570ac6f783", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10, + "step": 1, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "" + }, + { + "id": "4f86e33f-16e3-4526-a4de-8a5db228cb90", + "requirementText": "Der møbeltrekket for polstrede/stoppede møbler inkluderer materialer som er basert på tekstilstoffer, skal de oppfylle kvalitetskrav til fargeekthet ved tørrgnidning iht. ISO 105 X12 på minimum angitte nivå", + "instruction": "Minimumsnivå bør være nivå 4 iht. ISP 105 X12", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "f8612f0e-bbcc-427d-bc6c-3fb8a6c80fb2", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10, + "step": 1, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "" + } + ], + "tags": [], + "sourceOriginal": "91672d76-94a2-4f56-b19a-d8ce4c3125be", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "91672d76-94a2-4f56-b19a-d8ce4c3125be", + "sourceRel": null + } + ], + "codelist": [], + "products": [], + "publications": [ + { + "id": "dceebb36-ee79-4c14-9a83-6a2ab8bec6b0", + "bankId": "dceebb36-ee79-4c14-9a83-6a2ab8bec6b0", + "comment": "Testpublisering", + "date": "2022-04-27T13:41:03.811Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null + } + ], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "6f7400b9-f972-4938-a228-94c4e00de225", + "title": "Møterom og konferanser (Eva)", + "description": "PwC tester å lage et nytt kravsett", + "needs": [ + { + "id": "9f4e594c-5f96-43a2-8b91-2e94de0dc61e", + "title": "Overnattning", + "description": "Bruk dette alternativet dersom det er behov for overnatning i forbindelse med ditt arrangement", + "requirements": [ + { + "id": "53f313a9-936f-45ea-add8-5bd062b4515f", + "title": "Hotell", + "description": "", + "needId": "9f4e594c-5f96-43a2-8b91-2e94de0dc61e", + "type": "requirement", + "variants": [ + { + "id": "548454af-d769-41e4-a5b3-51eb636d6f79", + "requirementText": "Det er et krav av hotell skal ha frokost", + "instruction": "Du kan kun ha hotell med frokost", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "Hotell med frokost" + }, + { + "id": "451551ff-4177-4f44-9b4f-79f5d2277728", + "requirementText": "Dette er et enkeltrom", + "instruction": "Her er et enkeltrom", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [], + "type": "info", + "description": "Enkeltrom" + } + ], + "tags": [], + "sourceOriginal": "6f7400b9-f972-4938-a228-94c4e00de225", + "sourceRel": null + }, + { + "id": "227810bb-eefb-42ee-8283-ac7d8aeb8d13", + "title": "Enkeltrom (krav)", + "description": "", + "needId": "9f4e594c-5f96-43a2-8b91-2e94de0dc61e", + "type": "requirement", + "variants": [ + { + "id": "7c219437-0de7-47c3-9600-0cfaf3f25b46", + "requirementText": "Folk er voksne og vil ikke dele rom", + "instruction": "Her kan du velge enkeltrom", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "Krav om enkeltrom" + } + ], + "tags": [], + "sourceOriginal": "6f7400b9-f972-4938-a228-94c4e00de225", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "6f7400b9-f972-4938-a228-94c4e00de225", + "sourceRel": null + }, + { + "id": "2f69b366-8c00-4ccc-9887-3d33f4a38899", + "title": "Dobbeltrom", + "description": "Vi har behov for et dobbeltrom", + "requirements": [], + "type": "need", + "parent": "9f4e594c-5f96-43a2-8b91-2e94de0dc61e", + "sourceOriginal": "6f7400b9-f972-4938-a228-94c4e00de225", + "sourceRel": null + }, + { + "id": "99b6a8e1-dfff-492f-b11a-378dc8d2271a", + "title": "Enkeltrom", + "description": "Vi har behov for enkeltrom", + "requirements": [], + "type": "need", + "parent": "9f4e594c-5f96-43a2-8b91-2e94de0dc61e", + "sourceOriginal": "6f7400b9-f972-4938-a228-94c4e00de225", + "sourceRel": null + }, + { + "id": "51350e9e-37a3-4a10-b23e-f7a71ffd7c18", + "title": "Møterom", + "description": "Dette er en test, vet ikke om dette er riktig behov", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "6f7400b9-f972-4938-a228-94c4e00de225", + "sourceRel": null + }, + { + "id": "6e7107a1-1f1d-407b-861b-9fc28c5ac3ba", + "title": "Bespisning", + "description": "Møtedeltakerne må ha mat", + "requirements": [ + { + "id": "060f777e-7ff5-4528-b395-dd4f24fb7dd6", + "title": "Møtedeltagerne må ha middag", + "description": "", + "needId": "6e7107a1-1f1d-407b-861b-9fc28c5ac3ba", + "type": "requirement", + "variants": [ + { + "id": "cf1eda3f-4f36-4861-a147-d0e9d6459284", + "requirementText": "Møtedeltakerne må ha middag hver dag", + "instruction": "Her må du spesifisere hvor mange middager møtedeltakerne skal ha", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "f2b40de4-9994-4144-a983-7c29a5d9fa52", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Møtedeltakerne må ha middag" + } + ], + "tags": [], + "sourceOriginal": "6f7400b9-f972-4938-a228-94c4e00de225", + "sourceRel": null + }, + { + "id": "fc43544a-6186-49c8-aed8-3fcad67ba232", + "title": "Møtedeltakerne må ha lunsj", + "description": "", + "needId": "6e7107a1-1f1d-407b-861b-9fc28c5ac3ba", + "type": "requirement", + "variants": [ + { + "id": "b413d9be-06e1-4d7f-94e6-0c8ff1241ee5", + "requirementText": "Møtedeltakerne må ha lunsj", + "instruction": "Møtedeltakerne må ha lunsj", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "Møtedeltakerne må ha lunsj" + } + ], + "tags": [], + "sourceOriginal": "6f7400b9-f972-4938-a228-94c4e00de225", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "6f7400b9-f972-4938-a228-94c4e00de225", + "sourceRel": null + } + ], + "codelist": [], + "products": [], + "publications": [], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "title": "Raghad test project", + "description": "test for unit", + "needs": [ + { + "id": "687a5adb-771d-408e-9450-ce77219682a7", + "title": "Frukt", + "description": "", + "requirements": [ + { + "id": "b1ac0701-821e-4d7c-9a8d-f46624f0eec3", + "title": "Eple", + "description": "", + "needId": "687a5adb-771d-408e-9450-ce77219682a7", + "type": "requirement", + "variants": [ + { + "id": "bb99bcfb-973d-4f5b-9c5c-8e1660295a16", + "requirementText": "", + "instruction": "", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c8f39f9a-3d08-4741-8bd6-7c6a1c699404" + ], + "questions": [ + { + "id": "4f3cd09a-dbc0-4712-bd60-c40de2e33a91", + "type": "Q_CONFIRMATION", + "config": { + "pointsUnconfirmed": 0, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "info", + "description": "test" + } + ], + "tags": [], + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null + }, + { + "id": "2d67715a-1f22-46ed-88a3-1ac2d0eb11f7", + "title": "Antall epler", + "description": "", + "needId": "687a5adb-771d-408e-9450-ce77219682a7", + "type": "requirement", + "variants": [ + { + "id": "9a91bc7d-2acb-4f88-8f88-f0aa3002d6e2", + "requirementText": "", + "instruction": "Test veiledning til oppdragsgiver", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "c8f39f9a-3d08-4741-8bd6-7c6a1c699404" + ], + "questions": [ + { + "id": "c42e6f66-67ff-46e3-bc6a-d7d937a43890", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 5000, + "step": 1, + "unit": "Stk", + "defaultPoint": 1, + "scoreValues": [] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "test beskrivelse" + } + ], + "tags": [], + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null + }, + { + "id": "f2e0933b-664b-4005-96f4-6c570178e14a", + "title": "Benan", + "description": "", + "needId": "687a5adb-771d-408e-9450-ce77219682a7", + "type": "requirement", + "variants": [ + { + "id": "cb5b8a92-f97d-4482-b15b-399675cd7a7e", + "requirementText": " is simply dummy text of the printing and typesetting industry", + "instruction": " is simply dummy text of the printing and typesetting industry. Lorem", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "c8f39f9a-3d08-4741-8bd6-7c6a1c699404", + "73515fe6-e0a4-4a36-b992-a96401c49a49" + ], + "questions": [ + { + "id": "05f98619-0b43-4b49-a195-84ed0c12447d", + "type": "Q_TEXT", + "config": { + "max": 10000, + "discountValues": [], + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": " is simply dummy text of the printing and typesetting industry" + } + ], + "tags": [], + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null + }, + { + "id": "5f61ed9f-c65d-4610-ad39-76de699b21b6", + "title": "Test for varighet", + "description": "", + "needId": "687a5adb-771d-408e-9450-ce77219682a7", + "type": "requirement", + "variants": [ + { + "id": "2e92ab7b-13fc-462e-807b-e940b14cd82a", + "requirementText": " is simply dummy text of the printing and typesetting industry", + "instruction": " is simply dummy text of the printing and typesetting industry", + "useProduct": true, + "useSpesification": true, + "useQualification": false, + "products": [ + "c8f39f9a-3d08-4741-8bd6-7c6a1c699404", + "73515fe6-e0a4-4a36-b992-a96401c49a49" + ], + "questions": [ + { + "id": "5e406881-e5f9-45c2-ae7a-e26febf39b6a", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": true, + "periodMin": 0, + "periodMax": 1, + "duration": 0, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": " is simply dummy text of the printing and typesetting industry" + } + ], + "tags": [], + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null + }, + { + "id": "13534ce2-48eb-4195-8653-7302b1eff59b", + "title": "codes", + "description": "", + "needId": "687a5adb-771d-408e-9450-ce77219682a7", + "type": "requirement", + "variants": [ + { + "id": "ef8dfedb-53b9-45e6-ae9f-9c7496610f5b", + "requirementText": "sdasfdafcsafafassdasfdafcsafafas", + "instruction": "sdasfdafcsafafassdasfdafcsafafassdasfdafcsafafassdasfdafcsafafas", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "e89ca274-91dd-4739-b366-ba7eec2088a9", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "eeed3246-badc-4fe4-a4da-38948e9beecb", + "codes": [], + "defaultDiscount": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "discount": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Codes" + } + ], + "tags": [], + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "eeed3246-badc-4fe4-a4da-38948e9beecb", + "title": "Farger", + "description": "", + "codes": [ + { + "id": "947eb545-da7e-4dc4-9d72-bb347bd73d62", + "title": "Grønn", + "description": "", + "type": "code", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null, + "parent": "" + }, + { + "id": "d3800399-274c-4721-812c-4249149b02fa", + "title": "Gul", + "description": "", + "type": "code", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null, + "parent": "" + }, + { + "id": "86975f04-15f4-4240-b327-f438c0bfd3f1", + "title": "Rød", + "description": "", + "type": "code", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null, + "parent": "" + }, + { + "id": "2265a15a-9b06-476a-88c2-b24d25b2f5bf", + "title": "sdasfdafcsafafassdas", + "description": "sdasfdafcsafafassdasfdafcsafafassdasfdafcsafafassdasfdafcsafafas", + "type": "code", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null + } + ], + "products": [ + { + "id": "c8f39f9a-3d08-4741-8bd6-7c6a1c699404", + "title": "eple", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null, + "deletedDate": null, + "unit": "kg" + }, + { + "id": "73515fe6-e0a4-4a36-b992-a96401c49a49", + "title": "test", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "606e6b30-43cd-45d8-ac93-3178ad57956c", + "sourceRel": null, + "deletedDate": null, + "unit": "stk" + } + ], + "publications": [ + { + "id": "5e8cb931-cb90-49f7-a57c-43ea5ee515b0", + "bankId": "5e8cb931-cb90-49f7-a57c-43ea5ee515b0", + "comment": "Raghad version", + "date": "2022-09-19T11:10:53.766Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-09-19T11:15:54.401Z" + }, + { + "id": "034633b2-d904-4730-8543-9aaa93241c09", + "bankId": "034633b2-d904-4730-8543-9aaa93241c09", + "comment": "Raghad version", + "date": "2022-09-19T11:16:05.398Z", + "type": "publication", + "version": 2, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + }, + { + "id": "83b6cf12-079f-4da4-a39a-fd07e93b1fa7", + "bankId": "83b6cf12-079f-4da4-a39a-fd07e93b1fa7", + "comment": "Raghad version2", + "date": "2022-09-26T10:49:15.964Z", + "type": "publication", + "version": 3, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-09-26T10:49:46.184Z" + }, + { + "id": "f784920b-6b7d-48fd-a63a-52395057c4c5", + "bankId": "f784920b-6b7d-48fd-a63a-52395057c4c5", + "comment": "Raghad version", + "date": "2022-09-26T10:50:54.928Z", + "type": "publication", + "version": 4, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + }, + { + "id": "58c62b22-9e05-4bfc-80d5-113ff72345ea", + "bankId": "58c62b22-9e05-4bfc-80d5-113ff72345ea", + "comment": "Raghad version", + "date": "2022-09-29T07:00:47.081Z", + "type": "publication", + "version": 5, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + }, + { + "id": "54d013f1-8890-40e9-b66a-be4f96c17b95", + "bankId": "54d013f1-8890-40e9-b66a-be4f96c17b95", + "comment": "Raghad version- add codelist", + "date": "2022-10-04T10:23:27.396Z", + "type": "publication", + "version": 6, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-10-04T10:24:24.275Z" + }, + { + "id": "3cd8b1bf-1a3b-42cf-9fbd-07dabd4f7477", + "bankId": "3cd8b1bf-1a3b-42cf-9fbd-07dabd4f7477", + "comment": "Raghad version- add codelist", + "date": "2022-10-04T10:24:29.371Z", + "type": "publication", + "version": 7, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + }, + { + "id": "29adf1d8-2fe9-4ad4-b547-74296e530575", + "bankId": "29adf1d8-2fe9-4ad4-b547-74296e530575", + "comment": "Raghad version", + "date": "2022-11-18T13:27:29.699Z", + "type": "publication", + "version": 8, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + }, + { + "id": "06a93c6a-668e-4613-9535-9fc937550122", + "bankId": "06a93c6a-668e-4613-9535-9fc937550122", + "comment": "Raghad version", + "date": "2022-11-21T20:06:40.326Z", + "type": "publication", + "version": 9, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + }, + { + "id": "5e5caa97-aff8-4c91-b6c1-403f862f9337", + "bankId": "5e5caa97-aff8-4c91-b6c1-403f862f9337", + "comment": "Raghad version", + "date": "2022-11-28T14:41:52.291Z", + "type": "publication", + "version": 10, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-01T12:06:49.933Z" + }, + { + "id": "d3048573-2997-44c1-a255-d7e7055d786b", + "bankId": "d3048573-2997-44c1-a255-d7e7055d786b", + "comment": "Raghad version - add discount to variant of type text", + "date": "2022-11-29T09:06:20.862Z", + "type": "publication", + "version": 11, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-01T12:06:28.393Z" + }, + { + "id": "93148e06-21fc-4936-a8d5-633f493bee87", + "bankId": "93148e06-21fc-4936-a8d5-633f493bee87", + "comment": "Raghad version", + "date": "2022-11-29T09:27:37.960Z", + "type": "publication", + "version": 12, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-01T12:05:43.255Z" + }, + { + "id": "26ecdfd3-acba-4df1-bf54-4177adb873cb", + "bankId": "26ecdfd3-acba-4df1-bf54-4177adb873cb", + "comment": "Raghad version", + "date": "2022-11-29T09:30:18.366Z", + "type": "publication", + "version": 13, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-01T12:05:30.088Z" + }, + { + "id": "70cc30d1-7402-43dd-b6e7-6eed55155a14", + "bankId": "70cc30d1-7402-43dd-b6e7-6eed55155a14", + "comment": "Raghad version", + "date": "2022-11-29T09:36:11.550Z", + "type": "publication", + "version": 14, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-01T12:05:28.121Z" + }, + { + "id": "820035ea-5663-4e20-a3f0-52ea54735872", + "bankId": "820035ea-5663-4e20-a3f0-52ea54735872", + "comment": "Raghad version", + "date": "2022-11-29T10:27:37.870Z", + "type": "publication", + "version": 15, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-01T12:05:23.993Z" + }, + { + "id": "dc50b571-5251-4d2f-8429-6474fabcadba", + "bankId": "dc50b571-5251-4d2f-8429-6474fabcadba", + "comment": "Raghad version", + "date": "2022-11-29T11:54:08.705Z", + "type": "publication", + "version": 16, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-01T12:05:21.564Z" + }, + { + "id": "12bdea0f-64a5-4f0d-b7f3-91c290239118", + "bankId": "12bdea0f-64a5-4f0d-b7f3-91c290239118", + "comment": "Raghad version", + "date": "2022-12-01T10:57:12.861Z", + "type": "publication", + "version": 17, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-01T12:05:15.740Z" + }, + { + "id": "31a7ca78-4d23-4923-bfa3-ca30a7cca273", + "bankId": "31a7ca78-4d23-4923-bfa3-ca30a7cca273", + "comment": "Raghad version", + "date": "2022-12-01T10:59:34.083Z", + "type": "publication", + "version": 18, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-01T12:05:12.501Z" + }, + { + "id": "88b67359-4a0c-4638-bbe6-f45967932957", + "bankId": "88b67359-4a0c-4638-bbe6-f45967932957", + "comment": "Raghad version", + "date": "2022-12-01T11:03:22.935Z", + "type": "publication", + "version": 19, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-01T12:05:09.379Z" + }, + { + "id": "a64d5877-e102-431a-a42f-884be36df249", + "bankId": "a64d5877-e102-431a-a42f-884be36df249", + "comment": "Raghad version", + "date": "2022-12-01T11:06:45.675Z", + "type": "publication", + "version": 20, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-01T12:05:05.917Z" + }, + { + "id": "bb654ffe-c7c9-4d80-8359-9ea8a177d8a5", + "bankId": "bb654ffe-c7c9-4d80-8359-9ea8a177d8a5", + "comment": "Raghad version", + "date": "2022-12-02T12:44:17.755Z", + "type": "publication", + "version": 21, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-05T11:49:13.926Z" + }, + { + "id": "f67eee6a-c73a-4fd4-aaa1-494ed733a1f6", + "bankId": "f67eee6a-c73a-4fd4-aaa1-494ed733a1f6", + "comment": "Raghad version", + "date": "2022-12-02T14:21:11.312Z", + "type": "publication", + "version": 22, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-05T11:49:10.936Z" + }, + { + "id": "7281d374-3c44-43da-87ff-81b8f44c81c1", + "bankId": "7281d374-3c44-43da-87ff-81b8f44c81c1", + "comment": "Raghad version", + "date": "2022-12-05T11:42:05.353Z", + "type": "publication", + "version": 23, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-05T11:49:05.487Z" + }, + { + "id": "46922197-bdb7-4995-b07e-64f9c2790536", + "bankId": "46922197-bdb7-4995-b07e-64f9c2790536", + "comment": "Raghad version", + "date": "2022-12-05T11:49:17.638Z", + "type": "publication", + "version": 24, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-06T08:43:09.548Z" + }, + { + "id": "97c99b96-b3d5-4663-bcd8-0e65c368d754", + "bankId": "97c99b96-b3d5-4663-bcd8-0e65c368d754", + "comment": "Raghad version", + "date": "2022-12-06T08:43:13.888Z", + "type": "publication", + "version": 25, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-08T12:10:02.847Z" + }, + { + "id": "fa9c9d36-2a93-4ace-81b8-6e7cd97c83e0", + "bankId": "fa9c9d36-2a93-4ace-81b8-6e7cd97c83e0", + "comment": "Raghad version", + "date": "2022-12-06T13:39:12.632Z", + "type": "publication", + "version": 26, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-08T12:10:04.767Z" + }, + { + "id": "c7c49816-b4fd-4929-8b33-ea3d7b102857", + "bankId": "c7c49816-b4fd-4929-8b33-ea3d7b102857", + "comment": "Raghad version - weekdays", + "date": "2022-12-06T13:42:49.901Z", + "type": "publication", + "version": 27, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-08T12:10:06.521Z" + }, + { + "id": "45f045e3-5813-4598-a956-4316023d1f3f", + "bankId": "45f045e3-5813-4598-a956-4316023d1f3f", + "comment": "Raghad version- ukedager", + "date": "2022-12-07T10:52:26.570Z", + "type": "publication", + "version": 28, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-07T10:53:44.370Z" + }, + { + "id": "08d9c782-46e5-4ae6-9d3f-223150c26f88", + "bankId": "08d9c782-46e5-4ae6-9d3f-223150c26f88", + "comment": "Raghad version- test weekdays", + "date": "2022-12-08T09:50:07.792Z", + "type": "publication", + "version": 29, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-08T09:59:54.058Z" + }, + { + "id": "829dc4dc-06af-43ed-9a1c-63289939ecce", + "bankId": "829dc4dc-06af-43ed-9a1c-63289939ecce", + "comment": "Raghad version- test weekdays", + "date": "2022-12-08T09:59:58.188Z", + "type": "publication", + "version": 30, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-08T12:10:09.101Z" + }, + { + "id": "5efff249-f5cc-4b20-9ebe-e5e1098cafee", + "bankId": "5efff249-f5cc-4b20-9ebe-e5e1098cafee", + "comment": "Raghad version- test weekdays", + "date": "2022-12-08T12:18:43.899Z", + "type": "publication", + "version": 31, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-08T12:29:18.629Z" + }, + { + "id": "34d6a7c4-f6b6-4759-a8b0-0f4964b38210", + "bankId": "34d6a7c4-f6b6-4759-a8b0-0f4964b38210", + "comment": "Raghad version- test weekdays", + "date": "2022-12-08T12:29:25.316Z", + "type": "publication", + "version": 32, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-14T10:24:27.379Z" + }, + { + "id": "f9020bda-fae9-4ce6-b57c-ccc4df441941", + "bankId": "f9020bda-fae9-4ce6-b57c-ccc4df441941", + "comment": "Raghad version- Dato-periode - weekdays", + "date": "2022-12-09T09:46:34.573Z", + "type": "publication", + "version": 33, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + }, + { + "id": "92212ede-53d6-4016-b42c-0b9ca0f9eb54", + "bankId": "92212ede-53d6-4016-b42c-0b9ca0f9eb54", + "comment": "Raghad version- test codeslist", + "date": "2022-12-14T10:21:26.854Z", + "type": "publication", + "version": 34, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-14T10:24:33.712Z" + }, + { + "id": "575a09a5-34b6-425b-94b4-dd446166745e", + "bankId": "575a09a5-34b6-425b-94b4-dd446166745e", + "comment": "Raghad version- test codelist", + "date": "2022-12-14T10:24:48.728Z", + "type": "publication", + "version": 35, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-14T10:40:27.301Z" + }, + { + "id": "1ba5bdcb-8ea2-4615-b1ab-eafdee6fcdb9", + "bankId": "1ba5bdcb-8ea2-4615-b1ab-eafdee6fcdb9", + "comment": "Raghad version- test codelist", + "date": "2022-12-14T10:40:33.854Z", + "type": "publication", + "version": 36, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-12-14T10:42:21.469Z" + }, + { + "id": "820745cb-8912-451c-aaa3-d4a53c6c52b0", + "bankId": "820745cb-8912-451c-aaa3-d4a53c6c52b0", + "comment": "Raghad version- test codelist", + "date": "2022-12-14T10:42:19.149Z", + "type": "publication", + "version": 37, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + } + ], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "d884502d-4437-4359-8569-3ce1c3751605", + "title": "TESTING for sletting", + "description": "TEST for å forstå funksjoner", + "needs": [], + "codelist": [], + "products": [], + "publications": [], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "title": "Test", + "description": "test", + "needs": [ + { + "id": "0aa8cd91-474c-4f14-959e-5782c09ff3da", + "title": "123", + "description": "123", + "requirements": [ + { + "id": "b71eff94-30bd-4cd1-86f0-2407d06e6016", + "title": "testhello", + "description": "", + "needId": "0aa8cd91-474c-4f14-959e-5782c09ff3da", + "type": "requirement", + "variants": [ + { + "id": "880397ef-c6d6-4eae-81f8-03a3f313c27d", + "requirementText": "tttt", + "instruction": "ttttata", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [], + "type": "requirement", + "description": "test" + }, + { + "id": "10d01eb2-a4c0-47b7-be8c-2569d09de422", + "requirementText": "234234", + "instruction": "234234", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "c9761c1a-cb02-417b-8c6d-5bf2a2eba3cc", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Nytt krav" + } + ], + "tags": [], + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "3be95233-e7ee-4542-9adb-ebf8edf61e96", + "title": "Tester infokrav", + "description": "", + "needId": "0aa8cd91-474c-4f14-959e-5782c09ff3da", + "type": "requirement", + "variants": [ + { + "id": "61fc4346-4905-443b-9cc7-19f7ce2d6976", + "requirementText": "", + "instruction": "", + "useProduct": false, + "useSpesification": false, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "a4704046-33bb-4652-84de-7510be24b712", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "f2c95db9-242e-43bb-bb98-d27326823595", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "InfoInfo" + } + ], + "tags": [], + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "05add316-928f-4299-8bf4-b319131994e2", + "title": "test 2", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "0ec45650-5e53-4e1b-a6d6-47a76221339d", + "title": "test 3", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "153caee6-2238-4c82-a356-a0115d734eb9", + "title": "test 4", + "description": "", + "requirements": [ + { + "id": "7c571ff6-a0ce-4c28-86f1-4a204e9d2791", + "title": "dassadsad", + "description": "", + "needId": "153caee6-2238-4c82-a356-a0115d734eb9", + "type": "requirement", + "variants": [ + { + "id": "dc22ca5c-48dd-4451-bf72-04fe1d0881fa", + "requirementText": "sadsad", + "instruction": "sadsad", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "2b765ed3-fa01-440f-b666-a779fdbfd1bf" + ], + "questions": [], + "type": "requirement", + "description": "dsasad" + } + ], + "tags": [], + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "46cf46bb-102d-464f-a0f9-d527988b4d72", + "title": "test 5", + "description": "", + "requirements": [ + { + "id": "33ff78a8-3c05-43ff-967b-58e329321252", + "title": "zsaasd", + "description": "", + "needId": "46cf46bb-102d-464f-a0f9-d527988b4d72", + "type": "requirement", + "variants": [ + { + "id": "4c8a7d29-f386-4fca-a229-45fe6dd754fc", + "requirementText": "sad", + "instruction": "sad", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "f70e849d-698b-4193-969b-7a84198b011f" + ], + "questions": [ + { + "id": "df6ebe7a-d79e-4b2c-a5b5-0bb7167d014c", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "asda" + } + ], + "tags": [], + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "b7b15aed-5af7-41a9-b074-f7c19e7c5a0a", + "title": "test 6", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "bcf72e49-ae8a-4c38-ba31-13956c0e2903", + "title": "123312", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "b4f24a4d-18c8-44c3-a582-6f0017d820bf", + "title": "213213", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "7540c9cf-a1b9-4830-85b8-1b64d2bc235e", + "title": "213213231", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "3cb7c142-0d35-4059-a741-e823d45442ae", + "title": "12332", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "dfa7a06f-0b4f-4353-928f-98f9ef963310", + "title": "123123", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "feeb0865-2e58-41f8-9401-88864b8c97b5", + "title": "213123", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "e2e8f1ee-0189-411d-a38f-11799d740469", + "title": "4214", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + }, + { + "id": "8803843d-db11-4bd3-8cd5-7cd411819de2", + "title": "132", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null + } + ], + "codelist": [], + "products": [ + { + "id": "f70e849d-698b-4193-969b-7a84198b011f", + "title": "test 2", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "84b2941b-55c9-4906-9388-cf3f312d9c08", + "title": "test3", + "description": "grwwrewfwef", + "type": "product", + "parent": "f70e849d-698b-4193-969b-7a84198b011f", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "3e2e0bc3-5e26-4cec-af12-f04879730363", + "title": "jaja 1", + "description": "", + "type": "product", + "parent": "", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null, + "deletedDate": null + }, + { + "id": "3aad8bb1-6fe1-4d73-84c3-2f257cf204a2", + "title": "jaja 2", + "description": "", + "type": "product", + "parent": "3e2e0bc3-5e26-4cec-af12-f04879730363", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null, + "deletedDate": "2022-06-14T11:19:06.161Z" + }, + { + "id": "2b765ed3-fa01-440f-b666-a779fdbfd1bf", + "title": "Jaja 3", + "description": "", + "type": "product", + "parent": "3aad8bb1-6fe1-4d73-84c3-2f257cf204a2", + "sourceOriginal": "8cf71f74-ae5d-4c2c-b71b-dd0059ee6872", + "sourceRel": null, + "deletedDate": "2022-06-14T11:19:04.881Z" + } + ], + "publications": [ + { + "id": "cb0471f1-a0cc-4f57-89b7-141349164843", + "bankId": "cb0471f1-a0cc-4f57-89b7-141349164843", + "comment": "V1", + "date": "2022-08-09T08:05:51.492Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-08-10T10:03:25.549Z" + }, + { + "id": "4394aa5e-0b77-4b04-bfed-906526db5c23", + "bankId": "4394aa5e-0b77-4b04-bfed-906526db5c23", + "comment": "V2", + "date": "2022-08-09T08:07:03.366Z", + "type": "publication", + "version": 2, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-08-09T12:06:30.577Z" + }, + { + "id": "83c5459f-6fdc-4630-8e28-8314f6ac1eb7", + "bankId": "83c5459f-6fdc-4630-8e28-8314f6ac1eb7", + "comment": "V3", + "date": "2022-08-09T08:07:13.641Z", + "type": "publication", + "version": 3, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-08-10T10:03:20.603Z" + }, + { + "id": "04ee2e84-4c29-4a94-81a4-4c4fcd1a82ee", + "bankId": "04ee2e84-4c29-4a94-81a4-4c4fcd1a82ee", + "comment": "V4", + "date": "2022-08-09T12:09:24.591Z", + "type": "publication", + "version": 4, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-08-10T10:03:18.478Z" + }, + { + "id": "91d856b8-5141-40d9-8926-fa95837df581", + "bankId": "91d856b8-5141-40d9-8926-fa95837df581", + "comment": "V5", + "date": "2022-08-09T12:13:33.236Z", + "type": "publication", + "version": 5, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-08-10T10:03:16.046Z" + }, + { + "id": "2f2447a4-c4f9-4f53-befc-e7cced94c62c", + "bankId": "2f2447a4-c4f9-4f53-befc-e7cced94c62c", + "comment": "V6", + "date": "2022-08-09T12:20:33.712Z", + "type": "publication", + "version": 6, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-08-10T10:03:11.779Z" + }, + { + "id": "d9990172-1e01-4d28-9fe6-efa8207020cd", + "bankId": "d9990172-1e01-4d28-9fe6-efa8207020cd", + "comment": "V7", + "date": "2022-08-09T12:23:22.040Z", + "type": "publication", + "version": 7, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-08-10T10:03:06.918Z" + }, + { + "id": "3c9d82e1-ac73-467e-be4a-371438adcc63", + "bankId": "3c9d82e1-ac73-467e-be4a-371438adcc63", + "comment": "V8", + "date": "2022-08-09T12:23:26.279Z", + "type": "publication", + "version": 8, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "013f4e49-f920-49f7-bdab-888fc37bb6f6", + "bankId": "013f4e49-f920-49f7-bdab-888fc37bb6f6", + "comment": "V9", + "date": "2022-08-09T12:28:49.772Z", + "type": "publication", + "version": 9, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-08-10T10:02:04.662Z" + }, + { + "id": "f7cf278c-7d17-4040-b2bd-8f104c005e2a", + "bankId": "f7cf278c-7d17-4040-b2bd-8f104c005e2a", + "comment": "V10", + "date": "2022-08-10T10:25:55.697Z", + "type": "publication", + "version": 10, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "ec0b9d1d-c999-484b-adb3-9c1e408550d8", + "bankId": "ec0b9d1d-c999-484b-adb3-9c1e408550d8", + "comment": "V11", + "date": "2022-08-12T08:48:05.611Z", + "type": "publication", + "version": 11, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-08-12T08:48:10.744Z" + }, + { + "id": "860c4a19-31f6-4c20-81ab-fb530bd159e4", + "bankId": "860c4a19-31f6-4c20-81ab-fb530bd159e4", + "comment": "V12", + "date": "2022-08-12T08:48:38.593Z", + "type": "publication", + "version": 12, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-08-12T08:48:44.071Z" + }, + { + "id": "e70a2b9d-aa91-41b5-a1e1-d7a94f50632d", + "bankId": "e70a2b9d-aa91-41b5-a1e1-d7a94f50632d", + "comment": "V13", + "date": "2022-08-12T08:50:14.716Z", + "type": "publication", + "version": 13, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-08-12T08:54:07.206Z" + }, + { + "id": "929ac958-0812-4ae7-9e0a-d0b110b3ddf0", + "bankId": "929ac958-0812-4ae7-9e0a-d0b110b3ddf0", + "comment": "V14", + "date": "2022-08-12T09:21:03.938Z", + "type": "publication", + "version": 14, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "cf31ffdd-f883-448c-ac41-6d3105a17fbe", + "bankId": "cf31ffdd-f883-448c-ac41-6d3105a17fbe", + "comment": "V15", + "date": "2022-08-12T09:23:07.189Z", + "type": "publication", + "version": 15, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": "2022-08-12T09:24:18.276Z" + }, + { + "id": "d9138263-2a89-4f53-a2fd-ca2e6eaf322d", + "bankId": "d9138263-2a89-4f53-a2fd-ca2e6eaf322d", + "comment": "V16", + "date": "2022-08-12T09:24:38.702Z", + "type": "publication", + "version": 16, + "sourceOriginal": null, + "sourceRel": null, + "deletedDate": null + } + ], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + }, + { + "id": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "title": "Tronds prosjekt", + "description": "", + "needs": [ + { + "id": "dc2ca0a3-7a18-4b42-8b8a-f4ba62f58ad1", + "title": "Behov 4", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "0e63b437-9c7d-4011-8d6a-b7dc64c61dbe", + "title": "Behov 2", + "description": "", + "requirements": [], + "type": "need", + "parent": "dc2ca0a3-7a18-4b42-8b8a-f4ba62f58ad1", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "2945908b-a145-4d6b-8191-b23f95cde021", + "title": "Behov 1", + "description": "", + "requirements": [ + { + "id": "7d9213df-aef4-4bf2-b50c-b2ff93af07fd", + "title": "Krav 2", + "description": "krav 2 beskrivelse", + "needId": "2945908b-a145-4d6b-8191-b23f95cde021", + "tags": [], + "variants": [ + { + "id": "9b690883-b8b2-4f6f-88ee-892a4e5a7440", + "requirementText": "Variant Blazor1", + "instruction": "instruksjon Blazor1", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "7a895086-8b85-4ae6-8ac5-6acd2208a5a5" + ], + "questions": [ + { + "id": "91a86458-5a13-421b-aaa7-cc6f6dc4ab32", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "beskrivelse Blazor1" + }, + { + "id": "1c4db1e1-01e2-4531-8879-4adbf63f67f9", + "requirementText": "Variant Morgul", + "instruction": "Veiledning ", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "4d1e3b40-8cd1-479d-98bc-ac4e0a8339f9", + "7a895086-8b85-4ae6-8ac5-6acd2208a5a5", + "7d6e5a28-cc4c-4623-995a-d2657f3110c5" + ], + "questions": [ + { + "id": "07703d76-6d56-49ce-b39e-92c087737dc9", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "test" + } + ], + "type": "requirement", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "d8acc9f7-9590-46fe-8ce1-da5cd3e7f0cd", + "title": "Krav 1", + "description": "Krav 1 beskrivelse", + "needId": "2945908b-a145-4d6b-8191-b23f95cde021", + "tags": [], + "variants": [ + { + "id": "51f28d38-3dce-4831-afdb-59fd2f45d633", + "requirementText": "Variant 1", + "instruction": "bobbo", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "ba267a10-68cc-4c6e-8cf9-57c4f419d527", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "a77f6972-7ed8-4426-8a9f-bb2ceed849d1", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "fccb0316-afd4-446b-845d-54af2b60aa6a", + "type": "Q_CODELIST", + "config": { + "mandatoryCodes": [], + "optionalCodes": [], + "codelist": "", + "defaultPoint": 1, + "optionalCodeMinAmount": 0, + "optionalCodeMaxAmount": 1 + }, + "answer": { + "point": 0, + "codes": [] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "c762cf63-8057-4c36-8990-0ae0a70aa8b5", + "type": "Q_FILEUPLOAD", + "config": { + "template": null, + "uploadInSpec": false, + "allowMultipleFiles": false, + "fileEndings": [], + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "files": [ + "" + ] + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "45c5664d-fdf4-42f5-a9e7-e449bd0fd419", + "type": "Q_PERIOD_DATE", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMin": 0, + "periodMax": 1, + "defaultPoint": 1, + "dateScores": [] + }, + "answer": { + "point": 0, + "fromDate": null, + "toDate": null + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "8da33a97-b403-4802-b1c9-abf4b3412e97", + "type": "Q_SLIDER", + "config": { + "min": 0, + "max": 10, + "step": 1, + "unit": "GB", + "defaultPoint": 1, + "scoreValues": [ + { + "score": 0, + "value": 0 + }, + { + "value": 10, + "score": 100 + } + ] + }, + "answer": { + "point": 0, + "value": 0 + }, + "sourceRel": null, + "sourceOriginal": null + }, + { + "id": "81cb32f3-adf5-4a22-ac92-45e7b203230f", + "type": "Q_TIME", + "config": { + "fromBoundary": null, + "toBoundary": null, + "isPeriod": false, + "periodMinutes": 0, + "periodHours": 0, + "defaultPoint": 1, + "timeScores": [] + }, + "answer": { + "point": 0, + "fromTime": null, + "toTime": null + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "" + }, + { + "id": "71131b82-d9c8-4aa6-a242-c18847106814", + "requirementText": "Variant 2 kravtekst", + "instruction": "variant 2 instruksjon", + "useProduct": true, + "useSpesification": false, + "useQualification": false, + "products": [ + "7a895086-8b85-4ae6-8ac5-6acd2208a5a5" + ], + "questions": [], + "type": "requirement", + "description": "Variant 2 beskrivelse" + } + ], + "type": "requirement", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "type": "need", + "parent": "0e63b437-9c7d-4011-8d6a-b7dc64c61dbe", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "933c7764-0b63-4739-b4ea-cff92b389b69", + "title": "Behov 3", + "description": "", + "requirements": [], + "type": "need", + "parent": "", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "codelist": [ + { + "id": "7720626a-7590-4dd0-a082-6c9eaa64f0e8", + "title": "Kodeliste1", + "description": "Kodeliste 1 beskrivelse", + "codes": [ + { + "id": "4f87c080-4bff-4d7d-a688-fe60215ca51e", + "title": "Kode 1", + "description": "", + "type": "code", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null, + "parent": "" + }, + { + "id": "15d0f14b-a353-47c5-b35d-4d18b2ecd911", + "title": "Kode 2 rgegerger yrtyrty etyrtrty etyrrtrty rtyrtyrtyrty dfgdfgdfg", + "description": "", + "type": "code", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null, + "parent": "" + } + ], + "type": "codelist", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "products": [ + { + "id": "7d6e5a28-cc4c-4623-995a-d2657f3110c5", + "title": "Produkt1", + "description": "produkt beskrivelse", + "type": "product", + "parent": "", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "4d1e3b40-8cd1-479d-98bc-ac4e0a8339f9", + "title": "Produkt2", + "description": "produkt2 beskrivelse", + "type": "product", + "parent": "7d6e5a28-cc4c-4623-995a-d2657f3110c5", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "7a895086-8b85-4ae6-8ac5-6acd2208a5a5", + "title": "Produkt3", + "description": "produkt3 beskrivelse", + "type": "product", + "parent": "", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "publications": [ + { + "id": "f57008ad-3cf7-40e1-a6ed-5c1901ed23b6", + "bankId": "f57008ad-3cf7-40e1-a6ed-5c1901ed23b6", + "comment": "publikasjon 1", + "date": "2022-03-14T10:29:21.113Z", + "type": "publication", + "version": 1, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "a7c5e6ee-7422-4ae5-a289-76cbfe2837a6", + "bankId": "a7c5e6ee-7422-4ae5-a289-76cbfe2837a6", + "comment": "publikasjon 2", + "date": "2022-03-14T10:29:27.715Z", + "type": "publication", + "version": 2, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "105cbcdc-7191-4398-bbc5-f69dc3f395ce", + "bankId": "105cbcdc-7191-4398-bbc5-f69dc3f395ce", + "comment": "publisering 3", + "date": "2022-03-28T08:35:46.465Z", + "type": "publication", + "version": 3, + "sourceOriginal": null, + "sourceRel": null + }, + { + "id": "88eae981-ba81-4616-818a-b190c030a0b7", + "bankId": "88eae981-ba81-4616-818a-b190c030a0b7", + "comment": "Publisering 4", + "date": "2022-04-21T12:06:51.614Z", + "type": "publication", + "version": 4, + "sourceOriginal": null, + "sourceRel": null + } + ], + "tags": [ + { + "id": "b14054e2-f162-42a6-974f-c8f3bdb977ba", + "title": "Miljø", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + }, + { + "id": "a716ff8c-4d7f-4156-9427-7777b96e7bcd", + "title": "Merkelapp1", + "type": "tag", + "parent": "", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null, + "description": "Merkelapp1 beskrivelse" + }, + { + "id": "e7c6a0d0-5ef4-4ba2-bc39-bac912627cc8", + "title": "Forurensning", + "description": "", + "type": "tag", + "parent": "", + "sourceOriginal": "adc63ede-d4b1-4db1-9a5d-067b11e587ed", + "sourceRel": null + } + ], + "version": 1, + "publishedDate": null, + "deletedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": "712ffcf0-14ac-4220-8901-0b363cd3bae9" + }, + { + "id": "876b8e36-4f6f-42ac-8f27-680e5a1e1660", + "title": "gjufjh", + "description": "fd", + "needs": [ + { + "id": "e555f0d7-facd-4a57-91df-85fd773e9c98", + "title": "Hei", + "description": "Hå", + "requirements": [ + { + "id": "55e352fc-984c-467a-8aef-22f2542b7a67", + "title": "Må se bra ut", + "description": "", + "needId": "e555f0d7-facd-4a57-91df-85fd773e9c98", + "type": "requirement", + "variants": [ + { + "id": "c0322852-c3b3-4b2e-84e5-9078e424b1ac", + "requirementText": "Har produktet kule farger?", + "instruction": "Her bekrefter du at produktet har kule farger.", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "693fe227-79a0-4625-9aa1-dee70e846d57", + "type": "Q_CHECKBOX", + "config": { + "pointsNonPrefered": 0, + "defaultPoint": 1, + "preferedAlternative": true + }, + "answer": { + "point": 0, + "value": false + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Produktet må ha kule farger" + }, + { + "id": "e4d87f6f-8d7a-4b08-a593-903b8296072c", + "requirementText": "Har produktet kule detaljer?", + "instruction": "Beskriv noen kule detaljer ved produktet", + "useProduct": false, + "useSpesification": true, + "useQualification": false, + "products": [], + "questions": [ + { + "id": "83886e3e-6839-460e-afe4-a947f0000a49", + "type": "Q_TEXT", + "config": { + "max": 10000, + "defaultPoint": 1 + }, + "answer": { + "point": 0, + "text": "" + }, + "sourceRel": null, + "sourceOriginal": null + } + ], + "type": "requirement", + "description": "Må ha kule detaljer" + } + ], + "tags": [], + "sourceOriginal": "876b8e36-4f6f-42ac-8f27-680e5a1e1660", + "sourceRel": null + } + ], + "type": "need", + "parent": "", + "sourceOriginal": "876b8e36-4f6f-42ac-8f27-680e5a1e1660", + "sourceRel": null + } + ], + "codelist": [], + "products": [], + "publications": [], + "tags": [], + "version": 0, + "publishedDate": null, + "type": "bank", + "inheritedBanks": [], + "sourceOriginal": null, + "sourceRel": null, + "projectId": null, + "deletedDate": null + } +] \ No newline at end of file