diff --git a/app/controllers/procedure_steps/work_packages_controller.rb b/app/controllers/procedure_steps/work_packages_controller.rb new file mode 100644 index 00000000..94ed6f87 --- /dev/null +++ b/app/controllers/procedure_steps/work_packages_controller.rb @@ -0,0 +1,39 @@ +module ProcedureSteps + class WorkPackagesController < ApplicationController + before_action :build_request, :data_check + + ROUTE_MAP = { + index: proc { |params| ParliamentHelper.parliament_request.procedure_step_work_packages.set_url_params({ procedure_step_id: params[:procedure_step_id] }) } + }.freeze + + def index + @procedure_step, @business_items = FilterHelper.filter(@api_request, 'ProcedureStep', 'BusinessItem') + @procedure_step = @procedure_step.first + + @business_items = @business_items.sort_by(:date, :graph_id).reverse + + list_components = @business_items.map do |business_item| + next nil unless business_item.work_package + + list_description_items = nil + if business_item.date + list_description_items = [{ term: { content: 'procedure-steps.subsidiary-resources.actualised-date' }, description: [{ content: I18n.l(business_item.date) }] }] + end + + CardFactory.new( + small: 'laid-thing.work-package', + heading_text: business_item.work_package.work_packaged_thing.try(:workPackagedThingName), + heading_url: work_package_path(business_item.work_package.graph_id), + description_list_content: list_description_items + ).build_card + end + list_components.compact! + + heading = ComponentSerializer::Heading1ComponentSerializer.new(heading_content: I18n.t('work_packages.title'), subheading_content: @procedure_step.try(:procedureStepName), subheading_link: procedure_step_path) + + serializer = PageSerializer::ListPageSerializer.new(request: request, heading_component: heading, list_components: list_components, data_alternates: @alternates) + + render_page(serializer) + end + end +end diff --git a/app/serializers/page_serializer/procedure_steps_show_page_serializer.rb b/app/serializers/page_serializer/procedure_steps_show_page_serializer.rb index a65d8838..8586599c 100644 --- a/app/serializers/page_serializer/procedure_steps_show_page_serializer.rb +++ b/app/serializers/page_serializer/procedure_steps_show_page_serializer.rb @@ -38,7 +38,7 @@ def meta_info houses = @procedure_step.try(:procedureStepHasHouse) return if houses.nil? || houses.empty? - houses = houses.map { |house| house.try(:houseName) }.compact.join(' and ') + houses = houses.map { |house| house.try(:houseName) }.compact.to_sentence [create_description_list_item('procedure-steps.houses', [houses])] end diff --git a/config/locales/en.yml b/config/locales/en.yml index c98810fc..30cc32ba 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -67,3 +67,5 @@ en: procedure_steps: index: title: "Procedure Steps" + work_packages: + title: "Work Packages" diff --git a/spec/controllers/procedure_steps/work_packages_controller_spec.rb b/spec/controllers/procedure_steps/work_packages_controller_spec.rb new file mode 100644 index 00000000..35846469 --- /dev/null +++ b/spec/controllers/procedure_steps/work_packages_controller_spec.rb @@ -0,0 +1,140 @@ +require 'rails_helper' + +RSpec.describe ProcedureSteps::WorkPackagesController, vcr: true do + describe 'GET index' do + let(:data_alternates) do + [{ + href: "#{ENV['PARLIAMENT_BASE_URL']}/procedure_step_work_packages.nt?procedure_step_id=e9G2vHbc", + type: 'application/n-triples' + }, + {href: "#{ENV['PARLIAMENT_BASE_URL']}/procedure_step_work_packages.ttl?procedure_step_id=e9G2vHbc", + type: 'text/turtle'}, + {href: "#{ENV['PARLIAMENT_BASE_URL']}/procedure_step_work_packages.tsv?procedure_step_id=e9G2vHbc", + type: 'text/tab-separated-values'}, + {href: "#{ENV['PARLIAMENT_BASE_URL']}/procedure_step_work_packages.csv?procedure_step_id=e9G2vHbc", + type: 'text/csv'}, + {href: "#{ENV['PARLIAMENT_BASE_URL']}/procedure_step_work_packages.rj?procedure_step_id=e9G2vHbc", + type: 'application/json+rdf'}, + {href: "#{ENV['PARLIAMENT_BASE_URL']}/procedure_step_work_packages.json?procedure_step_id=e9G2vHbc", + type: 'application/json+ld'}, + {href: "#{ENV['PARLIAMENT_BASE_URL']}/procedure_step_work_packages.xml?procedure_step_id=e9G2vHbc", + type: 'application/rdf+xml'}] + end + + let(:heading) {'a heading component'} + + before(:each) do + allow(PageSerializer::ListPageSerializer).to receive(:new) + allow(ComponentSerializer::Heading1ComponentSerializer).to receive(:new) {heading} + + allow(controller.request).to receive(:env).and_return({'ApplicationInsights.request.id' => '|1234abcd.'}) + + get :index, params: {procedure_step_id: 'e9G2vHbc'} + end + + it 'should have a response with http status ok (200)' do + expect(response).to have_http_status(:ok) + end + + context 'the correct instance variables' do + it 'assigns @procedure_step' do + expect(assigns(:procedure_step)).to be_a(Grom::Node) + expect(assigns(:procedure_step).type).to include('https://id.parliament.uk/schema/ProcedureStep') + end + + it 'assigns @business_items' do + assigns(:business_items).each do |business_item| + expect(business_item).to be_a(Grom::Node) + expect(business_item.type).to include('https://id.parliament.uk/schema/BusinessItem') + end + end + end + + context 'calling the serializers correctly' do + it 'calls the Heading1ComponentSerializer correctly' do + expect(ComponentSerializer::Heading1ComponentSerializer).to have_received(:new).with(heading_content: 'Work Packages', subheading_content: 'procedureStepName - 1', subheading_link: '/procedure-steps/e9G2vHbc') + end + + it 'calls the ListPageSerializer correctly' do + list_components = [{"data" => + {"heading" => + {"data" => + {"content" => "workPackagedThingName - 4", + "link" => "/work-packages/eCsYdAM3", + "size" => 2}, + "name" => "heading"}, + "list-description" => + {"data" => + {"items" => + [{"description" => [{"content" => "16 May 2018"}], + "term" => + {"content" => + "procedure-steps.subsidiary-resources.actualised-date"}}]}, + "name" => "list__description"}, + "small" => + {"data" => {"content" => "laid-thing.work-package"}, + "name" => "partials__small"}}, + "name" => "card__generic"}, + {"data" => + {"heading" => + {"data" => + {"content" => "workPackagedThingName - 2", + "link" => "/work-packages/PsB0pq0l", + "size" => 2}, + "name" => "heading"}, + "list-description" => + {"data" => + {"items" => + [{"description" => [{"content" => "9 May 2018"}], + "term" => + {"content" => + "procedure-steps.subsidiary-resources.actualised-date"}}]}, + "name" => "list__description"}, + "small" => + {"data" => {"content" => "laid-thing.work-package"}, + "name" => "partials__small"}}, + "name" => "card__generic"}, + {"data" => + {"heading" => + {"data" => + {"content" => "workPackagedThingName - 3", + "link" => "/work-packages/uBG5MdZZ", + "size" => 2}, + "name" => "heading"}, + "list-description" => + {"data" => + {"items" => + [{"description" => [{"content" => "2 May 2018"}], + "term" => + {"content" => + "procedure-steps.subsidiary-resources.actualised-date"}}]}, + "name" => "list__description"}, + "small" => + {"data" => {"content" => "laid-thing.work-package"}, + "name" => "partials__small"}}, + "name" => "card__generic"}, + {"data" => + {"heading" => + {"data" => + {"content" => "workPackagedThingName - 1", + "link" => "/work-packages/UsdZhECl", + "size" => 2}, + "name" => "heading"}, + "list-description" => + {"data" => + {"items" => + [{"description" => [{"content" => "2 May 2018"}], + "term" => + {"content" => + "procedure-steps.subsidiary-resources.actualised-date"}}]}, + "name" => "list__description"}, + "small" => + {"data" => {"content" => "laid-thing.work-package"}, + "name" => "partials__small"}}, + "name" => "card__generic"}] + + expect(PageSerializer::ListPageSerializer).to have_received(:new).with(request: request, heading_component: heading, list_components: list_components, data_alternates: data_alternates) + end + end + end +end diff --git a/spec/fixtures/controllers/procedure_steps/work_packages_controller/index/fixture.yml b/spec/fixtures/controllers/procedure_steps/work_packages_controller/index/fixture.yml new file mode 100644 index 00000000..6b6d63b0 --- /dev/null +++ b/spec/fixtures/controllers/procedure_steps/work_packages_controller/index/fixture.yml @@ -0,0 +1,4829 @@ +--- +layout: + template: layout +meta: + title: procedureStepName - 1 - Work Packages - UK Parliament + request-id: 123456 + data-alternates: + - type: application/n-triples + href: http://localhost:3030/procedure_step_work_packages.nt?procedure_step_id=e9G2vHbc + - type: text/turtle + href: http://localhost:3030/procedure_step_work_packages.ttl?procedure_step_id=e9G2vHbc + - type: text/tab-separated-values + href: http://localhost:3030/procedure_step_work_packages.tsv?procedure_step_id=e9G2vHbc + - type: text/csv + href: http://localhost:3030/procedure_step_work_packages.csv?procedure_step_id=e9G2vHbc + - type: application/json+rdf + href: http://localhost:3030/procedure_step_work_packages.rj?procedure_step_id=e9G2vHbc + - type: application/json+ld + href: http://localhost:3030/procedure_step_work_packages.json?procedure_step_id=e9G2vHbc + - type: application/rdf+xml + href: http://localhost:3030/procedure_step_work_packages.xml?procedure_step_id=e9G2vHbc + open-graph: + title: procedureStepName - 1 - Work Packages - UK Parliament + original-url: https://www.example.com/procedure-steps/e9G2vHbc/work-packages + image-url: https://static.parliament.uk/assets-public/opengraph-oblong.png + image-width: '1200' + image-height: '630' + twitter-card: summary_large_image + opensearch-description-url: https://www.example.com/search/opensearch +header-components: +- name: link + data: + link: "#content" + display: + name: partials__display + data: + - component: skip-to-content + selector: skiplink + content: shared.header.skip-to-content +- name: status__banner + data: + display: + name: partials__display + data: + - component: status + variant: banner + - component: theme + variant: caution + - component: cookie + selector: cookie + components: + - name: paragraph + data: + - content: shared.header.cookie-banner-text + data: + link: "/meta/cookie-policy" +- name: status__banner + data: + display: + name: partials__display + data: + - component: status + variant: banner + components: + - name: paragraph + data: + - content: shared.header.beta-status +- name: header + data: + components: + - name: link + data: + link: "/" + display: + name: partials__display + data: + - component: uk_parliament + label: shared.header.label + components: + - name: icon__uk-parliament + data: shared.header.label + - name: form__search + data: + global: true + label: search.label + components: + - name: icon__search + data: search.search-icon + search-action: "/search" +main-components: +- name: section__primary + data: + components: + - name: heading1 + data: + subheading: + content: procedureStepName - 1 + heading: + content: Work Packages +- name: section__section + data: + components: + - name: list__generic + data: + type: ol + display: + name: partials__display + data: + - component: list + variant: block + components: + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 231 + size: 2 + link: "/work-packages/cRe5nDqS" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 17 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 221 + size: 2 + link: "/work-packages/oUyGCgS5" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 17 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 228 + size: 2 + link: "/work-packages/bYtCFU4N" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 17 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 224 + size: 2 + link: "/work-packages/5CAiPg2v" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 17 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 225 + size: 2 + link: "/work-packages/ZAc8K0r4" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 17 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 229 + size: 2 + link: "/work-packages/SrxpslCY" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 17 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 226 + size: 2 + link: "/work-packages/gW4ShvE2" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 17 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 230 + size: 2 + link: "/work-packages/vu0GPgyl" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 17 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 222 + size: 2 + link: "/work-packages/MQChNjSY" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 17 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 219 + size: 2 + link: "/work-packages/Wg3eh80v" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 17 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 220 + size: 2 + link: "/work-packages/aj8r4hAP" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 17 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 223 + size: 2 + link: "/work-packages/zefBXzh8" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 17 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 233 + size: 2 + link: "/work-packages/pjtvqXCz" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 17 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 232 + size: 2 + link: "/work-packages/xl31EYMX" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 17 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 227 + size: 2 + link: "/work-packages/mA0R8oxO" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 17 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 209 + size: 2 + link: "/work-packages/FKyIv1xY" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 10 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 206 + size: 2 + link: "/work-packages/VGG0Gv4P" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 10 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 216 + size: 2 + link: "/work-packages/mmJtbuq0" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 10 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 197 + size: 2 + link: "/work-packages/kAWq2agx" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 10 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 207 + size: 2 + link: "/work-packages/9mNfFnUB" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 10 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 202 + size: 2 + link: "/work-packages/K1GI1d9e" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 10 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 217 + size: 2 + link: "/work-packages/vKAEAnJF" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 10 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 210 + size: 2 + link: "/work-packages/FB2aMTBN" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 10 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 199 + size: 2 + link: "/work-packages/vxPj3xad" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 10 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 198 + size: 2 + link: "/work-packages/ZanXOGcI" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 10 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 196 + size: 2 + link: "/work-packages/lQQjF54h" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 10 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 208 + size: 2 + link: "/work-packages/86fSY4P0" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 10 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 204 + size: 2 + link: "/work-packages/NoHwsgYC" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 10 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 211 + size: 2 + link: "/work-packages/RlbS8X8u" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 10 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 212 + size: 2 + link: "/work-packages/hpbakMhj" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 10 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 200 + size: 2 + link: "/work-packages/6OQ1w3DW" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 10 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 215 + size: 2 + link: "/work-packages/IU7gREgJ" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 10 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 205 + size: 2 + link: "/work-packages/MyVni6Ej" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 10 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 203 + size: 2 + link: "/work-packages/gQreLll1" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 10 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 201 + size: 2 + link: "/work-packages/WHAQG0Ch" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 10 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 214 + size: 2 + link: "/work-packages/CnbVFSFE" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 10 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 213 + size: 2 + link: "/work-packages/skuLtkzM" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 10 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 165 + size: 2 + link: "/work-packages/msKM10hC" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 184 + size: 2 + link: "/work-packages/83lMBlLs" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 189 + size: 2 + link: "/work-packages/rDRNBssE" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 164 + size: 2 + link: "/work-packages/xVDuhFhy" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 183 + size: 2 + link: "/work-packages/fYStL7le" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 168 + size: 2 + link: "/work-packages/AFYBjHvC" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 180 + size: 2 + link: "/work-packages/h5Fp2H9d" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 182 + size: 2 + link: "/work-packages/3WxJmYZD" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 193 + size: 2 + link: "/work-packages/8vXQJ2xK" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 187 + size: 2 + link: "/work-packages/FJdkYpZ5" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 177 + size: 2 + link: "/work-packages/eWrOts77" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 169 + size: 2 + link: "/work-packages/WNbpxbb2" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 172 + size: 2 + link: "/work-packages/z7s90NTp" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 178 + size: 2 + link: "/work-packages/1wA2fFJh" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 174 + size: 2 + link: "/work-packages/TUVPHf9x" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 192 + size: 2 + link: "/work-packages/wpuFhzm5" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 176 + size: 2 + link: "/work-packages/eqBIsv19" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 166 + size: 2 + link: "/work-packages/WzY4kI4B" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 181 + size: 2 + link: "/work-packages/Elsc9n58" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 179 + size: 2 + link: "/work-packages/J8EN7E6N" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 167 + size: 2 + link: "/work-packages/YffANOfi" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 195 + size: 2 + link: "/work-packages/P3nQG8UQ" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 190 + size: 2 + link: "/work-packages/cDVt360N" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 185 + size: 2 + link: "/work-packages/RTAa8Xxs" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 170 + size: 2 + link: "/work-packages/8zjP35K1" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 171 + size: 2 + link: "/work-packages/j6FFo1kf" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 173 + size: 2 + link: "/work-packages/k2fiopk4" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 194 + size: 2 + link: "/work-packages/bm6TrRXM" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 191 + size: 2 + link: "/work-packages/DdWTiUjw" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 188 + size: 2 + link: "/work-packages/YZVMPIjK" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 186 + size: 2 + link: "/work-packages/6kgJ0bGh" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 175 + size: 2 + link: "/work-packages/a5kzSCS7" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 153 + size: 2 + link: "/work-packages/RvO51D8Y" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 5 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 160 + size: 2 + link: "/work-packages/gfOq850z" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 5 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 144 + size: 2 + link: "/work-packages/H0wSQ5qG" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 5 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 154 + size: 2 + link: "/work-packages/1dkAzf5G" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 5 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 157 + size: 2 + link: "/work-packages/snpPLUSB" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 5 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 148 + size: 2 + link: "/work-packages/alYVrL7p" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 5 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 156 + size: 2 + link: "/work-packages/XNmQJL6V" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 5 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 151 + size: 2 + link: "/work-packages/K4kH9tSl" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 5 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 149 + size: 2 + link: "/work-packages/gyec2cjN" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 5 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 150 + size: 2 + link: "/work-packages/eouZnE6o" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 5 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 145 + size: 2 + link: "/work-packages/RxC0FtSg" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 5 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 161 + size: 2 + link: "/work-packages/mnCKpXns" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 5 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 143 + size: 2 + link: "/work-packages/aU26TzPE" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 5 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 159 + size: 2 + link: "/work-packages/hAmklf7q" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 5 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 163 + size: 2 + link: "/work-packages/HNyM3I1B" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 5 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 162 + size: 2 + link: "/work-packages/UNTY7PNO" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 5 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 152 + size: 2 + link: "/work-packages/lZwrpAHu" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 5 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 147 + size: 2 + link: "/work-packages/vdPBBc3g" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 5 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 158 + size: 2 + link: "/work-packages/sOWsIoTo" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 5 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 146 + size: 2 + link: "/work-packages/oLsZBZZy" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 5 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 155 + size: 2 + link: "/work-packages/42YVAgkz" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 5 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 218 + size: 2 + link: "/work-packages/PnLLjtW0" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 18 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 137 + size: 2 + link: "/work-packages/SE7Aj9Hz" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 18 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 139 + size: 2 + link: "/work-packages/hj1bbx7c" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 18 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 138 + size: 2 + link: "/work-packages/jTuty5ho" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 18 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 132 + size: 2 + link: "/work-packages/GQOruZBT" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 11 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 135 + size: 2 + link: "/work-packages/1po2BJxp" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 11 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 136 + size: 2 + link: "/work-packages/3dE9HsCE" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 11 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 133 + size: 2 + link: "/work-packages/Y6qiLSBv" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 11 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 121 + size: 2 + link: "/work-packages/1B8DSj6y" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 11 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 127 + size: 2 + link: "/work-packages/PHiVZHeP" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 11 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 122 + size: 2 + link: "/work-packages/ZkjV9gWZ" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 11 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 124 + size: 2 + link: "/work-packages/fa5HaWHq" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 11 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 130 + size: 2 + link: "/work-packages/4OyKxSz9" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 11 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 129 + size: 2 + link: "/work-packages/ms7N7n0G" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 11 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 128 + size: 2 + link: "/work-packages/3bZHylgr" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 11 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 125 + size: 2 + link: "/work-packages/F7LRwguI" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 11 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 123 + size: 2 + link: "/work-packages/G9ni0BQM" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 11 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 126 + size: 2 + link: "/work-packages/iOR7pNdJ" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 11 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 131 + size: 2 + link: "/work-packages/jQuzcqf5" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 11 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 134 + size: 2 + link: "/work-packages/TvrrHZTL" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 11 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 113 + size: 2 + link: "/work-packages/K83vusrm" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 4 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 116 + size: 2 + link: "/work-packages/sCsUv9LP" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 4 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 112 + size: 2 + link: "/work-packages/dnBED32B" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 4 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 109 + size: 2 + link: "/work-packages/NNZyLkm8" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 4 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 110 + size: 2 + link: "/work-packages/tWfu2Nyq" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 4 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 117 + size: 2 + link: "/work-packages/O2X0qWrg" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 4 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 114 + size: 2 + link: "/work-packages/VwdFcdKq" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 4 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 120 + size: 2 + link: "/work-packages/665mjGeq" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 4 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 119 + size: 2 + link: "/work-packages/Fwns2363" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 4 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 111 + size: 2 + link: "/work-packages/iwUtxq6V" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 4 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 118 + size: 2 + link: "/work-packages/QA1PcSCp" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 4 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 115 + size: 2 + link: "/work-packages/vdp9GgsX" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 4 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 96 + size: 2 + link: "/work-packages/V8H9QZ1p" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 27 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 99 + size: 2 + link: "/work-packages/j4YnKrGQ" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 27 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 103 + size: 2 + link: "/work-packages/uIv7V5Fh" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 27 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 97 + size: 2 + link: "/work-packages/lV20Bjux" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 27 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 104 + size: 2 + link: "/work-packages/ThkRNxvE" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 27 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 105 + size: 2 + link: "/work-packages/okoEwpBW" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 27 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 91 + size: 2 + link: "/work-packages/d3zxRvk4" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 27 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 98 + size: 2 + link: "/work-packages/kgC76Ime" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 27 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 92 + size: 2 + link: "/work-packages/PuKCWhOF" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 27 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 100 + size: 2 + link: "/work-packages/WdlP3RL1" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 27 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 95 + size: 2 + link: "/work-packages/Q5DIXbsV" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 27 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 101 + size: 2 + link: "/work-packages/DKrpinkq" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 27 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 108 + size: 2 + link: "/work-packages/R6OYbZOe" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 27 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 94 + size: 2 + link: "/work-packages/1UXwbopq" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 27 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 106 + size: 2 + link: "/work-packages/rGmwrYWm" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 27 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 102 + size: 2 + link: "/work-packages/4hcgudSd" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 27 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 93 + size: 2 + link: "/work-packages/k6e1O3T7" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 27 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 107 + size: 2 + link: "/work-packages/qOj7JAd8" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 27 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 83 + size: 2 + link: "/work-packages/VKMmNyZw" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 58 + size: 2 + link: "/work-packages/zTTK3xwl" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 59 + size: 2 + link: "/work-packages/zJLB2rbN" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 60 + size: 2 + link: "/work-packages/0zyGzme2" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 88 + size: 2 + link: "/work-packages/PXfg6pxB" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 65 + size: 2 + link: "/work-packages/LZZDP3oe" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 70 + size: 2 + link: "/work-packages/EMd5zhNn" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 78 + size: 2 + link: "/work-packages/kiJwF0d5" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 69 + size: 2 + link: "/work-packages/8MyEStfv" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 57 + size: 2 + link: "/work-packages/NPsTtMcv" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 67 + size: 2 + link: "/work-packages/mEw7S9ov" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 63 + size: 2 + link: "/work-packages/eCC4xqSd" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 68 + size: 2 + link: "/work-packages/cWSEaAzA" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 77 + size: 2 + link: "/work-packages/F1z92xaj" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 75 + size: 2 + link: "/work-packages/CNezzmKU" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 82 + size: 2 + link: "/work-packages/uMC04oEu" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 84 + size: 2 + link: "/work-packages/KRoYyf39" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 72 + size: 2 + link: "/work-packages/7qN3AkCI" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 61 + size: 2 + link: "/work-packages/LtEJxMbn" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 56 + size: 2 + link: "/work-packages/E5XlAFS8" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 74 + size: 2 + link: "/work-packages/ufLIT2Or" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 79 + size: 2 + link: "/work-packages/Th3KBYE1" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 64 + size: 2 + link: "/work-packages/WKnAjjLi" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 90 + size: 2 + link: "/work-packages/rB4zy7ZP" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 89 + size: 2 + link: "/work-packages/GjPYe6E4" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 76 + size: 2 + link: "/work-packages/4NTQX1GP" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 87 + size: 2 + link: "/work-packages/t070fIUe" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 81 + size: 2 + link: "/work-packages/bAycZdhj" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 66 + size: 2 + link: "/work-packages/MVnuNAsM" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 53 + size: 2 + link: "/work-packages/Y6Fg96Qc" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 85 + size: 2 + link: "/work-packages/0A9lArUa" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 62 + size: 2 + link: "/work-packages/jvQpwIVt" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 80 + size: 2 + link: "/work-packages/sVns1L8Y" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 86 + size: 2 + link: "/work-packages/nR6OHhoL" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 71 + size: 2 + link: "/work-packages/rSOd6At4" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 73 + size: 2 + link: "/work-packages/26Y9ftes" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 53 + size: 2 + link: "/work-packages/Y6Fg96Qc" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 14 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 48 + size: 2 + link: "/work-packages/yuPpm1jw" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 8 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 45 + size: 2 + link: "/work-packages/i5LP8krv" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 6 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 47 + size: 2 + link: "/work-packages/Ix8dPawU" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 6 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 51 + size: 2 + link: "/work-packages/PwLQp4Rk" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 6 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 44 + size: 2 + link: "/work-packages/wMkdwlCh" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 6 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 55 + size: 2 + link: "/work-packages/7ayWbhIK" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 6 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 42 + size: 2 + link: "/work-packages/2hbUBGLm" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 6 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 46 + size: 2 + link: "/work-packages/lq49zoKs" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 6 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 52 + size: 2 + link: "/work-packages/Xd5yfp3V" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 6 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 49 + size: 2 + link: "/work-packages/0ifq7ERi" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 6 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 54 + size: 2 + link: "/work-packages/hTZ6jXdk" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 6 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 50 + size: 2 + link: "/work-packages/A3hB6Aj4" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 6 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 43 + size: 2 + link: "/work-packages/imgmtCq9" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 4 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 34 + size: 2 + link: "/work-packages/PjQFqiyZ" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 23 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 29 + size: 2 + link: "/work-packages/9bXhF8oV" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 23 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 27 + size: 2 + link: "/work-packages/I4duwcuB" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 23 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 24 + size: 2 + link: "/work-packages/lon9Uu05" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 23 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 142 + size: 2 + link: "/work-packages/DX1ZptHJ" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 23 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 22 + size: 2 + link: "/work-packages/EgDK23iB" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 23 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 141 + size: 2 + link: "/work-packages/sSDUxi1Q" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 23 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 40 + size: 2 + link: "/work-packages/KAaIQyCC" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 23 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 41 + size: 2 + link: "/work-packages/F3ClsH20" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 23 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 4 + size: 2 + link: "/work-packages/eCsYdAM3" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 16 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 31 + size: 2 + link: "/work-packages/diYZkVb4" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 16 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 33 + size: 2 + link: "/work-packages/cfS0QBck" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 16 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 25 + size: 2 + link: "/work-packages/e8079KjV" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 16 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 35 + size: 2 + link: "/work-packages/9Zgnj98t" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 16 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 140 + size: 2 + link: "/work-packages/V2jm1mhC" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 16 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 5 + size: 2 + link: "/work-packages/tVWVmTCL" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 16 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 32 + size: 2 + link: "/work-packages/K8jg57DX" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 16 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 39 + size: 2 + link: "/work-packages/JJ45Soew" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 9 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 37 + size: 2 + link: "/work-packages/dFnbME4A" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 9 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 28 + size: 2 + link: "/work-packages/rlJaCEwJ" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 9 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 12 + size: 2 + link: "/work-packages/W7YZ1i4T" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 9 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 30 + size: 2 + link: "/work-packages/Ic57bsvz" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 9 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 38 + size: 2 + link: "/work-packages/JsU0fHFW" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 9 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 2 + size: 2 + link: "/work-packages/PsB0pq0l" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 9 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 13 + size: 2 + link: "/work-packages/bONPJ56c" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 9 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 36 + size: 2 + link: "/work-packages/9XxmwGtU" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 9 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 17 + size: 2 + link: "/work-packages/k5jw9Nhv" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 9 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 26 + size: 2 + link: "/work-packages/F8pP8ZhB" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 9 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 8 + size: 2 + link: "/work-packages/XDilT5Ce" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 7 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 15 + size: 2 + link: "/work-packages/40Yq0PnR" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 2 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 7 + size: 2 + link: "/work-packages/c8P8nJgq" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 2 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 3 + size: 2 + link: "/work-packages/uBG5MdZZ" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 2 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 1 + size: 2 + link: "/work-packages/UsdZhECl" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 2 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 20 + size: 2 + link: "/work-packages/KGrfWbku" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 2 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 14 + size: 2 + link: "/work-packages/WmlTLQiJ" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 2 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 19 + size: 2 + link: "/work-packages/EdGVZDEz" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 2 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 16 + size: 2 + link: "/work-packages/DRTwwjtS" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 2 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 6 + size: 2 + link: "/work-packages/BBNF0hzl" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 2 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 1 + size: 2 + link: "/work-packages/UsdZhECl" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 2 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 10 + size: 2 + link: "/work-packages/5wUN28za" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 2 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 11 + size: 2 + link: "/work-packages/y5Pki10i" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 2 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 21 + size: 2 + link: "/work-packages/QN1c7sKE" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 2 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 23 + size: 2 + link: "/work-packages/QXHttLOh" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 25 April 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 9 + size: 2 + link: "/work-packages/zlDxL3xS" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 25 April 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 18 + size: 2 + link: "/work-packages/ku4HUUqp" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 25 April 2018 +footer-components: +- name: footer + data: + uk-parliament: shared.footer.uk-parliament + components: + - name: list__generic + data: + type: ul + display: + name: partials__display + data: + - component: list + contents: + - content: shared.footer.current-website + - content: shared.footer.cookie-policy + data: + link: "/meta/cookie-policy" + - content: shared.footer.data-protection-privacy diff --git a/spec/fixtures/controllers/procedure_steps/work_packages_controller/index/fixture_with_missing_business_item_date.yml b/spec/fixtures/controllers/procedure_steps/work_packages_controller/index/fixture_with_missing_business_item_date.yml new file mode 100644 index 00000000..57360b17 --- /dev/null +++ b/spec/fixtures/controllers/procedure_steps/work_packages_controller/index/fixture_with_missing_business_item_date.yml @@ -0,0 +1,4821 @@ +--- +layout: + template: layout +meta: + title: procedureStepName - 1 - Work Packages - UK Parliament + request-id: 123456 + data-alternates: + - type: application/n-triples + href: http://localhost:3030/procedure_step_work_packages.nt?procedure_step_id=e9G2vHbc + - type: text/turtle + href: http://localhost:3030/procedure_step_work_packages.ttl?procedure_step_id=e9G2vHbc + - type: text/tab-separated-values + href: http://localhost:3030/procedure_step_work_packages.tsv?procedure_step_id=e9G2vHbc + - type: text/csv + href: http://localhost:3030/procedure_step_work_packages.csv?procedure_step_id=e9G2vHbc + - type: application/json+rdf + href: http://localhost:3030/procedure_step_work_packages.rj?procedure_step_id=e9G2vHbc + - type: application/json+ld + href: http://localhost:3030/procedure_step_work_packages.json?procedure_step_id=e9G2vHbc + - type: application/rdf+xml + href: http://localhost:3030/procedure_step_work_packages.xml?procedure_step_id=e9G2vHbc + open-graph: + title: procedureStepName - 1 - Work Packages - UK Parliament + original-url: https://www.example.com/procedure-steps/e9G2vHbc/work-packages + image-url: https://static.parliament.uk/assets-public/opengraph-oblong.png + image-width: '1200' + image-height: '630' + twitter-card: summary_large_image + opensearch-description-url: https://www.example.com/search/opensearch +header-components: +- name: link + data: + link: "#content" + display: + name: partials__display + data: + - component: skip-to-content + selector: skiplink + content: shared.header.skip-to-content +- name: status__banner + data: + display: + name: partials__display + data: + - component: status + variant: banner + - component: theme + variant: caution + - component: cookie + selector: cookie + components: + - name: paragraph + data: + - content: shared.header.cookie-banner-text + data: + link: "/meta/cookie-policy" +- name: status__banner + data: + display: + name: partials__display + data: + - component: status + variant: banner + components: + - name: paragraph + data: + - content: shared.header.beta-status +- name: header + data: + components: + - name: link + data: + link: "/" + display: + name: partials__display + data: + - component: uk_parliament + label: shared.header.label + components: + - name: icon__uk-parliament + data: shared.header.label + - name: form__search + data: + global: true + label: search.label + components: + - name: icon__search + data: search.search-icon + search-action: "/search" +main-components: +- name: section__primary + data: + components: + - name: heading1 + data: + subheading: + content: procedureStepName - 1 + heading: + content: Work Packages +- name: section__section + data: + components: + - name: list__generic + data: + type: ol + display: + name: partials__display + data: + - component: list + variant: block + components: + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 231 + size: 2 + link: "/work-packages/cRe5nDqS" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 17 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 221 + size: 2 + link: "/work-packages/oUyGCgS5" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 17 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 228 + size: 2 + link: "/work-packages/bYtCFU4N" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 17 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 224 + size: 2 + link: "/work-packages/5CAiPg2v" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 17 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 225 + size: 2 + link: "/work-packages/ZAc8K0r4" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 17 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 229 + size: 2 + link: "/work-packages/SrxpslCY" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 17 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 226 + size: 2 + link: "/work-packages/gW4ShvE2" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 17 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 230 + size: 2 + link: "/work-packages/vu0GPgyl" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 17 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 222 + size: 2 + link: "/work-packages/MQChNjSY" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 17 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 219 + size: 2 + link: "/work-packages/Wg3eh80v" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 17 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 220 + size: 2 + link: "/work-packages/aj8r4hAP" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 17 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 223 + size: 2 + link: "/work-packages/zefBXzh8" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 17 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 233 + size: 2 + link: "/work-packages/pjtvqXCz" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 17 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 232 + size: 2 + link: "/work-packages/xl31EYMX" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 17 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 227 + size: 2 + link: "/work-packages/mA0R8oxO" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 17 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 209 + size: 2 + link: "/work-packages/FKyIv1xY" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 10 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 206 + size: 2 + link: "/work-packages/VGG0Gv4P" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 10 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 216 + size: 2 + link: "/work-packages/mmJtbuq0" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 10 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 197 + size: 2 + link: "/work-packages/kAWq2agx" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 10 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 207 + size: 2 + link: "/work-packages/9mNfFnUB" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 10 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 202 + size: 2 + link: "/work-packages/K1GI1d9e" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 10 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 217 + size: 2 + link: "/work-packages/vKAEAnJF" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 10 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 210 + size: 2 + link: "/work-packages/FB2aMTBN" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 10 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 199 + size: 2 + link: "/work-packages/vxPj3xad" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 10 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 198 + size: 2 + link: "/work-packages/ZanXOGcI" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 10 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 196 + size: 2 + link: "/work-packages/lQQjF54h" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 10 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 208 + size: 2 + link: "/work-packages/86fSY4P0" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 10 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 204 + size: 2 + link: "/work-packages/NoHwsgYC" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 10 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 211 + size: 2 + link: "/work-packages/RlbS8X8u" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 10 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 212 + size: 2 + link: "/work-packages/hpbakMhj" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 10 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 200 + size: 2 + link: "/work-packages/6OQ1w3DW" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 10 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 215 + size: 2 + link: "/work-packages/IU7gREgJ" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 10 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 205 + size: 2 + link: "/work-packages/MyVni6Ej" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 10 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 203 + size: 2 + link: "/work-packages/gQreLll1" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 10 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 201 + size: 2 + link: "/work-packages/WHAQG0Ch" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 10 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 214 + size: 2 + link: "/work-packages/CnbVFSFE" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 10 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 213 + size: 2 + link: "/work-packages/skuLtkzM" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 10 October 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 165 + size: 2 + link: "/work-packages/msKM10hC" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 184 + size: 2 + link: "/work-packages/83lMBlLs" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 189 + size: 2 + link: "/work-packages/rDRNBssE" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 164 + size: 2 + link: "/work-packages/xVDuhFhy" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 183 + size: 2 + link: "/work-packages/fYStL7le" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 168 + size: 2 + link: "/work-packages/AFYBjHvC" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 180 + size: 2 + link: "/work-packages/h5Fp2H9d" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 182 + size: 2 + link: "/work-packages/3WxJmYZD" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 193 + size: 2 + link: "/work-packages/8vXQJ2xK" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 187 + size: 2 + link: "/work-packages/FJdkYpZ5" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 177 + size: 2 + link: "/work-packages/eWrOts77" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 169 + size: 2 + link: "/work-packages/WNbpxbb2" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 172 + size: 2 + link: "/work-packages/z7s90NTp" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 178 + size: 2 + link: "/work-packages/1wA2fFJh" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 174 + size: 2 + link: "/work-packages/TUVPHf9x" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 192 + size: 2 + link: "/work-packages/wpuFhzm5" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 176 + size: 2 + link: "/work-packages/eqBIsv19" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 166 + size: 2 + link: "/work-packages/WzY4kI4B" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 181 + size: 2 + link: "/work-packages/Elsc9n58" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 179 + size: 2 + link: "/work-packages/J8EN7E6N" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 167 + size: 2 + link: "/work-packages/YffANOfi" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 195 + size: 2 + link: "/work-packages/P3nQG8UQ" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 190 + size: 2 + link: "/work-packages/cDVt360N" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 185 + size: 2 + link: "/work-packages/RTAa8Xxs" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 170 + size: 2 + link: "/work-packages/8zjP35K1" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 171 + size: 2 + link: "/work-packages/j6FFo1kf" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 173 + size: 2 + link: "/work-packages/k2fiopk4" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 194 + size: 2 + link: "/work-packages/bm6TrRXM" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 191 + size: 2 + link: "/work-packages/DdWTiUjw" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 188 + size: 2 + link: "/work-packages/YZVMPIjK" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 186 + size: 2 + link: "/work-packages/6kgJ0bGh" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 175 + size: 2 + link: "/work-packages/a5kzSCS7" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 12 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 153 + size: 2 + link: "/work-packages/RvO51D8Y" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 5 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 160 + size: 2 + link: "/work-packages/gfOq850z" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 5 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 144 + size: 2 + link: "/work-packages/H0wSQ5qG" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 5 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 154 + size: 2 + link: "/work-packages/1dkAzf5G" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 5 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 157 + size: 2 + link: "/work-packages/snpPLUSB" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 5 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 148 + size: 2 + link: "/work-packages/alYVrL7p" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 5 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 156 + size: 2 + link: "/work-packages/XNmQJL6V" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 5 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 151 + size: 2 + link: "/work-packages/K4kH9tSl" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 5 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 149 + size: 2 + link: "/work-packages/gyec2cjN" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 5 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 150 + size: 2 + link: "/work-packages/eouZnE6o" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 5 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 145 + size: 2 + link: "/work-packages/RxC0FtSg" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 5 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 161 + size: 2 + link: "/work-packages/mnCKpXns" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 5 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 143 + size: 2 + link: "/work-packages/aU26TzPE" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 5 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 159 + size: 2 + link: "/work-packages/hAmklf7q" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 5 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 163 + size: 2 + link: "/work-packages/HNyM3I1B" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 5 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 162 + size: 2 + link: "/work-packages/UNTY7PNO" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 5 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 152 + size: 2 + link: "/work-packages/lZwrpAHu" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 5 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 147 + size: 2 + link: "/work-packages/vdPBBc3g" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 5 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 158 + size: 2 + link: "/work-packages/sOWsIoTo" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 5 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 146 + size: 2 + link: "/work-packages/oLsZBZZy" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 5 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 155 + size: 2 + link: "/work-packages/42YVAgkz" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 5 September 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 218 + size: 2 + link: "/work-packages/PnLLjtW0" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 18 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 137 + size: 2 + link: "/work-packages/SE7Aj9Hz" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 18 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 139 + size: 2 + link: "/work-packages/hj1bbx7c" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 18 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 138 + size: 2 + link: "/work-packages/jTuty5ho" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 18 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 132 + size: 2 + link: "/work-packages/GQOruZBT" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 11 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 135 + size: 2 + link: "/work-packages/1po2BJxp" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 11 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 136 + size: 2 + link: "/work-packages/3dE9HsCE" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 11 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 133 + size: 2 + link: "/work-packages/Y6qiLSBv" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 11 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 121 + size: 2 + link: "/work-packages/1B8DSj6y" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 11 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 127 + size: 2 + link: "/work-packages/PHiVZHeP" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 11 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 122 + size: 2 + link: "/work-packages/ZkjV9gWZ" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 11 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 124 + size: 2 + link: "/work-packages/fa5HaWHq" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 11 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 130 + size: 2 + link: "/work-packages/4OyKxSz9" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 11 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 129 + size: 2 + link: "/work-packages/ms7N7n0G" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 11 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 128 + size: 2 + link: "/work-packages/3bZHylgr" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 11 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 125 + size: 2 + link: "/work-packages/F7LRwguI" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 11 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 123 + size: 2 + link: "/work-packages/G9ni0BQM" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 11 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 126 + size: 2 + link: "/work-packages/iOR7pNdJ" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 11 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 131 + size: 2 + link: "/work-packages/jQuzcqf5" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 11 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 134 + size: 2 + link: "/work-packages/TvrrHZTL" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 11 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 113 + size: 2 + link: "/work-packages/K83vusrm" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 4 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 116 + size: 2 + link: "/work-packages/sCsUv9LP" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 4 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 112 + size: 2 + link: "/work-packages/dnBED32B" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 4 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 109 + size: 2 + link: "/work-packages/NNZyLkm8" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 4 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 110 + size: 2 + link: "/work-packages/tWfu2Nyq" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 4 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 117 + size: 2 + link: "/work-packages/O2X0qWrg" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 4 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 114 + size: 2 + link: "/work-packages/VwdFcdKq" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 4 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 120 + size: 2 + link: "/work-packages/665mjGeq" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 4 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 119 + size: 2 + link: "/work-packages/Fwns2363" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 4 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 111 + size: 2 + link: "/work-packages/iwUtxq6V" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 4 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 118 + size: 2 + link: "/work-packages/QA1PcSCp" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 4 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 115 + size: 2 + link: "/work-packages/vdp9GgsX" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 4 July 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 96 + size: 2 + link: "/work-packages/V8H9QZ1p" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 27 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 99 + size: 2 + link: "/work-packages/j4YnKrGQ" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 27 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 103 + size: 2 + link: "/work-packages/uIv7V5Fh" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 27 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 97 + size: 2 + link: "/work-packages/lV20Bjux" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 27 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 104 + size: 2 + link: "/work-packages/ThkRNxvE" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 27 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 105 + size: 2 + link: "/work-packages/okoEwpBW" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 27 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 91 + size: 2 + link: "/work-packages/d3zxRvk4" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 27 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 98 + size: 2 + link: "/work-packages/kgC76Ime" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 27 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 92 + size: 2 + link: "/work-packages/PuKCWhOF" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 27 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 100 + size: 2 + link: "/work-packages/WdlP3RL1" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 27 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 95 + size: 2 + link: "/work-packages/Q5DIXbsV" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 27 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 101 + size: 2 + link: "/work-packages/DKrpinkq" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 27 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 108 + size: 2 + link: "/work-packages/R6OYbZOe" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 27 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 94 + size: 2 + link: "/work-packages/1UXwbopq" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 27 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 106 + size: 2 + link: "/work-packages/rGmwrYWm" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 27 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 102 + size: 2 + link: "/work-packages/4hcgudSd" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 27 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 93 + size: 2 + link: "/work-packages/k6e1O3T7" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 27 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 107 + size: 2 + link: "/work-packages/qOj7JAd8" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 27 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 83 + size: 2 + link: "/work-packages/VKMmNyZw" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 58 + size: 2 + link: "/work-packages/zTTK3xwl" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 59 + size: 2 + link: "/work-packages/zJLB2rbN" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 60 + size: 2 + link: "/work-packages/0zyGzme2" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 88 + size: 2 + link: "/work-packages/PXfg6pxB" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 65 + size: 2 + link: "/work-packages/LZZDP3oe" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 70 + size: 2 + link: "/work-packages/EMd5zhNn" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 78 + size: 2 + link: "/work-packages/kiJwF0d5" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 69 + size: 2 + link: "/work-packages/8MyEStfv" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 57 + size: 2 + link: "/work-packages/NPsTtMcv" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 67 + size: 2 + link: "/work-packages/mEw7S9ov" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 63 + size: 2 + link: "/work-packages/eCC4xqSd" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 68 + size: 2 + link: "/work-packages/cWSEaAzA" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 77 + size: 2 + link: "/work-packages/F1z92xaj" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 75 + size: 2 + link: "/work-packages/CNezzmKU" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 82 + size: 2 + link: "/work-packages/uMC04oEu" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 84 + size: 2 + link: "/work-packages/KRoYyf39" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 72 + size: 2 + link: "/work-packages/7qN3AkCI" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 61 + size: 2 + link: "/work-packages/LtEJxMbn" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 56 + size: 2 + link: "/work-packages/E5XlAFS8" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 74 + size: 2 + link: "/work-packages/ufLIT2Or" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 79 + size: 2 + link: "/work-packages/Th3KBYE1" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 64 + size: 2 + link: "/work-packages/WKnAjjLi" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 90 + size: 2 + link: "/work-packages/rB4zy7ZP" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 89 + size: 2 + link: "/work-packages/GjPYe6E4" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 76 + size: 2 + link: "/work-packages/4NTQX1GP" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 87 + size: 2 + link: "/work-packages/t070fIUe" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 81 + size: 2 + link: "/work-packages/bAycZdhj" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 66 + size: 2 + link: "/work-packages/MVnuNAsM" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 53 + size: 2 + link: "/work-packages/Y6Fg96Qc" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 85 + size: 2 + link: "/work-packages/0A9lArUa" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 62 + size: 2 + link: "/work-packages/jvQpwIVt" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 80 + size: 2 + link: "/work-packages/sVns1L8Y" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 86 + size: 2 + link: "/work-packages/nR6OHhoL" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 71 + size: 2 + link: "/work-packages/rSOd6At4" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 73 + size: 2 + link: "/work-packages/26Y9ftes" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 20 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 53 + size: 2 + link: "/work-packages/Y6Fg96Qc" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 14 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 48 + size: 2 + link: "/work-packages/yuPpm1jw" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 8 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 45 + size: 2 + link: "/work-packages/i5LP8krv" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 6 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 47 + size: 2 + link: "/work-packages/Ix8dPawU" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 6 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 51 + size: 2 + link: "/work-packages/PwLQp4Rk" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 6 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 44 + size: 2 + link: "/work-packages/wMkdwlCh" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 6 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 55 + size: 2 + link: "/work-packages/7ayWbhIK" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 6 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 42 + size: 2 + link: "/work-packages/2hbUBGLm" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 6 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 46 + size: 2 + link: "/work-packages/lq49zoKs" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 6 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 52 + size: 2 + link: "/work-packages/Xd5yfp3V" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 6 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 49 + size: 2 + link: "/work-packages/0ifq7ERi" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 6 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 54 + size: 2 + link: "/work-packages/hTZ6jXdk" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 6 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 50 + size: 2 + link: "/work-packages/A3hB6Aj4" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 6 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 43 + size: 2 + link: "/work-packages/imgmtCq9" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 4 June 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 34 + size: 2 + link: "/work-packages/PjQFqiyZ" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 23 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 29 + size: 2 + link: "/work-packages/9bXhF8oV" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 23 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 27 + size: 2 + link: "/work-packages/I4duwcuB" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 23 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 24 + size: 2 + link: "/work-packages/lon9Uu05" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 23 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 142 + size: 2 + link: "/work-packages/DX1ZptHJ" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 23 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 22 + size: 2 + link: "/work-packages/EgDK23iB" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 23 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 141 + size: 2 + link: "/work-packages/sSDUxi1Q" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 23 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 40 + size: 2 + link: "/work-packages/KAaIQyCC" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 23 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 41 + size: 2 + link: "/work-packages/F3ClsH20" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 23 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 4 + size: 2 + link: "/work-packages/eCsYdAM3" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 16 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 31 + size: 2 + link: "/work-packages/diYZkVb4" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 16 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 33 + size: 2 + link: "/work-packages/cfS0QBck" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 16 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 25 + size: 2 + link: "/work-packages/e8079KjV" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 16 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 35 + size: 2 + link: "/work-packages/9Zgnj98t" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 16 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 140 + size: 2 + link: "/work-packages/V2jm1mhC" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 16 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 5 + size: 2 + link: "/work-packages/tVWVmTCL" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 16 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 32 + size: 2 + link: "/work-packages/K8jg57DX" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 16 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 39 + size: 2 + link: "/work-packages/JJ45Soew" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 9 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 37 + size: 2 + link: "/work-packages/dFnbME4A" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 9 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 28 + size: 2 + link: "/work-packages/rlJaCEwJ" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 9 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 12 + size: 2 + link: "/work-packages/W7YZ1i4T" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 9 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 30 + size: 2 + link: "/work-packages/Ic57bsvz" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 9 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 38 + size: 2 + link: "/work-packages/JsU0fHFW" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 9 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 2 + size: 2 + link: "/work-packages/PsB0pq0l" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 9 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 13 + size: 2 + link: "/work-packages/bONPJ56c" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 9 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 36 + size: 2 + link: "/work-packages/9XxmwGtU" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 9 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 17 + size: 2 + link: "/work-packages/k5jw9Nhv" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 9 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 26 + size: 2 + link: "/work-packages/F8pP8ZhB" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 9 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 8 + size: 2 + link: "/work-packages/XDilT5Ce" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 7 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 15 + size: 2 + link: "/work-packages/40Yq0PnR" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 2 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 7 + size: 2 + link: "/work-packages/c8P8nJgq" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 2 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 1 + size: 2 + link: "/work-packages/UsdZhECl" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 2 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 20 + size: 2 + link: "/work-packages/KGrfWbku" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 2 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 14 + size: 2 + link: "/work-packages/WmlTLQiJ" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 2 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 19 + size: 2 + link: "/work-packages/EdGVZDEz" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 2 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 16 + size: 2 + link: "/work-packages/DRTwwjtS" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 2 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 6 + size: 2 + link: "/work-packages/BBNF0hzl" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 2 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 1 + size: 2 + link: "/work-packages/UsdZhECl" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 2 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 10 + size: 2 + link: "/work-packages/5wUN28za" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 2 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 11 + size: 2 + link: "/work-packages/y5Pki10i" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 2 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 21 + size: 2 + link: "/work-packages/QN1c7sKE" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 2 May 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 23 + size: 2 + link: "/work-packages/QXHttLOh" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 25 April 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 9 + size: 2 + link: "/work-packages/zlDxL3xS" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 25 April 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 18 + size: 2 + link: "/work-packages/ku4HUUqp" + list-description: + name: list__description + data: + items: + - term: + content: procedure-steps.subsidiary-resources.actualised-date + description: + - content: 25 April 2018 + - name: card__generic + data: + small: + name: partials__small + data: + content: laid-thing.work-package + heading: + name: heading + data: + content: workPackagedThingName - 3 + size: 2 + link: "/work-packages/uBG5MdZZ" +footer-components: +- name: footer + data: + uk-parliament: shared.footer.uk-parliament + components: + - name: list__generic + data: + type: ul + display: + name: partials__display + data: + - component: list + contents: + - content: shared.footer.current-website + - content: shared.footer.cookie-policy + data: + link: "/meta/cookie-policy" + - content: shared.footer.data-protection-privacy diff --git a/spec/fixtures/vcr_cassettes/ProcedureSteps_WorkPackagesController/GET_index/calling_the_serializers_correctly/calls_the_Heading1ComponentSerializer_correctly.yml b/spec/fixtures/vcr_cassettes/ProcedureSteps_WorkPackagesController/GET_index/calling_the_serializers_correctly/calls_the_Heading1ComponentSerializer_correctly.yml new file mode 100644 index 00000000..8742cae3 --- /dev/null +++ b/spec/fixtures/vcr_cassettes/ProcedureSteps_WorkPackagesController/GET_index/calling_the_serializers_correctly/calls_the_Heading1ComponentSerializer_correctly.yml @@ -0,0 +1,2160 @@ +--- +http_interactions: +- request: + method: get + uri: http://localhost:3030/procedure_step_work_packages?procedure_step_id=e9G2vHbc + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + - application/n-triples + User-Agent: + - Ruby + Ocp-Apim-Subscription-Key: + - "" + Api-Version: + - Staging + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/n-triples + Content-Disposition: + - inline; filename="index" + Last-Modified: + - Wed, 24 Oct 2018 15:57:39 GMT + X-Content-Type-Options: + - nosniff + Content-Length: + - '299955' + body: + encoding: UTF-8 + string: | + . + "procedureStepName - 1" . + . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 1" . + . + "houseName - 1" . + . + "procedureName - 1" . + . + . + "houseName - 2" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 2" . + . + "procedureName - 2" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 3" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 4" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 5" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 6" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 7" . + . + . + "2018-05-07+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 8" . + . + . + "2018-04-25+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 9" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 10" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 11" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 12" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 13" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 14" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 15" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 16" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 17" . + . + . + "2018-04-25+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 18" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 19" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 20" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 21" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 22" . + . + . + "2018-04-25+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 23" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 24" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 25" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 26" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 27" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 28" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 29" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 30" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 31" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 32" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 33" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 34" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 35" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 36" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 37" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 38" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 39" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 40" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 41" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 42" . + . + . + "2018-06-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 43" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 44" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 45" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 46" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 47" . + . + . + "2018-06-08+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 48" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 49" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 50" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 51" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 52" . + . + . + "2018-06-14+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 53" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 54" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 55" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 56" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 57" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 58" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 59" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 60" . + . + "procedureName - 3" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 61" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 62" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 63" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 64" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 65" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 66" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 67" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 68" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 69" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 70" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 71" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 72" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 73" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 74" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 75" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 76" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 77" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 78" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 79" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 80" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 81" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 82" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 83" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 84" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 85" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 86" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 87" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 88" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 89" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 90" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 91" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 92" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 93" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 94" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 95" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 96" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 97" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 98" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 99" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 100" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 101" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 102" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 103" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 104" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 105" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 106" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 107" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 108" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 109" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 110" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 111" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 112" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 113" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 114" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 115" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 116" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 117" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 118" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 119" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 120" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 121" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 122" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 123" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 124" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 125" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 126" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 127" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 128" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 129" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 130" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 131" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 132" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 133" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 134" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 135" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 136" . + . + . + "2018-07-18+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 137" . + . + . + "2018-07-18+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 138" . + . + . + "2018-07-18+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 139" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 140" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 141" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 142" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 143" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 144" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 145" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 146" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 147" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 148" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 149" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 150" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 151" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 152" . + . + . + "2018-09-05+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 153" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 154" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 155" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 156" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 157" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 158" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 159" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 160" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 161" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 162" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 163" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 164" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 165" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 166" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 167" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 168" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 169" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 170" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 171" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 172" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 173" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 174" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 175" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 176" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 177" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 178" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 179" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 180" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 181" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 182" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 183" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 184" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 185" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 186" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 187" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 188" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 189" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 190" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 191" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 192" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 193" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 194" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 195" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 196" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 197" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 198" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 199" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 200" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 201" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 202" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 203" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 204" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 205" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 206" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 207" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 208" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 209" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 210" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 211" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 212" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 213" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 214" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 215" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 216" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 217" . + . + . + "2018-07-18+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 218" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 219" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 220" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 221" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 222" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 223" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 224" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 225" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 226" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 227" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 228" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 229" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 230" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 231" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 232" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 233" . + http_version: + recorded_at: Wed, 24 Oct 2018 16:47:58 GMT +recorded_with: VCR 4.0.0 diff --git a/spec/fixtures/vcr_cassettes/ProcedureSteps_WorkPackagesController/GET_index/calling_the_serializers_correctly/calls_the_ListPageSerializer_correctly.yml b/spec/fixtures/vcr_cassettes/ProcedureSteps_WorkPackagesController/GET_index/calling_the_serializers_correctly/calls_the_ListPageSerializer_correctly.yml new file mode 100644 index 00000000..4f90f825 --- /dev/null +++ b/spec/fixtures/vcr_cassettes/ProcedureSteps_WorkPackagesController/GET_index/calling_the_serializers_correctly/calls_the_ListPageSerializer_correctly.yml @@ -0,0 +1,89 @@ +--- +http_interactions: +- request: + method: get + uri: http://localhost:3030/procedure_step_work_packages?procedure_step_id=e9G2vHbc + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + - application/n-triples + User-Agent: + - Ruby + Ocp-Apim-Subscription-Key: + - "" + Api-Version: + - Staging + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/n-triples + Content-Disposition: + - inline; filename="index" + Last-Modified: + - Wed, 24 Oct 2018 15:57:39 GMT + X-Content-Type-Options: + - nosniff + Content-Length: + - '299955' + body: + encoding: UTF-8 + string: | + . + "procedureStepName - 1" . + . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 1" . + . + "houseName - 1" . + . + "procedureName - 1" . + . + . + "houseName - 2" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 2" . + . + "procedureName - 2" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 3" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 4" . + http_version: + recorded_at: Wed, 24 Oct 2018 16:47:50 GMT +recorded_with: VCR 4.0.0 diff --git a/spec/fixtures/vcr_cassettes/ProcedureSteps_WorkPackagesController/GET_index/navigating_to_the_index_page/renders_expected_JSON_output.yml b/spec/fixtures/vcr_cassettes/ProcedureSteps_WorkPackagesController/GET_index/navigating_to_the_index_page/renders_expected_JSON_output.yml new file mode 100644 index 00000000..15c79a00 --- /dev/null +++ b/spec/fixtures/vcr_cassettes/ProcedureSteps_WorkPackagesController/GET_index/navigating_to_the_index_page/renders_expected_JSON_output.yml @@ -0,0 +1,2160 @@ +--- +http_interactions: +- request: + method: get + uri: http://localhost:3030/procedure_step_work_packages?procedure_step_id=e9G2vHbc + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + - application/n-triples + User-Agent: + - Ruby + Ocp-Apim-Subscription-Key: + - "" + Api-Version: + - Staging + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/n-triples + Content-Disposition: + - inline; filename="index" + Last-Modified: + - Wed, 24 Oct 2018 15:57:39 GMT + X-Content-Type-Options: + - nosniff + Content-Length: + - '299955' + body: + encoding: UTF-8 + string: | + . + "procedureStepName - 1" . + . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 1" . + . + "houseName - 1" . + . + "procedureName - 1" . + . + . + "houseName - 2" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 2" . + . + "procedureName - 2" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 3" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 4" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 5" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 6" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 7" . + . + . + "2018-05-07+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 8" . + . + . + "2018-04-25+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 9" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 10" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 11" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 12" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 13" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 14" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 15" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 16" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 17" . + . + . + "2018-04-25+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 18" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 19" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 20" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 21" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 22" . + . + . + "2018-04-25+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 23" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 24" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 25" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 26" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 27" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 28" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 29" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 30" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 31" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 32" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 33" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 34" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 35" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 36" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 37" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 38" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 39" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 40" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 41" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 42" . + . + . + "2018-06-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 43" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 44" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 45" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 46" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 47" . + . + . + "2018-06-08+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 48" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 49" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 50" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 51" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 52" . + . + . + "2018-06-14+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 53" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 54" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 55" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 56" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 57" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 58" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 59" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 60" . + . + "procedureName - 3" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 61" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 62" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 63" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 64" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 65" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 66" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 67" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 68" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 69" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 70" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 71" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 72" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 73" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 74" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 75" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 76" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 77" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 78" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 79" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 80" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 81" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 82" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 83" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 84" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 85" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 86" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 87" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 88" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 89" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 90" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 91" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 92" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 93" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 94" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 95" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 96" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 97" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 98" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 99" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 100" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 101" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 102" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 103" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 104" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 105" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 106" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 107" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 108" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 109" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 110" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 111" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 112" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 113" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 114" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 115" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 116" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 117" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 118" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 119" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 120" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 121" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 122" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 123" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 124" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 125" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 126" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 127" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 128" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 129" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 130" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 131" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 132" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 133" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 134" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 135" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 136" . + . + . + "2018-07-18+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 137" . + . + . + "2018-07-18+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 138" . + . + . + "2018-07-18+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 139" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 140" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 141" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 142" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 143" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 144" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 145" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 146" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 147" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 148" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 149" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 150" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 151" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 152" . + . + . + "2018-09-05+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 153" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 154" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 155" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 156" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 157" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 158" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 159" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 160" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 161" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 162" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 163" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 164" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 165" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 166" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 167" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 168" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 169" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 170" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 171" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 172" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 173" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 174" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 175" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 176" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 177" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 178" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 179" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 180" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 181" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 182" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 183" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 184" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 185" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 186" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 187" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 188" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 189" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 190" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 191" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 192" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 193" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 194" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 195" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 196" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 197" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 198" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 199" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 200" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 201" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 202" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 203" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 204" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 205" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 206" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 207" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 208" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 209" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 210" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 211" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 212" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 213" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 214" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 215" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 216" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 217" . + . + . + "2018-07-18+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 218" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 219" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 220" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 221" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 222" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 223" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 224" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 225" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 226" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 227" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 228" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 229" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 230" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 231" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 232" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 233" . + http_version: + recorded_at: Wed, 24 Oct 2018 17:00:32 GMT +recorded_with: VCR 4.0.0 diff --git a/spec/fixtures/vcr_cassettes/ProcedureSteps_WorkPackagesController/GET_index/navigating_to_the_index_page/when_a_business_item_does_not_have_a_date/renders_expected_JSON_output.yml b/spec/fixtures/vcr_cassettes/ProcedureSteps_WorkPackagesController/GET_index/navigating_to_the_index_page/when_a_business_item_does_not_have_a_date/renders_expected_JSON_output.yml new file mode 100644 index 00000000..95cabf33 --- /dev/null +++ b/spec/fixtures/vcr_cassettes/ProcedureSteps_WorkPackagesController/GET_index/navigating_to_the_index_page/when_a_business_item_does_not_have_a_date/renders_expected_JSON_output.yml @@ -0,0 +1,2159 @@ +--- +http_interactions: + - request: + method: get + uri: http://localhost:3030/procedure_step_work_packages?procedure_step_id=e9G2vHbc + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + - application/n-triples + User-Agent: + - Ruby + Ocp-Apim-Subscription-Key: + - "" + Api-Version: + - Staging + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/n-triples + Content-Disposition: + - inline; filename="index" + Last-Modified: + - Wed, 24 Oct 2018 15:57:39 GMT + X-Content-Type-Options: + - nosniff + Content-Length: + - '299955' + body: + encoding: UTF-8 + string: | + . + "procedureStepName - 1" . + . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 1" . + . + "houseName - 1" . + . + "procedureName - 1" . + . + . + "houseName - 2" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 2" . + . + "procedureName - 2" . + . + . + . + . + . + . + . + "workPackagedThingName - 3" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 4" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 5" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 6" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 7" . + . + . + "2018-05-07+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 8" . + . + . + "2018-04-25+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 9" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 10" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 11" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 12" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 13" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 14" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 15" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 16" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 17" . + . + . + "2018-04-25+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 18" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 19" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 20" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 21" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 22" . + . + . + "2018-04-25+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 23" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 24" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 25" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 26" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 27" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 28" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 29" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 30" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 31" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 32" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 33" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 34" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 35" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 36" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 37" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 38" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 39" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 40" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 41" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 42" . + . + . + "2018-06-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 43" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 44" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 45" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 46" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 47" . + . + . + "2018-06-08+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 48" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 49" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 50" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 51" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 52" . + . + . + "2018-06-14+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 53" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 54" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 55" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 56" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 57" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 58" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 59" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 60" . + . + "procedureName - 3" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 61" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 62" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 63" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 64" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 65" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 66" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 67" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 68" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 69" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 70" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 71" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 72" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 73" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 74" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 75" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 76" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 77" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 78" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 79" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 80" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 81" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 82" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 83" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 84" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 85" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 86" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 87" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 88" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 89" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 90" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 91" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 92" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 93" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 94" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 95" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 96" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 97" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 98" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 99" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 100" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 101" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 102" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 103" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 104" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 105" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 106" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 107" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 108" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 109" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 110" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 111" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 112" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 113" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 114" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 115" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 116" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 117" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 118" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 119" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 120" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 121" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 122" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 123" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 124" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 125" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 126" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 127" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 128" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 129" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 130" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 131" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 132" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 133" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 134" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 135" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 136" . + . + . + "2018-07-18+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 137" . + . + . + "2018-07-18+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 138" . + . + . + "2018-07-18+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 139" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 140" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 141" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 142" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 143" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 144" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 145" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 146" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 147" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 148" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 149" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 150" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 151" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 152" . + . + . + "2018-09-05+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 153" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 154" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 155" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 156" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 157" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 158" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 159" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 160" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 161" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 162" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 163" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 164" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 165" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 166" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 167" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 168" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 169" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 170" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 171" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 172" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 173" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 174" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 175" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 176" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 177" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 178" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 179" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 180" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 181" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 182" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 183" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 184" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 185" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 186" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 187" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 188" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 189" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 190" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 191" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 192" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 193" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 194" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 195" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 196" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 197" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 198" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 199" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 200" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 201" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 202" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 203" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 204" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 205" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 206" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 207" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 208" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 209" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 210" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 211" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 212" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 213" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 214" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 215" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 216" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 217" . + . + . + "2018-07-18+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 218" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 219" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 220" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 221" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 222" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 223" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 224" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 225" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 226" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 227" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 228" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 229" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 230" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 231" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 232" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 233" . + http_version: + recorded_at: Wed, 24 Oct 2018 17:00:32 GMT +recorded_with: VCR 4.0.0 diff --git a/spec/fixtures/vcr_cassettes/ProcedureSteps_WorkPackagesController/GET_index/should_have_a_response_with_http_status_ok_200_.yml b/spec/fixtures/vcr_cassettes/ProcedureSteps_WorkPackagesController/GET_index/should_have_a_response_with_http_status_ok_200_.yml new file mode 100644 index 00000000..46db39e0 --- /dev/null +++ b/spec/fixtures/vcr_cassettes/ProcedureSteps_WorkPackagesController/GET_index/should_have_a_response_with_http_status_ok_200_.yml @@ -0,0 +1,2160 @@ +--- +http_interactions: +- request: + method: get + uri: http://localhost:3030/procedure_step_work_packages?procedure_step_id=e9G2vHbc + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + - application/n-triples + User-Agent: + - Ruby + Ocp-Apim-Subscription-Key: + - "" + Api-Version: + - Staging + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/n-triples + Content-Disposition: + - inline; filename="index" + Last-Modified: + - Wed, 24 Oct 2018 15:57:39 GMT + X-Content-Type-Options: + - nosniff + Content-Length: + - '299955' + body: + encoding: UTF-8 + string: | + . + "procedureStepName - 1" . + . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 1" . + . + "houseName - 1" . + . + "procedureName - 1" . + . + . + "houseName - 2" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 2" . + . + "procedureName - 2" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 3" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 4" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 5" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 6" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 7" . + . + . + "2018-05-07+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 8" . + . + . + "2018-04-25+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 9" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 10" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 11" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 12" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 13" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 14" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 15" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 16" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 17" . + . + . + "2018-04-25+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 18" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 19" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 20" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 21" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 22" . + . + . + "2018-04-25+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 23" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 24" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 25" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 26" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 27" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 28" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 29" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 30" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 31" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 32" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 33" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 34" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 35" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 36" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 37" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 38" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 39" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 40" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 41" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 42" . + . + . + "2018-06-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 43" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 44" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 45" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 46" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 47" . + . + . + "2018-06-08+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 48" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 49" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 50" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 51" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 52" . + . + . + "2018-06-14+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 53" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 54" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 55" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 56" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 57" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 58" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 59" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 60" . + . + "procedureName - 3" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 61" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 62" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 63" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 64" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 65" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 66" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 67" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 68" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 69" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 70" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 71" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 72" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 73" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 74" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 75" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 76" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 77" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 78" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 79" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 80" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 81" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 82" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 83" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 84" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 85" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 86" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 87" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 88" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 89" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 90" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 91" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 92" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 93" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 94" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 95" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 96" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 97" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 98" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 99" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 100" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 101" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 102" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 103" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 104" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 105" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 106" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 107" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 108" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 109" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 110" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 111" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 112" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 113" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 114" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 115" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 116" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 117" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 118" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 119" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 120" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 121" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 122" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 123" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 124" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 125" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 126" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 127" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 128" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 129" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 130" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 131" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 132" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 133" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 134" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 135" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 136" . + . + . + "2018-07-18+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 137" . + . + . + "2018-07-18+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 138" . + . + . + "2018-07-18+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 139" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 140" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 141" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 142" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 143" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 144" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 145" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 146" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 147" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 148" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 149" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 150" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 151" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 152" . + . + . + "2018-09-05+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 153" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 154" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 155" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 156" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 157" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 158" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 159" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 160" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 161" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 162" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 163" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 164" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 165" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 166" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 167" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 168" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 169" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 170" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 171" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 172" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 173" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 174" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 175" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 176" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 177" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 178" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 179" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 180" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 181" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 182" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 183" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 184" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 185" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 186" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 187" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 188" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 189" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 190" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 191" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 192" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 193" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 194" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 195" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 196" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 197" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 198" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 199" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 200" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 201" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 202" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 203" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 204" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 205" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 206" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 207" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 208" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 209" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 210" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 211" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 212" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 213" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 214" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 215" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 216" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 217" . + . + . + "2018-07-18+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 218" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 219" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 220" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 221" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 222" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 223" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 224" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 225" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 226" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 227" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 228" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 229" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 230" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 231" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 232" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 233" . + http_version: + recorded_at: Wed, 24 Oct 2018 16:47:49 GMT +recorded_with: VCR 4.0.0 diff --git a/spec/fixtures/vcr_cassettes/ProcedureSteps_WorkPackagesController/GET_index/the_correct_instance_variables/assigns_business_items.yml b/spec/fixtures/vcr_cassettes/ProcedureSteps_WorkPackagesController/GET_index/the_correct_instance_variables/assigns_business_items.yml new file mode 100644 index 00000000..08da454b --- /dev/null +++ b/spec/fixtures/vcr_cassettes/ProcedureSteps_WorkPackagesController/GET_index/the_correct_instance_variables/assigns_business_items.yml @@ -0,0 +1,2160 @@ +--- +http_interactions: +- request: + method: get + uri: http://localhost:3030/procedure_step_work_packages?procedure_step_id=e9G2vHbc + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + - application/n-triples + User-Agent: + - Ruby + Ocp-Apim-Subscription-Key: + - "" + Api-Version: + - Staging + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/n-triples + Content-Disposition: + - inline; filename="index" + Last-Modified: + - Wed, 24 Oct 2018 15:57:39 GMT + X-Content-Type-Options: + - nosniff + Content-Length: + - '299955' + body: + encoding: UTF-8 + string: | + . + "procedureStepName - 1" . + . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 1" . + . + "houseName - 1" . + . + "procedureName - 1" . + . + . + "houseName - 2" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 2" . + . + "procedureName - 2" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 3" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 4" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 5" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 6" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 7" . + . + . + "2018-05-07+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 8" . + . + . + "2018-04-25+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 9" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 10" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 11" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 12" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 13" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 14" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 15" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 16" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 17" . + . + . + "2018-04-25+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 18" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 19" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 20" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 21" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 22" . + . + . + "2018-04-25+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 23" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 24" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 25" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 26" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 27" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 28" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 29" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 30" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 31" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 32" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 33" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 34" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 35" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 36" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 37" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 38" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 39" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 40" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 41" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 42" . + . + . + "2018-06-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 43" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 44" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 45" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 46" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 47" . + . + . + "2018-06-08+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 48" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 49" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 50" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 51" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 52" . + . + . + "2018-06-14+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 53" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 54" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 55" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 56" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 57" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 58" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 59" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 60" . + . + "procedureName - 3" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 61" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 62" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 63" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 64" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 65" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 66" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 67" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 68" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 69" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 70" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 71" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 72" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 73" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 74" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 75" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 76" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 77" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 78" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 79" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 80" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 81" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 82" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 83" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 84" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 85" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 86" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 87" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 88" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 89" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 90" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 91" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 92" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 93" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 94" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 95" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 96" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 97" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 98" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 99" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 100" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 101" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 102" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 103" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 104" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 105" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 106" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 107" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 108" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 109" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 110" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 111" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 112" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 113" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 114" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 115" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 116" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 117" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 118" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 119" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 120" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 121" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 122" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 123" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 124" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 125" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 126" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 127" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 128" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 129" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 130" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 131" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 132" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 133" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 134" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 135" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 136" . + . + . + "2018-07-18+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 137" . + . + . + "2018-07-18+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 138" . + . + . + "2018-07-18+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 139" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 140" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 141" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 142" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 143" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 144" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 145" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 146" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 147" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 148" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 149" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 150" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 151" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 152" . + . + . + "2018-09-05+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 153" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 154" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 155" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 156" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 157" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 158" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 159" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 160" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 161" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 162" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 163" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 164" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 165" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 166" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 167" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 168" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 169" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 170" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 171" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 172" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 173" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 174" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 175" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 176" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 177" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 178" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 179" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 180" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 181" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 182" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 183" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 184" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 185" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 186" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 187" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 188" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 189" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 190" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 191" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 192" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 193" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 194" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 195" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 196" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 197" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 198" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 199" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 200" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 201" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 202" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 203" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 204" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 205" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 206" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 207" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 208" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 209" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 210" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 211" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 212" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 213" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 214" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 215" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 216" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 217" . + . + . + "2018-07-18+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 218" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 219" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 220" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 221" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 222" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 223" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 224" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 225" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 226" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 227" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 228" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 229" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 230" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 231" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 232" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 233" . + http_version: + recorded_at: Wed, 24 Oct 2018 16:49:40 GMT +recorded_with: VCR 4.0.0 diff --git a/spec/fixtures/vcr_cassettes/ProcedureSteps_WorkPackagesController/GET_index/the_correct_instance_variables/assigns_group.yml b/spec/fixtures/vcr_cassettes/ProcedureSteps_WorkPackagesController/GET_index/the_correct_instance_variables/assigns_group.yml new file mode 100644 index 00000000..f76bb519 --- /dev/null +++ b/spec/fixtures/vcr_cassettes/ProcedureSteps_WorkPackagesController/GET_index/the_correct_instance_variables/assigns_group.yml @@ -0,0 +1,2160 @@ +--- +http_interactions: +- request: + method: get + uri: http://localhost:3030/procedure_step_work_packages?procedure_step_id=e9G2vHbc + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + - application/n-triples + User-Agent: + - Ruby + Ocp-Apim-Subscription-Key: + - "" + Api-Version: + - Staging + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/n-triples + Content-Disposition: + - inline; filename="index" + Last-Modified: + - Wed, 24 Oct 2018 15:57:39 GMT + X-Content-Type-Options: + - nosniff + Content-Length: + - '299955' + body: + encoding: UTF-8 + string: | + . + "procedureStepName - 1" . + . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 1" . + . + "houseName - 1" . + . + "procedureName - 1" . + . + . + "houseName - 2" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 2" . + . + "procedureName - 2" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 3" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 4" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 5" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 6" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 7" . + . + . + "2018-05-07+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 8" . + . + . + "2018-04-25+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 9" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 10" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 11" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 12" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 13" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 14" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 15" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 16" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 17" . + . + . + "2018-04-25+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 18" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 19" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 20" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 21" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 22" . + . + . + "2018-04-25+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 23" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 24" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 25" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 26" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 27" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 28" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 29" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 30" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 31" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 32" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 33" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 34" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 35" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 36" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 37" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 38" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 39" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 40" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 41" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 42" . + . + . + "2018-06-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 43" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 44" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 45" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 46" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 47" . + . + . + "2018-06-08+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 48" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 49" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 50" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 51" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 52" . + . + . + "2018-06-14+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 53" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 54" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 55" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 56" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 57" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 58" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 59" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 60" . + . + "procedureName - 3" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 61" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 62" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 63" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 64" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 65" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 66" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 67" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 68" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 69" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 70" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 71" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 72" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 73" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 74" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 75" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 76" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 77" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 78" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 79" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 80" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 81" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 82" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 83" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 84" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 85" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 86" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 87" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 88" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 89" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 90" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 91" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 92" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 93" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 94" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 95" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 96" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 97" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 98" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 99" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 100" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 101" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 102" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 103" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 104" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 105" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 106" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 107" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 108" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 109" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 110" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 111" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 112" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 113" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 114" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 115" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 116" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 117" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 118" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 119" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 120" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 121" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 122" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 123" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 124" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 125" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 126" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 127" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 128" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 129" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 130" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 131" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 132" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 133" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 134" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 135" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 136" . + . + . + "2018-07-18+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 137" . + . + . + "2018-07-18+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 138" . + . + . + "2018-07-18+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 139" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 140" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 141" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 142" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 143" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 144" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 145" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 146" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 147" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 148" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 149" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 150" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 151" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 152" . + . + . + "2018-09-05+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 153" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 154" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 155" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 156" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 157" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 158" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 159" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 160" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 161" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 162" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 163" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 164" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 165" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 166" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 167" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 168" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 169" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 170" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 171" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 172" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 173" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 174" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 175" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 176" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 177" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 178" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 179" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 180" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 181" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 182" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 183" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 184" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 185" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 186" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 187" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 188" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 189" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 190" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 191" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 192" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 193" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 194" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 195" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 196" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 197" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 198" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 199" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 200" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 201" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 202" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 203" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 204" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 205" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 206" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 207" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 208" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 209" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 210" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 211" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 212" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 213" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 214" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 215" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 216" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 217" . + . + . + "2018-07-18+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 218" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 219" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 220" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 221" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 222" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 223" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 224" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 225" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 226" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 227" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 228" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 229" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 230" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 231" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 232" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 233" . + http_version: + recorded_at: Wed, 24 Oct 2018 16:47:50 GMT +recorded_with: VCR 4.0.0 diff --git a/spec/fixtures/vcr_cassettes/ProcedureSteps_WorkPackagesController/GET_index/the_correct_instance_variables/assigns_layings.yml b/spec/fixtures/vcr_cassettes/ProcedureSteps_WorkPackagesController/GET_index/the_correct_instance_variables/assigns_layings.yml new file mode 100644 index 00000000..46db39e0 --- /dev/null +++ b/spec/fixtures/vcr_cassettes/ProcedureSteps_WorkPackagesController/GET_index/the_correct_instance_variables/assigns_layings.yml @@ -0,0 +1,2160 @@ +--- +http_interactions: +- request: + method: get + uri: http://localhost:3030/procedure_step_work_packages?procedure_step_id=e9G2vHbc + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + - application/n-triples + User-Agent: + - Ruby + Ocp-Apim-Subscription-Key: + - "" + Api-Version: + - Staging + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/n-triples + Content-Disposition: + - inline; filename="index" + Last-Modified: + - Wed, 24 Oct 2018 15:57:39 GMT + X-Content-Type-Options: + - nosniff + Content-Length: + - '299955' + body: + encoding: UTF-8 + string: | + . + "procedureStepName - 1" . + . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 1" . + . + "houseName - 1" . + . + "procedureName - 1" . + . + . + "houseName - 2" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 2" . + . + "procedureName - 2" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 3" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 4" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 5" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 6" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 7" . + . + . + "2018-05-07+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 8" . + . + . + "2018-04-25+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 9" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 10" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 11" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 12" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 13" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 14" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 15" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 16" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 17" . + . + . + "2018-04-25+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 18" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 19" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 20" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 21" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 22" . + . + . + "2018-04-25+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 23" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 24" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 25" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 26" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 27" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 28" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 29" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 30" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 31" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 32" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 33" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 34" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 35" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 36" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 37" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 38" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 39" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 40" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 41" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 42" . + . + . + "2018-06-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 43" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 44" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 45" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 46" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 47" . + . + . + "2018-06-08+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 48" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 49" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 50" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 51" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 52" . + . + . + "2018-06-14+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 53" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 54" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 55" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 56" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 57" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 58" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 59" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 60" . + . + "procedureName - 3" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 61" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 62" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 63" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 64" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 65" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 66" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 67" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 68" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 69" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 70" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 71" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 72" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 73" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 74" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 75" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 76" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 77" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 78" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 79" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 80" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 81" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 82" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 83" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 84" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 85" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 86" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 87" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 88" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 89" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 90" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 91" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 92" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 93" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 94" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 95" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 96" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 97" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 98" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 99" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 100" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 101" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 102" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 103" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 104" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 105" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 106" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 107" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 108" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 109" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 110" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 111" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 112" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 113" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 114" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 115" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 116" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 117" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 118" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 119" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 120" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 121" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 122" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 123" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 124" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 125" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 126" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 127" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 128" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 129" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 130" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 131" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 132" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 133" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 134" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 135" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 136" . + . + . + "2018-07-18+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 137" . + . + . + "2018-07-18+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 138" . + . + . + "2018-07-18+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 139" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 140" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 141" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 142" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 143" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 144" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 145" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 146" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 147" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 148" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 149" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 150" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 151" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 152" . + . + . + "2018-09-05+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 153" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 154" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 155" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 156" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 157" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 158" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 159" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 160" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 161" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 162" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 163" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 164" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 165" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 166" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 167" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 168" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 169" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 170" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 171" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 172" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 173" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 174" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 175" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 176" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 177" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 178" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 179" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 180" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 181" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 182" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 183" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 184" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 185" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 186" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 187" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 188" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 189" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 190" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 191" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 192" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 193" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 194" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 195" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 196" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 197" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 198" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 199" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 200" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 201" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 202" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 203" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 204" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 205" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 206" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 207" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 208" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 209" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 210" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 211" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 212" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 213" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 214" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 215" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 216" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 217" . + . + . + "2018-07-18+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 218" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 219" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 220" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 221" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 222" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 223" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 224" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 225" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 226" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 227" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 228" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 229" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 230" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 231" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 232" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 233" . + http_version: + recorded_at: Wed, 24 Oct 2018 16:47:49 GMT +recorded_with: VCR 4.0.0 diff --git a/spec/fixtures/vcr_cassettes/ProcedureSteps_WorkPackagesController/GET_index/the_correct_instance_variables/assigns_procedure_step.yml b/spec/fixtures/vcr_cassettes/ProcedureSteps_WorkPackagesController/GET_index/the_correct_instance_variables/assigns_procedure_step.yml new file mode 100644 index 00000000..6614f304 --- /dev/null +++ b/spec/fixtures/vcr_cassettes/ProcedureSteps_WorkPackagesController/GET_index/the_correct_instance_variables/assigns_procedure_step.yml @@ -0,0 +1,2160 @@ +--- +http_interactions: +- request: + method: get + uri: http://localhost:3030/procedure_step_work_packages?procedure_step_id=e9G2vHbc + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + - application/n-triples + User-Agent: + - Ruby + Ocp-Apim-Subscription-Key: + - "" + Api-Version: + - Staging + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/n-triples + Content-Disposition: + - inline; filename="index" + Last-Modified: + - Wed, 24 Oct 2018 15:57:39 GMT + X-Content-Type-Options: + - nosniff + Content-Length: + - '299955' + body: + encoding: UTF-8 + string: | + . + "procedureStepName - 1" . + . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 1" . + . + "houseName - 1" . + . + "procedureName - 1" . + . + . + "houseName - 2" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 2" . + . + "procedureName - 2" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 3" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 4" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 5" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 6" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 7" . + . + . + "2018-05-07+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 8" . + . + . + "2018-04-25+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 9" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 10" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 11" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 12" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 13" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 14" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 15" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 16" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 17" . + . + . + "2018-04-25+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 18" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 19" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 20" . + . + . + "2018-05-02+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 21" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 22" . + . + . + "2018-04-25+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 23" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 24" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 25" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 26" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 27" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 28" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 29" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 30" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 31" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 32" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 33" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 34" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 35" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 36" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 37" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 38" . + . + . + "2018-05-09+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 39" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 40" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 41" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 42" . + . + . + "2018-06-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 43" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 44" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 45" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 46" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 47" . + . + . + "2018-06-08+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 48" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 49" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 50" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 51" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 52" . + . + . + "2018-06-14+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 53" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 54" . + . + . + "2018-06-06+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 55" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 56" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 57" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 58" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 59" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 60" . + . + "procedureName - 3" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 61" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 62" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 63" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 64" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 65" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 66" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 67" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 68" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 69" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 70" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 71" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 72" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 73" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 74" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 75" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 76" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 77" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 78" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 79" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 80" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 81" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 82" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 83" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 84" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 85" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 86" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 87" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 88" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 89" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 90" . + . + . + "2018-06-20+00:00"^^ . + . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 91" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 92" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 93" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 94" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 95" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 96" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 97" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 98" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 99" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 100" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 101" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 102" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 103" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 104" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 105" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 106" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 107" . + . + . + "2018-06-27+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 108" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 109" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 110" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 111" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 112" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 113" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 114" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 115" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 116" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 117" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 118" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 119" . + . + . + "2018-07-04+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 120" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 121" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 122" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 123" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 124" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 125" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 126" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 127" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 128" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 129" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 130" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 131" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 132" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 133" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 134" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 135" . + . + . + "2018-07-11+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 136" . + . + . + "2018-07-18+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 137" . + . + . + "2018-07-18+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 138" . + . + . + "2018-07-18+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 139" . + . + . + "2018-05-16+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 140" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 141" . + . + . + "2018-05-23+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 142" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 143" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 144" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 145" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 146" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 147" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 148" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 149" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 150" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 151" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 152" . + . + . + "2018-09-05+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 153" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 154" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 155" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 156" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 157" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 158" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 159" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 160" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 161" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 162" . + . + . + "2018-09-05+00:00"^^ . + . + . + . + . + . + "workPackagedThingName - 163" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 164" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 165" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 166" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 167" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 168" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 169" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 170" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 171" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 172" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 173" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 174" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 175" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 176" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 177" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 178" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 179" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 180" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 181" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 182" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 183" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 184" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 185" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 186" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 187" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 188" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 189" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 190" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 191" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 192" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 193" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 194" . + . + . + "2018-09-12+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 195" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 196" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 197" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 198" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 199" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 200" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 201" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 202" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 203" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 204" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 205" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 206" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 207" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 208" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 209" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 210" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 211" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 212" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 213" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 214" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 215" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 216" . + . + . + "2018-10-10+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 217" . + . + . + "2018-07-18+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 218" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 219" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 220" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 221" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 222" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 223" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 224" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 225" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 226" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 227" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 228" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 229" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 230" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 231" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 232" . + . + . + "2018-10-17+01:00"^^ . + . + . + . + . + . + "workPackagedThingName - 233" . + http_version: + recorded_at: Wed, 24 Oct 2018 16:49:39 GMT +recorded_with: VCR 4.0.0 diff --git a/spec/integration/controllers/procedure_steps/work_packages_controller_spec.rb b/spec/integration/controllers/procedure_steps/work_packages_controller_spec.rb new file mode 100644 index 00000000..95ae3dad --- /dev/null +++ b/spec/integration/controllers/procedure_steps/work_packages_controller_spec.rb @@ -0,0 +1,31 @@ +require_relative '../../../rails_helper' + +RSpec.describe ProcedureSteps::WorkPackagesController, vcr: true do + describe 'GET index' do + before(:each) do + allow_any_instance_of(PageSerializer::ListPageSerializer).to receive(:request_id) { 123456 } + end + + context 'navigating to the index page' do + it 'renders expected JSON output' do + get '/procedure-steps/e9G2vHbc/work-packages' + filtered_response_body = filter_sensitive_data(response.body) + + expected_json = get_fixture('index', 'fixture') + + expect(JSON.parse(filtered_response_body).to_yaml).to eq(expected_json) + end + + context 'when a business item does not have a date' do + it 'renders expected JSON output' do + get '/procedure-steps/e9G2vHbc/work-packages' + filtered_response_body = filter_sensitive_data(response.body) + + expected_json = get_fixture('index', 'fixture_with_missing_business_item_date') + + expect(JSON.parse(filtered_response_body).to_yaml).to eq(expected_json) + end + end + end + end +end